├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── issue_template.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .swiftlint.yml ├── README.md ├── WithBuddy.xcodeproj └── project.pbxproj ├── WithBuddy ├── Application │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-20@2x.png │ │ │ ├── Icon-20@3x.png │ │ │ ├── Icon-29@2x.png │ │ │ ├── Icon-29@3x.png │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-40@3x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ └── iTunesArtwork-1025.png │ │ ├── BackgroundPurple.colorset │ │ │ └── Contents.json │ │ ├── Color │ │ │ ├── Contents.json │ │ │ ├── GraphGreen.colorset │ │ │ │ └── Contents.json │ │ │ ├── GraphPink.colorset │ │ │ │ └── Contents.json │ │ │ ├── GraphPurple.colorset │ │ │ │ └── Contents.json │ │ │ ├── GraphPurple2.colorset │ │ │ │ └── Contents.json │ │ │ ├── GraphRed.colorset │ │ │ │ └── Contents.json │ │ │ ├── GraphSkyblue.colorset │ │ │ │ └── Contents.json │ │ │ ├── GraphYellow.colorset │ │ │ │ └── Contents.json │ │ │ ├── LabelGray.colorset │ │ │ │ └── Contents.json │ │ │ └── LabelPurple.colorset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Default │ │ │ ├── Contents.json │ │ │ ├── DefaultFace.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DefaultFace@1x.png │ │ │ │ ├── DefaultFace@2x.png │ │ │ │ └── DefaultFace@3x.png │ │ │ ├── DefaultHobby.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DefaultHobby@1x.png │ │ │ │ ├── DefaultHobby@2x.png │ │ │ │ └── DefaultHobby@3x.png │ │ │ ├── DefaultMeal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DefaultMeal@1x.png │ │ │ │ ├── DefaultMeal@2x.png │ │ │ │ └── DefaultMeal@3x.png │ │ │ ├── DefaultSport.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DefaultSport@1x.png │ │ │ │ ├── DefaultSport@2x.png │ │ │ │ └── DefaultSport@3x.png │ │ │ └── DefaultStudy.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DefaultStudy@1x.png │ │ │ │ ├── DefaultStudy@2x.png │ │ │ │ └── DefaultStudy@3x.png │ │ ├── Drop │ │ │ ├── BlueDrop.imageset │ │ │ │ ├── BlueDrop.png │ │ │ │ ├── BlueDrop@2x.png │ │ │ │ ├── BlueDrop@3x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── GreenDrop.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── GreenDrop.png │ │ │ │ ├── GreenDrop@2x.png │ │ │ │ └── GreenDrop@3x.png │ │ │ ├── PinkDrop.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PinkDrop.png │ │ │ │ ├── PinkDrop@2x.png │ │ │ │ └── PinkDrop@3x.png │ │ │ ├── RedDrop.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── RedDrop.png │ │ │ │ ├── RedDrop@2x.png │ │ │ │ └── RedDrop@3x.png │ │ │ └── YellowDrop.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── YellowDrop.png │ │ │ │ ├── YellowDrop@2x.png │ │ │ │ └── YellowDrop@3x.png │ │ ├── Face │ │ │ ├── BlueFace │ │ │ │ ├── Contents.json │ │ │ │ ├── FaceBlue1.imageset │ │ │ │ │ ├── Blue1@1x.png │ │ │ │ │ ├── Blue1@2x.png │ │ │ │ │ ├── Blue1@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── FaceBlue10.imageset │ │ │ │ │ ├── Blue10@1x.png │ │ │ │ │ ├── Blue10@2x.png │ │ │ │ │ ├── Blue10@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── FaceBlue11.imageset │ │ │ │ │ ├── Blue11@1x.png │ │ │ │ │ ├── Blue11@2x.png │ │ │ │ │ ├── Blue11@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── FaceBlue12.imageset │ │ │ │ │ ├── Blue12@1x.png │ │ │ │ │ ├── Blue12@2x.png │ │ │ │ │ ├── Blue12@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── FaceBlue13.imageset │ │ │ │ │ ├── Blue13@1x.png │ │ │ │ │ ├── Blue13@2x.png │ │ │ │ │ ├── Blue13@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── FaceBlue14.imageset │ │ │ │ │ ├── Blue14@1x.png │ │ │ │ │ ├── Blue14@2x.png │ │ │ │ │ ├── Blue14@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── FaceBlue15.imageset │ │ │ │ │ ├── Blue15@1x.png │ │ │ │ │ ├── Blue15@2x.png │ │ │ │ │ ├── Blue15@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── FaceBlue2.imageset │ │ │ │ │ ├── Blue2@1x.png │ │ │ │ │ ├── Blue2@2x.png │ │ │ │ │ ├── Blue2@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── FaceBlue3.imageset │ │ │ │ │ ├── Blue3@1x.png │ │ │ │ │ ├── Blue3@2x.png │ │ │ │ │ ├── Blue3@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── FaceBlue4.imageset │ │ │ │ │ ├── Blue4@1x.png │ │ │ │ │ ├── Blue4@2x.png │ │ │ │ │ ├── Blue4@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── FaceBlue5.imageset │ │ │ │ │ ├── Blue5@1x.png │ │ │ │ │ ├── Blue5@2x.png │ │ │ │ │ ├── Blue5@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── FaceBlue6.imageset │ │ │ │ │ ├── Blue6@1x.png │ │ │ │ │ ├── Blue6@2x.png │ │ │ │ │ ├── Blue6@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── FaceBlue7.imageset │ │ │ │ │ ├── Blue7@1x.png │ │ │ │ │ ├── Blue7@2x.png │ │ │ │ │ ├── Blue7@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── FaceBlue8.imageset │ │ │ │ │ ├── Blue8@1x.png │ │ │ │ │ ├── Blue8@2x.png │ │ │ │ │ ├── Blue8@3x.png │ │ │ │ │ └── Contents.json │ │ │ │ └── FaceBlue9.imageset │ │ │ │ │ ├── Blue9@1x.png │ │ │ │ │ ├── Blue9@2x.png │ │ │ │ │ ├── Blue9@3x.png │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── GreenFace │ │ │ │ ├── Contents.json │ │ │ │ ├── FaceGreen1.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Green1@1x.png │ │ │ │ │ ├── Green1@2x.png │ │ │ │ │ └── Green1@3x.png │ │ │ │ ├── FaceGreen10.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Green10@1x.png │ │ │ │ │ ├── Green10@2x.png │ │ │ │ │ └── Green10@3x.png │ │ │ │ ├── FaceGreen11.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Green11@1x.png │ │ │ │ │ ├── Green11@2x.png │ │ │ │ │ └── Green11@3x.png │ │ │ │ ├── FaceGreen12.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Green12@1x.png │ │ │ │ │ ├── Green12@2x.png │ │ │ │ │ └── Green12@3x.png │ │ │ │ ├── FaceGreen13.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Green13@1x.png │ │ │ │ │ ├── Green13@2x.png │ │ │ │ │ └── Green13@3x.png │ │ │ │ ├── FaceGreen14.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Green14@1x.png │ │ │ │ │ ├── Green14@2x.png │ │ │ │ │ └── Green14@3x.png │ │ │ │ ├── FaceGreen15.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Green15@1x.png │ │ │ │ │ ├── Green15@2x.png │ │ │ │ │ └── Green15@3x.png │ │ │ │ ├── FaceGreen2.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Green2@1x.png │ │ │ │ │ ├── Green2@2x.png │ │ │ │ │ └── Green2@3x.png │ │ │ │ ├── FaceGreen3.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Green3@1x.png │ │ │ │ │ ├── Green3@2x.png │ │ │ │ │ └── Green3@3x.png │ │ │ │ ├── FaceGreen4.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Green4@1x.png │ │ │ │ │ ├── Green4@2x.png │ │ │ │ │ └── Green4@3x.png │ │ │ │ ├── FaceGreen5.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Green5@1x.png │ │ │ │ │ ├── Green5@2x.png │ │ │ │ │ └── Green5@3x.png │ │ │ │ ├── FaceGreen6.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Green6@1x.png │ │ │ │ │ ├── Green6@2x.png │ │ │ │ │ └── Green6@3x.png │ │ │ │ ├── FaceGreen7.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Green7@1x.png │ │ │ │ │ ├── Green7@2x.png │ │ │ │ │ └── Green7@3x.png │ │ │ │ ├── FaceGreen8.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Green8@1x.png │ │ │ │ │ ├── Green8@2x.png │ │ │ │ │ └── Green8@3x.png │ │ │ │ └── FaceGreen9.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Green9@1x.png │ │ │ │ │ ├── Green9@2x.png │ │ │ │ │ └── Green9@3x.png │ │ │ ├── PinkFace │ │ │ │ ├── Contents.json │ │ │ │ ├── FacePink1.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Pink1@1x.png │ │ │ │ │ ├── Pink1@2x.png │ │ │ │ │ └── Pink1@3x.png │ │ │ │ ├── FacePink10.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Pink10@1x.png │ │ │ │ │ ├── Pink10@2x.png │ │ │ │ │ └── Pink10@3x.png │ │ │ │ ├── FacePink11.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Pink11@1x.png │ │ │ │ │ ├── Pink11@2x.png │ │ │ │ │ └── Pink11@3x.png │ │ │ │ ├── FacePink12.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Pink12@1x.png │ │ │ │ │ ├── Pink12@2x.png │ │ │ │ │ └── Pink12@3x.png │ │ │ │ ├── FacePink13.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Pink13@1x.png │ │ │ │ │ ├── Pink13@2x.png │ │ │ │ │ └── Pink13@3x.png │ │ │ │ ├── FacePink14.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Pink14@1x.png │ │ │ │ │ ├── Pink14@2x.png │ │ │ │ │ └── Pink14@3x.png │ │ │ │ ├── FacePink15.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Pink15@1x.png │ │ │ │ │ ├── Pink15@2x.png │ │ │ │ │ └── Pink15@3x.png │ │ │ │ ├── FacePink2.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Pink2@1x.png │ │ │ │ │ ├── Pink2@2x.png │ │ │ │ │ └── Pink2@3x.png │ │ │ │ ├── FacePink3.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Pink3@1x.png │ │ │ │ │ ├── Pink3@2x.png │ │ │ │ │ └── Pink3@3x.png │ │ │ │ ├── FacePink4.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Pink4@1x.png │ │ │ │ │ ├── Pink4@2x.png │ │ │ │ │ └── Pink4@3x.png │ │ │ │ ├── FacePink5.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Pink5@1x.png │ │ │ │ │ ├── Pink5@2x.png │ │ │ │ │ └── Pink5@3x.png │ │ │ │ ├── FacePink6.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Pink6@1x.png │ │ │ │ │ ├── Pink6@2x.png │ │ │ │ │ └── Pink6@3x.png │ │ │ │ ├── FacePink7.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Pink7@1x.png │ │ │ │ │ ├── Pink7@2x.png │ │ │ │ │ └── Pink7@3x.png │ │ │ │ ├── FacePink8.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Pink8@1x.png │ │ │ │ │ ├── Pink8@2x.png │ │ │ │ │ └── Pink8@3x.png │ │ │ │ └── FacePink9.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Pink9@1x.png │ │ │ │ │ ├── Pink9@2x.png │ │ │ │ │ └── Pink9@3x.png │ │ │ ├── PurpleFace │ │ │ │ ├── Contents.json │ │ │ │ ├── FacePurple1.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Purple1@1x.png │ │ │ │ │ ├── Purple1@2x.png │ │ │ │ │ └── Purple1@3x.png │ │ │ │ ├── FacePurple10.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Purple10@1x.png │ │ │ │ │ ├── Purple10@2x.png │ │ │ │ │ └── Purple10@3x.png │ │ │ │ ├── FacePurple11.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Purple11@1x.png │ │ │ │ │ ├── Purple11@2x.png │ │ │ │ │ └── Purple11@3x.png │ │ │ │ ├── FacePurple12.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Purple12@1x.png │ │ │ │ │ ├── Purple12@2x.png │ │ │ │ │ └── Purple12@3x.png │ │ │ │ ├── FacePurple13.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Purple13@1x.png │ │ │ │ │ ├── Purple13@2x.png │ │ │ │ │ └── Purple13@3x.png │ │ │ │ ├── FacePurple14.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Purple14@1x.png │ │ │ │ │ ├── Purple14@2x.png │ │ │ │ │ └── Purple14@3x.png │ │ │ │ ├── FacePurple15.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Purple15@1x.png │ │ │ │ │ ├── Purple15@2x.png │ │ │ │ │ └── Purple15@3x.png │ │ │ │ ├── FacePurple2.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Purple2@1x.png │ │ │ │ │ ├── Purple2@2x.png │ │ │ │ │ └── Purple2@3x.png │ │ │ │ ├── FacePurple3.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Purple3@1x.png │ │ │ │ │ ├── Purple3@2x.png │ │ │ │ │ └── Purple3@3x.png │ │ │ │ ├── FacePurple4.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── FacePurple4@1x.png │ │ │ │ │ ├── FacePurple4@2x.png │ │ │ │ │ └── FacePurple4@3x.png │ │ │ │ ├── FacePurple5.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── FacePurple5@1x.png │ │ │ │ │ ├── FacePurple5@2x.png │ │ │ │ │ └── FacePurple5@3x.png │ │ │ │ ├── FacePurple6.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── FacePurple6@1x.png │ │ │ │ │ ├── FacePurple6@2x.png │ │ │ │ │ └── FacePurple6@3x.png │ │ │ │ ├── FacePurple7.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── FacePurple7@1x.png │ │ │ │ │ ├── FacePurple7@2x.png │ │ │ │ │ └── FacePurple7@3x.png │ │ │ │ ├── FacePurple8.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── FacePurple8@1x.png │ │ │ │ │ ├── FacePurple8@2x.png │ │ │ │ │ └── FacePurple8@3x.png │ │ │ │ └── FacePurple9.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── FacePurple9@1x.png │ │ │ │ │ ├── FacePurple9@2x.png │ │ │ │ │ └── FacePurple9@3x.png │ │ │ ├── RedFace │ │ │ │ ├── Contents.json │ │ │ │ ├── FaceRed1.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Red1@1x.png │ │ │ │ │ ├── Red1@2x.png │ │ │ │ │ └── Red1@3x.png │ │ │ │ ├── FaceRed10.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Red10@1x.png │ │ │ │ │ ├── Red10@2x.png │ │ │ │ │ └── Red10@3x.png │ │ │ │ ├── FaceRed11.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Red11@1x.png │ │ │ │ │ ├── Red11@2x.png │ │ │ │ │ └── Red11@3x.png │ │ │ │ ├── FaceRed12.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Red12@1x.png │ │ │ │ │ ├── Red12@2x.png │ │ │ │ │ └── Red12@3x.png │ │ │ │ ├── FaceRed13.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Red13@1x.png │ │ │ │ │ ├── Red13@2x.png │ │ │ │ │ └── Red13@3x.png │ │ │ │ ├── FaceRed14.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Red14@1x.png │ │ │ │ │ ├── Red14@2x.png │ │ │ │ │ └── Red14@3x.png │ │ │ │ ├── FaceRed15.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Red15@1x.png │ │ │ │ │ ├── Red15@2x.png │ │ │ │ │ └── Red15@3x.png │ │ │ │ ├── FaceRed2.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Red2@1x.png │ │ │ │ │ ├── Red2@2x.png │ │ │ │ │ └── Red2@3x.png │ │ │ │ ├── FaceRed3.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Red3@1x.png │ │ │ │ │ ├── Red3@2x.png │ │ │ │ │ └── Red3@3x.png │ │ │ │ ├── FaceRed4.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── red4@1x.png │ │ │ │ │ ├── red4@2x.png │ │ │ │ │ └── red4@3x.png │ │ │ │ ├── FaceRed5.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── red5@1x.png │ │ │ │ │ ├── red5@2x.png │ │ │ │ │ └── red5@3x.png │ │ │ │ ├── FaceRed6.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── red6@1x.png │ │ │ │ │ ├── red6@2x.png │ │ │ │ │ └── red6@3x.png │ │ │ │ ├── FaceRed7.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── red8@1x.png │ │ │ │ │ ├── red8@2x.png │ │ │ │ │ └── red8@3x.png │ │ │ │ ├── FaceRed8.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── red7@1x.png │ │ │ │ │ ├── red7@2x.png │ │ │ │ │ └── red7@3x.png │ │ │ │ └── FaceRed9.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── red9@1x.png │ │ │ │ │ ├── red9@2x.png │ │ │ │ │ └── red9@3x.png │ │ │ └── YellowFace │ │ │ │ ├── Contents.json │ │ │ │ ├── FaceYellow1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Yellow1@1x.png │ │ │ │ ├── Yellow1@2x.png │ │ │ │ └── Yellow1@3x.png │ │ │ │ ├── FaceYellow10.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Yellow10@1x.png │ │ │ │ ├── Yellow10@2x.png │ │ │ │ └── Yellow10@3x.png │ │ │ │ ├── FaceYellow11.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Yellow11@1x.png │ │ │ │ ├── Yellow11@2x.png │ │ │ │ └── Yellow11@3x.png │ │ │ │ ├── FaceYellow12.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Yellow12@1x.png │ │ │ │ ├── Yellow12@2x.png │ │ │ │ └── Yellow12@3x.png │ │ │ │ ├── FaceYellow13.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Yellow13@1x.png │ │ │ │ ├── Yellow13@2x.png │ │ │ │ └── Yellow13@3x.png │ │ │ │ ├── FaceYellow14.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Yellow14@1x.png │ │ │ │ ├── Yellow14@2x.png │ │ │ │ └── Yellow14@3x.png │ │ │ │ ├── FaceYellow15.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Yellow15@1x.png │ │ │ │ ├── Yellow15@2x.png │ │ │ │ └── Yellow15@3x.png │ │ │ │ ├── FaceYellow2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Yellow2@1x.png │ │ │ │ ├── Yellow2@2x.png │ │ │ │ └── Yellow2@3x.png │ │ │ │ ├── FaceYellow3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Yellow3@1x.png │ │ │ │ ├── Yellow3@2x.png │ │ │ │ └── Yellow3@3x.png │ │ │ │ ├── FaceYellow4.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Yellow4@1x.png │ │ │ │ ├── Yellow4@2x.png │ │ │ │ └── Yellow4@3x.png │ │ │ │ ├── FaceYellow5.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Yellow5@1x.png │ │ │ │ ├── Yellow5@2x.png │ │ │ │ └── Yellow5@3x.png │ │ │ │ ├── FaceYellow6.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Yellow6@1x.png │ │ │ │ ├── Yellow6@2x.png │ │ │ │ └── Yellow6@3x.png │ │ │ │ ├── FaceYellow7.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Yellow7@1x.png │ │ │ │ ├── Yellow7@2x.png │ │ │ │ └── Yellow7@3x.png │ │ │ │ ├── FaceYellow8.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Yellow8@1x.png │ │ │ │ ├── Yellow8@2x.png │ │ │ │ └── Yellow8@3x.png │ │ │ │ └── FaceYellow9.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Yellow9@1x.png │ │ │ │ ├── Yellow9@2x.png │ │ │ │ └── Yellow9@3x.png │ │ ├── FaceColor │ │ │ ├── Contents.json │ │ │ ├── FaceBlue.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── FaceBlue@1x.png │ │ │ │ ├── FaceBlue@2x.png │ │ │ │ └── FaceBlue@3x.png │ │ │ ├── FaceGreen.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── FaceGreen@1x.png │ │ │ │ ├── FaceGreen@2x.png │ │ │ │ └── FaceGreen@3x.png │ │ │ ├── FacePink.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── FacePink@1x.png │ │ │ │ ├── FacePink@2x.png │ │ │ │ └── FacePink@3x.png │ │ │ ├── FacePurple.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── FacePurple@1x.png │ │ │ │ ├── FacePurple@2x.png │ │ │ │ └── FacePurple@3x.png │ │ │ ├── FaceRed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── FaceRed@1x.png │ │ │ │ ├── FaceRed@2x.png │ │ │ │ └── FaceRed@3x.png │ │ │ └── FaceYellow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── FaceYellow@1x.png │ │ │ │ ├── FaceYellow@2x.png │ │ │ │ └── FaceYellow@3x.png │ │ ├── Place │ │ │ ├── Contents.json │ │ │ ├── Culture.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Culture@1x.png │ │ │ │ ├── Culture@2x.png │ │ │ │ └── Culture@3x.png │ │ │ ├── Etc.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Etc@1x.png │ │ │ │ ├── Etc@2x.png │ │ │ │ └── Etc@3x.png │ │ │ ├── ExtraCurricularActivities.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ExtraCurricularActivities@1x.png │ │ │ │ ├── ExtraCurricularActivities@2x.png │ │ │ │ └── ExtraCurricularActivities@3x.png │ │ │ ├── Healing.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Healing@1x.png │ │ │ │ ├── Healing@2x.png │ │ │ │ └── Healing@3x.png │ │ │ ├── Hobby.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Hobby@1x.png │ │ │ │ ├── Hobby@2x.png │ │ │ │ └── Hobby@3x.png │ │ │ ├── Meal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Meal@1x.png │ │ │ │ ├── Meal@2x.png │ │ │ │ └── Meal@3x.png │ │ │ ├── Shopping.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Shopping@1x.png │ │ │ │ ├── Shopping@2x.png │ │ │ │ └── Shopping@3x.png │ │ │ ├── Sport.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Sport@1x.png │ │ │ │ ├── Sport@2x.png │ │ │ │ └── Sport@3x.png │ │ │ └── Study.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Study@1x.png │ │ │ │ ├── Study@2x.png │ │ │ │ └── Study@3x.png │ │ ├── Plus.imageset │ │ │ ├── Contents.json │ │ │ ├── Plus@1x.png │ │ │ ├── Plus@2x.png │ │ │ └── Plus@3x.png │ │ ├── PlusBuddy.imageset │ │ │ ├── Contents.json │ │ │ ├── PlusBuddy@1x.png │ │ │ ├── PlusBuddy@2x.png │ │ │ └── PlusBuddy@3x.png │ │ └── TabBar │ │ │ ├── Calendar.imageset │ │ │ ├── Calendar@1x.png │ │ │ ├── Calendar@2x.png │ │ │ ├── Calendar@3x.png │ │ │ └── Contents.json │ │ │ ├── Chart.imageset │ │ │ ├── Chart@1x.png │ │ │ ├── Chart@2x.png │ │ │ ├── Chart@3x.png │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Gathering.imageset │ │ │ ├── Contents.json │ │ │ ├── Gathering@1x.png │ │ │ ├── Gathering@2x.png │ │ │ └── Gathering@3x.png │ │ │ ├── List.imageset │ │ │ ├── Contents.json │ │ │ ├── List@1x.png │ │ │ ├── List@2x.png │ │ │ └── List@3x.png │ │ │ └── Setting.imageset │ │ │ ├── Contents.json │ │ │ ├── Setting@1x.png │ │ │ ├── Setting@2x.png │ │ │ └── Setting@3x.png │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── SceneDelegate.swift ├── Data │ └── PersistentStorage │ │ ├── BuddyEntity+CoreDataClass.swift │ │ ├── CoreDataManager.swift │ │ ├── GatheringEntity+CoreDataClass.swift │ │ ├── PurposeEntity+CoreDataClass.swift │ │ └── WithBuddyModel.xcdatamodeld │ │ └── WithBuddyModel.xcdatamodel │ │ └── contents ├── Domain │ ├── Entities │ │ ├── Buddy.swift │ │ ├── CheckableInfo.swift │ │ ├── Face.swift │ │ ├── FaceColor.swift │ │ ├── Gathering.swift │ │ ├── PurposeCategory.swift │ │ └── headerComments.swift │ └── UseCases │ │ ├── BuddyUseCase.swift │ │ ├── CalendarUseCase.swift │ │ ├── GatheringUseCase.swift │ │ ├── PictureUseCase.swift │ │ ├── PurposeUseCase.swift │ │ └── UserUseCase.swift ├── Info.plist ├── Presentation │ ├── BuddyChoice │ │ ├── View │ │ │ └── BuddyChoiceViewController.swift │ │ └── ViewModel │ │ │ └── BuddyChoiceViewModel.swift │ ├── BuddyCustom │ │ ├── View │ │ │ └── BuddyCustomViewController.swift │ │ └── ViewModel │ │ │ └── BuddyCustomViewModel.swift │ ├── BuddyManage │ │ ├── View │ │ │ └── BuddyManageViewController.swift │ │ └── ViewModel │ │ │ └── BuddyManageViewModel.swift │ ├── Calendar │ │ ├── View │ │ │ ├── CalendarViewController.swift │ │ │ ├── HeaderView.swift │ │ │ ├── WBCalendarCollectionView.swift │ │ │ ├── WBCalendarView.swift │ │ │ └── WBCalendarViewCell.swift │ │ └── ViewModel │ │ │ └── CalendarViewModel.swift │ ├── Calendardetail │ │ ├── View │ │ │ └── CalendarDetailViewController.swift │ │ └── ViewModel │ │ │ └── CalendarDetailViewModel.swift │ ├── Chart │ │ ├── View │ │ │ ├── BubbleChartView.swift │ │ │ ├── BubbleDescriptionView.swift │ │ │ ├── ChartViewController.swift │ │ │ ├── DefaultView.swift │ │ │ ├── LatestOldChartView.swift │ │ │ ├── LatestOldView.swift │ │ │ ├── PurposeChartView.swift │ │ │ └── PurposeView.swift │ │ └── ViewModel │ │ │ └── ChartViewModel.swift │ ├── Common │ │ ├── Extension │ │ │ ├── CGFloat+Extension.swift │ │ │ ├── Int+Extension.swift │ │ │ ├── String+Extension.swift │ │ │ ├── UIColor+Extension.swift │ │ │ ├── UIImage+Extension.swift │ │ │ └── UIView+Extension.swift │ │ ├── Label │ │ │ ├── BlackTitleLabel.swift │ │ │ ├── PurpleLabel.swift │ │ │ └── PurpleTitleLabel.swift │ │ └── View │ │ │ ├── BuddyImageView.swift │ │ │ ├── ImageCollectionViewCell.swift │ │ │ ├── ImageTextCollectionViewCell.swift │ │ │ ├── ListTableViewCell.swift │ │ │ ├── LoadingView.swift │ │ │ ├── PictureCollectionViewCell.swift │ │ │ ├── SearchView.swift │ │ │ ├── TabBarViewController.swift │ │ │ └── WhiteView.swift │ ├── GatheringDetail │ │ ├── View │ │ │ └── GatheringDetailViewController.swift │ │ └── ViewModel │ │ │ └── GatheringDetailViewModel.swift │ ├── GatheringEdit │ │ ├── View │ │ │ └── GatheringEditViewController.swift │ │ └── ViewModel │ │ │ └── GatheringEditViewModel.swift │ ├── List │ │ ├── View │ │ │ └── ListViewController.swift │ │ └── ViewModel │ │ │ └── ListViewModel.swift │ ├── Register │ │ ├── View │ │ │ └── RegisterViewController.swift │ │ └── ViewModel │ │ │ └── RegisterViewModel.swift │ ├── Setting │ │ ├── View │ │ │ └── SettingViewController.swift │ │ └── ViewModel │ │ │ └── SettingViewModel.swift │ └── UserCreate │ │ ├── View │ │ └── UserCreateViewController.swift │ │ └── ViewModel │ │ └── UserCreateViewModel.swift └── Resource │ ├── Fonts │ ├── Cafe24Ssurround.ttf │ └── Cafe24SsurroundAir.ttf │ └── defaultImage.png └── WithBuddyWidget ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json ├── WidgetBackground.colorset │ └── Contents.json ├── WidgetPink.imageset │ ├── Contents.json │ ├── WidgetPink@1x.png │ ├── WidgetPink@2x.png │ └── WidgetPink@3x.png ├── WidgetPurple.imageset │ ├── Contents.json │ ├── WidgetPurple@1x.png │ ├── WidgetPurple@2x.png │ └── WidgetPurple@3x.png ├── WidgetRed.imageset │ ├── Contents.json │ ├── WidgetRed@1x.png │ ├── WidgetRed@2x.png │ └── WidgetRed@3x.png └── WidgetYellow.imageset │ ├── Contents.json │ ├── WidgetYellow@1x.png │ ├── WidgetYellow@2x.png │ └── WidgetYellow@3x.png ├── Info.plist └── WithBuddyWidget.swift /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj binary merge=union 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue_template.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: ISSUE_TEMPLATE 3 | about: Issue Template 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## 📖 스토리 11 | 12 | 13 | 14 |
15 | 16 | ## 🐞 관련 문제 및 해결 17 | 18 | - 19 | 20 |
21 | 22 | ## 📚 레퍼런스 23 | 24 | - []() 25 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## 💡 이슈 번호 2 | 3 | #1 4 | 5 |
6 | 7 | ## 📚 작업 내역 8 | 9 | - 10 | 11 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0xD9", 9 | "green" : "0x83", 10 | "red" : "0x93" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/Icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/Icon-20@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/Icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/Icon-20@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/iTunesArtwork-1025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/AppIcon.appiconset/iTunesArtwork-1025.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Color/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Default/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Default/DefaultFace.imageset/DefaultFace@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Default/DefaultFace.imageset/DefaultFace@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Default/DefaultFace.imageset/DefaultFace@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Default/DefaultFace.imageset/DefaultFace@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Default/DefaultFace.imageset/DefaultFace@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Default/DefaultFace.imageset/DefaultFace@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Default/DefaultHobby.imageset/DefaultHobby@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Default/DefaultHobby.imageset/DefaultHobby@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Default/DefaultHobby.imageset/DefaultHobby@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Default/DefaultHobby.imageset/DefaultHobby@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Default/DefaultHobby.imageset/DefaultHobby@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Default/DefaultHobby.imageset/DefaultHobby@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Default/DefaultMeal.imageset/DefaultMeal@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Default/DefaultMeal.imageset/DefaultMeal@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Default/DefaultMeal.imageset/DefaultMeal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Default/DefaultMeal.imageset/DefaultMeal@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Default/DefaultMeal.imageset/DefaultMeal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Default/DefaultMeal.imageset/DefaultMeal@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Default/DefaultSport.imageset/DefaultSport@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Default/DefaultSport.imageset/DefaultSport@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Default/DefaultSport.imageset/DefaultSport@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Default/DefaultSport.imageset/DefaultSport@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Default/DefaultSport.imageset/DefaultSport@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Default/DefaultSport.imageset/DefaultSport@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Default/DefaultStudy.imageset/DefaultStudy@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Default/DefaultStudy.imageset/DefaultStudy@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Default/DefaultStudy.imageset/DefaultStudy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Default/DefaultStudy.imageset/DefaultStudy@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Default/DefaultStudy.imageset/DefaultStudy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Default/DefaultStudy.imageset/DefaultStudy@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/BlueDrop.imageset/BlueDrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Drop/BlueDrop.imageset/BlueDrop.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/BlueDrop.imageset/BlueDrop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Drop/BlueDrop.imageset/BlueDrop@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/BlueDrop.imageset/BlueDrop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Drop/BlueDrop.imageset/BlueDrop@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/BlueDrop.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "BlueDrop.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "BlueDrop@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "BlueDrop@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/GreenDrop.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "GreenDrop.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "GreenDrop@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "GreenDrop@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/GreenDrop.imageset/GreenDrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Drop/GreenDrop.imageset/GreenDrop.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/GreenDrop.imageset/GreenDrop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Drop/GreenDrop.imageset/GreenDrop@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/GreenDrop.imageset/GreenDrop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Drop/GreenDrop.imageset/GreenDrop@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/PinkDrop.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "PinkDrop.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "PinkDrop@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "PinkDrop@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/PinkDrop.imageset/PinkDrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Drop/PinkDrop.imageset/PinkDrop.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/PinkDrop.imageset/PinkDrop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Drop/PinkDrop.imageset/PinkDrop@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/PinkDrop.imageset/PinkDrop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Drop/PinkDrop.imageset/PinkDrop@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/RedDrop.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "RedDrop.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "RedDrop@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "RedDrop@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/RedDrop.imageset/RedDrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Drop/RedDrop.imageset/RedDrop.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/RedDrop.imageset/RedDrop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Drop/RedDrop.imageset/RedDrop@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/RedDrop.imageset/RedDrop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Drop/RedDrop.imageset/RedDrop@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/YellowDrop.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "YellowDrop.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "YellowDrop@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "YellowDrop@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/YellowDrop.imageset/YellowDrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Drop/YellowDrop.imageset/YellowDrop.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/YellowDrop.imageset/YellowDrop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Drop/YellowDrop.imageset/YellowDrop@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Drop/YellowDrop.imageset/YellowDrop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Drop/YellowDrop.imageset/YellowDrop@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue1.imageset/Blue1@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue1.imageset/Blue1@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue1.imageset/Blue1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue1.imageset/Blue1@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue1.imageset/Blue1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue1.imageset/Blue1@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Blue1@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Blue1@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Blue1@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue10.imageset/Blue10@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue10.imageset/Blue10@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue10.imageset/Blue10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue10.imageset/Blue10@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue10.imageset/Blue10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue10.imageset/Blue10@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue10.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Blue10@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Blue10@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Blue10@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue11.imageset/Blue11@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue11.imageset/Blue11@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue11.imageset/Blue11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue11.imageset/Blue11@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue11.imageset/Blue11@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue11.imageset/Blue11@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue11.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Blue11@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Blue11@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Blue11@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue12.imageset/Blue12@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue12.imageset/Blue12@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue12.imageset/Blue12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue12.imageset/Blue12@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue12.imageset/Blue12@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue12.imageset/Blue12@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue12.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Blue12@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Blue12@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Blue12@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue13.imageset/Blue13@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue13.imageset/Blue13@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue13.imageset/Blue13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue13.imageset/Blue13@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue13.imageset/Blue13@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue13.imageset/Blue13@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue13.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Blue13@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Blue13@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Blue13@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue14.imageset/Blue14@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue14.imageset/Blue14@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue14.imageset/Blue14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue14.imageset/Blue14@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue14.imageset/Blue14@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue14.imageset/Blue14@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue14.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Blue14@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Blue14@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Blue14@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue15.imageset/Blue15@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue15.imageset/Blue15@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue15.imageset/Blue15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue15.imageset/Blue15@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue15.imageset/Blue15@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue15.imageset/Blue15@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue15.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Blue15@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Blue15@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Blue15@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue2.imageset/Blue2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue2.imageset/Blue2@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue2.imageset/Blue2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue2.imageset/Blue2@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue2.imageset/Blue2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue2.imageset/Blue2@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Blue2@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Blue2@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Blue2@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue3.imageset/Blue3@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue3.imageset/Blue3@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue3.imageset/Blue3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue3.imageset/Blue3@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue3.imageset/Blue3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue3.imageset/Blue3@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Blue3@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Blue3@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Blue3@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue4.imageset/Blue4@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue4.imageset/Blue4@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue4.imageset/Blue4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue4.imageset/Blue4@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue4.imageset/Blue4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue4.imageset/Blue4@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Blue4@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Blue4@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Blue4@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue5.imageset/Blue5@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue5.imageset/Blue5@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue5.imageset/Blue5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue5.imageset/Blue5@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue5.imageset/Blue5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue5.imageset/Blue5@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Blue5@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Blue5@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Blue5@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue6.imageset/Blue6@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue6.imageset/Blue6@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue6.imageset/Blue6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue6.imageset/Blue6@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue6.imageset/Blue6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue6.imageset/Blue6@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue6.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Blue6@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Blue6@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Blue6@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue7.imageset/Blue7@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue7.imageset/Blue7@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue7.imageset/Blue7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue7.imageset/Blue7@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue7.imageset/Blue7@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue7.imageset/Blue7@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Blue7@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Blue7@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Blue7@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue8.imageset/Blue8@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue8.imageset/Blue8@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue8.imageset/Blue8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue8.imageset/Blue8@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue8.imageset/Blue8@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue8.imageset/Blue8@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue8.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Blue8@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Blue8@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Blue8@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue9.imageset/Blue9@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue9.imageset/Blue9@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue9.imageset/Blue9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue9.imageset/Blue9@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue9.imageset/Blue9@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue9.imageset/Blue9@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/BlueFace/FaceBlue9.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Blue9@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Blue9@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Blue9@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Green1@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Green1@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Green1@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen1.imageset/Green1@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen1.imageset/Green1@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen1.imageset/Green1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen1.imageset/Green1@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen1.imageset/Green1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen1.imageset/Green1@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen10.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Green10@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Green10@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Green10@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen10.imageset/Green10@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen10.imageset/Green10@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen10.imageset/Green10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen10.imageset/Green10@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen10.imageset/Green10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen10.imageset/Green10@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen11.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Green11@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Green11@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Green11@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen11.imageset/Green11@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen11.imageset/Green11@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen11.imageset/Green11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen11.imageset/Green11@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen11.imageset/Green11@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen11.imageset/Green11@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen12.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Green12@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Green12@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Green12@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen12.imageset/Green12@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen12.imageset/Green12@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen12.imageset/Green12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen12.imageset/Green12@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen12.imageset/Green12@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen12.imageset/Green12@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen13.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Green13@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Green13@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Green13@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen13.imageset/Green13@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen13.imageset/Green13@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen13.imageset/Green13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen13.imageset/Green13@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen13.imageset/Green13@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen13.imageset/Green13@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen14.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Green14@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Green14@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Green14@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen14.imageset/Green14@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen14.imageset/Green14@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen14.imageset/Green14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen14.imageset/Green14@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen14.imageset/Green14@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen14.imageset/Green14@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen15.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Green15@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Green15@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Green15@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen15.imageset/Green15@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen15.imageset/Green15@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen15.imageset/Green15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen15.imageset/Green15@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen15.imageset/Green15@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen15.imageset/Green15@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Green2@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Green2@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Green2@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen2.imageset/Green2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen2.imageset/Green2@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen2.imageset/Green2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen2.imageset/Green2@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen2.imageset/Green2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen2.imageset/Green2@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Green3@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Green3@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Green3@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen3.imageset/Green3@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen3.imageset/Green3@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen3.imageset/Green3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen3.imageset/Green3@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen3.imageset/Green3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen3.imageset/Green3@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Green4@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Green4@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Green4@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen4.imageset/Green4@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen4.imageset/Green4@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen4.imageset/Green4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen4.imageset/Green4@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen4.imageset/Green4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen4.imageset/Green4@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Green5@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Green5@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Green5@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen5.imageset/Green5@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen5.imageset/Green5@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen5.imageset/Green5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen5.imageset/Green5@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen5.imageset/Green5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen5.imageset/Green5@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen6.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Green6@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Green6@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Green6@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen6.imageset/Green6@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen6.imageset/Green6@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen6.imageset/Green6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen6.imageset/Green6@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen6.imageset/Green6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen6.imageset/Green6@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Green7@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Green7@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Green7@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen7.imageset/Green7@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen7.imageset/Green7@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen7.imageset/Green7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen7.imageset/Green7@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen7.imageset/Green7@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen7.imageset/Green7@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen8.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Green8@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Green8@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Green8@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen8.imageset/Green8@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen8.imageset/Green8@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen8.imageset/Green8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen8.imageset/Green8@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen8.imageset/Green8@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen8.imageset/Green8@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen9.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Green9@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Green9@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Green9@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen9.imageset/Green9@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen9.imageset/Green9@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen9.imageset/Green9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen9.imageset/Green9@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen9.imageset/Green9@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/GreenFace/FaceGreen9.imageset/Green9@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pink1@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Pink1@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Pink1@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink1.imageset/Pink1@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink1.imageset/Pink1@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink1.imageset/Pink1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink1.imageset/Pink1@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink1.imageset/Pink1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink1.imageset/Pink1@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink10.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pink10@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Pink10@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Pink10@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink10.imageset/Pink10@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink10.imageset/Pink10@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink10.imageset/Pink10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink10.imageset/Pink10@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink10.imageset/Pink10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink10.imageset/Pink10@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink11.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pink11@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Pink11@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Pink11@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink11.imageset/Pink11@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink11.imageset/Pink11@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink11.imageset/Pink11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink11.imageset/Pink11@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink11.imageset/Pink11@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink11.imageset/Pink11@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink12.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pink12@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Pink12@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Pink12@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink12.imageset/Pink12@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink12.imageset/Pink12@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink12.imageset/Pink12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink12.imageset/Pink12@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink12.imageset/Pink12@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink12.imageset/Pink12@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink13.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pink13@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Pink13@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Pink13@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink13.imageset/Pink13@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink13.imageset/Pink13@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink13.imageset/Pink13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink13.imageset/Pink13@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink13.imageset/Pink13@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink13.imageset/Pink13@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink14.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pink14@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Pink14@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Pink14@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink14.imageset/Pink14@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink14.imageset/Pink14@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink14.imageset/Pink14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink14.imageset/Pink14@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink14.imageset/Pink14@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink14.imageset/Pink14@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink15.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pink15@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Pink15@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Pink15@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink15.imageset/Pink15@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink15.imageset/Pink15@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink15.imageset/Pink15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink15.imageset/Pink15@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink15.imageset/Pink15@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink15.imageset/Pink15@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pink2@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Pink2@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Pink2@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink2.imageset/Pink2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink2.imageset/Pink2@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink2.imageset/Pink2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink2.imageset/Pink2@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink2.imageset/Pink2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink2.imageset/Pink2@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pink3@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Pink3@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Pink3@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink3.imageset/Pink3@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink3.imageset/Pink3@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink3.imageset/Pink3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink3.imageset/Pink3@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink3.imageset/Pink3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink3.imageset/Pink3@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pink4@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Pink4@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Pink4@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink4.imageset/Pink4@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink4.imageset/Pink4@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink4.imageset/Pink4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink4.imageset/Pink4@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink4.imageset/Pink4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink4.imageset/Pink4@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pink5@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Pink5@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Pink5@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink5.imageset/Pink5@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink5.imageset/Pink5@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink5.imageset/Pink5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink5.imageset/Pink5@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink5.imageset/Pink5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink5.imageset/Pink5@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink6.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pink6@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Pink6@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Pink6@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink6.imageset/Pink6@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink6.imageset/Pink6@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink6.imageset/Pink6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink6.imageset/Pink6@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink6.imageset/Pink6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink6.imageset/Pink6@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pink7@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Pink7@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Pink7@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink7.imageset/Pink7@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink7.imageset/Pink7@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink7.imageset/Pink7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink7.imageset/Pink7@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink7.imageset/Pink7@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink7.imageset/Pink7@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink8.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pink8@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Pink8@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Pink8@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink8.imageset/Pink8@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink8.imageset/Pink8@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink8.imageset/Pink8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink8.imageset/Pink8@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink8.imageset/Pink8@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink8.imageset/Pink8@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink9.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Pink9@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Pink9@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Pink9@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink9.imageset/Pink9@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink9.imageset/Pink9@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink9.imageset/Pink9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink9.imageset/Pink9@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink9.imageset/Pink9@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PinkFace/FacePink9.imageset/Pink9@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Purple1@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Purple1@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Purple1@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple1.imageset/Purple1@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple1.imageset/Purple1@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple1.imageset/Purple1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple1.imageset/Purple1@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple1.imageset/Purple1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple1.imageset/Purple1@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple10.imageset/Purple10@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple10.imageset/Purple10@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple10.imageset/Purple10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple10.imageset/Purple10@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple10.imageset/Purple10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple10.imageset/Purple10@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple11.imageset/Purple11@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple11.imageset/Purple11@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple11.imageset/Purple11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple11.imageset/Purple11@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple11.imageset/Purple11@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple11.imageset/Purple11@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple12.imageset/Purple12@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple12.imageset/Purple12@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple12.imageset/Purple12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple12.imageset/Purple12@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple12.imageset/Purple12@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple12.imageset/Purple12@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple13.imageset/Purple13@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple13.imageset/Purple13@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple13.imageset/Purple13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple13.imageset/Purple13@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple13.imageset/Purple13@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple13.imageset/Purple13@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple14.imageset/Purple14@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple14.imageset/Purple14@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple14.imageset/Purple14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple14.imageset/Purple14@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple14.imageset/Purple14@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple14.imageset/Purple14@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple15.imageset/Purple15@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple15.imageset/Purple15@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple15.imageset/Purple15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple15.imageset/Purple15@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple15.imageset/Purple15@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple15.imageset/Purple15@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple2.imageset/Purple2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple2.imageset/Purple2@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple2.imageset/Purple2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple2.imageset/Purple2@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple2.imageset/Purple2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple2.imageset/Purple2@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple3.imageset/Purple3@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple3.imageset/Purple3@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple3.imageset/Purple3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple3.imageset/Purple3@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple3.imageset/Purple3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple3.imageset/Purple3@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple4.imageset/FacePurple4@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple4.imageset/FacePurple4@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple4.imageset/FacePurple4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple4.imageset/FacePurple4@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple4.imageset/FacePurple4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple4.imageset/FacePurple4@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple5.imageset/FacePurple5@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple5.imageset/FacePurple5@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple5.imageset/FacePurple5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple5.imageset/FacePurple5@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple5.imageset/FacePurple5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple5.imageset/FacePurple5@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple6.imageset/FacePurple6@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple6.imageset/FacePurple6@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple6.imageset/FacePurple6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple6.imageset/FacePurple6@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple6.imageset/FacePurple6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple6.imageset/FacePurple6@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple7.imageset/FacePurple7@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple7.imageset/FacePurple7@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple7.imageset/FacePurple7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple7.imageset/FacePurple7@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple7.imageset/FacePurple7@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple7.imageset/FacePurple7@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple8.imageset/FacePurple8@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple8.imageset/FacePurple8@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple8.imageset/FacePurple8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple8.imageset/FacePurple8@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple8.imageset/FacePurple8@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple8.imageset/FacePurple8@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple9.imageset/FacePurple9@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple9.imageset/FacePurple9@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple9.imageset/FacePurple9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple9.imageset/FacePurple9@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple9.imageset/FacePurple9@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/PurpleFace/FacePurple9.imageset/FacePurple9@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Red1@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Red1@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Red1@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed1.imageset/Red1@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed1.imageset/Red1@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed1.imageset/Red1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed1.imageset/Red1@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed1.imageset/Red1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed1.imageset/Red1@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed10.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Red10@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Red10@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Red10@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed10.imageset/Red10@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed10.imageset/Red10@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed10.imageset/Red10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed10.imageset/Red10@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed10.imageset/Red10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed10.imageset/Red10@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed11.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Red11@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Red11@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Red11@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed11.imageset/Red11@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed11.imageset/Red11@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed11.imageset/Red11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed11.imageset/Red11@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed11.imageset/Red11@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed11.imageset/Red11@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed12.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Red12@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Red12@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Red12@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed12.imageset/Red12@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed12.imageset/Red12@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed12.imageset/Red12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed12.imageset/Red12@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed12.imageset/Red12@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed12.imageset/Red12@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed13.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Red13@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Red13@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Red13@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed13.imageset/Red13@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed13.imageset/Red13@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed13.imageset/Red13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed13.imageset/Red13@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed13.imageset/Red13@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed13.imageset/Red13@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed14.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Red14@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Red14@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Red14@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed14.imageset/Red14@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed14.imageset/Red14@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed14.imageset/Red14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed14.imageset/Red14@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed14.imageset/Red14@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed14.imageset/Red14@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed15.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Red15@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Red15@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Red15@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed15.imageset/Red15@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed15.imageset/Red15@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed15.imageset/Red15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed15.imageset/Red15@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed15.imageset/Red15@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed15.imageset/Red15@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Red2@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Red2@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Red2@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed2.imageset/Red2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed2.imageset/Red2@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed2.imageset/Red2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed2.imageset/Red2@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed2.imageset/Red2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed2.imageset/Red2@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Red3@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Red3@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Red3@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed3.imageset/Red3@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed3.imageset/Red3@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed3.imageset/Red3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed3.imageset/Red3@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed3.imageset/Red3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed3.imageset/Red3@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "red4@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "red4@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "red4@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed4.imageset/red4@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed4.imageset/red4@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed4.imageset/red4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed4.imageset/red4@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed4.imageset/red4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed4.imageset/red4@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "red5@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "red5@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "red5@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed5.imageset/red5@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed5.imageset/red5@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed5.imageset/red5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed5.imageset/red5@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed5.imageset/red5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed5.imageset/red5@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed6.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "red6@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "red6@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "red6@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed6.imageset/red6@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed6.imageset/red6@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed6.imageset/red6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed6.imageset/red6@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed6.imageset/red6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed6.imageset/red6@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "red8@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "red8@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "red8@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed7.imageset/red8@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed7.imageset/red8@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed7.imageset/red8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed7.imageset/red8@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed7.imageset/red8@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed7.imageset/red8@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed8.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "red7@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "red7@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "red7@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed8.imageset/red7@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed8.imageset/red7@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed8.imageset/red7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed8.imageset/red7@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed8.imageset/red7@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed8.imageset/red7@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed9.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "red9@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "red9@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "red9@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed9.imageset/red9@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed9.imageset/red9@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed9.imageset/red9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed9.imageset/red9@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed9.imageset/red9@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/RedFace/FaceRed9.imageset/red9@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow1.imageset/Yellow1@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow1.imageset/Yellow1@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow1.imageset/Yellow1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow1.imageset/Yellow1@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow1.imageset/Yellow1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow1.imageset/Yellow1@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow10.imageset/Yellow10@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow10.imageset/Yellow10@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow10.imageset/Yellow10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow10.imageset/Yellow10@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow10.imageset/Yellow10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow10.imageset/Yellow10@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow11.imageset/Yellow11@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow11.imageset/Yellow11@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow11.imageset/Yellow11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow11.imageset/Yellow11@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow11.imageset/Yellow11@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow11.imageset/Yellow11@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow12.imageset/Yellow12@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow12.imageset/Yellow12@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow12.imageset/Yellow12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow12.imageset/Yellow12@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow12.imageset/Yellow12@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow12.imageset/Yellow12@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow13.imageset/Yellow13@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow13.imageset/Yellow13@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow13.imageset/Yellow13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow13.imageset/Yellow13@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow13.imageset/Yellow13@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow13.imageset/Yellow13@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow14.imageset/Yellow14@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow14.imageset/Yellow14@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow14.imageset/Yellow14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow14.imageset/Yellow14@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow14.imageset/Yellow14@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow14.imageset/Yellow14@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow15.imageset/Yellow15@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow15.imageset/Yellow15@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow15.imageset/Yellow15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow15.imageset/Yellow15@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow15.imageset/Yellow15@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow15.imageset/Yellow15@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow2.imageset/Yellow2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow2.imageset/Yellow2@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow2.imageset/Yellow2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow2.imageset/Yellow2@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow2.imageset/Yellow2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow2.imageset/Yellow2@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow3.imageset/Yellow3@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow3.imageset/Yellow3@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow3.imageset/Yellow3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow3.imageset/Yellow3@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow3.imageset/Yellow3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow3.imageset/Yellow3@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow4.imageset/Yellow4@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow4.imageset/Yellow4@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow4.imageset/Yellow4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow4.imageset/Yellow4@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow4.imageset/Yellow4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow4.imageset/Yellow4@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow5.imageset/Yellow5@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow5.imageset/Yellow5@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow5.imageset/Yellow5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow5.imageset/Yellow5@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow5.imageset/Yellow5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow5.imageset/Yellow5@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow6.imageset/Yellow6@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow6.imageset/Yellow6@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow6.imageset/Yellow6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow6.imageset/Yellow6@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow6.imageset/Yellow6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow6.imageset/Yellow6@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow7.imageset/Yellow7@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow7.imageset/Yellow7@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow7.imageset/Yellow7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow7.imageset/Yellow7@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow7.imageset/Yellow7@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow7.imageset/Yellow7@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow8.imageset/Yellow8@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow8.imageset/Yellow8@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow8.imageset/Yellow8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow8.imageset/Yellow8@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow8.imageset/Yellow8@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow8.imageset/Yellow8@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow9.imageset/Yellow9@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow9.imageset/Yellow9@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow9.imageset/Yellow9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow9.imageset/Yellow9@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow9.imageset/Yellow9@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Face/YellowFace/FaceYellow9.imageset/Yellow9@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FaceBlue.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "FaceBlue@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "FaceBlue@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "FaceBlue@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FaceBlue.imageset/FaceBlue@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FaceBlue.imageset/FaceBlue@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FaceBlue.imageset/FaceBlue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FaceBlue.imageset/FaceBlue@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FaceBlue.imageset/FaceBlue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FaceBlue.imageset/FaceBlue@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FaceGreen.imageset/FaceGreen@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FaceGreen.imageset/FaceGreen@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FaceGreen.imageset/FaceGreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FaceGreen.imageset/FaceGreen@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FaceGreen.imageset/FaceGreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FaceGreen.imageset/FaceGreen@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FacePink.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "FacePink@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "FacePink@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "FacePink@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FacePink.imageset/FacePink@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FacePink.imageset/FacePink@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FacePink.imageset/FacePink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FacePink.imageset/FacePink@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FacePink.imageset/FacePink@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FacePink.imageset/FacePink@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FacePurple.imageset/FacePurple@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FacePurple.imageset/FacePurple@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FacePurple.imageset/FacePurple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FacePurple.imageset/FacePurple@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FacePurple.imageset/FacePurple@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FacePurple.imageset/FacePurple@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FaceRed.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "FaceRed@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "FaceRed@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "FaceRed@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FaceRed.imageset/FaceRed@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FaceRed.imageset/FaceRed@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FaceRed.imageset/FaceRed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FaceRed.imageset/FaceRed@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FaceRed.imageset/FaceRed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FaceRed.imageset/FaceRed@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FaceYellow.imageset/FaceYellow@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FaceYellow.imageset/FaceYellow@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FaceYellow.imageset/FaceYellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FaceYellow.imageset/FaceYellow@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/FaceColor/FaceYellow.imageset/FaceYellow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/FaceColor/FaceYellow.imageset/FaceYellow@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Culture.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Culture@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Culture@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Culture@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Culture.imageset/Culture@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Culture.imageset/Culture@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Culture.imageset/Culture@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Culture.imageset/Culture@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Culture.imageset/Culture@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Culture.imageset/Culture@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Etc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Etc@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Etc@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Etc@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Etc.imageset/Etc@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Etc.imageset/Etc@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Etc.imageset/Etc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Etc.imageset/Etc@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Etc.imageset/Etc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Etc.imageset/Etc@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/ExtraCurricularActivities.imageset/ExtraCurricularActivities@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/ExtraCurricularActivities.imageset/ExtraCurricularActivities@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/ExtraCurricularActivities.imageset/ExtraCurricularActivities@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/ExtraCurricularActivities.imageset/ExtraCurricularActivities@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/ExtraCurricularActivities.imageset/ExtraCurricularActivities@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/ExtraCurricularActivities.imageset/ExtraCurricularActivities@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Healing.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Healing@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Healing@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Healing@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Healing.imageset/Healing@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Healing.imageset/Healing@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Healing.imageset/Healing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Healing.imageset/Healing@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Healing.imageset/Healing@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Healing.imageset/Healing@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Hobby.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Hobby@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Hobby@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Hobby@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Hobby.imageset/Hobby@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Hobby.imageset/Hobby@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Hobby.imageset/Hobby@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Hobby.imageset/Hobby@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Hobby.imageset/Hobby@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Hobby.imageset/Hobby@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Meal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Meal@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Meal@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Meal@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Meal.imageset/Meal@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Meal.imageset/Meal@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Meal.imageset/Meal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Meal.imageset/Meal@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Meal.imageset/Meal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Meal.imageset/Meal@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Shopping.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Shopping@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Shopping@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Shopping@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Shopping.imageset/Shopping@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Shopping.imageset/Shopping@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Shopping.imageset/Shopping@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Shopping.imageset/Shopping@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Shopping.imageset/Shopping@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Shopping.imageset/Shopping@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Sport.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Sport@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Sport@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Sport@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Sport.imageset/Sport@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Sport.imageset/Sport@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Sport.imageset/Sport@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Sport.imageset/Sport@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Sport.imageset/Sport@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Sport.imageset/Sport@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Study.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Study@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Study@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Study@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Study.imageset/Study@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Study.imageset/Study@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Study.imageset/Study@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Study.imageset/Study@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Place/Study.imageset/Study@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Place/Study.imageset/Study@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Plus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Plus@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Plus@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Plus@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Plus.imageset/Plus@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Plus.imageset/Plus@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Plus.imageset/Plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Plus.imageset/Plus@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/Plus.imageset/Plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/Plus.imageset/Plus@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/PlusBuddy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "PlusBuddy@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "PlusBuddy@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "PlusBuddy@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/PlusBuddy.imageset/PlusBuddy@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/PlusBuddy.imageset/PlusBuddy@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/PlusBuddy.imageset/PlusBuddy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/PlusBuddy.imageset/PlusBuddy@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/PlusBuddy.imageset/PlusBuddy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/PlusBuddy.imageset/PlusBuddy@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Calendar.imageset/Calendar@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/TabBar/Calendar.imageset/Calendar@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Calendar.imageset/Calendar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/TabBar/Calendar.imageset/Calendar@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Calendar.imageset/Calendar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/TabBar/Calendar.imageset/Calendar@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Calendar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Calendar@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Calendar@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Calendar@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Chart.imageset/Chart@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/TabBar/Chart.imageset/Chart@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Chart.imageset/Chart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/TabBar/Chart.imageset/Chart@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Chart.imageset/Chart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/TabBar/Chart.imageset/Chart@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Chart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Chart@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Chart@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Chart@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Gathering.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Gathering@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Gathering@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Gathering@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Gathering.imageset/Gathering@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/TabBar/Gathering.imageset/Gathering@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Gathering.imageset/Gathering@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/TabBar/Gathering.imageset/Gathering@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Gathering.imageset/Gathering@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/TabBar/Gathering.imageset/Gathering@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/List.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "List@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "List@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "List@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/List.imageset/List@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/TabBar/List.imageset/List@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/List.imageset/List@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/TabBar/List.imageset/List@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/List.imageset/List@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/TabBar/List.imageset/List@3x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Setting.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Setting@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Setting@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Setting@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Setting.imageset/Setting@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/TabBar/Setting.imageset/Setting@1x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Setting.imageset/Setting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/TabBar/Setting.imageset/Setting@2x.png -------------------------------------------------------------------------------- /WithBuddy/Application/Assets.xcassets/TabBar/Setting.imageset/Setting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Application/Assets.xcassets/TabBar/Setting.imageset/Setting@3x.png -------------------------------------------------------------------------------- /WithBuddy/Domain/Entities/CheckableInfo.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CheckableInfo.swift 3 | // WithBuddy 4 | // 5 | // Created by Inwoo Park on 2021/11/18. 6 | // 7 | 8 | import Foundation 9 | 10 | struct CheckableInfo: Hashable { 11 | 12 | var engDescription: String 13 | var korDescription: String 14 | var check: Bool 15 | 16 | } 17 | -------------------------------------------------------------------------------- /WithBuddy/Domain/Entities/Face.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Face.swift 3 | // WithBuddy 4 | // 5 | // Created by Inwoo Park on 2021/11/18. 6 | // 7 | 8 | import Foundation 9 | 10 | struct Face: CustomStringConvertible { 11 | 12 | var color: FaceColor 13 | var number: Int 14 | var description: String { 15 | return "\(self.color.description)\(self.number)" 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /WithBuddy/Presentation/Common/Extension/Int+Extension.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Int+Extension.swift 3 | // WithBuddy 4 | // 5 | // Created by 박정아 on 2021/11/21. 6 | // 7 | 8 | import Foundation 9 | 10 | extension Int { 11 | 12 | static let minFaceNum = 1 13 | static let maxFaceNum = 15 14 | static let purposeChartNum = 4 15 | static let noGatheringStatus = 1 16 | static let fullGatheringStatus = 0 17 | 18 | static let maxDayOfMonth = 42 19 | static let numOfWeek = 7 20 | 21 | } 22 | -------------------------------------------------------------------------------- /WithBuddy/Presentation/Common/View/BuddyImageView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BuddyImageView.swift 3 | // WithBuddy 4 | // 5 | // Created by 이나정 on 2021/11/23. 6 | // 7 | 8 | import UIKit 9 | 10 | final class BuddyView: UIImageView { 11 | 12 | override var collisionBoundsType: UIDynamicItemCollisionBoundsType { 13 | return .ellipse 14 | } 15 | 16 | override func layoutSubviews() { 17 | super.layoutSubviews() 18 | self.layer.cornerRadius = bounds.height * 0.5 19 | self.layer.masksToBounds = true 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /WithBuddy/Resource/Fonts/Cafe24Ssurround.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Resource/Fonts/Cafe24Ssurround.ttf -------------------------------------------------------------------------------- /WithBuddy/Resource/Fonts/Cafe24SsurroundAir.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Resource/Fonts/Cafe24SsurroundAir.ttf -------------------------------------------------------------------------------- /WithBuddy/Resource/defaultImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddy/Resource/defaultImage.png -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetPink.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "WidgetPink@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "WidgetPink@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "WidgetPink@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetPink.imageset/WidgetPink@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddyWidget/Assets.xcassets/WidgetPink.imageset/WidgetPink@1x.png -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetPink.imageset/WidgetPink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddyWidget/Assets.xcassets/WidgetPink.imageset/WidgetPink@2x.png -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetPink.imageset/WidgetPink@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddyWidget/Assets.xcassets/WidgetPink.imageset/WidgetPink@3x.png -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetPurple.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "WidgetPurple@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "WidgetPurple@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "WidgetPurple@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetPurple.imageset/WidgetPurple@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddyWidget/Assets.xcassets/WidgetPurple.imageset/WidgetPurple@1x.png -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetPurple.imageset/WidgetPurple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddyWidget/Assets.xcassets/WidgetPurple.imageset/WidgetPurple@2x.png -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetPurple.imageset/WidgetPurple@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddyWidget/Assets.xcassets/WidgetPurple.imageset/WidgetPurple@3x.png -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetRed.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "WidgetRed@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "WidgetRed@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "WidgetRed@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetRed.imageset/WidgetRed@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddyWidget/Assets.xcassets/WidgetRed.imageset/WidgetRed@1x.png -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetRed.imageset/WidgetRed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddyWidget/Assets.xcassets/WidgetRed.imageset/WidgetRed@2x.png -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetRed.imageset/WidgetRed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddyWidget/Assets.xcassets/WidgetRed.imageset/WidgetRed@3x.png -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetYellow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "WidgetYellow@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "WidgetYellow@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "WidgetYellow@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetYellow.imageset/WidgetYellow@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddyWidget/Assets.xcassets/WidgetYellow.imageset/WidgetYellow@1x.png -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetYellow.imageset/WidgetYellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddyWidget/Assets.xcassets/WidgetYellow.imageset/WidgetYellow@2x.png -------------------------------------------------------------------------------- /WithBuddyWidget/Assets.xcassets/WidgetYellow.imageset/WidgetYellow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostcampwm-2021/iOS08-WithBuddy/439d9ffde69fbd700397f1233e9bb45c1ca1680d/WithBuddyWidget/Assets.xcassets/WidgetYellow.imageset/WidgetYellow@3x.png -------------------------------------------------------------------------------- /WithBuddyWidget/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSExtension 6 | 7 | NSExtensionPointIdentifier 8 | com.apple.widgetkit-extension 9 | 10 | 11 | 12 | --------------------------------------------------------------------------------