diff --git a/assets/Scripts/chat18x/manager/ConfigManager.ts b/assets/Scripts/chat18x/manager/ConfigManager.ts index 8e4804fd..779ce284 100644 --- a/assets/Scripts/chat18x/manager/ConfigManager.ts +++ b/assets/Scripts/chat18x/manager/ConfigManager.ts @@ -1,9 +1,4 @@ -import { - resources, - BufferAsset, - assetManager, - AssetManager, -} from "cc"; +import { resources, BufferAsset, assetManager, AssetManager } from "cc"; import * as cfg from "../../schema/schema"; import ByteBuf from "db://assets/Scripts/luban/ByteBuf"; import { BaseConfig } from "../config/BaseConfig"; @@ -18,12 +13,12 @@ import { AiCharacterConfig } from "../config/AiCharacterConfig"; * 集中定义数据ID,避免写错字符串 */ export enum ConfigId { - Theme = "theme", // 主题配置 - Purchase = "purchase", // 商城配置 - Global = "global", // 全局配置 - Girl = "girl", // 技师的简要配置 - GirlDetail = "girlDetail", // 技师的详细配置 - AiCharacter = "aiCharacter", // 技师的详细配置 + Theme = "theme", // 主题配置 + Purchase = "purchase", // 商城配置 + Global = "global", // 全局配置 + Girl = "girl", // 技师的简要配置 + GirlDetail = "girlDetail", // 技师的详细配置 + AiCharacter = "aiCharacter", // 技师的详细配置 } /** 构造器类型 */ @@ -43,9 +38,9 @@ export class ConfigManager { public static jsonFileNames: string[] = []; // 数据实例缓存 - private _dataMap: Map = new Map(); + private _dataMap: Map = new Map(); // 数据ID到构造器的映射 - private _config: Map = new Map(); + private _config: Map = new Map(); private constructor() {} @@ -100,9 +95,6 @@ export class ConfigManager { Promise.all(promises).then((values) => { console.log("静态配置加载完成"); ConfigManager.tables = new cfg.Tables(ConfigManager.I.getFileData); - for (let item of ConfigManager.tables.TbGirls.getDataList()) { - console.log(item); - } }); } private getFileData(fileName: string): ByteBuf { @@ -129,17 +121,24 @@ export class ConfigManager { /** * 注册一个数据ID及其对应的构造器 */ - private register(configId: string, ctor: DataCtor): void { + private register( + configId: string, + ctor: DataCtor + ): void { if (this._config.has(configId)) { - console.warn(`[ConfigManager] 重复注册数据ID: ${configId},将覆盖旧构造器`); + console.warn( + `[ConfigManager] 重复注册数据ID: ${configId},将覆盖旧构造器` + ); } this._config.set(configId, ctor); - } + } /** * 获取数据(已存在则直接返回;否则按配置自动实例化并缓存) */ - public getDataById(configId: string): T | null { + public getDataById( + configId: string + ): T | null { // 先从缓存取 const cached = this._dataMap.get(configId) as T | undefined; if (cached) return cached; @@ -157,7 +156,7 @@ export class ConfigManager { instance.init?.(configId); this._dataMap.set(configId, instance); return instance; - } + } /** * 移除数据 diff --git a/assets/Scripts/chat18x/ui/panels/ChatPanel.ts b/assets/Scripts/chat18x/ui/panels/ChatPanel.ts index 90f37632..bbcdb417 100644 --- a/assets/Scripts/chat18x/ui/panels/ChatPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/ChatPanel.ts @@ -41,8 +41,8 @@ export class ChatPanel extends li_BaseView implements IChatPanelCallback { @property(Label) girlName: Label = null; - @property(Sprite) - girlImg: Sprite = null; + // @property(Sprite) + // girlImg: Sprite = null; @property(VideoPlayer) girlVideo: VideoPlayer = null; @@ -188,19 +188,19 @@ export class ChatPanel extends li_BaseView implements IChatPanelCallback { this.nameKey = data.nameKey; this.girlName.string = LanguageUtils.getText(data.nameKey); - ResManager.I.changeBundleSpriteFrame( - this.girlImg, - data.avatarPath, - "Chat18x", - () => { - let sizeTran = this.girlImg.node.parent.getComponent(UITransform); - Utils.adjustBgPixelRatioToSize( - sizeTran.contentSize, - this.girlImg.node, - 2 - ); - } - ); + // ResManager.I.changeBundleSpriteFrame( + // this.girlImg, + // data.avatarPath, + // "Girls", + // () => { + // let sizeTran = this.girlImg.node.parent.getComponent(UITransform); + // Utils.adjustBgPixelRatioToSize( + // sizeTran.contentSize, + // this.girlImg.node, + // 2 + // ); + // } + // ); // 通过ChatController获取商业视频数据 const chatModel = this.chatController.getChatModel(); @@ -238,7 +238,7 @@ export class ChatPanel extends li_BaseView implements IChatPanelCallback { ResManager.I.changeBundleVideo( this.girlVideo, initialVideo.path, - "Chat18x" + "Girls" ); // Also immediately try to adjust scale (in case already loaded) this.adjustVideoScale(); @@ -335,7 +335,7 @@ export class ChatPanel extends li_BaseView implements IChatPanelCallback { ResManager.I.changeBundleVideo( this.girlVideo, matchingVideo.path, - "Chat18x" + "Girls" ); // Update current emotion state @@ -401,7 +401,6 @@ export class ChatPanel extends li_BaseView implements IChatPanelCallback { } protected onEnable(): void { if (!this.manager) this.manager = DialogManager.getInstance(); - } public async OnClickSend() { @@ -451,7 +450,7 @@ export class ChatPanel extends li_BaseView implements IChatPanelCallback { console.error("Chat error:", error); // 出错时加载动画会被自动移除,可以在这里显示错误提示给用户 } - + onChatLimitReached(): void { this.payToTalkPanel.show(); } diff --git a/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts b/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts index 126f03f9..99444718 100644 --- a/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts @@ -19,7 +19,7 @@ import { SimpleToggle } from "../components/SimpleToggle"; import { DataManager, DataId } from "../../data/DataManager"; import { GirlData } from "../../data/GirlData"; import { GirlService } from "db://assets/Scripts/chat18x/network/services/GirlService"; -import proto from 'db://assets/Scripts/proto/proto.pb.js'; +import proto from "db://assets/Scripts/proto/proto.pb.js"; const { ccclass, property } = _decorator; @@ -76,6 +76,7 @@ export class GirlDetailPanel extends li_BaseView { desc += tags[i]; } this.tags.string = desc; + this.desc.string = LanguageUtils.getText(this.descKey); }); this.imgToggle.callback = this.bindImgToggle.bind(this); @@ -134,6 +135,7 @@ export class GirlDetailPanel extends li_BaseView { } nameKey: string; tagKey: string; + descKey: string; category: number; async refresh(index: number) { const girlData = DataManager.I.getDataById(DataId.Girl); @@ -148,14 +150,15 @@ export class GirlDetailPanel extends li_BaseView { girlData.setGirlDetailData(this.category.toString(), res.data); // 根据数据,刷新界面 this.nameKey = girlData.getGrilName(this.category.toString(), this.id); - this.girlName.string = LanguageUtils.getText(this.nameKey); - this.desc.string = girlData.getGrilDesc(this.category.toString(), this.id); + this.girlName.string = LanguageUtils.getText(this.nameKey); + this.descKey = girlData.getGrilDesc(this.category.toString(), this.id); + this.desc.string = LanguageUtils.getText(this.descKey); let desc = ""; this.tagKey = girlData.getGrilTagKey(this.category.toString(), this.id); const tags = LanguageUtils.getText(this.tagKey).split("|"); for (let i = 0; i < tags.length; i++) { - if (i != 0) desc += "|"; + if (i != 0) desc += "\n"; desc += tags[i]; } this.tags.string = desc; @@ -165,38 +168,61 @@ export class GirlDetailPanel extends li_BaseView { let age = girlData.getGrilAge(this.category.toString(), this.id); this.descAge.string = LanguageUtils.getText("girldetailpanel.age") + age.toString(); - - const firstPath = girlData.getFirstGrilVideoPath(this.category.toString(), this.id); - ResManager.I.changeBundleVideo( - this.avatarVideo, - firstPath, - "Chat18x" - ); - let resIds = girlData.getAllDisplayGrilPhotoId(this.category.toString(), this.id); + const firstPath = girlData.getFirstGrilVideoPath( + this.category.toString(), + this.id + ); + ResManager.I.changeBundleVideo(this.avatarVideo, firstPath, "Girls"); + + let resIds = girlData.getAllDisplayGrilPhotoId( + this.category.toString(), + this.id + ); // 也立即尝试调整(以防已经加载完成) this.adjustVideoScale(); - this.refreshImgs(proto.cs.EnmResType.ERT_Image, this.category, this.id, resIds); - } + this.refreshImgs( + proto.cs.EnmResType.ERT_Image, + this.category, + this.id, + resIds + ); + } } bindImgToggle() { const girlData = DataManager.I.getDataById(DataId.Girl); - let resIds = girlData.getAllDisplayGrilPhotoId(this.category.toString(), this.id); - this.refreshImgs(proto.cs.EnmResType.ERT_Image, this.category, this.id, resIds); + let resIds = girlData.getAllDisplayGrilPhotoId( + this.category.toString(), + this.id + ); + this.refreshImgs( + proto.cs.EnmResType.ERT_Image, + this.category, + this.id, + resIds + ); } bindVideoToggle() { const girlData = DataManager.I.getDataById(DataId.Girl); - let resIds = girlData.getAllDisplayGrilVideoId(this.category.toString(), this.id); - this.refreshImgs(proto.cs.EnmResType.ERT_Video, this.category, this.id, resIds); + let resIds = girlData.getAllDisplayGrilVideoId( + this.category.toString(), + this.id + ); + this.refreshImgs( + proto.cs.EnmResType.ERT_Video, + this.category, + this.id, + resIds + ); } refreshImgs( type: proto.cs.EnmResType, category: number, id: number, - resIds: number[] + resIds: number[] ) { for (let i = this.imgsLayout.children.length - 1; i >= 0; i--) { this.imgsLayout.children[i].destroy(); diff --git a/assets/Scripts/chat18x/ui/panels/ShowPanel.ts b/assets/Scripts/chat18x/ui/panels/ShowPanel.ts index fe7f2f50..062c8399 100644 --- a/assets/Scripts/chat18x/ui/panels/ShowPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/ShowPanel.ts @@ -66,11 +66,11 @@ export class ShowPanel extends li_BaseView { show(path: string) { if (this.isImg) { - ResManager.I.changeBundleSpriteFrame(this.image, path, "Chat18x", () => { + ResManager.I.changeBundleSpriteFrame(this.image, path, "Girls", () => { Utils.adjustBgPixelRatio(this.image.node, 3); }); } else { - ResManager.I.changeBundleVideo(this.videoPlayer, path, "Chat18x", () => { + ResManager.I.changeBundleVideo(this.videoPlayer, path, "Girls", () => { this.adjustVideoScale(); }); } diff --git a/assets/Scripts/chat18x/uiitems/DetailImageItem.ts b/assets/Scripts/chat18x/uiitems/DetailImageItem.ts index 98140091..d114b843 100644 --- a/assets/Scripts/chat18x/uiitems/DetailImageItem.ts +++ b/assets/Scripts/chat18x/uiitems/DetailImageItem.ts @@ -46,11 +46,12 @@ export class DetailImageItem extends Component { resId: number; type: proto.cs.EnmResType; + test_resID: Node; onLoad() { GButton.BandClick(this.node, this.onClickThis, this); this.uitransform = this.node.getComponent(UITransform); } - + isVisible: boolean; onClickThis() { let data = { url: this.url, @@ -63,15 +64,8 @@ export class DetailImageItem extends Component { // 数据 const girlData = DataManager.I.getDataById(DataId.Girl); // 是否可见,不可见代表需要解锁 - let isVisible = false; - if (this.type === proto.cs.EnmResType.ERT_Image) { - // 图片 - isVisible = girlData.isGirlPhotoVisible(this.category.toString(), this.girlId, this.resId); - } else if (this.type === proto.cs.EnmResType.ERT_Video) { - // 视频 - isVisible = girlData.isGirlVideoVisible(this.category.toString(), this.girlId, this.resId); - } - if (isVisible) { + + if (this.isVisible) { if (this.url) { ViewManager.I.openBundlesView("ShowPanel", data); this.base.setVideEnable(false); @@ -149,51 +143,70 @@ export class DetailImageItem extends Component { this.resId = resId; this.question.active = true; // 显示问号,表示加载中 + this.test_resID = this.node.getChildByName("resID"); + + this.test_resID.getComponent(Label).string = + this.girlId.toString() + this.resId; + const girlData = DataManager.I.getDataById(DataId.Girl); let imgPath = ""; this.video.enabled = type === proto.cs.EnmResType.ERT_Video; this.priceFrame.active = type === proto.cs.EnmResType.ERT_Video; let price = 0; // 是否可见,不可见代表需要解锁 - let isVisible = false; + if (this.type === proto.cs.EnmResType.ERT_Image) { + // 图片 + this.isVisible = girlData.isGirlPhotoVisible( + this.category.toString(), + this.girlId, + this.resId + ); + } else if (this.type === proto.cs.EnmResType.ERT_Video) { + // 视频 + this.isVisible = girlData.isGirlVideoVisible( + this.category.toString(), + this.girlId, + this.resId + ); + } if (type === proto.cs.EnmResType.ERT_Image) { // 图片 - price = girlData.getGrilPhotoOriginalPrice(this.category.toString(), this.girlId, this.resId); + price = girlData.getGrilPhotoOriginalPrice( + this.category.toString(), + this.girlId, + this.resId + ); this.url = girlData.getGrilPhotoPic( this.category.toString(), this.girlId, this.resId ); - imgPath = this.url; this.isImage = true; - isVisible = girlData.isGirlPhotoVisible(this.category.toString(), this.girlId, this.resId); } else if (type === proto.cs.EnmResType.ERT_Video) { // 视频 - price = girlData.getGrilVideoOriginalPrice(this.category.toString(), this.girlId, this.resId); + price = girlData.getGrilVideoOriginalPrice( + this.category.toString(), + this.girlId, + this.resId + ); this.isImage = false; this.url = girlData.getGrilVideoPath( this.category.toString(), this.girlId, this.resId ); - this.url = girlData.getGrilVideoPath( - this.category.toString(), - this.girlId, - this.resId - ); - - isVisible = girlData.isGirlVideoVisible(this.category.toString(), this.girlId, this.resId); - if (isVisible) { - imgPath = this.url + "_thumbnail_blur"; - } else { - imgPath = this.url + "_thumbnail"; - } - this.priceFrame.active = price > 0; - - this.videoPrice.string = price.toString(); } - ResManager.I.changeBundleSpriteFrame(this.img, imgPath, "Chat18x", () => { + if (this.isVisible) { + imgPath = this.url + "_thumbnail"; + } else { + imgPath = this.url + "_thumbnail_blur"; + } + this.priceFrame.active = price > 0; + + this.videoPrice.string = price.toString(); + + ResManager.I.changeBundleSpriteFrame(this.img, imgPath, "Girls", () => { this.question.active = false; // 图片加载成功后隐藏问号 this.scaleToFillItem(); }); @@ -202,7 +215,7 @@ export class DetailImageItem extends Component { refreshVideoBuy(success: boolean) { if (success) { const imgPath = this.url + "_thumbnail"; - ResManager.I.changeBundleSpriteFrame(this.img, imgPath, "Chat18x", () => { + ResManager.I.changeBundleSpriteFrame(this.img, imgPath, "Girls", () => { this.question.active = false; // 图片加载成功后隐藏问号 this.scaleToFillItem(); }); diff --git a/assets/Scripts/chat18x/uiitems/GirlListItem.ts b/assets/Scripts/chat18x/uiitems/GirlListItem.ts index bcf8e4dc..bb297100 100644 --- a/assets/Scripts/chat18x/uiitems/GirlListItem.ts +++ b/assets/Scripts/chat18x/uiitems/GirlListItem.ts @@ -107,24 +107,23 @@ export class GirlListItem extends Component { this.id ); - if(isRelease) - { + if (isRelease) { this.price.node.active = false; - this.freeNode.active =false; + this.freeNode.active = false; this.starParent.active = true; this.chatIcon.active = true; this.unreleaseCover.active = false; - }else{ + } else { this.unreleaseCover.active = true; this.chatIcon.active = false; - this.starParent.active = false; - if(priceType == PriceType.free) - { - this.price.node.active = false; - this.freeNode.active = true; - }else{ + if (priceType == PriceType.free) { + this.price.node.active = false; + this.freeNode.active = true; + this.starParent.active = true; + } else { this.price.node.active = true; this.freeNode.active = false; + this.starParent.active = false; } } @@ -135,8 +134,8 @@ export class GirlListItem extends Component { this.category.toString(), this.id ); - - listAvatarPath = listAvatarPath.replace("Avatar","avatar");//临时 + + listAvatarPath = listAvatarPath.replace("Avatar", "avatar"); //临时 ResManager.I.changeBundleSpriteFrame( this.avatar, listAvatarPath, @@ -152,13 +151,13 @@ export class GirlListItem extends Component { ); //虚假好感度 - const ratio = randomRangeInt(0, 5); + const star = girlData.getStar(this.category.toString(), this.id); // this.starParent.active = ratio != 0; // this.chatIcon.active = ratio != 0; // this.price.node.active = ratio == 0; for (let i = 0; i < this.stars.length; i++) { const element = this.stars[i]; - if (ratio > i) { + if (star > i) { ResManager.I.changeResourceSpriteFrame(element, "ui/common/heart"); } else { ResManager.I.changeResourceSpriteFrame( diff --git a/assets/bundles/Chat18x/GirlDetailPanel.prefab b/assets/bundles/Chat18x/GirlDetailPanel.prefab index 42cf52b0..6e1f238c 100644 --- a/assets/bundles/Chat18x/GirlDetailPanel.prefab +++ b/assets/bundles/Chat18x/GirlDetailPanel.prefab @@ -24,21 +24,21 @@ ], "_active": true, "_components": [ - { - "__id__": 383 - }, - { - "__id__": 385 - }, - { - "__id__": 387 - }, { "__id__": 389 + }, + { + "__id__": 391 + }, + { + "__id__": 393 + }, + { + "__id__": 395 } ], "_prefab": { - "__id__": 391 + "__id__": 397 }, "_lpos": { "__type__": "cc.Vec3", @@ -82,23 +82,23 @@ "__id__": 3 }, { - "__id__": 365 + "__id__": 371 } ], "_active": true, "_components": [ { - "__id__": 376 + "__id__": 382 }, { - "__id__": 378 + "__id__": 384 }, { - "__id__": 380 + "__id__": 386 } ], "_prefab": { - "__id__": 382 + "__id__": 388 }, "_lpos": { "__type__": "cc.Vec3", @@ -148,17 +148,17 @@ "_active": true, "_components": [ { - "__id__": 358 + "__id__": 364 }, { - "__id__": 360 + "__id__": 366 }, { - "__id__": 362 + "__id__": 368 } ], "_prefab": { - "__id__": 364 + "__id__": 370 }, "_lpos": { "__type__": "cc.Vec3", @@ -3171,7 +3171,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": -474.81600000000003, - "y": -62.07100000000004, + "y": -65.02100000000004, "z": 0 }, "_lrot": { @@ -3212,7 +3212,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 363.07131300000003, - "height": 172.774 + "height": 120.574 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3247,7 +3247,7 @@ "b": 255, "a": 255 }, - "_string": "Tag:18 years old|young", + "_string": "18 years old\nyoung", "_horizontalAlign": 0, "_verticalAlign": 1, "_actualFontSize": 41, @@ -3309,7 +3309,7 @@ "_target": null, "_left": 39.68399999999997, "_right": 84.8, - "_top": 200.18400000000003, + "_top": 229.23400000000004, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -7106,28 +7106,31 @@ }, { "__id__": 327 + }, + { + "__id__": 347 } ], "_active": true, "_components": [ - { - "__id__": 347 - }, - { - "__id__": 349 - }, - { - "__id__": 351 - }, { "__id__": 353 }, { "__id__": 355 + }, + { + "__id__": 357 + }, + { + "__id__": 359 + }, + { + "__id__": 361 } ], "_prefab": { - "__id__": 357 + "__id__": 363 }, "_lpos": { "__type__": "cc.Vec3", @@ -8040,6 +8043,165 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "resID", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 308 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 348 + }, + { + "__id__": 350 + } + ], + "_prefab": { + "__id__": 352 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 347 + }, + "_enabled": true, + "__prefab": { + "__id__": 349 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 79.19427490234375, + "height": 54.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bcBKPuun9BloOABIN9mapU" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 347 + }, + "_enabled": true, + "__prefab": { + "__id__": 351 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "label", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 35.6, + "_fontSize": 35.6, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "afOpupHGJCM6HANoU8k3zT" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cdDIgyOJxGjK+HeIfe4Zal", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -8050,7 +8212,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 348 + "__id__": 354 }, "_contentSize": { "__type__": "cc.Size", @@ -8078,7 +8240,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 350 + "__id__": 356 }, "clickEvents": [], "_interactable": true, @@ -8136,7 +8298,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 352 + "__id__": 358 }, "img": { "__id__": 312 @@ -8169,7 +8331,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 354 + "__id__": 360 }, "_type": 0, "_inverted": false, @@ -8191,7 +8353,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 356 + "__id__": 362 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8250,7 +8412,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 359 + "__id__": 365 }, "_contentSize": { "__type__": "cc.Size", @@ -8278,7 +8440,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 361 + "__id__": 367 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8323,7 +8485,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 363 + "__id__": 369 }, "_alignFlags": 45, "_target": null, @@ -8374,20 +8536,20 @@ "_active": true, "_components": [ { - "__id__": 366 + "__id__": 372 }, { - "__id__": 368 + "__id__": 374 }, { - "__id__": 370 + "__id__": 376 }, { - "__id__": 373 + "__id__": 379 } ], "_prefab": { - "__id__": 375 + "__id__": 381 }, "_lpos": { "__type__": "cc.Vec3", @@ -8424,11 +8586,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 365 + "__id__": 371 }, "_enabled": true, "__prefab": { - "__id__": 367 + "__id__": 373 }, "_contentSize": { "__type__": "cc.Size", @@ -8452,11 +8614,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 365 + "__id__": 371 }, "_enabled": true, "__prefab": { - "__id__": 369 + "__id__": 375 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8497,15 +8659,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 365 + "__id__": 371 }, "_enabled": true, "__prefab": { - "__id__": 371 + "__id__": 377 }, "clickEvents": [ { - "__id__": 372 + "__id__": 378 } ], "_interactable": true, @@ -8545,7 +8707,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 365 + "__id__": 371 }, "_id": "" }, @@ -8569,11 +8731,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 365 + "__id__": 371 }, "_enabled": true, "__prefab": { - "__id__": 374 + "__id__": 380 }, "_alignFlags": 9, "_target": null, @@ -8622,7 +8784,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 377 + "__id__": 383 }, "_contentSize": { "__type__": "cc.Size", @@ -8650,7 +8812,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 379 + "__id__": 385 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8695,7 +8857,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 381 + "__id__": 387 }, "_alignFlags": 45, "_target": null, @@ -8744,7 +8906,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 384 + "__id__": 390 }, "_contentSize": { "__type__": "cc.Size", @@ -8772,7 +8934,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 386 + "__id__": 392 }, "_alignFlags": 45, "_target": null, @@ -8808,7 +8970,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 388 + "__id__": 394 }, "_id": "" }, @@ -8826,7 +8988,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 390 + "__id__": 396 }, "m_rootNode": null, "avatarVideo": { @@ -8857,7 +9019,7 @@ "__id__": 102 }, "imgItemInst": { - "__id__": 351 + "__id__": 357 }, "imgsLayout": { "__id__": 275 diff --git a/assets/bundles/Chat18x/GirlListPanel.prefab b/assets/bundles/Chat18x/GirlListPanel.prefab index 43b57fd6..c18966b1 100644 --- a/assets/bundles/Chat18x/GirlListPanel.prefab +++ b/assets/bundles/Chat18x/GirlListPanel.prefab @@ -1654,7 +1654,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 2.484000000000151, + "y": -3.102000000000089, "z": 0 }, "_lrot": { @@ -1695,7 +1695,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 426.796094, - "height": 93.82800000000003 + "height": 49.72800000000001 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1733,8 +1733,8 @@ "_string": "Tag1````|Tag2---", "_horizontalAlign": 0, "_verticalAlign": 1, - "_actualFontSize": 35, - "_fontSize": 34, + "_actualFontSize": 27, + "_fontSize": 26, "_fontFamily": "NotoSans-Regular", "_lineHeight": 0, "_overflow": 2, @@ -1792,8 +1792,8 @@ "_target": null, "_left": 0, "_right": -138.69309400000003, - "_top": 100.60199999999983, - "_bottom": 105.57000000000014, + "_top": 128.23800000000008, + "_bottom": 122.0339999999999, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, diff --git a/assets/bundles/Girls/10027/togame/avatar.meta b/assets/bundles/Chat18x/Image/Girls/10027/avatar.meta similarity index 70% rename from assets/bundles/Girls/10027/togame/avatar.meta rename to assets/bundles/Chat18x/Image/Girls/10027/avatar.meta index df1ce70f..43cc6266 100644 --- a/assets/bundles/Girls/10027/togame/avatar.meta +++ b/assets/bundles/Chat18x/Image/Girls/10027/avatar.meta @@ -2,7 +2,7 @@ "ver": "1.2.0", "importer": "directory", "imported": true, - "uuid": "a7e87423-9faf-437d-8e74-9f057f4363aa", + "uuid": "603ad68d-46b2-4ef1-aa23-657b07ce2a2a", "files": [], "subMetas": {}, "userData": {} diff --git a/assets/bundles/Girls/10027/togame/img.meta b/assets/bundles/Chat18x/Image/Girls/10027/img.meta similarity index 70% rename from assets/bundles/Girls/10027/togame/img.meta rename to assets/bundles/Chat18x/Image/Girls/10027/img.meta index 63387035..9d901e20 100644 --- a/assets/bundles/Girls/10027/togame/img.meta +++ b/assets/bundles/Chat18x/Image/Girls/10027/img.meta @@ -2,7 +2,7 @@ "ver": "1.2.0", "importer": "directory", "imported": true, - "uuid": "19620c51-8f8f-4b56-8a7c-8045e4d256b7", + "uuid": "d8cff201-8e26-49ec-ae2f-82cf779b6acc", "files": [], "subMetas": {}, "userData": {} diff --git a/assets/bundles/Girls/10027/togame/video.meta b/assets/bundles/Chat18x/Image/Girls/10027/video.meta similarity index 70% rename from assets/bundles/Girls/10027/togame/video.meta rename to assets/bundles/Chat18x/Image/Girls/10027/video.meta index 6397be3b..6012a3c7 100644 --- a/assets/bundles/Girls/10027/togame/video.meta +++ b/assets/bundles/Chat18x/Image/Girls/10027/video.meta @@ -2,7 +2,7 @@ "ver": "1.2.0", "importer": "directory", "imported": true, - "uuid": "944f9343-8855-48c6-8375-078e24713853", + "uuid": "e2e85200-ff80-4c5d-93d6-442cf4bfbc34", "files": [], "subMetas": {}, "userData": {} diff --git a/assets/bundles/DataTable/tbgirlsdetail.bin b/assets/bundles/DataTable/tbgirlsdetail.bin index 4a3d67ee..e554337a 100644 Binary files a/assets/bundles/DataTable/tbgirlsdetail.bin and b/assets/bundles/DataTable/tbgirlsdetail.bin differ diff --git a/assets/bundles/DataTable/tblanguage.bin b/assets/bundles/DataTable/tblanguage.bin index 00217d17..d171e3e7 100644 Binary files a/assets/bundles/DataTable/tblanguage.bin and b/assets/bundles/DataTable/tblanguage.bin differ diff --git a/assets/bundles/Girls/10001/img/img_10001_10_thumbnail_blur.jpg b/assets/bundles/Girls/10001/img/img_10001_10_thumbnail_blur.jpg new file mode 100644 index 00000000..cec65c31 Binary files /dev/null and b/assets/bundles/Girls/10001/img/img_10001_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10001/img/img_10001_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10001/img/img_10001_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f1831124 --- /dev/null +++ b/assets/bundles/Girls/10001/img/img_10001_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "87dbf890-2b97-4730-a8e8-5332c44380a1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "87dbf890-2b97-4730-a8e8-5332c44380a1@6c48a", + "displayName": "img_10001_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "87dbf890-2b97-4730-a8e8-5332c44380a1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "87dbf890-2b97-4730-a8e8-5332c44380a1@f9941", + "displayName": "img_10001_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "87dbf890-2b97-4730-a8e8-5332c44380a1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "87dbf890-2b97-4730-a8e8-5332c44380a1@6c48a" + } +} diff --git a/assets/bundles/Girls/10001/img/img_10001_11_thumbnail_blur.jpg b/assets/bundles/Girls/10001/img/img_10001_11_thumbnail_blur.jpg new file mode 100644 index 00000000..3c38a7b8 Binary files /dev/null and b/assets/bundles/Girls/10001/img/img_10001_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10001/img/img_10001_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10001/img/img_10001_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..41e20fa6 --- /dev/null +++ b/assets/bundles/Girls/10001/img/img_10001_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1000b7ea-1ea6-4f0b-8e42-72dba307f062", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1000b7ea-1ea6-4f0b-8e42-72dba307f062@6c48a", + "displayName": "img_10001_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1000b7ea-1ea6-4f0b-8e42-72dba307f062", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1000b7ea-1ea6-4f0b-8e42-72dba307f062@f9941", + "displayName": "img_10001_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1000b7ea-1ea6-4f0b-8e42-72dba307f062@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1000b7ea-1ea6-4f0b-8e42-72dba307f062@6c48a" + } +} diff --git a/assets/bundles/Girls/10001/img/img_10001_12_thumbnail_blur.jpg b/assets/bundles/Girls/10001/img/img_10001_12_thumbnail_blur.jpg new file mode 100644 index 00000000..ea9c9cda Binary files /dev/null and b/assets/bundles/Girls/10001/img/img_10001_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10001/img/img_10001_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10001/img/img_10001_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8c8997ea --- /dev/null +++ b/assets/bundles/Girls/10001/img/img_10001_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6b2b7cc3-54e4-4651-aaa2-7a145837854a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6b2b7cc3-54e4-4651-aaa2-7a145837854a@6c48a", + "displayName": "img_10001_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6b2b7cc3-54e4-4651-aaa2-7a145837854a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6b2b7cc3-54e4-4651-aaa2-7a145837854a@f9941", + "displayName": "img_10001_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6b2b7cc3-54e4-4651-aaa2-7a145837854a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6b2b7cc3-54e4-4651-aaa2-7a145837854a@6c48a" + } +} diff --git a/assets/bundles/Girls/10001/img/img_10001_13_thumbnail_blur.jpg b/assets/bundles/Girls/10001/img/img_10001_13_thumbnail_blur.jpg new file mode 100644 index 00000000..f4d19f47 Binary files /dev/null and b/assets/bundles/Girls/10001/img/img_10001_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10001/img/img_10001_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10001/img/img_10001_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..2e024921 --- /dev/null +++ b/assets/bundles/Girls/10001/img/img_10001_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fff09923-165a-45c2-b98a-11ca286af2d3", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fff09923-165a-45c2-b98a-11ca286af2d3@6c48a", + "displayName": "img_10001_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fff09923-165a-45c2-b98a-11ca286af2d3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "fff09923-165a-45c2-b98a-11ca286af2d3@f9941", + "displayName": "img_10001_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fff09923-165a-45c2-b98a-11ca286af2d3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fff09923-165a-45c2-b98a-11ca286af2d3@6c48a" + } +} diff --git a/assets/bundles/Girls/10001/img/img_10001_1_thumbnail_blur.jpg b/assets/bundles/Girls/10001/img/img_10001_1_thumbnail_blur.jpg new file mode 100644 index 00000000..aec24739 Binary files /dev/null and b/assets/bundles/Girls/10001/img/img_10001_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10001/img/img_10001_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10001/img/img_10001_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..01a96d8b --- /dev/null +++ b/assets/bundles/Girls/10001/img/img_10001_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "963eaf75-bde6-4a55-b7ca-2d39276f70ce", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "963eaf75-bde6-4a55-b7ca-2d39276f70ce@6c48a", + "displayName": "img_10001_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "963eaf75-bde6-4a55-b7ca-2d39276f70ce", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "963eaf75-bde6-4a55-b7ca-2d39276f70ce@f9941", + "displayName": "img_10001_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "963eaf75-bde6-4a55-b7ca-2d39276f70ce@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "963eaf75-bde6-4a55-b7ca-2d39276f70ce@6c48a" + } +} diff --git a/assets/bundles/Girls/10001/img/img_10001_2_thumbnail_blur.jpg b/assets/bundles/Girls/10001/img/img_10001_2_thumbnail_blur.jpg new file mode 100644 index 00000000..c3bb8624 Binary files /dev/null and b/assets/bundles/Girls/10001/img/img_10001_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10001/img/img_10001_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10001/img/img_10001_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..eee4eff6 --- /dev/null +++ b/assets/bundles/Girls/10001/img/img_10001_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c86b7afb-c37d-4fef-af36-18cf02c62ea6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c86b7afb-c37d-4fef-af36-18cf02c62ea6@6c48a", + "displayName": "img_10001_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c86b7afb-c37d-4fef-af36-18cf02c62ea6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c86b7afb-c37d-4fef-af36-18cf02c62ea6@f9941", + "displayName": "img_10001_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c86b7afb-c37d-4fef-af36-18cf02c62ea6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c86b7afb-c37d-4fef-af36-18cf02c62ea6@6c48a" + } +} diff --git a/assets/bundles/Girls/10001/img/img_10001_3_thumbnail_blur.jpg b/assets/bundles/Girls/10001/img/img_10001_3_thumbnail_blur.jpg new file mode 100644 index 00000000..0fba542d Binary files /dev/null and b/assets/bundles/Girls/10001/img/img_10001_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10001/img/img_10001_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10001/img/img_10001_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5567fe6e --- /dev/null +++ b/assets/bundles/Girls/10001/img/img_10001_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6699bf7d-23f7-4066-94a6-2f199f1b0cf8", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6699bf7d-23f7-4066-94a6-2f199f1b0cf8@6c48a", + "displayName": "img_10001_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6699bf7d-23f7-4066-94a6-2f199f1b0cf8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6699bf7d-23f7-4066-94a6-2f199f1b0cf8@f9941", + "displayName": "img_10001_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6699bf7d-23f7-4066-94a6-2f199f1b0cf8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6699bf7d-23f7-4066-94a6-2f199f1b0cf8@6c48a" + } +} diff --git a/assets/bundles/Girls/10001/img/img_10001_4_thumbnail_blur.jpg b/assets/bundles/Girls/10001/img/img_10001_4_thumbnail_blur.jpg new file mode 100644 index 00000000..dffb1c0e Binary files /dev/null and b/assets/bundles/Girls/10001/img/img_10001_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10001/img/img_10001_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10001/img/img_10001_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..fb538b9c --- /dev/null +++ b/assets/bundles/Girls/10001/img/img_10001_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "63957241-b522-4796-aef8-ebc102a4a82d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "63957241-b522-4796-aef8-ebc102a4a82d@6c48a", + "displayName": "img_10001_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "63957241-b522-4796-aef8-ebc102a4a82d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "63957241-b522-4796-aef8-ebc102a4a82d@f9941", + "displayName": "img_10001_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "63957241-b522-4796-aef8-ebc102a4a82d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "63957241-b522-4796-aef8-ebc102a4a82d@6c48a" + } +} diff --git a/assets/bundles/Girls/10001/img/img_10001_5_thumbnail_blur.jpg b/assets/bundles/Girls/10001/img/img_10001_5_thumbnail_blur.jpg new file mode 100644 index 00000000..bdd62237 Binary files /dev/null and b/assets/bundles/Girls/10001/img/img_10001_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10001/img/img_10001_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10001/img/img_10001_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..622839fe --- /dev/null +++ b/assets/bundles/Girls/10001/img/img_10001_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1d9bcd24-629f-4042-9343-df0b278a252c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1d9bcd24-629f-4042-9343-df0b278a252c@6c48a", + "displayName": "img_10001_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1d9bcd24-629f-4042-9343-df0b278a252c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1d9bcd24-629f-4042-9343-df0b278a252c@f9941", + "displayName": "img_10001_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1d9bcd24-629f-4042-9343-df0b278a252c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1d9bcd24-629f-4042-9343-df0b278a252c@6c48a" + } +} diff --git a/assets/bundles/Girls/10001/img/img_10001_6_thumbnail_blur.jpg b/assets/bundles/Girls/10001/img/img_10001_6_thumbnail_blur.jpg new file mode 100644 index 00000000..f60967af Binary files /dev/null and b/assets/bundles/Girls/10001/img/img_10001_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10001/img/img_10001_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10001/img/img_10001_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f90fedde --- /dev/null +++ b/assets/bundles/Girls/10001/img/img_10001_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3144f8de-1955-41a1-b337-366b1782c375", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3144f8de-1955-41a1-b337-366b1782c375@6c48a", + "displayName": "img_10001_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3144f8de-1955-41a1-b337-366b1782c375", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3144f8de-1955-41a1-b337-366b1782c375@f9941", + "displayName": "img_10001_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3144f8de-1955-41a1-b337-366b1782c375@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3144f8de-1955-41a1-b337-366b1782c375@6c48a" + } +} diff --git a/assets/bundles/Girls/10001/img/img_10001_7_thumbnail_blur.jpg b/assets/bundles/Girls/10001/img/img_10001_7_thumbnail_blur.jpg new file mode 100644 index 00000000..9f7fd31f Binary files /dev/null and b/assets/bundles/Girls/10001/img/img_10001_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10001/img/img_10001_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10001/img/img_10001_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f7a49b0c --- /dev/null +++ b/assets/bundles/Girls/10001/img/img_10001_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "37fba007-c10a-4f94-b9eb-bf4d9e995dfc", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "37fba007-c10a-4f94-b9eb-bf4d9e995dfc@6c48a", + "displayName": "img_10001_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "37fba007-c10a-4f94-b9eb-bf4d9e995dfc", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "37fba007-c10a-4f94-b9eb-bf4d9e995dfc@f9941", + "displayName": "img_10001_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "37fba007-c10a-4f94-b9eb-bf4d9e995dfc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "37fba007-c10a-4f94-b9eb-bf4d9e995dfc@6c48a" + } +} diff --git a/assets/bundles/Girls/10001/img/img_10001_8_thumbnail_blur.jpg b/assets/bundles/Girls/10001/img/img_10001_8_thumbnail_blur.jpg new file mode 100644 index 00000000..bbff9f1d Binary files /dev/null and b/assets/bundles/Girls/10001/img/img_10001_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10001/img/img_10001_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10001/img/img_10001_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..972e1a7d --- /dev/null +++ b/assets/bundles/Girls/10001/img/img_10001_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ce8ea3ed-4d64-45aa-9fba-6702a915513f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ce8ea3ed-4d64-45aa-9fba-6702a915513f@6c48a", + "displayName": "img_10001_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ce8ea3ed-4d64-45aa-9fba-6702a915513f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ce8ea3ed-4d64-45aa-9fba-6702a915513f@f9941", + "displayName": "img_10001_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ce8ea3ed-4d64-45aa-9fba-6702a915513f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ce8ea3ed-4d64-45aa-9fba-6702a915513f@6c48a" + } +} diff --git a/assets/bundles/Girls/10001/img/img_10001_9_thumbnail_blur.jpg b/assets/bundles/Girls/10001/img/img_10001_9_thumbnail_blur.jpg new file mode 100644 index 00000000..edf45b9d Binary files /dev/null and b/assets/bundles/Girls/10001/img/img_10001_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10001/img/img_10001_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10001/img/img_10001_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4446cfe6 --- /dev/null +++ b/assets/bundles/Girls/10001/img/img_10001_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4d276140-4f15-43dc-b6ef-368d814b3140", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4d276140-4f15-43dc-b6ef-368d814b3140@6c48a", + "displayName": "img_10001_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4d276140-4f15-43dc-b6ef-368d814b3140", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4d276140-4f15-43dc-b6ef-368d814b3140@f9941", + "displayName": "img_10001_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4d276140-4f15-43dc-b6ef-368d814b3140@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4d276140-4f15-43dc-b6ef-368d814b3140@6c48a" + } +} diff --git a/assets/bundles/Girls/10002/img/img_10002_10_thumbnail_blur.jpg b/assets/bundles/Girls/10002/img/img_10002_10_thumbnail_blur.jpg new file mode 100644 index 00000000..d0fcb740 Binary files /dev/null and b/assets/bundles/Girls/10002/img/img_10002_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10002/img/img_10002_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10002/img/img_10002_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..46ee0638 --- /dev/null +++ b/assets/bundles/Girls/10002/img/img_10002_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6d1cac16-430f-4aa2-a651-8bdefabe0dfb", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6d1cac16-430f-4aa2-a651-8bdefabe0dfb@6c48a", + "displayName": "img_10002_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6d1cac16-430f-4aa2-a651-8bdefabe0dfb", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6d1cac16-430f-4aa2-a651-8bdefabe0dfb@f9941", + "displayName": "img_10002_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6d1cac16-430f-4aa2-a651-8bdefabe0dfb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6d1cac16-430f-4aa2-a651-8bdefabe0dfb@6c48a" + } +} diff --git a/assets/bundles/Girls/10002/img/img_10002_1_thumbnail_blur.jpg b/assets/bundles/Girls/10002/img/img_10002_1_thumbnail_blur.jpg new file mode 100644 index 00000000..241025b6 Binary files /dev/null and b/assets/bundles/Girls/10002/img/img_10002_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10002/img/img_10002_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10002/img/img_10002_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0af91820 --- /dev/null +++ b/assets/bundles/Girls/10002/img/img_10002_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fce00cb6-d85c-487f-b995-84d4ae357040", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fce00cb6-d85c-487f-b995-84d4ae357040@6c48a", + "displayName": "img_10002_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fce00cb6-d85c-487f-b995-84d4ae357040", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "fce00cb6-d85c-487f-b995-84d4ae357040@f9941", + "displayName": "img_10002_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fce00cb6-d85c-487f-b995-84d4ae357040@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fce00cb6-d85c-487f-b995-84d4ae357040@6c48a" + } +} diff --git a/assets/bundles/Girls/10002/img/img_10002_2_thumbnail_blur.jpg b/assets/bundles/Girls/10002/img/img_10002_2_thumbnail_blur.jpg new file mode 100644 index 00000000..fdc9fc5a Binary files /dev/null and b/assets/bundles/Girls/10002/img/img_10002_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10002/img/img_10002_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10002/img/img_10002_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6a2b4c98 --- /dev/null +++ b/assets/bundles/Girls/10002/img/img_10002_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2b200f16-fa09-46b8-9f32-68a4331fe37b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2b200f16-fa09-46b8-9f32-68a4331fe37b@6c48a", + "displayName": "img_10002_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2b200f16-fa09-46b8-9f32-68a4331fe37b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2b200f16-fa09-46b8-9f32-68a4331fe37b@f9941", + "displayName": "img_10002_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2b200f16-fa09-46b8-9f32-68a4331fe37b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2b200f16-fa09-46b8-9f32-68a4331fe37b@6c48a" + } +} diff --git a/assets/bundles/Girls/10002/img/img_10002_3_thumbnail_blur.jpg b/assets/bundles/Girls/10002/img/img_10002_3_thumbnail_blur.jpg new file mode 100644 index 00000000..f18d4f1e Binary files /dev/null and b/assets/bundles/Girls/10002/img/img_10002_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10002/img/img_10002_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10002/img/img_10002_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a6caefa9 --- /dev/null +++ b/assets/bundles/Girls/10002/img/img_10002_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "67caaac9-0c86-4af5-879f-5182fc1b126a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "67caaac9-0c86-4af5-879f-5182fc1b126a@6c48a", + "displayName": "img_10002_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "67caaac9-0c86-4af5-879f-5182fc1b126a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "67caaac9-0c86-4af5-879f-5182fc1b126a@f9941", + "displayName": "img_10002_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "67caaac9-0c86-4af5-879f-5182fc1b126a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "67caaac9-0c86-4af5-879f-5182fc1b126a@6c48a" + } +} diff --git a/assets/bundles/Girls/10002/img/img_10002_4_thumbnail_blur.jpg b/assets/bundles/Girls/10002/img/img_10002_4_thumbnail_blur.jpg new file mode 100644 index 00000000..7ac3f23a Binary files /dev/null and b/assets/bundles/Girls/10002/img/img_10002_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10002/img/img_10002_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10002/img/img_10002_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0b388246 --- /dev/null +++ b/assets/bundles/Girls/10002/img/img_10002_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f3dc7294-e14d-4a4c-be68-cdc72c16bd7b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f3dc7294-e14d-4a4c-be68-cdc72c16bd7b@6c48a", + "displayName": "img_10002_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f3dc7294-e14d-4a4c-be68-cdc72c16bd7b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f3dc7294-e14d-4a4c-be68-cdc72c16bd7b@f9941", + "displayName": "img_10002_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f3dc7294-e14d-4a4c-be68-cdc72c16bd7b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f3dc7294-e14d-4a4c-be68-cdc72c16bd7b@6c48a" + } +} diff --git a/assets/bundles/Girls/10002/img/img_10002_5_thumbnail_blur.jpg b/assets/bundles/Girls/10002/img/img_10002_5_thumbnail_blur.jpg new file mode 100644 index 00000000..371400aa Binary files /dev/null and b/assets/bundles/Girls/10002/img/img_10002_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10002/img/img_10002_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10002/img/img_10002_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..bbc2d595 --- /dev/null +++ b/assets/bundles/Girls/10002/img/img_10002_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "84a838a1-398e-4945-8abc-8be5eac53568", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "84a838a1-398e-4945-8abc-8be5eac53568@6c48a", + "displayName": "img_10002_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "84a838a1-398e-4945-8abc-8be5eac53568", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "84a838a1-398e-4945-8abc-8be5eac53568@f9941", + "displayName": "img_10002_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "84a838a1-398e-4945-8abc-8be5eac53568@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "84a838a1-398e-4945-8abc-8be5eac53568@6c48a" + } +} diff --git a/assets/bundles/Girls/10002/img/img_10002_6_thumbnail_blur.jpg b/assets/bundles/Girls/10002/img/img_10002_6_thumbnail_blur.jpg new file mode 100644 index 00000000..f5803259 Binary files /dev/null and b/assets/bundles/Girls/10002/img/img_10002_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10002/img/img_10002_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10002/img/img_10002_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..26118a9b --- /dev/null +++ b/assets/bundles/Girls/10002/img/img_10002_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2b7155b8-de85-4fab-a6ce-77c10277d577", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2b7155b8-de85-4fab-a6ce-77c10277d577@6c48a", + "displayName": "img_10002_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2b7155b8-de85-4fab-a6ce-77c10277d577", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2b7155b8-de85-4fab-a6ce-77c10277d577@f9941", + "displayName": "img_10002_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2b7155b8-de85-4fab-a6ce-77c10277d577@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2b7155b8-de85-4fab-a6ce-77c10277d577@6c48a" + } +} diff --git a/assets/bundles/Girls/10002/img/img_10002_7_thumbnail_blur.jpg b/assets/bundles/Girls/10002/img/img_10002_7_thumbnail_blur.jpg new file mode 100644 index 00000000..baaf5e18 Binary files /dev/null and b/assets/bundles/Girls/10002/img/img_10002_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10002/img/img_10002_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10002/img/img_10002_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..faf41c66 --- /dev/null +++ b/assets/bundles/Girls/10002/img/img_10002_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0bffbe01-231c-4943-8564-c4f1649a6d34", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0bffbe01-231c-4943-8564-c4f1649a6d34@6c48a", + "displayName": "img_10002_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0bffbe01-231c-4943-8564-c4f1649a6d34", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0bffbe01-231c-4943-8564-c4f1649a6d34@f9941", + "displayName": "img_10002_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0bffbe01-231c-4943-8564-c4f1649a6d34@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0bffbe01-231c-4943-8564-c4f1649a6d34@6c48a" + } +} diff --git a/assets/bundles/Girls/10002/img/img_10002_8_thumbnail_blur.jpg b/assets/bundles/Girls/10002/img/img_10002_8_thumbnail_blur.jpg new file mode 100644 index 00000000..5f0283ff Binary files /dev/null and b/assets/bundles/Girls/10002/img/img_10002_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10002/img/img_10002_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10002/img/img_10002_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8223d4fe --- /dev/null +++ b/assets/bundles/Girls/10002/img/img_10002_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5b6bb013-7603-4f69-8183-d9cd822f180e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5b6bb013-7603-4f69-8183-d9cd822f180e@6c48a", + "displayName": "img_10002_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5b6bb013-7603-4f69-8183-d9cd822f180e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5b6bb013-7603-4f69-8183-d9cd822f180e@f9941", + "displayName": "img_10002_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5b6bb013-7603-4f69-8183-d9cd822f180e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5b6bb013-7603-4f69-8183-d9cd822f180e@6c48a" + } +} diff --git a/assets/bundles/Girls/10002/img/img_10002_9_thumbnail_blur.jpg b/assets/bundles/Girls/10002/img/img_10002_9_thumbnail_blur.jpg new file mode 100644 index 00000000..6dd5eb10 Binary files /dev/null and b/assets/bundles/Girls/10002/img/img_10002_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10002/img/img_10002_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10002/img/img_10002_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d1e72af0 --- /dev/null +++ b/assets/bundles/Girls/10002/img/img_10002_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d3dcaa25-60e5-40d0-8716-998e6dacac90", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d3dcaa25-60e5-40d0-8716-998e6dacac90@6c48a", + "displayName": "img_10002_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d3dcaa25-60e5-40d0-8716-998e6dacac90", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d3dcaa25-60e5-40d0-8716-998e6dacac90@f9941", + "displayName": "img_10002_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d3dcaa25-60e5-40d0-8716-998e6dacac90@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d3dcaa25-60e5-40d0-8716-998e6dacac90@6c48a" + } +} diff --git a/assets/bundles/Girls/10003/img/img_10003_10_thumbnail_blur.jpg b/assets/bundles/Girls/10003/img/img_10003_10_thumbnail_blur.jpg new file mode 100644 index 00000000..bde1caf4 Binary files /dev/null and b/assets/bundles/Girls/10003/img/img_10003_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10003/img/img_10003_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10003/img/img_10003_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a329131a --- /dev/null +++ b/assets/bundles/Girls/10003/img/img_10003_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1f007420-9151-4486-ad3e-12b2185f46fd", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1f007420-9151-4486-ad3e-12b2185f46fd@6c48a", + "displayName": "img_10003_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1f007420-9151-4486-ad3e-12b2185f46fd", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1f007420-9151-4486-ad3e-12b2185f46fd@f9941", + "displayName": "img_10003_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1f007420-9151-4486-ad3e-12b2185f46fd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1f007420-9151-4486-ad3e-12b2185f46fd@6c48a" + } +} diff --git a/assets/bundles/Girls/10003/img/img_10003_11_thumbnail_blur.jpg b/assets/bundles/Girls/10003/img/img_10003_11_thumbnail_blur.jpg new file mode 100644 index 00000000..240d523c Binary files /dev/null and b/assets/bundles/Girls/10003/img/img_10003_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10003/img/img_10003_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10003/img/img_10003_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..55983209 --- /dev/null +++ b/assets/bundles/Girls/10003/img/img_10003_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "734c2333-54f2-44ce-86d8-2615ac6dda17", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "734c2333-54f2-44ce-86d8-2615ac6dda17@6c48a", + "displayName": "img_10003_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "734c2333-54f2-44ce-86d8-2615ac6dda17", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "734c2333-54f2-44ce-86d8-2615ac6dda17@f9941", + "displayName": "img_10003_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "734c2333-54f2-44ce-86d8-2615ac6dda17@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "734c2333-54f2-44ce-86d8-2615ac6dda17@6c48a" + } +} diff --git a/assets/bundles/Girls/10003/img/img_10003_12_thumbnail_blur.jpg b/assets/bundles/Girls/10003/img/img_10003_12_thumbnail_blur.jpg new file mode 100644 index 00000000..14764294 Binary files /dev/null and b/assets/bundles/Girls/10003/img/img_10003_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10003/img/img_10003_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10003/img/img_10003_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..06b044a2 --- /dev/null +++ b/assets/bundles/Girls/10003/img/img_10003_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3d0fff77-c497-474a-92d8-d4b0e3745d51", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3d0fff77-c497-474a-92d8-d4b0e3745d51@6c48a", + "displayName": "img_10003_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3d0fff77-c497-474a-92d8-d4b0e3745d51", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3d0fff77-c497-474a-92d8-d4b0e3745d51@f9941", + "displayName": "img_10003_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3d0fff77-c497-474a-92d8-d4b0e3745d51@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3d0fff77-c497-474a-92d8-d4b0e3745d51@6c48a" + } +} diff --git a/assets/bundles/Girls/10003/img/img_10003_1_thumbnail_blur.jpg b/assets/bundles/Girls/10003/img/img_10003_1_thumbnail_blur.jpg new file mode 100644 index 00000000..fb774ccd Binary files /dev/null and b/assets/bundles/Girls/10003/img/img_10003_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10003/img/img_10003_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10003/img/img_10003_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..adcc37e7 --- /dev/null +++ b/assets/bundles/Girls/10003/img/img_10003_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "20fad4e5-6a91-4685-8861-b7b4a85512d6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "20fad4e5-6a91-4685-8861-b7b4a85512d6@6c48a", + "displayName": "img_10003_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "20fad4e5-6a91-4685-8861-b7b4a85512d6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "20fad4e5-6a91-4685-8861-b7b4a85512d6@f9941", + "displayName": "img_10003_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20fad4e5-6a91-4685-8861-b7b4a85512d6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "20fad4e5-6a91-4685-8861-b7b4a85512d6@6c48a" + } +} diff --git a/assets/bundles/Girls/10003/img/img_10003_2_thumbnail_blur.jpg b/assets/bundles/Girls/10003/img/img_10003_2_thumbnail_blur.jpg new file mode 100644 index 00000000..38588077 Binary files /dev/null and b/assets/bundles/Girls/10003/img/img_10003_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10003/img/img_10003_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10003/img/img_10003_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4e0bd5cb --- /dev/null +++ b/assets/bundles/Girls/10003/img/img_10003_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fcacb263-8132-4be9-9994-30bcfbef6aba", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fcacb263-8132-4be9-9994-30bcfbef6aba@6c48a", + "displayName": "img_10003_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fcacb263-8132-4be9-9994-30bcfbef6aba", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "fcacb263-8132-4be9-9994-30bcfbef6aba@f9941", + "displayName": "img_10003_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fcacb263-8132-4be9-9994-30bcfbef6aba@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fcacb263-8132-4be9-9994-30bcfbef6aba@6c48a" + } +} diff --git a/assets/bundles/Girls/10003/img/img_10003_3_thumbnail_blur.jpg b/assets/bundles/Girls/10003/img/img_10003_3_thumbnail_blur.jpg new file mode 100644 index 00000000..cfdea31e Binary files /dev/null and b/assets/bundles/Girls/10003/img/img_10003_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10003/img/img_10003_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10003/img/img_10003_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..45cfb864 --- /dev/null +++ b/assets/bundles/Girls/10003/img/img_10003_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6e8433c7-b54c-4ade-8e1f-103aa1162369", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6e8433c7-b54c-4ade-8e1f-103aa1162369@6c48a", + "displayName": "img_10003_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6e8433c7-b54c-4ade-8e1f-103aa1162369", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6e8433c7-b54c-4ade-8e1f-103aa1162369@f9941", + "displayName": "img_10003_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6e8433c7-b54c-4ade-8e1f-103aa1162369@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6e8433c7-b54c-4ade-8e1f-103aa1162369@6c48a" + } +} diff --git a/assets/bundles/Girls/10003/img/img_10003_4_thumbnail_blur.jpg b/assets/bundles/Girls/10003/img/img_10003_4_thumbnail_blur.jpg new file mode 100644 index 00000000..d0cec603 Binary files /dev/null and b/assets/bundles/Girls/10003/img/img_10003_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10003/img/img_10003_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10003/img/img_10003_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e421db49 --- /dev/null +++ b/assets/bundles/Girls/10003/img/img_10003_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0fbcabb1-01bf-4cd8-b66c-fd13d5a460f1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0fbcabb1-01bf-4cd8-b66c-fd13d5a460f1@6c48a", + "displayName": "img_10003_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0fbcabb1-01bf-4cd8-b66c-fd13d5a460f1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0fbcabb1-01bf-4cd8-b66c-fd13d5a460f1@f9941", + "displayName": "img_10003_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0fbcabb1-01bf-4cd8-b66c-fd13d5a460f1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0fbcabb1-01bf-4cd8-b66c-fd13d5a460f1@6c48a" + } +} diff --git a/assets/bundles/Girls/10003/img/img_10003_5_thumbnail_blur.jpg b/assets/bundles/Girls/10003/img/img_10003_5_thumbnail_blur.jpg new file mode 100644 index 00000000..c54e6f10 Binary files /dev/null and b/assets/bundles/Girls/10003/img/img_10003_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10003/img/img_10003_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10003/img/img_10003_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..2d4f7b0e --- /dev/null +++ b/assets/bundles/Girls/10003/img/img_10003_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "24ffa2dd-94e0-432f-bd3e-1530f27c9085", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "24ffa2dd-94e0-432f-bd3e-1530f27c9085@6c48a", + "displayName": "img_10003_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "24ffa2dd-94e0-432f-bd3e-1530f27c9085", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "24ffa2dd-94e0-432f-bd3e-1530f27c9085@f9941", + "displayName": "img_10003_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "24ffa2dd-94e0-432f-bd3e-1530f27c9085@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "24ffa2dd-94e0-432f-bd3e-1530f27c9085@6c48a" + } +} diff --git a/assets/bundles/Girls/10003/img/img_10003_6_thumbnail_blur.jpg b/assets/bundles/Girls/10003/img/img_10003_6_thumbnail_blur.jpg new file mode 100644 index 00000000..0db681ee Binary files /dev/null and b/assets/bundles/Girls/10003/img/img_10003_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10003/img/img_10003_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10003/img/img_10003_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..518a346c --- /dev/null +++ b/assets/bundles/Girls/10003/img/img_10003_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c1cfa024-429e-480f-a4fe-28bef120321e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c1cfa024-429e-480f-a4fe-28bef120321e@6c48a", + "displayName": "img_10003_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c1cfa024-429e-480f-a4fe-28bef120321e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c1cfa024-429e-480f-a4fe-28bef120321e@f9941", + "displayName": "img_10003_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c1cfa024-429e-480f-a4fe-28bef120321e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c1cfa024-429e-480f-a4fe-28bef120321e@6c48a" + } +} diff --git a/assets/bundles/Girls/10003/img/img_10003_7_thumbnail_blur.jpg b/assets/bundles/Girls/10003/img/img_10003_7_thumbnail_blur.jpg new file mode 100644 index 00000000..b1e4b6c1 Binary files /dev/null and b/assets/bundles/Girls/10003/img/img_10003_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10003/img/img_10003_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10003/img/img_10003_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..b71142c2 --- /dev/null +++ b/assets/bundles/Girls/10003/img/img_10003_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "18e3b875-a3d6-41d8-8744-b7c076583dad", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "18e3b875-a3d6-41d8-8744-b7c076583dad@6c48a", + "displayName": "img_10003_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "18e3b875-a3d6-41d8-8744-b7c076583dad", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "18e3b875-a3d6-41d8-8744-b7c076583dad@f9941", + "displayName": "img_10003_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "18e3b875-a3d6-41d8-8744-b7c076583dad@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "18e3b875-a3d6-41d8-8744-b7c076583dad@6c48a" + } +} diff --git a/assets/bundles/Girls/10003/img/img_10003_8_thumbnail_blur.jpg b/assets/bundles/Girls/10003/img/img_10003_8_thumbnail_blur.jpg new file mode 100644 index 00000000..12da9d1a Binary files /dev/null and b/assets/bundles/Girls/10003/img/img_10003_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10003/img/img_10003_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10003/img/img_10003_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9d5194a6 --- /dev/null +++ b/assets/bundles/Girls/10003/img/img_10003_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "71f41579-17c7-40e0-8d50-e686d72307a8", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "71f41579-17c7-40e0-8d50-e686d72307a8@6c48a", + "displayName": "img_10003_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "71f41579-17c7-40e0-8d50-e686d72307a8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "71f41579-17c7-40e0-8d50-e686d72307a8@f9941", + "displayName": "img_10003_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "71f41579-17c7-40e0-8d50-e686d72307a8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "71f41579-17c7-40e0-8d50-e686d72307a8@6c48a" + } +} diff --git a/assets/bundles/Girls/10003/img/img_10003_9_thumbnail_blur.jpg b/assets/bundles/Girls/10003/img/img_10003_9_thumbnail_blur.jpg new file mode 100644 index 00000000..e9bfb24e Binary files /dev/null and b/assets/bundles/Girls/10003/img/img_10003_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10003/img/img_10003_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10003/img/img_10003_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..152dbfef --- /dev/null +++ b/assets/bundles/Girls/10003/img/img_10003_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "99d47cb6-3eb0-4475-b7cf-3c1fe7b0e5ba", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "99d47cb6-3eb0-4475-b7cf-3c1fe7b0e5ba@6c48a", + "displayName": "img_10003_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "99d47cb6-3eb0-4475-b7cf-3c1fe7b0e5ba", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "99d47cb6-3eb0-4475-b7cf-3c1fe7b0e5ba@f9941", + "displayName": "img_10003_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "99d47cb6-3eb0-4475-b7cf-3c1fe7b0e5ba@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "99d47cb6-3eb0-4475-b7cf-3c1fe7b0e5ba@6c48a" + } +} diff --git a/assets/bundles/Girls/10004/img/img_10004_10_thumbnail_blur.jpg b/assets/bundles/Girls/10004/img/img_10004_10_thumbnail_blur.jpg new file mode 100644 index 00000000..767a16f8 Binary files /dev/null and b/assets/bundles/Girls/10004/img/img_10004_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10004/img/img_10004_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10004/img/img_10004_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3e830943 --- /dev/null +++ b/assets/bundles/Girls/10004/img/img_10004_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "48b801ef-5121-4004-92bb-fb429b7adc5e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "48b801ef-5121-4004-92bb-fb429b7adc5e@6c48a", + "displayName": "img_10004_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "48b801ef-5121-4004-92bb-fb429b7adc5e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "48b801ef-5121-4004-92bb-fb429b7adc5e@f9941", + "displayName": "img_10004_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "48b801ef-5121-4004-92bb-fb429b7adc5e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "48b801ef-5121-4004-92bb-fb429b7adc5e@6c48a" + } +} diff --git a/assets/bundles/Girls/10004/img/img_10004_11_thumbnail_blur.jpg b/assets/bundles/Girls/10004/img/img_10004_11_thumbnail_blur.jpg new file mode 100644 index 00000000..4d8988bf Binary files /dev/null and b/assets/bundles/Girls/10004/img/img_10004_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10004/img/img_10004_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10004/img/img_10004_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4f1fe9fa --- /dev/null +++ b/assets/bundles/Girls/10004/img/img_10004_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4d2a7091-dfe2-43a2-9bc0-6922e0132971", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4d2a7091-dfe2-43a2-9bc0-6922e0132971@6c48a", + "displayName": "img_10004_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4d2a7091-dfe2-43a2-9bc0-6922e0132971", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4d2a7091-dfe2-43a2-9bc0-6922e0132971@f9941", + "displayName": "img_10004_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4d2a7091-dfe2-43a2-9bc0-6922e0132971@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4d2a7091-dfe2-43a2-9bc0-6922e0132971@6c48a" + } +} diff --git a/assets/bundles/Girls/10004/img/img_10004_1_thumbnail_blur.jpg b/assets/bundles/Girls/10004/img/img_10004_1_thumbnail_blur.jpg new file mode 100644 index 00000000..7e475b87 Binary files /dev/null and b/assets/bundles/Girls/10004/img/img_10004_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10004/img/img_10004_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10004/img/img_10004_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9f920ef6 --- /dev/null +++ b/assets/bundles/Girls/10004/img/img_10004_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "715f9b72-ef34-44b2-abef-4a8ed44d2503", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "715f9b72-ef34-44b2-abef-4a8ed44d2503@6c48a", + "displayName": "img_10004_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "715f9b72-ef34-44b2-abef-4a8ed44d2503", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "715f9b72-ef34-44b2-abef-4a8ed44d2503@f9941", + "displayName": "img_10004_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "715f9b72-ef34-44b2-abef-4a8ed44d2503@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "715f9b72-ef34-44b2-abef-4a8ed44d2503@6c48a" + } +} diff --git a/assets/bundles/Girls/10004/img/img_10004_2_thumbnail_blur.jpg b/assets/bundles/Girls/10004/img/img_10004_2_thumbnail_blur.jpg new file mode 100644 index 00000000..8864f0e6 Binary files /dev/null and b/assets/bundles/Girls/10004/img/img_10004_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10004/img/img_10004_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10004/img/img_10004_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..de94e795 --- /dev/null +++ b/assets/bundles/Girls/10004/img/img_10004_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c38cb883-031f-48a3-8784-42bd823f8e36", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c38cb883-031f-48a3-8784-42bd823f8e36@6c48a", + "displayName": "img_10004_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c38cb883-031f-48a3-8784-42bd823f8e36", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c38cb883-031f-48a3-8784-42bd823f8e36@f9941", + "displayName": "img_10004_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c38cb883-031f-48a3-8784-42bd823f8e36@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c38cb883-031f-48a3-8784-42bd823f8e36@6c48a" + } +} diff --git a/assets/bundles/Girls/10004/img/img_10004_3_thumbnail_blur.jpg b/assets/bundles/Girls/10004/img/img_10004_3_thumbnail_blur.jpg new file mode 100644 index 00000000..133a4a2e Binary files /dev/null and b/assets/bundles/Girls/10004/img/img_10004_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10004/img/img_10004_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10004/img/img_10004_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9544ff4f --- /dev/null +++ b/assets/bundles/Girls/10004/img/img_10004_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0eec394f-403e-495f-b970-973327997e44", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0eec394f-403e-495f-b970-973327997e44@6c48a", + "displayName": "img_10004_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0eec394f-403e-495f-b970-973327997e44", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0eec394f-403e-495f-b970-973327997e44@f9941", + "displayName": "img_10004_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0eec394f-403e-495f-b970-973327997e44@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0eec394f-403e-495f-b970-973327997e44@6c48a" + } +} diff --git a/assets/bundles/Girls/10004/img/img_10004_4_thumbnail_blur.jpg b/assets/bundles/Girls/10004/img/img_10004_4_thumbnail_blur.jpg new file mode 100644 index 00000000..4068d722 Binary files /dev/null and b/assets/bundles/Girls/10004/img/img_10004_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10004/img/img_10004_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10004/img/img_10004_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..35738206 --- /dev/null +++ b/assets/bundles/Girls/10004/img/img_10004_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "395e609a-ca63-44e2-ada5-f53d15b6aa55", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "395e609a-ca63-44e2-ada5-f53d15b6aa55@6c48a", + "displayName": "img_10004_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "395e609a-ca63-44e2-ada5-f53d15b6aa55", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "395e609a-ca63-44e2-ada5-f53d15b6aa55@f9941", + "displayName": "img_10004_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "395e609a-ca63-44e2-ada5-f53d15b6aa55@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "395e609a-ca63-44e2-ada5-f53d15b6aa55@6c48a" + } +} diff --git a/assets/bundles/Girls/10004/img/img_10004_5_thumbnail_blur.jpg b/assets/bundles/Girls/10004/img/img_10004_5_thumbnail_blur.jpg new file mode 100644 index 00000000..e12e59fd Binary files /dev/null and b/assets/bundles/Girls/10004/img/img_10004_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10004/img/img_10004_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10004/img/img_10004_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..84877c34 --- /dev/null +++ b/assets/bundles/Girls/10004/img/img_10004_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d3b094f8-ebfa-4d85-9966-c67b7a7c8129", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d3b094f8-ebfa-4d85-9966-c67b7a7c8129@6c48a", + "displayName": "img_10004_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d3b094f8-ebfa-4d85-9966-c67b7a7c8129", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d3b094f8-ebfa-4d85-9966-c67b7a7c8129@f9941", + "displayName": "img_10004_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d3b094f8-ebfa-4d85-9966-c67b7a7c8129@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d3b094f8-ebfa-4d85-9966-c67b7a7c8129@6c48a" + } +} diff --git a/assets/bundles/Girls/10004/img/img_10004_6_thumbnail_blur.jpg b/assets/bundles/Girls/10004/img/img_10004_6_thumbnail_blur.jpg new file mode 100644 index 00000000..a8972bf9 Binary files /dev/null and b/assets/bundles/Girls/10004/img/img_10004_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10004/img/img_10004_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10004/img/img_10004_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9b0658e0 --- /dev/null +++ b/assets/bundles/Girls/10004/img/img_10004_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "93484374-1612-4aec-b814-957a277b5436", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "93484374-1612-4aec-b814-957a277b5436@6c48a", + "displayName": "img_10004_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "93484374-1612-4aec-b814-957a277b5436", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "93484374-1612-4aec-b814-957a277b5436@f9941", + "displayName": "img_10004_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "93484374-1612-4aec-b814-957a277b5436@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "93484374-1612-4aec-b814-957a277b5436@6c48a" + } +} diff --git a/assets/bundles/Girls/10004/img/img_10004_7_thumbnail_blur.jpg b/assets/bundles/Girls/10004/img/img_10004_7_thumbnail_blur.jpg new file mode 100644 index 00000000..fceb2489 Binary files /dev/null and b/assets/bundles/Girls/10004/img/img_10004_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10004/img/img_10004_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10004/img/img_10004_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..73a8448a --- /dev/null +++ b/assets/bundles/Girls/10004/img/img_10004_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d72fcfe4-fe69-4cf2-b5d7-71a7a887c9f1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d72fcfe4-fe69-4cf2-b5d7-71a7a887c9f1@6c48a", + "displayName": "img_10004_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d72fcfe4-fe69-4cf2-b5d7-71a7a887c9f1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d72fcfe4-fe69-4cf2-b5d7-71a7a887c9f1@f9941", + "displayName": "img_10004_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d72fcfe4-fe69-4cf2-b5d7-71a7a887c9f1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d72fcfe4-fe69-4cf2-b5d7-71a7a887c9f1@6c48a" + } +} diff --git a/assets/bundles/Girls/10004/img/img_10004_8_thumbnail_blur.jpg b/assets/bundles/Girls/10004/img/img_10004_8_thumbnail_blur.jpg new file mode 100644 index 00000000..07eaeb82 Binary files /dev/null and b/assets/bundles/Girls/10004/img/img_10004_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10004/img/img_10004_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10004/img/img_10004_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d2931457 --- /dev/null +++ b/assets/bundles/Girls/10004/img/img_10004_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e9926787-862f-4150-b7c6-e163310710d6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e9926787-862f-4150-b7c6-e163310710d6@6c48a", + "displayName": "img_10004_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e9926787-862f-4150-b7c6-e163310710d6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e9926787-862f-4150-b7c6-e163310710d6@f9941", + "displayName": "img_10004_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e9926787-862f-4150-b7c6-e163310710d6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e9926787-862f-4150-b7c6-e163310710d6@6c48a" + } +} diff --git a/assets/bundles/Girls/10004/img/img_10004_9_thumbnail_blur.jpg b/assets/bundles/Girls/10004/img/img_10004_9_thumbnail_blur.jpg new file mode 100644 index 00000000..2a10c9a6 Binary files /dev/null and b/assets/bundles/Girls/10004/img/img_10004_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10004/img/img_10004_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10004/img/img_10004_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a9c8eca5 --- /dev/null +++ b/assets/bundles/Girls/10004/img/img_10004_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c6df25d8-41eb-4608-b7a5-943aa9ba78d2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c6df25d8-41eb-4608-b7a5-943aa9ba78d2@6c48a", + "displayName": "img_10004_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c6df25d8-41eb-4608-b7a5-943aa9ba78d2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c6df25d8-41eb-4608-b7a5-943aa9ba78d2@f9941", + "displayName": "img_10004_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c6df25d8-41eb-4608-b7a5-943aa9ba78d2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c6df25d8-41eb-4608-b7a5-943aa9ba78d2@6c48a" + } +} diff --git a/assets/bundles/Girls/10005/img/img_10005_10_thumbnail_blur.jpg b/assets/bundles/Girls/10005/img/img_10005_10_thumbnail_blur.jpg new file mode 100644 index 00000000..ae5f1891 Binary files /dev/null and b/assets/bundles/Girls/10005/img/img_10005_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10005/img/img_10005_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10005/img/img_10005_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4d56ff97 --- /dev/null +++ b/assets/bundles/Girls/10005/img/img_10005_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a9697b6a-55d0-4e01-9391-575e3b06819a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a9697b6a-55d0-4e01-9391-575e3b06819a@6c48a", + "displayName": "img_10005_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a9697b6a-55d0-4e01-9391-575e3b06819a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a9697b6a-55d0-4e01-9391-575e3b06819a@f9941", + "displayName": "img_10005_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a9697b6a-55d0-4e01-9391-575e3b06819a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a9697b6a-55d0-4e01-9391-575e3b06819a@6c48a" + } +} diff --git a/assets/bundles/Girls/10005/img/img_10005_11_thumbnail_blur.jpg b/assets/bundles/Girls/10005/img/img_10005_11_thumbnail_blur.jpg new file mode 100644 index 00000000..ebfbe5d7 Binary files /dev/null and b/assets/bundles/Girls/10005/img/img_10005_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10005/img/img_10005_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10005/img/img_10005_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5e4784ff --- /dev/null +++ b/assets/bundles/Girls/10005/img/img_10005_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f64a18ac-eb4b-4c1e-81df-94bc52a617e1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f64a18ac-eb4b-4c1e-81df-94bc52a617e1@6c48a", + "displayName": "img_10005_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f64a18ac-eb4b-4c1e-81df-94bc52a617e1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f64a18ac-eb4b-4c1e-81df-94bc52a617e1@f9941", + "displayName": "img_10005_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 134, + "height": 173, + "rawWidth": 134, + "rawHeight": 173, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -67, + -86.5, + 0, + 67, + -86.5, + 0, + -67, + 86.5, + 0, + 67, + 86.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 173, + 134, + 173, + 0, + 0, + 134, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -67, + -86.5, + 0 + ], + "maxPos": [ + 67, + 86.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f64a18ac-eb4b-4c1e-81df-94bc52a617e1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f64a18ac-eb4b-4c1e-81df-94bc52a617e1@6c48a" + } +} diff --git a/assets/bundles/Girls/10005/img/img_10005_12_thumbnail_blur.jpg b/assets/bundles/Girls/10005/img/img_10005_12_thumbnail_blur.jpg new file mode 100644 index 00000000..a5ed79f3 Binary files /dev/null and b/assets/bundles/Girls/10005/img/img_10005_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10005/img/img_10005_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10005/img/img_10005_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a09317aa --- /dev/null +++ b/assets/bundles/Girls/10005/img/img_10005_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "90f7fec9-c2ff-4d77-8e9f-b32dada1aab5", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "90f7fec9-c2ff-4d77-8e9f-b32dada1aab5@6c48a", + "displayName": "img_10005_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "90f7fec9-c2ff-4d77-8e9f-b32dada1aab5", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "90f7fec9-c2ff-4d77-8e9f-b32dada1aab5@f9941", + "displayName": "img_10005_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 134, + "height": 173, + "rawWidth": 134, + "rawHeight": 173, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -67, + -86.5, + 0, + 67, + -86.5, + 0, + -67, + 86.5, + 0, + 67, + 86.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 173, + 134, + 173, + 0, + 0, + 134, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -67, + -86.5, + 0 + ], + "maxPos": [ + 67, + 86.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "90f7fec9-c2ff-4d77-8e9f-b32dada1aab5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "90f7fec9-c2ff-4d77-8e9f-b32dada1aab5@6c48a" + } +} diff --git a/assets/bundles/Girls/10005/img/img_10005_13_thumbnail_blur.jpg b/assets/bundles/Girls/10005/img/img_10005_13_thumbnail_blur.jpg new file mode 100644 index 00000000..736fe806 Binary files /dev/null and b/assets/bundles/Girls/10005/img/img_10005_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10005/img/img_10005_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10005/img/img_10005_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..db72576a --- /dev/null +++ b/assets/bundles/Girls/10005/img/img_10005_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "950914e7-6c10-421f-85c0-9075850196c4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "950914e7-6c10-421f-85c0-9075850196c4@6c48a", + "displayName": "img_10005_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "950914e7-6c10-421f-85c0-9075850196c4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "950914e7-6c10-421f-85c0-9075850196c4@f9941", + "displayName": "img_10005_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 134, + "height": 173, + "rawWidth": 134, + "rawHeight": 173, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -67, + -86.5, + 0, + 67, + -86.5, + 0, + -67, + 86.5, + 0, + 67, + 86.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 173, + 134, + 173, + 0, + 0, + 134, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -67, + -86.5, + 0 + ], + "maxPos": [ + 67, + 86.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "950914e7-6c10-421f-85c0-9075850196c4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "950914e7-6c10-421f-85c0-9075850196c4@6c48a" + } +} diff --git a/assets/bundles/Girls/10005/img/img_10005_14_thumbnail_blur.jpg b/assets/bundles/Girls/10005/img/img_10005_14_thumbnail_blur.jpg new file mode 100644 index 00000000..3223a48c Binary files /dev/null and b/assets/bundles/Girls/10005/img/img_10005_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10005/img/img_10005_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10005/img/img_10005_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6a24ca21 --- /dev/null +++ b/assets/bundles/Girls/10005/img/img_10005_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d410edaf-0e59-41bd-bc1d-22f7ea2eb3d4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d410edaf-0e59-41bd-bc1d-22f7ea2eb3d4@6c48a", + "displayName": "img_10005_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d410edaf-0e59-41bd-bc1d-22f7ea2eb3d4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d410edaf-0e59-41bd-bc1d-22f7ea2eb3d4@f9941", + "displayName": "img_10005_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 134, + "height": 173, + "rawWidth": 134, + "rawHeight": 173, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -67, + -86.5, + 0, + 67, + -86.5, + 0, + -67, + 86.5, + 0, + 67, + 86.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 173, + 134, + 173, + 0, + 0, + 134, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -67, + -86.5, + 0 + ], + "maxPos": [ + 67, + 86.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d410edaf-0e59-41bd-bc1d-22f7ea2eb3d4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d410edaf-0e59-41bd-bc1d-22f7ea2eb3d4@6c48a" + } +} diff --git a/assets/bundles/Girls/10005/img/img_10005_1_thumbnail_blur.jpg b/assets/bundles/Girls/10005/img/img_10005_1_thumbnail_blur.jpg new file mode 100644 index 00000000..2556cc81 Binary files /dev/null and b/assets/bundles/Girls/10005/img/img_10005_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10005/img/img_10005_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10005/img/img_10005_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4a923ab5 --- /dev/null +++ b/assets/bundles/Girls/10005/img/img_10005_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1d7ef75f-4d6e-4349-9f42-4e1dca8ba5f4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1d7ef75f-4d6e-4349-9f42-4e1dca8ba5f4@6c48a", + "displayName": "img_10005_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1d7ef75f-4d6e-4349-9f42-4e1dca8ba5f4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1d7ef75f-4d6e-4349-9f42-4e1dca8ba5f4@f9941", + "displayName": "img_10005_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1d7ef75f-4d6e-4349-9f42-4e1dca8ba5f4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1d7ef75f-4d6e-4349-9f42-4e1dca8ba5f4@6c48a" + } +} diff --git a/assets/bundles/Girls/10005/img/img_10005_2_thumbnail_blur.jpg b/assets/bundles/Girls/10005/img/img_10005_2_thumbnail_blur.jpg new file mode 100644 index 00000000..739afa63 Binary files /dev/null and b/assets/bundles/Girls/10005/img/img_10005_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10005/img/img_10005_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10005/img/img_10005_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..340aaa0d --- /dev/null +++ b/assets/bundles/Girls/10005/img/img_10005_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2514b939-b12d-400f-8520-4f9d6e869f54", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2514b939-b12d-400f-8520-4f9d6e869f54@6c48a", + "displayName": "img_10005_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2514b939-b12d-400f-8520-4f9d6e869f54", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2514b939-b12d-400f-8520-4f9d6e869f54@f9941", + "displayName": "img_10005_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 134, + "height": 173, + "rawWidth": 134, + "rawHeight": 173, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -67, + -86.5, + 0, + 67, + -86.5, + 0, + -67, + 86.5, + 0, + 67, + 86.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 173, + 134, + 173, + 0, + 0, + 134, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -67, + -86.5, + 0 + ], + "maxPos": [ + 67, + 86.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2514b939-b12d-400f-8520-4f9d6e869f54@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2514b939-b12d-400f-8520-4f9d6e869f54@6c48a" + } +} diff --git a/assets/bundles/Girls/10005/img/img_10005_3_thumbnail_blur.jpg b/assets/bundles/Girls/10005/img/img_10005_3_thumbnail_blur.jpg new file mode 100644 index 00000000..402e2046 Binary files /dev/null and b/assets/bundles/Girls/10005/img/img_10005_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10005/img/img_10005_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10005/img/img_10005_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4a0b70b8 --- /dev/null +++ b/assets/bundles/Girls/10005/img/img_10005_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a1d12530-6116-4d96-89cb-1488215f30cb", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a1d12530-6116-4d96-89cb-1488215f30cb@6c48a", + "displayName": "img_10005_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a1d12530-6116-4d96-89cb-1488215f30cb", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a1d12530-6116-4d96-89cb-1488215f30cb@f9941", + "displayName": "img_10005_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 134, + "height": 173, + "rawWidth": 134, + "rawHeight": 173, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -67, + -86.5, + 0, + 67, + -86.5, + 0, + -67, + 86.5, + 0, + 67, + 86.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 173, + 134, + 173, + 0, + 0, + 134, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -67, + -86.5, + 0 + ], + "maxPos": [ + 67, + 86.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a1d12530-6116-4d96-89cb-1488215f30cb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a1d12530-6116-4d96-89cb-1488215f30cb@6c48a" + } +} diff --git a/assets/bundles/Girls/10005/img/img_10005_4_thumbnail_blur.jpg b/assets/bundles/Girls/10005/img/img_10005_4_thumbnail_blur.jpg new file mode 100644 index 00000000..ee5e2102 Binary files /dev/null and b/assets/bundles/Girls/10005/img/img_10005_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10005/img/img_10005_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10005/img/img_10005_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..95a472df --- /dev/null +++ b/assets/bundles/Girls/10005/img/img_10005_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d4d6ff8e-13b5-453f-b3a5-18bc29396c2e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d4d6ff8e-13b5-453f-b3a5-18bc29396c2e@6c48a", + "displayName": "img_10005_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d4d6ff8e-13b5-453f-b3a5-18bc29396c2e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d4d6ff8e-13b5-453f-b3a5-18bc29396c2e@f9941", + "displayName": "img_10005_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 134, + "height": 173, + "rawWidth": 134, + "rawHeight": 173, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -67, + -86.5, + 0, + 67, + -86.5, + 0, + -67, + 86.5, + 0, + 67, + 86.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 173, + 134, + 173, + 0, + 0, + 134, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -67, + -86.5, + 0 + ], + "maxPos": [ + 67, + 86.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d4d6ff8e-13b5-453f-b3a5-18bc29396c2e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d4d6ff8e-13b5-453f-b3a5-18bc29396c2e@6c48a" + } +} diff --git a/assets/bundles/Girls/10005/img/img_10005_5_thumbnail_blur.jpg b/assets/bundles/Girls/10005/img/img_10005_5_thumbnail_blur.jpg new file mode 100644 index 00000000..c98fb867 Binary files /dev/null and b/assets/bundles/Girls/10005/img/img_10005_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10005/img/img_10005_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10005/img/img_10005_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..69adb3fa --- /dev/null +++ b/assets/bundles/Girls/10005/img/img_10005_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5b00a976-01af-4d57-8e11-00a78cb7b7ca", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5b00a976-01af-4d57-8e11-00a78cb7b7ca@6c48a", + "displayName": "img_10005_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5b00a976-01af-4d57-8e11-00a78cb7b7ca", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5b00a976-01af-4d57-8e11-00a78cb7b7ca@f9941", + "displayName": "img_10005_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 134, + "height": 173, + "rawWidth": 134, + "rawHeight": 173, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -67, + -86.5, + 0, + 67, + -86.5, + 0, + -67, + 86.5, + 0, + 67, + 86.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 173, + 134, + 173, + 0, + 0, + 134, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -67, + -86.5, + 0 + ], + "maxPos": [ + 67, + 86.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5b00a976-01af-4d57-8e11-00a78cb7b7ca@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5b00a976-01af-4d57-8e11-00a78cb7b7ca@6c48a" + } +} diff --git a/assets/bundles/Girls/10005/img/img_10005_6_thumbnail_blur.jpg b/assets/bundles/Girls/10005/img/img_10005_6_thumbnail_blur.jpg new file mode 100644 index 00000000..986bb9ec Binary files /dev/null and b/assets/bundles/Girls/10005/img/img_10005_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10005/img/img_10005_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10005/img/img_10005_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f5596b7d --- /dev/null +++ b/assets/bundles/Girls/10005/img/img_10005_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bfd7bb4b-f06d-4cb6-a9db-7bbe68a68650", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bfd7bb4b-f06d-4cb6-a9db-7bbe68a68650@6c48a", + "displayName": "img_10005_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bfd7bb4b-f06d-4cb6-a9db-7bbe68a68650", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "bfd7bb4b-f06d-4cb6-a9db-7bbe68a68650@f9941", + "displayName": "img_10005_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bfd7bb4b-f06d-4cb6-a9db-7bbe68a68650@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bfd7bb4b-f06d-4cb6-a9db-7bbe68a68650@6c48a" + } +} diff --git a/assets/bundles/Girls/10005/img/img_10005_7_thumbnail_blur.jpg b/assets/bundles/Girls/10005/img/img_10005_7_thumbnail_blur.jpg new file mode 100644 index 00000000..13ffd672 Binary files /dev/null and b/assets/bundles/Girls/10005/img/img_10005_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10005/img/img_10005_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10005/img/img_10005_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..01eb3f32 --- /dev/null +++ b/assets/bundles/Girls/10005/img/img_10005_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ea4ff162-beb7-4d9e-8400-e2de80ed7f69", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ea4ff162-beb7-4d9e-8400-e2de80ed7f69@6c48a", + "displayName": "img_10005_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ea4ff162-beb7-4d9e-8400-e2de80ed7f69", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ea4ff162-beb7-4d9e-8400-e2de80ed7f69@f9941", + "displayName": "img_10005_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 134, + "height": 173, + "rawWidth": 134, + "rawHeight": 173, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -67, + -86.5, + 0, + 67, + -86.5, + 0, + -67, + 86.5, + 0, + 67, + 86.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 173, + 134, + 173, + 0, + 0, + 134, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -67, + -86.5, + 0 + ], + "maxPos": [ + 67, + 86.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ea4ff162-beb7-4d9e-8400-e2de80ed7f69@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ea4ff162-beb7-4d9e-8400-e2de80ed7f69@6c48a" + } +} diff --git a/assets/bundles/Girls/10005/img/img_10005_8_thumbnail_blur.jpg b/assets/bundles/Girls/10005/img/img_10005_8_thumbnail_blur.jpg new file mode 100644 index 00000000..ea8ca244 Binary files /dev/null and b/assets/bundles/Girls/10005/img/img_10005_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10005/img/img_10005_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10005/img/img_10005_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1b160ca9 --- /dev/null +++ b/assets/bundles/Girls/10005/img/img_10005_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7e6b0129-1b90-4a16-81d7-e9d3bcf4bfe8", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7e6b0129-1b90-4a16-81d7-e9d3bcf4bfe8@6c48a", + "displayName": "img_10005_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7e6b0129-1b90-4a16-81d7-e9d3bcf4bfe8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7e6b0129-1b90-4a16-81d7-e9d3bcf4bfe8@f9941", + "displayName": "img_10005_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 134, + "height": 173, + "rawWidth": 134, + "rawHeight": 173, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -67, + -86.5, + 0, + 67, + -86.5, + 0, + -67, + 86.5, + 0, + 67, + 86.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 173, + 134, + 173, + 0, + 0, + 134, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -67, + -86.5, + 0 + ], + "maxPos": [ + 67, + 86.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7e6b0129-1b90-4a16-81d7-e9d3bcf4bfe8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7e6b0129-1b90-4a16-81d7-e9d3bcf4bfe8@6c48a" + } +} diff --git a/assets/bundles/Girls/10005/img/img_10005_9_thumbnail_blur.jpg b/assets/bundles/Girls/10005/img/img_10005_9_thumbnail_blur.jpg new file mode 100644 index 00000000..27c1d10e Binary files /dev/null and b/assets/bundles/Girls/10005/img/img_10005_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10005/img/img_10005_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10005/img/img_10005_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c1167dc7 --- /dev/null +++ b/assets/bundles/Girls/10005/img/img_10005_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "de0c4ba7-0a4c-42a0-bc54-9f115f7cae88", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "de0c4ba7-0a4c-42a0-bc54-9f115f7cae88@6c48a", + "displayName": "img_10005_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "de0c4ba7-0a4c-42a0-bc54-9f115f7cae88", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "de0c4ba7-0a4c-42a0-bc54-9f115f7cae88@f9941", + "displayName": "img_10005_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 134, + "height": 173, + "rawWidth": 134, + "rawHeight": 173, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -67, + -86.5, + 0, + 67, + -86.5, + 0, + -67, + 86.5, + 0, + 67, + 86.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 173, + 134, + 173, + 0, + 0, + 134, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -67, + -86.5, + 0 + ], + "maxPos": [ + 67, + 86.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "de0c4ba7-0a4c-42a0-bc54-9f115f7cae88@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "de0c4ba7-0a4c-42a0-bc54-9f115f7cae88@6c48a" + } +} diff --git a/assets/bundles/Girls/10006/img/img_10006_10_thumbnail_blur.jpg b/assets/bundles/Girls/10006/img/img_10006_10_thumbnail_blur.jpg new file mode 100644 index 00000000..964b73b1 Binary files /dev/null and b/assets/bundles/Girls/10006/img/img_10006_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10006/img/img_10006_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10006/img/img_10006_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e9a586e4 --- /dev/null +++ b/assets/bundles/Girls/10006/img/img_10006_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "746541be-538d-4621-abbe-9873c8e6b5da", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "746541be-538d-4621-abbe-9873c8e6b5da@6c48a", + "displayName": "img_10006_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "746541be-538d-4621-abbe-9873c8e6b5da", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "746541be-538d-4621-abbe-9873c8e6b5da@f9941", + "displayName": "img_10006_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "746541be-538d-4621-abbe-9873c8e6b5da@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "746541be-538d-4621-abbe-9873c8e6b5da@6c48a" + } +} diff --git a/assets/bundles/Girls/10006/img/img_10006_1_thumbnail_blur.jpg b/assets/bundles/Girls/10006/img/img_10006_1_thumbnail_blur.jpg new file mode 100644 index 00000000..f5ad8d86 Binary files /dev/null and b/assets/bundles/Girls/10006/img/img_10006_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10006/img/img_10006_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10006/img/img_10006_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5b63ea0d --- /dev/null +++ b/assets/bundles/Girls/10006/img/img_10006_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dec2e497-f18b-4da6-b033-ee6e3c7a39f9", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dec2e497-f18b-4da6-b033-ee6e3c7a39f9@6c48a", + "displayName": "img_10006_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dec2e497-f18b-4da6-b033-ee6e3c7a39f9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "dec2e497-f18b-4da6-b033-ee6e3c7a39f9@f9941", + "displayName": "img_10006_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dec2e497-f18b-4da6-b033-ee6e3c7a39f9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dec2e497-f18b-4da6-b033-ee6e3c7a39f9@6c48a" + } +} diff --git a/assets/bundles/Girls/10006/img/img_10006_2_thumbnail_blur.jpg b/assets/bundles/Girls/10006/img/img_10006_2_thumbnail_blur.jpg new file mode 100644 index 00000000..4b2843bb Binary files /dev/null and b/assets/bundles/Girls/10006/img/img_10006_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10006/img/img_10006_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10006/img/img_10006_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..73296f33 --- /dev/null +++ b/assets/bundles/Girls/10006/img/img_10006_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d63140f4-9e7a-4a71-9e21-587952214a76", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d63140f4-9e7a-4a71-9e21-587952214a76@6c48a", + "displayName": "img_10006_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d63140f4-9e7a-4a71-9e21-587952214a76", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d63140f4-9e7a-4a71-9e21-587952214a76@f9941", + "displayName": "img_10006_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d63140f4-9e7a-4a71-9e21-587952214a76@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d63140f4-9e7a-4a71-9e21-587952214a76@6c48a" + } +} diff --git a/assets/bundles/Girls/10006/img/img_10006_3_thumbnail_blur.jpg b/assets/bundles/Girls/10006/img/img_10006_3_thumbnail_blur.jpg new file mode 100644 index 00000000..80a26655 Binary files /dev/null and b/assets/bundles/Girls/10006/img/img_10006_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10006/img/img_10006_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10006/img/img_10006_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4948ce9d --- /dev/null +++ b/assets/bundles/Girls/10006/img/img_10006_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4f25a5a7-d118-4fa3-95f6-2c11e8046663", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4f25a5a7-d118-4fa3-95f6-2c11e8046663@6c48a", + "displayName": "img_10006_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4f25a5a7-d118-4fa3-95f6-2c11e8046663", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4f25a5a7-d118-4fa3-95f6-2c11e8046663@f9941", + "displayName": "img_10006_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4f25a5a7-d118-4fa3-95f6-2c11e8046663@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4f25a5a7-d118-4fa3-95f6-2c11e8046663@6c48a" + } +} diff --git a/assets/bundles/Girls/10006/img/img_10006_4_thumbnail_blur.jpg b/assets/bundles/Girls/10006/img/img_10006_4_thumbnail_blur.jpg new file mode 100644 index 00000000..e120965d Binary files /dev/null and b/assets/bundles/Girls/10006/img/img_10006_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10006/img/img_10006_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10006/img/img_10006_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..fb57e40f --- /dev/null +++ b/assets/bundles/Girls/10006/img/img_10006_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "08a562c5-031c-4c77-8966-92e90c4f0f54", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "08a562c5-031c-4c77-8966-92e90c4f0f54@6c48a", + "displayName": "img_10006_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "08a562c5-031c-4c77-8966-92e90c4f0f54", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "08a562c5-031c-4c77-8966-92e90c4f0f54@f9941", + "displayName": "img_10006_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "08a562c5-031c-4c77-8966-92e90c4f0f54@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "08a562c5-031c-4c77-8966-92e90c4f0f54@6c48a" + } +} diff --git a/assets/bundles/Girls/10006/img/img_10006_5_thumbnail_blur.jpg b/assets/bundles/Girls/10006/img/img_10006_5_thumbnail_blur.jpg new file mode 100644 index 00000000..362b496e Binary files /dev/null and b/assets/bundles/Girls/10006/img/img_10006_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10006/img/img_10006_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10006/img/img_10006_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8cbc1e04 --- /dev/null +++ b/assets/bundles/Girls/10006/img/img_10006_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "68cf1782-b51e-4432-a890-d258d9c6b1f0", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "68cf1782-b51e-4432-a890-d258d9c6b1f0@6c48a", + "displayName": "img_10006_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "68cf1782-b51e-4432-a890-d258d9c6b1f0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "68cf1782-b51e-4432-a890-d258d9c6b1f0@f9941", + "displayName": "img_10006_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "68cf1782-b51e-4432-a890-d258d9c6b1f0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "68cf1782-b51e-4432-a890-d258d9c6b1f0@6c48a" + } +} diff --git a/assets/bundles/Girls/10006/img/img_10006_6_thumbnail_blur.jpg b/assets/bundles/Girls/10006/img/img_10006_6_thumbnail_blur.jpg new file mode 100644 index 00000000..9b50cab1 Binary files /dev/null and b/assets/bundles/Girls/10006/img/img_10006_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10006/img/img_10006_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10006/img/img_10006_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8146a11b --- /dev/null +++ b/assets/bundles/Girls/10006/img/img_10006_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "78662c2d-71ed-4a1a-a1f8-77a26a3adc04", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "78662c2d-71ed-4a1a-a1f8-77a26a3adc04@6c48a", + "displayName": "img_10006_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "78662c2d-71ed-4a1a-a1f8-77a26a3adc04", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "78662c2d-71ed-4a1a-a1f8-77a26a3adc04@f9941", + "displayName": "img_10006_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "78662c2d-71ed-4a1a-a1f8-77a26a3adc04@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "78662c2d-71ed-4a1a-a1f8-77a26a3adc04@6c48a" + } +} diff --git a/assets/bundles/Girls/10006/img/img_10006_7_thumbnail_blur.jpg b/assets/bundles/Girls/10006/img/img_10006_7_thumbnail_blur.jpg new file mode 100644 index 00000000..245fa2c6 Binary files /dev/null and b/assets/bundles/Girls/10006/img/img_10006_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10006/img/img_10006_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10006/img/img_10006_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5c04a959 --- /dev/null +++ b/assets/bundles/Girls/10006/img/img_10006_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "065b71bb-6f7d-4bed-94f9-6be2871d08c2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "065b71bb-6f7d-4bed-94f9-6be2871d08c2@6c48a", + "displayName": "img_10006_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "065b71bb-6f7d-4bed-94f9-6be2871d08c2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "065b71bb-6f7d-4bed-94f9-6be2871d08c2@f9941", + "displayName": "img_10006_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "065b71bb-6f7d-4bed-94f9-6be2871d08c2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "065b71bb-6f7d-4bed-94f9-6be2871d08c2@6c48a" + } +} diff --git a/assets/bundles/Girls/10006/img/img_10006_8_thumbnail_blur.jpg b/assets/bundles/Girls/10006/img/img_10006_8_thumbnail_blur.jpg new file mode 100644 index 00000000..cedf5d73 Binary files /dev/null and b/assets/bundles/Girls/10006/img/img_10006_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10006/img/img_10006_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10006/img/img_10006_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3e98de69 --- /dev/null +++ b/assets/bundles/Girls/10006/img/img_10006_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "be958c39-1a61-4cca-bc2d-c3e3caf93092", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "be958c39-1a61-4cca-bc2d-c3e3caf93092@6c48a", + "displayName": "img_10006_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "be958c39-1a61-4cca-bc2d-c3e3caf93092", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "be958c39-1a61-4cca-bc2d-c3e3caf93092@f9941", + "displayName": "img_10006_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "be958c39-1a61-4cca-bc2d-c3e3caf93092@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "be958c39-1a61-4cca-bc2d-c3e3caf93092@6c48a" + } +} diff --git a/assets/bundles/Girls/10006/img/img_10006_9_thumbnail_blur.jpg b/assets/bundles/Girls/10006/img/img_10006_9_thumbnail_blur.jpg new file mode 100644 index 00000000..d1a3b64c Binary files /dev/null and b/assets/bundles/Girls/10006/img/img_10006_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10006/img/img_10006_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10006/img/img_10006_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..96f9ed67 --- /dev/null +++ b/assets/bundles/Girls/10006/img/img_10006_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "04da9b07-7a03-46a9-991e-9cb31a7078dd", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "04da9b07-7a03-46a9-991e-9cb31a7078dd@6c48a", + "displayName": "img_10006_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "04da9b07-7a03-46a9-991e-9cb31a7078dd", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "04da9b07-7a03-46a9-991e-9cb31a7078dd@f9941", + "displayName": "img_10006_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "04da9b07-7a03-46a9-991e-9cb31a7078dd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "04da9b07-7a03-46a9-991e-9cb31a7078dd@6c48a" + } +} diff --git a/assets/bundles/Girls/10007/img/img_10007_10_thumbnail_blur.jpg b/assets/bundles/Girls/10007/img/img_10007_10_thumbnail_blur.jpg new file mode 100644 index 00000000..f8b164b3 Binary files /dev/null and b/assets/bundles/Girls/10007/img/img_10007_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10007/img/img_10007_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10007/img/img_10007_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..992495ae --- /dev/null +++ b/assets/bundles/Girls/10007/img/img_10007_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fde1395d-6b8c-4ee0-b14d-1c433c2d7280", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fde1395d-6b8c-4ee0-b14d-1c433c2d7280@6c48a", + "displayName": "img_10007_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fde1395d-6b8c-4ee0-b14d-1c433c2d7280", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "fde1395d-6b8c-4ee0-b14d-1c433c2d7280@f9941", + "displayName": "img_10007_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fde1395d-6b8c-4ee0-b14d-1c433c2d7280@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fde1395d-6b8c-4ee0-b14d-1c433c2d7280@6c48a" + } +} diff --git a/assets/bundles/Girls/10007/img/img_10007_11_thumbnail_blur.jpg b/assets/bundles/Girls/10007/img/img_10007_11_thumbnail_blur.jpg new file mode 100644 index 00000000..5429eb7a Binary files /dev/null and b/assets/bundles/Girls/10007/img/img_10007_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10007/img/img_10007_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10007/img/img_10007_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8f8f0eb3 --- /dev/null +++ b/assets/bundles/Girls/10007/img/img_10007_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ddb4d262-b867-4c5c-8066-5390621f30b3", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ddb4d262-b867-4c5c-8066-5390621f30b3@6c48a", + "displayName": "img_10007_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ddb4d262-b867-4c5c-8066-5390621f30b3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ddb4d262-b867-4c5c-8066-5390621f30b3@f9941", + "displayName": "img_10007_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ddb4d262-b867-4c5c-8066-5390621f30b3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ddb4d262-b867-4c5c-8066-5390621f30b3@6c48a" + } +} diff --git a/assets/bundles/Girls/10007/img/img_10007_12_thumbnail_blur.jpg b/assets/bundles/Girls/10007/img/img_10007_12_thumbnail_blur.jpg new file mode 100644 index 00000000..009be557 Binary files /dev/null and b/assets/bundles/Girls/10007/img/img_10007_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10007/img/img_10007_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10007/img/img_10007_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..2093a6fd --- /dev/null +++ b/assets/bundles/Girls/10007/img/img_10007_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "98c60542-e58e-4991-88e8-79317bf56560", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "98c60542-e58e-4991-88e8-79317bf56560@6c48a", + "displayName": "img_10007_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "98c60542-e58e-4991-88e8-79317bf56560", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "98c60542-e58e-4991-88e8-79317bf56560@f9941", + "displayName": "img_10007_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "98c60542-e58e-4991-88e8-79317bf56560@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "98c60542-e58e-4991-88e8-79317bf56560@6c48a" + } +} diff --git a/assets/bundles/Girls/10007/img/img_10007_13_thumbnail_blur.jpg b/assets/bundles/Girls/10007/img/img_10007_13_thumbnail_blur.jpg new file mode 100644 index 00000000..2cfddd30 Binary files /dev/null and b/assets/bundles/Girls/10007/img/img_10007_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10007/img/img_10007_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10007/img/img_10007_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c92e7893 --- /dev/null +++ b/assets/bundles/Girls/10007/img/img_10007_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "113ff585-c77f-4b2f-bb3e-8fff2cfc5937", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "113ff585-c77f-4b2f-bb3e-8fff2cfc5937@6c48a", + "displayName": "img_10007_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "113ff585-c77f-4b2f-bb3e-8fff2cfc5937", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "113ff585-c77f-4b2f-bb3e-8fff2cfc5937@f9941", + "displayName": "img_10007_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "113ff585-c77f-4b2f-bb3e-8fff2cfc5937@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "113ff585-c77f-4b2f-bb3e-8fff2cfc5937@6c48a" + } +} diff --git a/assets/bundles/Girls/10007/img/img_10007_14_thumbnail_blur.jpg b/assets/bundles/Girls/10007/img/img_10007_14_thumbnail_blur.jpg new file mode 100644 index 00000000..f5ca1b45 Binary files /dev/null and b/assets/bundles/Girls/10007/img/img_10007_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10007/img/img_10007_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10007/img/img_10007_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7d2aef6a --- /dev/null +++ b/assets/bundles/Girls/10007/img/img_10007_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a5bc28ea-330f-493f-9bf2-cf253bbcb10d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a5bc28ea-330f-493f-9bf2-cf253bbcb10d@6c48a", + "displayName": "img_10007_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a5bc28ea-330f-493f-9bf2-cf253bbcb10d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a5bc28ea-330f-493f-9bf2-cf253bbcb10d@f9941", + "displayName": "img_10007_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a5bc28ea-330f-493f-9bf2-cf253bbcb10d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a5bc28ea-330f-493f-9bf2-cf253bbcb10d@6c48a" + } +} diff --git a/assets/bundles/Girls/10007/img/img_10007_1_thumbnail_blur.jpg b/assets/bundles/Girls/10007/img/img_10007_1_thumbnail_blur.jpg new file mode 100644 index 00000000..26d81e71 Binary files /dev/null and b/assets/bundles/Girls/10007/img/img_10007_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10007/img/img_10007_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10007/img/img_10007_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..50282e7f --- /dev/null +++ b/assets/bundles/Girls/10007/img/img_10007_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9d1404be-6264-4e38-b680-12136f398040", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9d1404be-6264-4e38-b680-12136f398040@6c48a", + "displayName": "img_10007_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9d1404be-6264-4e38-b680-12136f398040", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9d1404be-6264-4e38-b680-12136f398040@f9941", + "displayName": "img_10007_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9d1404be-6264-4e38-b680-12136f398040@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9d1404be-6264-4e38-b680-12136f398040@6c48a" + } +} diff --git a/assets/bundles/Girls/10007/img/img_10007_2_thumbnail_blur.jpg b/assets/bundles/Girls/10007/img/img_10007_2_thumbnail_blur.jpg new file mode 100644 index 00000000..fdeaae98 Binary files /dev/null and b/assets/bundles/Girls/10007/img/img_10007_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10007/img/img_10007_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10007/img/img_10007_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3af5893d --- /dev/null +++ b/assets/bundles/Girls/10007/img/img_10007_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cfcb8480-f39d-474d-9e2f-c88e808dff5a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cfcb8480-f39d-474d-9e2f-c88e808dff5a@6c48a", + "displayName": "img_10007_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cfcb8480-f39d-474d-9e2f-c88e808dff5a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cfcb8480-f39d-474d-9e2f-c88e808dff5a@f9941", + "displayName": "img_10007_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cfcb8480-f39d-474d-9e2f-c88e808dff5a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cfcb8480-f39d-474d-9e2f-c88e808dff5a@6c48a" + } +} diff --git a/assets/bundles/Girls/10007/img/img_10007_3_thumbnail_blur.jpg b/assets/bundles/Girls/10007/img/img_10007_3_thumbnail_blur.jpg new file mode 100644 index 00000000..cbe511ff Binary files /dev/null and b/assets/bundles/Girls/10007/img/img_10007_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10007/img/img_10007_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10007/img/img_10007_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3eba8bfa --- /dev/null +++ b/assets/bundles/Girls/10007/img/img_10007_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8433b40b-b280-47cd-b5b3-5d226f64c934", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8433b40b-b280-47cd-b5b3-5d226f64c934@6c48a", + "displayName": "img_10007_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8433b40b-b280-47cd-b5b3-5d226f64c934", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8433b40b-b280-47cd-b5b3-5d226f64c934@f9941", + "displayName": "img_10007_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8433b40b-b280-47cd-b5b3-5d226f64c934@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8433b40b-b280-47cd-b5b3-5d226f64c934@6c48a" + } +} diff --git a/assets/bundles/Girls/10007/img/img_10007_4_thumbnail_blur.jpg b/assets/bundles/Girls/10007/img/img_10007_4_thumbnail_blur.jpg new file mode 100644 index 00000000..5b25893b Binary files /dev/null and b/assets/bundles/Girls/10007/img/img_10007_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10007/img/img_10007_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10007/img/img_10007_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..faa75269 --- /dev/null +++ b/assets/bundles/Girls/10007/img/img_10007_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "19608497-ce24-4875-bd70-26aada0ea77e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "19608497-ce24-4875-bd70-26aada0ea77e@6c48a", + "displayName": "img_10007_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "19608497-ce24-4875-bd70-26aada0ea77e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "19608497-ce24-4875-bd70-26aada0ea77e@f9941", + "displayName": "img_10007_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19608497-ce24-4875-bd70-26aada0ea77e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "19608497-ce24-4875-bd70-26aada0ea77e@6c48a" + } +} diff --git a/assets/bundles/Girls/10007/img/img_10007_5_thumbnail_blur.jpg b/assets/bundles/Girls/10007/img/img_10007_5_thumbnail_blur.jpg new file mode 100644 index 00000000..684945c0 Binary files /dev/null and b/assets/bundles/Girls/10007/img/img_10007_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10007/img/img_10007_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10007/img/img_10007_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..cc06d1f1 --- /dev/null +++ b/assets/bundles/Girls/10007/img/img_10007_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "303be090-cb64-4b86-bd07-606eb51e8d0c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "303be090-cb64-4b86-bd07-606eb51e8d0c@6c48a", + "displayName": "img_10007_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "303be090-cb64-4b86-bd07-606eb51e8d0c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "303be090-cb64-4b86-bd07-606eb51e8d0c@f9941", + "displayName": "img_10007_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "303be090-cb64-4b86-bd07-606eb51e8d0c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "303be090-cb64-4b86-bd07-606eb51e8d0c@6c48a" + } +} diff --git a/assets/bundles/Girls/10007/img/img_10007_6_thumbnail_blur.jpg b/assets/bundles/Girls/10007/img/img_10007_6_thumbnail_blur.jpg new file mode 100644 index 00000000..f47a0d98 Binary files /dev/null and b/assets/bundles/Girls/10007/img/img_10007_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10007/img/img_10007_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10007/img/img_10007_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..926efc16 --- /dev/null +++ b/assets/bundles/Girls/10007/img/img_10007_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "66a35a4e-476f-4d43-8fc5-f1e499e126bc", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "66a35a4e-476f-4d43-8fc5-f1e499e126bc@6c48a", + "displayName": "img_10007_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "66a35a4e-476f-4d43-8fc5-f1e499e126bc", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "66a35a4e-476f-4d43-8fc5-f1e499e126bc@f9941", + "displayName": "img_10007_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "66a35a4e-476f-4d43-8fc5-f1e499e126bc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "66a35a4e-476f-4d43-8fc5-f1e499e126bc@6c48a" + } +} diff --git a/assets/bundles/Girls/10007/img/img_10007_7_thumbnail_blur.jpg b/assets/bundles/Girls/10007/img/img_10007_7_thumbnail_blur.jpg new file mode 100644 index 00000000..c9e61f52 Binary files /dev/null and b/assets/bundles/Girls/10007/img/img_10007_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10007/img/img_10007_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10007/img/img_10007_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d2c8bc38 --- /dev/null +++ b/assets/bundles/Girls/10007/img/img_10007_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e106c685-6621-4561-b30b-cf7978b8ea77", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e106c685-6621-4561-b30b-cf7978b8ea77@6c48a", + "displayName": "img_10007_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e106c685-6621-4561-b30b-cf7978b8ea77", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e106c685-6621-4561-b30b-cf7978b8ea77@f9941", + "displayName": "img_10007_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e106c685-6621-4561-b30b-cf7978b8ea77@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e106c685-6621-4561-b30b-cf7978b8ea77@6c48a" + } +} diff --git a/assets/bundles/Girls/10007/img/img_10007_8_thumbnail_blur.jpg b/assets/bundles/Girls/10007/img/img_10007_8_thumbnail_blur.jpg new file mode 100644 index 00000000..c58b6178 Binary files /dev/null and b/assets/bundles/Girls/10007/img/img_10007_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10007/img/img_10007_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10007/img/img_10007_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0808bf21 --- /dev/null +++ b/assets/bundles/Girls/10007/img/img_10007_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "45ca1485-22ec-4472-bb55-071581d983e2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "45ca1485-22ec-4472-bb55-071581d983e2@6c48a", + "displayName": "img_10007_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "45ca1485-22ec-4472-bb55-071581d983e2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "45ca1485-22ec-4472-bb55-071581d983e2@f9941", + "displayName": "img_10007_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "45ca1485-22ec-4472-bb55-071581d983e2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "45ca1485-22ec-4472-bb55-071581d983e2@6c48a" + } +} diff --git a/assets/bundles/Girls/10007/img/img_10007_9_thumbnail_blur.jpg b/assets/bundles/Girls/10007/img/img_10007_9_thumbnail_blur.jpg new file mode 100644 index 00000000..7660c11a Binary files /dev/null and b/assets/bundles/Girls/10007/img/img_10007_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10007/img/img_10007_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10007/img/img_10007_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..da0bcf64 --- /dev/null +++ b/assets/bundles/Girls/10007/img/img_10007_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "312490ec-6225-4ba6-9c7b-c7482cac8928", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "312490ec-6225-4ba6-9c7b-c7482cac8928@6c48a", + "displayName": "img_10007_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "312490ec-6225-4ba6-9c7b-c7482cac8928", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "312490ec-6225-4ba6-9c7b-c7482cac8928@f9941", + "displayName": "img_10007_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "312490ec-6225-4ba6-9c7b-c7482cac8928@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "312490ec-6225-4ba6-9c7b-c7482cac8928@6c48a" + } +} diff --git a/assets/bundles/Girls/10008/img/img_10008_10_thumbnail_blur.jpg b/assets/bundles/Girls/10008/img/img_10008_10_thumbnail_blur.jpg new file mode 100644 index 00000000..25524444 Binary files /dev/null and b/assets/bundles/Girls/10008/img/img_10008_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10008/img/img_10008_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10008/img/img_10008_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6576155b --- /dev/null +++ b/assets/bundles/Girls/10008/img/img_10008_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "115f0296-3cdb-41cf-a96d-51188195675b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "115f0296-3cdb-41cf-a96d-51188195675b@6c48a", + "displayName": "img_10008_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "115f0296-3cdb-41cf-a96d-51188195675b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "115f0296-3cdb-41cf-a96d-51188195675b@f9941", + "displayName": "img_10008_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "115f0296-3cdb-41cf-a96d-51188195675b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "115f0296-3cdb-41cf-a96d-51188195675b@6c48a" + } +} diff --git a/assets/bundles/Girls/10008/img/img_10008_11_thumbnail_blur.jpg b/assets/bundles/Girls/10008/img/img_10008_11_thumbnail_blur.jpg new file mode 100644 index 00000000..29a11451 Binary files /dev/null and b/assets/bundles/Girls/10008/img/img_10008_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10008/img/img_10008_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10008/img/img_10008_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f8e3bd8a --- /dev/null +++ b/assets/bundles/Girls/10008/img/img_10008_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5c7276b8-4a00-4199-9174-ea5423fff32a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5c7276b8-4a00-4199-9174-ea5423fff32a@6c48a", + "displayName": "img_10008_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5c7276b8-4a00-4199-9174-ea5423fff32a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5c7276b8-4a00-4199-9174-ea5423fff32a@f9941", + "displayName": "img_10008_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5c7276b8-4a00-4199-9174-ea5423fff32a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5c7276b8-4a00-4199-9174-ea5423fff32a@6c48a" + } +} diff --git a/assets/bundles/Girls/10008/img/img_10008_12_thumbnail_blur.jpg b/assets/bundles/Girls/10008/img/img_10008_12_thumbnail_blur.jpg new file mode 100644 index 00000000..33eca46f Binary files /dev/null and b/assets/bundles/Girls/10008/img/img_10008_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10008/img/img_10008_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10008/img/img_10008_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c329c9b9 --- /dev/null +++ b/assets/bundles/Girls/10008/img/img_10008_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bb1caacf-1743-401d-9d75-f521a873ccb9", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bb1caacf-1743-401d-9d75-f521a873ccb9@6c48a", + "displayName": "img_10008_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bb1caacf-1743-401d-9d75-f521a873ccb9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "bb1caacf-1743-401d-9d75-f521a873ccb9@f9941", + "displayName": "img_10008_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bb1caacf-1743-401d-9d75-f521a873ccb9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bb1caacf-1743-401d-9d75-f521a873ccb9@6c48a" + } +} diff --git a/assets/bundles/Girls/10008/img/img_10008_1_thumbnail_blur.jpg b/assets/bundles/Girls/10008/img/img_10008_1_thumbnail_blur.jpg new file mode 100644 index 00000000..0c9caffa Binary files /dev/null and b/assets/bundles/Girls/10008/img/img_10008_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10008/img/img_10008_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10008/img/img_10008_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..cf6b8e83 --- /dev/null +++ b/assets/bundles/Girls/10008/img/img_10008_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4ecbf202-5a64-49f1-8024-2941366101ce", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4ecbf202-5a64-49f1-8024-2941366101ce@6c48a", + "displayName": "img_10008_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4ecbf202-5a64-49f1-8024-2941366101ce", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4ecbf202-5a64-49f1-8024-2941366101ce@f9941", + "displayName": "img_10008_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4ecbf202-5a64-49f1-8024-2941366101ce@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4ecbf202-5a64-49f1-8024-2941366101ce@6c48a" + } +} diff --git a/assets/bundles/Girls/10008/img/img_10008_2_thumbnail_blur.jpg b/assets/bundles/Girls/10008/img/img_10008_2_thumbnail_blur.jpg new file mode 100644 index 00000000..17490238 Binary files /dev/null and b/assets/bundles/Girls/10008/img/img_10008_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10008/img/img_10008_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10008/img/img_10008_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6bfd92b4 --- /dev/null +++ b/assets/bundles/Girls/10008/img/img_10008_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c40a8d28-b034-4cab-9c50-ad01812a851c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c40a8d28-b034-4cab-9c50-ad01812a851c@6c48a", + "displayName": "img_10008_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c40a8d28-b034-4cab-9c50-ad01812a851c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c40a8d28-b034-4cab-9c50-ad01812a851c@f9941", + "displayName": "img_10008_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c40a8d28-b034-4cab-9c50-ad01812a851c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c40a8d28-b034-4cab-9c50-ad01812a851c@6c48a" + } +} diff --git a/assets/bundles/Girls/10008/img/img_10008_3_thumbnail_blur.jpg b/assets/bundles/Girls/10008/img/img_10008_3_thumbnail_blur.jpg new file mode 100644 index 00000000..942a61d2 Binary files /dev/null and b/assets/bundles/Girls/10008/img/img_10008_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10008/img/img_10008_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10008/img/img_10008_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a3de8ce6 --- /dev/null +++ b/assets/bundles/Girls/10008/img/img_10008_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5df7e5a5-ab77-433f-a9a6-148d7f09fe6a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5df7e5a5-ab77-433f-a9a6-148d7f09fe6a@6c48a", + "displayName": "img_10008_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5df7e5a5-ab77-433f-a9a6-148d7f09fe6a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5df7e5a5-ab77-433f-a9a6-148d7f09fe6a@f9941", + "displayName": "img_10008_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5df7e5a5-ab77-433f-a9a6-148d7f09fe6a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5df7e5a5-ab77-433f-a9a6-148d7f09fe6a@6c48a" + } +} diff --git a/assets/bundles/Girls/10008/img/img_10008_4_thumbnail_blur.jpg b/assets/bundles/Girls/10008/img/img_10008_4_thumbnail_blur.jpg new file mode 100644 index 00000000..28dc5039 Binary files /dev/null and b/assets/bundles/Girls/10008/img/img_10008_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10008/img/img_10008_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10008/img/img_10008_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f867f9e6 --- /dev/null +++ b/assets/bundles/Girls/10008/img/img_10008_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "81fca4fb-7288-46cf-9272-8236fe600d28", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "81fca4fb-7288-46cf-9272-8236fe600d28@6c48a", + "displayName": "img_10008_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "81fca4fb-7288-46cf-9272-8236fe600d28", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "81fca4fb-7288-46cf-9272-8236fe600d28@f9941", + "displayName": "img_10008_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "81fca4fb-7288-46cf-9272-8236fe600d28@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "81fca4fb-7288-46cf-9272-8236fe600d28@6c48a" + } +} diff --git a/assets/bundles/Girls/10008/img/img_10008_5_thumbnail_blur.jpg b/assets/bundles/Girls/10008/img/img_10008_5_thumbnail_blur.jpg new file mode 100644 index 00000000..d47b169e Binary files /dev/null and b/assets/bundles/Girls/10008/img/img_10008_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10008/img/img_10008_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10008/img/img_10008_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ae3a7dd0 --- /dev/null +++ b/assets/bundles/Girls/10008/img/img_10008_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d07433be-8d07-415d-8330-239fd8b5cd78", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d07433be-8d07-415d-8330-239fd8b5cd78@6c48a", + "displayName": "img_10008_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d07433be-8d07-415d-8330-239fd8b5cd78", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d07433be-8d07-415d-8330-239fd8b5cd78@f9941", + "displayName": "img_10008_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d07433be-8d07-415d-8330-239fd8b5cd78@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d07433be-8d07-415d-8330-239fd8b5cd78@6c48a" + } +} diff --git a/assets/bundles/Girls/10008/img/img_10008_6_thumbnail_blur.jpg b/assets/bundles/Girls/10008/img/img_10008_6_thumbnail_blur.jpg new file mode 100644 index 00000000..3046093f Binary files /dev/null and b/assets/bundles/Girls/10008/img/img_10008_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10008/img/img_10008_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10008/img/img_10008_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e8ec91c3 --- /dev/null +++ b/assets/bundles/Girls/10008/img/img_10008_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7b61c6f6-f95e-4cb7-bfe8-88240eec4e7a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7b61c6f6-f95e-4cb7-bfe8-88240eec4e7a@6c48a", + "displayName": "img_10008_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7b61c6f6-f95e-4cb7-bfe8-88240eec4e7a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7b61c6f6-f95e-4cb7-bfe8-88240eec4e7a@f9941", + "displayName": "img_10008_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7b61c6f6-f95e-4cb7-bfe8-88240eec4e7a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7b61c6f6-f95e-4cb7-bfe8-88240eec4e7a@6c48a" + } +} diff --git a/assets/bundles/Girls/10008/img/img_10008_7_thumbnail_blur.jpg b/assets/bundles/Girls/10008/img/img_10008_7_thumbnail_blur.jpg new file mode 100644 index 00000000..d5ee54ce Binary files /dev/null and b/assets/bundles/Girls/10008/img/img_10008_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10008/img/img_10008_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10008/img/img_10008_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f6a60ac5 --- /dev/null +++ b/assets/bundles/Girls/10008/img/img_10008_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "90d85d3a-5196-4b77-b7d6-b34c5be32bae", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "90d85d3a-5196-4b77-b7d6-b34c5be32bae@6c48a", + "displayName": "img_10008_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "90d85d3a-5196-4b77-b7d6-b34c5be32bae", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "90d85d3a-5196-4b77-b7d6-b34c5be32bae@f9941", + "displayName": "img_10008_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "90d85d3a-5196-4b77-b7d6-b34c5be32bae@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "90d85d3a-5196-4b77-b7d6-b34c5be32bae@6c48a" + } +} diff --git a/assets/bundles/Girls/10008/img/img_10008_8_thumbnail_blur.jpg b/assets/bundles/Girls/10008/img/img_10008_8_thumbnail_blur.jpg new file mode 100644 index 00000000..8a861f49 Binary files /dev/null and b/assets/bundles/Girls/10008/img/img_10008_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10008/img/img_10008_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10008/img/img_10008_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7c2ed3eb --- /dev/null +++ b/assets/bundles/Girls/10008/img/img_10008_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "98c35a31-97f6-41e5-99be-8f222dbab515", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "98c35a31-97f6-41e5-99be-8f222dbab515@6c48a", + "displayName": "img_10008_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "98c35a31-97f6-41e5-99be-8f222dbab515", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "98c35a31-97f6-41e5-99be-8f222dbab515@f9941", + "displayName": "img_10008_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "98c35a31-97f6-41e5-99be-8f222dbab515@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "98c35a31-97f6-41e5-99be-8f222dbab515@6c48a" + } +} diff --git a/assets/bundles/Girls/10008/img/img_10008_9_thumbnail_blur.jpg b/assets/bundles/Girls/10008/img/img_10008_9_thumbnail_blur.jpg new file mode 100644 index 00000000..ed2d1f1d Binary files /dev/null and b/assets/bundles/Girls/10008/img/img_10008_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10008/img/img_10008_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10008/img/img_10008_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..059ec6bd --- /dev/null +++ b/assets/bundles/Girls/10008/img/img_10008_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "16c20913-3d36-4976-95d8-99724ccbe66c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "16c20913-3d36-4976-95d8-99724ccbe66c@6c48a", + "displayName": "img_10008_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "16c20913-3d36-4976-95d8-99724ccbe66c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "16c20913-3d36-4976-95d8-99724ccbe66c@f9941", + "displayName": "img_10008_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "16c20913-3d36-4976-95d8-99724ccbe66c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "16c20913-3d36-4976-95d8-99724ccbe66c@6c48a" + } +} diff --git a/assets/bundles/Girls/10009/img/img_10009_10_thumbnail_blur.jpg b/assets/bundles/Girls/10009/img/img_10009_10_thumbnail_blur.jpg new file mode 100644 index 00000000..e862f952 Binary files /dev/null and b/assets/bundles/Girls/10009/img/img_10009_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10009/img/img_10009_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10009/img/img_10009_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..cdd185fc --- /dev/null +++ b/assets/bundles/Girls/10009/img/img_10009_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9b428a51-5773-4866-93b7-d67b82176e8b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9b428a51-5773-4866-93b7-d67b82176e8b@6c48a", + "displayName": "img_10009_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9b428a51-5773-4866-93b7-d67b82176e8b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9b428a51-5773-4866-93b7-d67b82176e8b@f9941", + "displayName": "img_10009_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9b428a51-5773-4866-93b7-d67b82176e8b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9b428a51-5773-4866-93b7-d67b82176e8b@6c48a" + } +} diff --git a/assets/bundles/Girls/10009/img/img_10009_11_thumbnail_blur.jpg b/assets/bundles/Girls/10009/img/img_10009_11_thumbnail_blur.jpg new file mode 100644 index 00000000..4f92b50e Binary files /dev/null and b/assets/bundles/Girls/10009/img/img_10009_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10009/img/img_10009_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10009/img/img_10009_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..671c47fa --- /dev/null +++ b/assets/bundles/Girls/10009/img/img_10009_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9d5c7423-9f0b-4910-a431-dd95454d67ea", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9d5c7423-9f0b-4910-a431-dd95454d67ea@6c48a", + "displayName": "img_10009_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9d5c7423-9f0b-4910-a431-dd95454d67ea", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9d5c7423-9f0b-4910-a431-dd95454d67ea@f9941", + "displayName": "img_10009_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9d5c7423-9f0b-4910-a431-dd95454d67ea@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9d5c7423-9f0b-4910-a431-dd95454d67ea@6c48a" + } +} diff --git a/assets/bundles/Girls/10009/img/img_10009_12_thumbnail_blur.jpg b/assets/bundles/Girls/10009/img/img_10009_12_thumbnail_blur.jpg new file mode 100644 index 00000000..dd97dba7 Binary files /dev/null and b/assets/bundles/Girls/10009/img/img_10009_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10009/img/img_10009_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10009/img/img_10009_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ee74b592 --- /dev/null +++ b/assets/bundles/Girls/10009/img/img_10009_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "13109cf9-d469-4bf0-8cd8-537ecfa0570a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "13109cf9-d469-4bf0-8cd8-537ecfa0570a@6c48a", + "displayName": "img_10009_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "13109cf9-d469-4bf0-8cd8-537ecfa0570a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "13109cf9-d469-4bf0-8cd8-537ecfa0570a@f9941", + "displayName": "img_10009_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "13109cf9-d469-4bf0-8cd8-537ecfa0570a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "13109cf9-d469-4bf0-8cd8-537ecfa0570a@6c48a" + } +} diff --git a/assets/bundles/Girls/10009/img/img_10009_1_thumbnail_blur.jpg b/assets/bundles/Girls/10009/img/img_10009_1_thumbnail_blur.jpg new file mode 100644 index 00000000..c782b790 Binary files /dev/null and b/assets/bundles/Girls/10009/img/img_10009_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10009/img/img_10009_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10009/img/img_10009_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..25712228 --- /dev/null +++ b/assets/bundles/Girls/10009/img/img_10009_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7bfef912-f3e9-4c65-9040-78711c155751", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7bfef912-f3e9-4c65-9040-78711c155751@6c48a", + "displayName": "img_10009_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7bfef912-f3e9-4c65-9040-78711c155751", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7bfef912-f3e9-4c65-9040-78711c155751@f9941", + "displayName": "img_10009_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7bfef912-f3e9-4c65-9040-78711c155751@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7bfef912-f3e9-4c65-9040-78711c155751@6c48a" + } +} diff --git a/assets/bundles/Girls/10009/img/img_10009_2_thumbnail_blur.jpg b/assets/bundles/Girls/10009/img/img_10009_2_thumbnail_blur.jpg new file mode 100644 index 00000000..72c01973 Binary files /dev/null and b/assets/bundles/Girls/10009/img/img_10009_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10009/img/img_10009_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10009/img/img_10009_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..863ef0ab --- /dev/null +++ b/assets/bundles/Girls/10009/img/img_10009_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f6104354-067c-47ec-86b4-c24a3f4fc5ae", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f6104354-067c-47ec-86b4-c24a3f4fc5ae@6c48a", + "displayName": "img_10009_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f6104354-067c-47ec-86b4-c24a3f4fc5ae", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f6104354-067c-47ec-86b4-c24a3f4fc5ae@f9941", + "displayName": "img_10009_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f6104354-067c-47ec-86b4-c24a3f4fc5ae@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f6104354-067c-47ec-86b4-c24a3f4fc5ae@6c48a" + } +} diff --git a/assets/bundles/Girls/10009/img/img_10009_3_thumbnail_blur.jpg b/assets/bundles/Girls/10009/img/img_10009_3_thumbnail_blur.jpg new file mode 100644 index 00000000..2c4e67e7 Binary files /dev/null and b/assets/bundles/Girls/10009/img/img_10009_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10009/img/img_10009_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10009/img/img_10009_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..402e20f0 --- /dev/null +++ b/assets/bundles/Girls/10009/img/img_10009_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ff5b2abb-46d9-45d2-9037-6b3e5b319263", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ff5b2abb-46d9-45d2-9037-6b3e5b319263@6c48a", + "displayName": "img_10009_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ff5b2abb-46d9-45d2-9037-6b3e5b319263", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ff5b2abb-46d9-45d2-9037-6b3e5b319263@f9941", + "displayName": "img_10009_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ff5b2abb-46d9-45d2-9037-6b3e5b319263@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ff5b2abb-46d9-45d2-9037-6b3e5b319263@6c48a" + } +} diff --git a/assets/bundles/Girls/10009/img/img_10009_4_thumbnail_blur.jpg b/assets/bundles/Girls/10009/img/img_10009_4_thumbnail_blur.jpg new file mode 100644 index 00000000..66459a85 Binary files /dev/null and b/assets/bundles/Girls/10009/img/img_10009_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10009/img/img_10009_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10009/img/img_10009_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..60d5bc57 --- /dev/null +++ b/assets/bundles/Girls/10009/img/img_10009_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b4395d5b-7f78-4094-bd7d-79404ac86215", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b4395d5b-7f78-4094-bd7d-79404ac86215@6c48a", + "displayName": "img_10009_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b4395d5b-7f78-4094-bd7d-79404ac86215", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b4395d5b-7f78-4094-bd7d-79404ac86215@f9941", + "displayName": "img_10009_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b4395d5b-7f78-4094-bd7d-79404ac86215@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b4395d5b-7f78-4094-bd7d-79404ac86215@6c48a" + } +} diff --git a/assets/bundles/Girls/10009/img/img_10009_5_thumbnail_blur.jpg b/assets/bundles/Girls/10009/img/img_10009_5_thumbnail_blur.jpg new file mode 100644 index 00000000..8d1edd2e Binary files /dev/null and b/assets/bundles/Girls/10009/img/img_10009_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10009/img/img_10009_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10009/img/img_10009_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..82b7be63 --- /dev/null +++ b/assets/bundles/Girls/10009/img/img_10009_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a6f2d813-fd3f-444c-b0b1-6d9064cea0d1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a6f2d813-fd3f-444c-b0b1-6d9064cea0d1@6c48a", + "displayName": "img_10009_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a6f2d813-fd3f-444c-b0b1-6d9064cea0d1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a6f2d813-fd3f-444c-b0b1-6d9064cea0d1@f9941", + "displayName": "img_10009_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a6f2d813-fd3f-444c-b0b1-6d9064cea0d1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a6f2d813-fd3f-444c-b0b1-6d9064cea0d1@6c48a" + } +} diff --git a/assets/bundles/Girls/10009/img/img_10009_6_thumbnail_blur.jpg b/assets/bundles/Girls/10009/img/img_10009_6_thumbnail_blur.jpg new file mode 100644 index 00000000..4e5cba5d Binary files /dev/null and b/assets/bundles/Girls/10009/img/img_10009_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10009/img/img_10009_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10009/img/img_10009_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5911aab3 --- /dev/null +++ b/assets/bundles/Girls/10009/img/img_10009_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fac11319-ad3b-4482-98f2-3e1f2b87df49", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fac11319-ad3b-4482-98f2-3e1f2b87df49@6c48a", + "displayName": "img_10009_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fac11319-ad3b-4482-98f2-3e1f2b87df49", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "fac11319-ad3b-4482-98f2-3e1f2b87df49@f9941", + "displayName": "img_10009_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fac11319-ad3b-4482-98f2-3e1f2b87df49@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fac11319-ad3b-4482-98f2-3e1f2b87df49@6c48a" + } +} diff --git a/assets/bundles/Girls/10009/img/img_10009_7_thumbnail_blur.jpg b/assets/bundles/Girls/10009/img/img_10009_7_thumbnail_blur.jpg new file mode 100644 index 00000000..249be4f7 Binary files /dev/null and b/assets/bundles/Girls/10009/img/img_10009_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10009/img/img_10009_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10009/img/img_10009_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e6576b80 --- /dev/null +++ b/assets/bundles/Girls/10009/img/img_10009_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "be8fc072-aa38-4f97-848a-03eeb78a2efa", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "be8fc072-aa38-4f97-848a-03eeb78a2efa@6c48a", + "displayName": "img_10009_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "be8fc072-aa38-4f97-848a-03eeb78a2efa", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "be8fc072-aa38-4f97-848a-03eeb78a2efa@f9941", + "displayName": "img_10009_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "be8fc072-aa38-4f97-848a-03eeb78a2efa@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "be8fc072-aa38-4f97-848a-03eeb78a2efa@6c48a" + } +} diff --git a/assets/bundles/Girls/10009/img/img_10009_8_thumbnail_blur.jpg b/assets/bundles/Girls/10009/img/img_10009_8_thumbnail_blur.jpg new file mode 100644 index 00000000..5daba767 Binary files /dev/null and b/assets/bundles/Girls/10009/img/img_10009_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10009/img/img_10009_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10009/img/img_10009_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..199a78b7 --- /dev/null +++ b/assets/bundles/Girls/10009/img/img_10009_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7b7c3b95-4f66-4295-a6fd-0561e2e72a86", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7b7c3b95-4f66-4295-a6fd-0561e2e72a86@6c48a", + "displayName": "img_10009_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7b7c3b95-4f66-4295-a6fd-0561e2e72a86", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7b7c3b95-4f66-4295-a6fd-0561e2e72a86@f9941", + "displayName": "img_10009_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7b7c3b95-4f66-4295-a6fd-0561e2e72a86@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7b7c3b95-4f66-4295-a6fd-0561e2e72a86@6c48a" + } +} diff --git a/assets/bundles/Girls/10009/img/img_10009_9_thumbnail_blur.jpg b/assets/bundles/Girls/10009/img/img_10009_9_thumbnail_blur.jpg new file mode 100644 index 00000000..3015856a Binary files /dev/null and b/assets/bundles/Girls/10009/img/img_10009_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10009/img/img_10009_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10009/img/img_10009_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1557f154 --- /dev/null +++ b/assets/bundles/Girls/10009/img/img_10009_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "47da38c8-3dde-4531-95e5-0a1d6dd4fd9f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "47da38c8-3dde-4531-95e5-0a1d6dd4fd9f@6c48a", + "displayName": "img_10009_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "47da38c8-3dde-4531-95e5-0a1d6dd4fd9f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "47da38c8-3dde-4531-95e5-0a1d6dd4fd9f@f9941", + "displayName": "img_10009_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "47da38c8-3dde-4531-95e5-0a1d6dd4fd9f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "47da38c8-3dde-4531-95e5-0a1d6dd4fd9f@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_10_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_10_thumbnail_blur.jpg new file mode 100644 index 00000000..1c4fcc7c Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..72ba8284 --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c9fa54c8-1f47-49c2-9326-4e7c1c9ff427", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c9fa54c8-1f47-49c2-9326-4e7c1c9ff427@6c48a", + "displayName": "img_10010_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c9fa54c8-1f47-49c2-9326-4e7c1c9ff427", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c9fa54c8-1f47-49c2-9326-4e7c1c9ff427@f9941", + "displayName": "img_10010_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c9fa54c8-1f47-49c2-9326-4e7c1c9ff427@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c9fa54c8-1f47-49c2-9326-4e7c1c9ff427@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_11_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_11_thumbnail_blur.jpg new file mode 100644 index 00000000..7c8f41fd Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4ca6786d --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b6219743-5a12-4d1a-b5a7-bec8a7038c87", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b6219743-5a12-4d1a-b5a7-bec8a7038c87@6c48a", + "displayName": "img_10010_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b6219743-5a12-4d1a-b5a7-bec8a7038c87", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b6219743-5a12-4d1a-b5a7-bec8a7038c87@f9941", + "displayName": "img_10010_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b6219743-5a12-4d1a-b5a7-bec8a7038c87@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b6219743-5a12-4d1a-b5a7-bec8a7038c87@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_12_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_12_thumbnail_blur.jpg new file mode 100644 index 00000000..381ad01b Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..17b45429 --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "eb730f04-7589-45c0-a07b-5e98a1310de1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "eb730f04-7589-45c0-a07b-5e98a1310de1@6c48a", + "displayName": "img_10010_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "eb730f04-7589-45c0-a07b-5e98a1310de1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "eb730f04-7589-45c0-a07b-5e98a1310de1@f9941", + "displayName": "img_10010_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "eb730f04-7589-45c0-a07b-5e98a1310de1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "eb730f04-7589-45c0-a07b-5e98a1310de1@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_13_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_13_thumbnail_blur.jpg new file mode 100644 index 00000000..1a26da84 Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..2c03956d --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ac1c6f25-37e3-466e-951d-ddf27200d78a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ac1c6f25-37e3-466e-951d-ddf27200d78a@6c48a", + "displayName": "img_10010_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ac1c6f25-37e3-466e-951d-ddf27200d78a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ac1c6f25-37e3-466e-951d-ddf27200d78a@f9941", + "displayName": "img_10010_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ac1c6f25-37e3-466e-951d-ddf27200d78a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ac1c6f25-37e3-466e-951d-ddf27200d78a@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_14_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_14_thumbnail_blur.jpg new file mode 100644 index 00000000..3c126920 Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3569c9fa --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6bd7ee46-4ee3-40ff-b87d-c8fe62d72b8e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6bd7ee46-4ee3-40ff-b87d-c8fe62d72b8e@6c48a", + "displayName": "img_10010_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6bd7ee46-4ee3-40ff-b87d-c8fe62d72b8e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6bd7ee46-4ee3-40ff-b87d-c8fe62d72b8e@f9941", + "displayName": "img_10010_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6bd7ee46-4ee3-40ff-b87d-c8fe62d72b8e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6bd7ee46-4ee3-40ff-b87d-c8fe62d72b8e@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_15_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_15_thumbnail_blur.jpg new file mode 100644 index 00000000..8201a610 Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..49998d2b --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5d7b6115-3aad-4c2b-9c75-dd11b66666ce", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5d7b6115-3aad-4c2b-9c75-dd11b66666ce@6c48a", + "displayName": "img_10010_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5d7b6115-3aad-4c2b-9c75-dd11b66666ce", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5d7b6115-3aad-4c2b-9c75-dd11b66666ce@f9941", + "displayName": "img_10010_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5d7b6115-3aad-4c2b-9c75-dd11b66666ce@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5d7b6115-3aad-4c2b-9c75-dd11b66666ce@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_16_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_16_thumbnail_blur.jpg new file mode 100644 index 00000000..e30891d3 Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f7528649 --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "04e1de94-d4a0-4dd3-a574-faef583e4d38", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "04e1de94-d4a0-4dd3-a574-faef583e4d38@6c48a", + "displayName": "img_10010_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "04e1de94-d4a0-4dd3-a574-faef583e4d38", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "04e1de94-d4a0-4dd3-a574-faef583e4d38@f9941", + "displayName": "img_10010_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "04e1de94-d4a0-4dd3-a574-faef583e4d38@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "04e1de94-d4a0-4dd3-a574-faef583e4d38@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_17_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_17_thumbnail_blur.jpg new file mode 100644 index 00000000..b39b9e62 Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4d4d1c03 --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "25de60c0-cb00-41fe-9a95-3017709b58a2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "25de60c0-cb00-41fe-9a95-3017709b58a2@6c48a", + "displayName": "img_10010_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "25de60c0-cb00-41fe-9a95-3017709b58a2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "25de60c0-cb00-41fe-9a95-3017709b58a2@f9941", + "displayName": "img_10010_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "25de60c0-cb00-41fe-9a95-3017709b58a2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "25de60c0-cb00-41fe-9a95-3017709b58a2@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_18_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_18_thumbnail_blur.jpg new file mode 100644 index 00000000..8e0ba305 Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_18_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_18_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_18_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f25691a8 --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_18_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "24b2055d-fa5a-49a9-8c75-a9ae17e14485", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "24b2055d-fa5a-49a9-8c75-a9ae17e14485@6c48a", + "displayName": "img_10010_18_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "24b2055d-fa5a-49a9-8c75-a9ae17e14485", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "24b2055d-fa5a-49a9-8c75-a9ae17e14485@f9941", + "displayName": "img_10010_18_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "24b2055d-fa5a-49a9-8c75-a9ae17e14485@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "24b2055d-fa5a-49a9-8c75-a9ae17e14485@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_1_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_1_thumbnail_blur.jpg new file mode 100644 index 00000000..8d4a2b94 Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5c0dd90e --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "662915c2-dfa4-402c-8cf1-eff4d127033c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "662915c2-dfa4-402c-8cf1-eff4d127033c@6c48a", + "displayName": "img_10010_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "662915c2-dfa4-402c-8cf1-eff4d127033c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "662915c2-dfa4-402c-8cf1-eff4d127033c@f9941", + "displayName": "img_10010_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "662915c2-dfa4-402c-8cf1-eff4d127033c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "662915c2-dfa4-402c-8cf1-eff4d127033c@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_2_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_2_thumbnail_blur.jpg new file mode 100644 index 00000000..d76eb14f Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..b0f97399 --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "23b45ffc-fdac-47cd-b217-ca3cc646e78f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "23b45ffc-fdac-47cd-b217-ca3cc646e78f@6c48a", + "displayName": "img_10010_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "23b45ffc-fdac-47cd-b217-ca3cc646e78f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "23b45ffc-fdac-47cd-b217-ca3cc646e78f@f9941", + "displayName": "img_10010_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "23b45ffc-fdac-47cd-b217-ca3cc646e78f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "23b45ffc-fdac-47cd-b217-ca3cc646e78f@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_3_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_3_thumbnail_blur.jpg new file mode 100644 index 00000000..bc1103fd Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..eae52dc0 --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "35eea5f0-f605-4fba-b625-2fe1b03c727a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "35eea5f0-f605-4fba-b625-2fe1b03c727a@6c48a", + "displayName": "img_10010_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "35eea5f0-f605-4fba-b625-2fe1b03c727a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "35eea5f0-f605-4fba-b625-2fe1b03c727a@f9941", + "displayName": "img_10010_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "35eea5f0-f605-4fba-b625-2fe1b03c727a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "35eea5f0-f605-4fba-b625-2fe1b03c727a@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_4_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_4_thumbnail_blur.jpg new file mode 100644 index 00000000..0ce26459 Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e2bddc86 --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d74d62e9-5771-4cc4-b898-f182b6986318", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d74d62e9-5771-4cc4-b898-f182b6986318@6c48a", + "displayName": "img_10010_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d74d62e9-5771-4cc4-b898-f182b6986318", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d74d62e9-5771-4cc4-b898-f182b6986318@f9941", + "displayName": "img_10010_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d74d62e9-5771-4cc4-b898-f182b6986318@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d74d62e9-5771-4cc4-b898-f182b6986318@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_5_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_5_thumbnail_blur.jpg new file mode 100644 index 00000000..e43102b7 Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..44eabe06 --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3273042d-9264-4fd0-a349-e7785118cddc", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3273042d-9264-4fd0-a349-e7785118cddc@6c48a", + "displayName": "img_10010_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3273042d-9264-4fd0-a349-e7785118cddc", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3273042d-9264-4fd0-a349-e7785118cddc@f9941", + "displayName": "img_10010_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3273042d-9264-4fd0-a349-e7785118cddc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3273042d-9264-4fd0-a349-e7785118cddc@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_6_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_6_thumbnail_blur.jpg new file mode 100644 index 00000000..e806bddd Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1da6fc9c --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1db46869-bb15-4294-914d-dc3884ea3dc8", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1db46869-bb15-4294-914d-dc3884ea3dc8@6c48a", + "displayName": "img_10010_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1db46869-bb15-4294-914d-dc3884ea3dc8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1db46869-bb15-4294-914d-dc3884ea3dc8@f9941", + "displayName": "img_10010_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1db46869-bb15-4294-914d-dc3884ea3dc8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1db46869-bb15-4294-914d-dc3884ea3dc8@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_7_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_7_thumbnail_blur.jpg new file mode 100644 index 00000000..e88af0ed Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1f452d2e --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4bf84219-835a-471e-8249-29cd54e8c9aa", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4bf84219-835a-471e-8249-29cd54e8c9aa@6c48a", + "displayName": "img_10010_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4bf84219-835a-471e-8249-29cd54e8c9aa", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4bf84219-835a-471e-8249-29cd54e8c9aa@f9941", + "displayName": "img_10010_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4bf84219-835a-471e-8249-29cd54e8c9aa@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4bf84219-835a-471e-8249-29cd54e8c9aa@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_8_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_8_thumbnail_blur.jpg new file mode 100644 index 00000000..81c70a2b Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..80df887c --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a02d3a77-cc4b-4f11-a515-a5fad8283081", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a02d3a77-cc4b-4f11-a515-a5fad8283081@6c48a", + "displayName": "img_10010_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a02d3a77-cc4b-4f11-a515-a5fad8283081", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a02d3a77-cc4b-4f11-a515-a5fad8283081@f9941", + "displayName": "img_10010_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a02d3a77-cc4b-4f11-a515-a5fad8283081@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a02d3a77-cc4b-4f11-a515-a5fad8283081@6c48a" + } +} diff --git a/assets/bundles/Girls/10010/img/img_10010_9_thumbnail_blur.jpg b/assets/bundles/Girls/10010/img/img_10010_9_thumbnail_blur.jpg new file mode 100644 index 00000000..a21e3338 Binary files /dev/null and b/assets/bundles/Girls/10010/img/img_10010_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10010/img/img_10010_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10010/img/img_10010_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..730fe8db --- /dev/null +++ b/assets/bundles/Girls/10010/img/img_10010_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5ffd19cf-4bb8-4c71-a909-50a1b5433120", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5ffd19cf-4bb8-4c71-a909-50a1b5433120@6c48a", + "displayName": "img_10010_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5ffd19cf-4bb8-4c71-a909-50a1b5433120", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5ffd19cf-4bb8-4c71-a909-50a1b5433120@f9941", + "displayName": "img_10010_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5ffd19cf-4bb8-4c71-a909-50a1b5433120@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5ffd19cf-4bb8-4c71-a909-50a1b5433120@6c48a" + } +} diff --git a/assets/bundles/Girls/10011/img/img_10011_10_thumbnail_blur.jpg b/assets/bundles/Girls/10011/img/img_10011_10_thumbnail_blur.jpg new file mode 100644 index 00000000..e1e2ce3f Binary files /dev/null and b/assets/bundles/Girls/10011/img/img_10011_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10011/img/img_10011_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10011/img/img_10011_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0f257a39 --- /dev/null +++ b/assets/bundles/Girls/10011/img/img_10011_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5e46390e-6175-468e-9580-cf9a57d99a45", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5e46390e-6175-468e-9580-cf9a57d99a45@6c48a", + "displayName": "img_10011_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5e46390e-6175-468e-9580-cf9a57d99a45", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5e46390e-6175-468e-9580-cf9a57d99a45@f9941", + "displayName": "img_10011_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5e46390e-6175-468e-9580-cf9a57d99a45@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5e46390e-6175-468e-9580-cf9a57d99a45@6c48a" + } +} diff --git a/assets/bundles/Girls/10011/img/img_10011_11_thumbnail_blur.jpg b/assets/bundles/Girls/10011/img/img_10011_11_thumbnail_blur.jpg new file mode 100644 index 00000000..c9d50253 Binary files /dev/null and b/assets/bundles/Girls/10011/img/img_10011_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10011/img/img_10011_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10011/img/img_10011_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e54a90e6 --- /dev/null +++ b/assets/bundles/Girls/10011/img/img_10011_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7545d6a5-0ddb-46b2-a00a-2f6d77873472", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7545d6a5-0ddb-46b2-a00a-2f6d77873472@6c48a", + "displayName": "img_10011_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7545d6a5-0ddb-46b2-a00a-2f6d77873472", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7545d6a5-0ddb-46b2-a00a-2f6d77873472@f9941", + "displayName": "img_10011_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7545d6a5-0ddb-46b2-a00a-2f6d77873472@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7545d6a5-0ddb-46b2-a00a-2f6d77873472@6c48a" + } +} diff --git a/assets/bundles/Girls/10011/img/img_10011_12_thumbnail_blur.jpg b/assets/bundles/Girls/10011/img/img_10011_12_thumbnail_blur.jpg new file mode 100644 index 00000000..cb6caea0 Binary files /dev/null and b/assets/bundles/Girls/10011/img/img_10011_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10011/img/img_10011_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10011/img/img_10011_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0dab7c6a --- /dev/null +++ b/assets/bundles/Girls/10011/img/img_10011_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7375564d-b14b-4865-a0ee-3efbb0afef27", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7375564d-b14b-4865-a0ee-3efbb0afef27@6c48a", + "displayName": "img_10011_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7375564d-b14b-4865-a0ee-3efbb0afef27", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7375564d-b14b-4865-a0ee-3efbb0afef27@f9941", + "displayName": "img_10011_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7375564d-b14b-4865-a0ee-3efbb0afef27@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7375564d-b14b-4865-a0ee-3efbb0afef27@6c48a" + } +} diff --git a/assets/bundles/Girls/10011/img/img_10011_1_thumbnail_blur.jpg b/assets/bundles/Girls/10011/img/img_10011_1_thumbnail_blur.jpg new file mode 100644 index 00000000..2ef0988c Binary files /dev/null and b/assets/bundles/Girls/10011/img/img_10011_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10011/img/img_10011_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10011/img/img_10011_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..aa328c2c --- /dev/null +++ b/assets/bundles/Girls/10011/img/img_10011_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9abda4be-736b-4651-9009-07142c7fa356", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9abda4be-736b-4651-9009-07142c7fa356@6c48a", + "displayName": "img_10011_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9abda4be-736b-4651-9009-07142c7fa356", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9abda4be-736b-4651-9009-07142c7fa356@f9941", + "displayName": "img_10011_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9abda4be-736b-4651-9009-07142c7fa356@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9abda4be-736b-4651-9009-07142c7fa356@6c48a" + } +} diff --git a/assets/bundles/Girls/10011/img/img_10011_2_thumbnail_blur.jpg b/assets/bundles/Girls/10011/img/img_10011_2_thumbnail_blur.jpg new file mode 100644 index 00000000..aa68dbbb Binary files /dev/null and b/assets/bundles/Girls/10011/img/img_10011_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10011/img/img_10011_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10011/img/img_10011_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..19b64d0a --- /dev/null +++ b/assets/bundles/Girls/10011/img/img_10011_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "545d4e62-fa20-4953-b5c8-983f6b5aaf90", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "545d4e62-fa20-4953-b5c8-983f6b5aaf90@6c48a", + "displayName": "img_10011_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "545d4e62-fa20-4953-b5c8-983f6b5aaf90", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "545d4e62-fa20-4953-b5c8-983f6b5aaf90@f9941", + "displayName": "img_10011_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "545d4e62-fa20-4953-b5c8-983f6b5aaf90@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "545d4e62-fa20-4953-b5c8-983f6b5aaf90@6c48a" + } +} diff --git a/assets/bundles/Girls/10011/img/img_10011_3_thumbnail_blur.jpg b/assets/bundles/Girls/10011/img/img_10011_3_thumbnail_blur.jpg new file mode 100644 index 00000000..9aa1746e Binary files /dev/null and b/assets/bundles/Girls/10011/img/img_10011_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10011/img/img_10011_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10011/img/img_10011_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8287aaa2 --- /dev/null +++ b/assets/bundles/Girls/10011/img/img_10011_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9eab278b-09e6-407e-af2a-d9c677328be6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9eab278b-09e6-407e-af2a-d9c677328be6@6c48a", + "displayName": "img_10011_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9eab278b-09e6-407e-af2a-d9c677328be6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9eab278b-09e6-407e-af2a-d9c677328be6@f9941", + "displayName": "img_10011_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9eab278b-09e6-407e-af2a-d9c677328be6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9eab278b-09e6-407e-af2a-d9c677328be6@6c48a" + } +} diff --git a/assets/bundles/Girls/10011/img/img_10011_4_thumbnail_blur.jpg b/assets/bundles/Girls/10011/img/img_10011_4_thumbnail_blur.jpg new file mode 100644 index 00000000..80effb6b Binary files /dev/null and b/assets/bundles/Girls/10011/img/img_10011_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10011/img/img_10011_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10011/img/img_10011_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..fbac9f62 --- /dev/null +++ b/assets/bundles/Girls/10011/img/img_10011_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9874eb46-c8f0-4f5b-9558-eaeda324d694", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9874eb46-c8f0-4f5b-9558-eaeda324d694@6c48a", + "displayName": "img_10011_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9874eb46-c8f0-4f5b-9558-eaeda324d694", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9874eb46-c8f0-4f5b-9558-eaeda324d694@f9941", + "displayName": "img_10011_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9874eb46-c8f0-4f5b-9558-eaeda324d694@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9874eb46-c8f0-4f5b-9558-eaeda324d694@6c48a" + } +} diff --git a/assets/bundles/Girls/10011/img/img_10011_5_thumbnail_blur.jpg b/assets/bundles/Girls/10011/img/img_10011_5_thumbnail_blur.jpg new file mode 100644 index 00000000..4a0ce4cf Binary files /dev/null and b/assets/bundles/Girls/10011/img/img_10011_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10011/img/img_10011_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10011/img/img_10011_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..46d6e1b5 --- /dev/null +++ b/assets/bundles/Girls/10011/img/img_10011_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "36013e88-d41a-45f0-9295-a74cd1201e64", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "36013e88-d41a-45f0-9295-a74cd1201e64@6c48a", + "displayName": "img_10011_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "36013e88-d41a-45f0-9295-a74cd1201e64", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "36013e88-d41a-45f0-9295-a74cd1201e64@f9941", + "displayName": "img_10011_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "36013e88-d41a-45f0-9295-a74cd1201e64@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "36013e88-d41a-45f0-9295-a74cd1201e64@6c48a" + } +} diff --git a/assets/bundles/Girls/10011/img/img_10011_6_thumbnail_blur.jpg b/assets/bundles/Girls/10011/img/img_10011_6_thumbnail_blur.jpg new file mode 100644 index 00000000..7e21bc58 Binary files /dev/null and b/assets/bundles/Girls/10011/img/img_10011_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10011/img/img_10011_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10011/img/img_10011_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4defc931 --- /dev/null +++ b/assets/bundles/Girls/10011/img/img_10011_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "44e10f31-3864-4569-a3a7-e70bc0870d7b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "44e10f31-3864-4569-a3a7-e70bc0870d7b@6c48a", + "displayName": "img_10011_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "44e10f31-3864-4569-a3a7-e70bc0870d7b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "44e10f31-3864-4569-a3a7-e70bc0870d7b@f9941", + "displayName": "img_10011_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "44e10f31-3864-4569-a3a7-e70bc0870d7b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "44e10f31-3864-4569-a3a7-e70bc0870d7b@6c48a" + } +} diff --git a/assets/bundles/Girls/10011/img/img_10011_7_thumbnail_blur.jpg b/assets/bundles/Girls/10011/img/img_10011_7_thumbnail_blur.jpg new file mode 100644 index 00000000..2dacea45 Binary files /dev/null and b/assets/bundles/Girls/10011/img/img_10011_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10011/img/img_10011_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10011/img/img_10011_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..fc8e9d0d --- /dev/null +++ b/assets/bundles/Girls/10011/img/img_10011_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "02d385de-4c8b-46e9-8074-4d7d4a32bd84", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "02d385de-4c8b-46e9-8074-4d7d4a32bd84@6c48a", + "displayName": "img_10011_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "02d385de-4c8b-46e9-8074-4d7d4a32bd84", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "02d385de-4c8b-46e9-8074-4d7d4a32bd84@f9941", + "displayName": "img_10011_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "02d385de-4c8b-46e9-8074-4d7d4a32bd84@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "02d385de-4c8b-46e9-8074-4d7d4a32bd84@6c48a" + } +} diff --git a/assets/bundles/Girls/10011/img/img_10011_8_thumbnail_blur.jpg b/assets/bundles/Girls/10011/img/img_10011_8_thumbnail_blur.jpg new file mode 100644 index 00000000..14fe3eee Binary files /dev/null and b/assets/bundles/Girls/10011/img/img_10011_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10011/img/img_10011_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10011/img/img_10011_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6c5ac8e4 --- /dev/null +++ b/assets/bundles/Girls/10011/img/img_10011_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8d0a7129-ca25-4de3-b0d7-9c8dc99307d4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8d0a7129-ca25-4de3-b0d7-9c8dc99307d4@6c48a", + "displayName": "img_10011_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8d0a7129-ca25-4de3-b0d7-9c8dc99307d4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8d0a7129-ca25-4de3-b0d7-9c8dc99307d4@f9941", + "displayName": "img_10011_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8d0a7129-ca25-4de3-b0d7-9c8dc99307d4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8d0a7129-ca25-4de3-b0d7-9c8dc99307d4@6c48a" + } +} diff --git a/assets/bundles/Girls/10011/img/img_10011_9_thumbnail_blur.jpg b/assets/bundles/Girls/10011/img/img_10011_9_thumbnail_blur.jpg new file mode 100644 index 00000000..19ed17f3 Binary files /dev/null and b/assets/bundles/Girls/10011/img/img_10011_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10011/img/img_10011_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10011/img/img_10011_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..33a6deae --- /dev/null +++ b/assets/bundles/Girls/10011/img/img_10011_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cceefeb8-ccbe-40bb-aaf4-d729fc89121c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cceefeb8-ccbe-40bb-aaf4-d729fc89121c@6c48a", + "displayName": "img_10011_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cceefeb8-ccbe-40bb-aaf4-d729fc89121c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cceefeb8-ccbe-40bb-aaf4-d729fc89121c@f9941", + "displayName": "img_10011_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cceefeb8-ccbe-40bb-aaf4-d729fc89121c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cceefeb8-ccbe-40bb-aaf4-d729fc89121c@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_10_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_10_thumbnail_blur.jpg new file mode 100644 index 00000000..73ab75cb Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a43de5f6 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "155c0b13-46fa-4c28-8ebc-f12180b3d3a6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "155c0b13-46fa-4c28-8ebc-f12180b3d3a6@6c48a", + "displayName": "img_10012_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "155c0b13-46fa-4c28-8ebc-f12180b3d3a6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "155c0b13-46fa-4c28-8ebc-f12180b3d3a6@f9941", + "displayName": "img_10012_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "155c0b13-46fa-4c28-8ebc-f12180b3d3a6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "155c0b13-46fa-4c28-8ebc-f12180b3d3a6@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_11_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_11_thumbnail_blur.jpg new file mode 100644 index 00000000..8764923b Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..85daca3c --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "abdc35ab-1762-4026-9039-4a267e174891", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "abdc35ab-1762-4026-9039-4a267e174891@6c48a", + "displayName": "img_10012_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "abdc35ab-1762-4026-9039-4a267e174891", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "abdc35ab-1762-4026-9039-4a267e174891@f9941", + "displayName": "img_10012_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "abdc35ab-1762-4026-9039-4a267e174891@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "abdc35ab-1762-4026-9039-4a267e174891@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_12_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_12_thumbnail_blur.jpg new file mode 100644 index 00000000..0ff99fba Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7036e831 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "12d4f080-9792-4b38-ace7-c299cbf9742e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "12d4f080-9792-4b38-ace7-c299cbf9742e@6c48a", + "displayName": "img_10012_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "12d4f080-9792-4b38-ace7-c299cbf9742e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "12d4f080-9792-4b38-ace7-c299cbf9742e@f9941", + "displayName": "img_10012_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "12d4f080-9792-4b38-ace7-c299cbf9742e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "12d4f080-9792-4b38-ace7-c299cbf9742e@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_13_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_13_thumbnail_blur.jpg new file mode 100644 index 00000000..86c2cffc Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..54fe4850 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "42c458c6-5757-49b6-8366-d054b16cc7ab", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "42c458c6-5757-49b6-8366-d054b16cc7ab@6c48a", + "displayName": "img_10012_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "42c458c6-5757-49b6-8366-d054b16cc7ab", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "42c458c6-5757-49b6-8366-d054b16cc7ab@f9941", + "displayName": "img_10012_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "42c458c6-5757-49b6-8366-d054b16cc7ab@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "42c458c6-5757-49b6-8366-d054b16cc7ab@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_14_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_14_thumbnail_blur.jpg new file mode 100644 index 00000000..c4e49680 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..b5d50d57 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "05ee3411-8461-47b8-bce0-cef3f9d44edd", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "05ee3411-8461-47b8-bce0-cef3f9d44edd@6c48a", + "displayName": "img_10012_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "05ee3411-8461-47b8-bce0-cef3f9d44edd", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "05ee3411-8461-47b8-bce0-cef3f9d44edd@f9941", + "displayName": "img_10012_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "05ee3411-8461-47b8-bce0-cef3f9d44edd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "05ee3411-8461-47b8-bce0-cef3f9d44edd@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_15_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_15_thumbnail_blur.jpg new file mode 100644 index 00000000..33a14e7e Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4a241b60 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "215a56ac-d2f6-4a79-9af5-ea1d090f533d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "215a56ac-d2f6-4a79-9af5-ea1d090f533d@6c48a", + "displayName": "img_10012_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "215a56ac-d2f6-4a79-9af5-ea1d090f533d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "215a56ac-d2f6-4a79-9af5-ea1d090f533d@f9941", + "displayName": "img_10012_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "215a56ac-d2f6-4a79-9af5-ea1d090f533d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "215a56ac-d2f6-4a79-9af5-ea1d090f533d@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_16_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_16_thumbnail_blur.jpg new file mode 100644 index 00000000..80fbea65 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e28bf066 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b1744a39-c1b1-46d7-aaf1-e242256161a1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b1744a39-c1b1-46d7-aaf1-e242256161a1@6c48a", + "displayName": "img_10012_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b1744a39-c1b1-46d7-aaf1-e242256161a1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b1744a39-c1b1-46d7-aaf1-e242256161a1@f9941", + "displayName": "img_10012_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b1744a39-c1b1-46d7-aaf1-e242256161a1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b1744a39-c1b1-46d7-aaf1-e242256161a1@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_17_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_17_thumbnail_blur.jpg new file mode 100644 index 00000000..da2aef2b Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f1127822 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "74fb1c0a-2e6f-4da8-b6ac-0ebcdba52949", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "74fb1c0a-2e6f-4da8-b6ac-0ebcdba52949@6c48a", + "displayName": "img_10012_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "74fb1c0a-2e6f-4da8-b6ac-0ebcdba52949", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "74fb1c0a-2e6f-4da8-b6ac-0ebcdba52949@f9941", + "displayName": "img_10012_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "74fb1c0a-2e6f-4da8-b6ac-0ebcdba52949@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "74fb1c0a-2e6f-4da8-b6ac-0ebcdba52949@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_18_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_18_thumbnail_blur.jpg new file mode 100644 index 00000000..c51f0c68 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_18_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_18_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_18_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ceff627f --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_18_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "128a5ebf-76ee-468b-825b-567bb5dc05b6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "128a5ebf-76ee-468b-825b-567bb5dc05b6@6c48a", + "displayName": "img_10012_18_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "128a5ebf-76ee-468b-825b-567bb5dc05b6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "128a5ebf-76ee-468b-825b-567bb5dc05b6@f9941", + "displayName": "img_10012_18_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "128a5ebf-76ee-468b-825b-567bb5dc05b6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "128a5ebf-76ee-468b-825b-567bb5dc05b6@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_19_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_19_thumbnail_blur.jpg new file mode 100644 index 00000000..a7e3ccd9 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_19_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_19_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_19_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..988f61d1 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_19_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8de02e61-05ee-4078-ae82-2aab97b34bfe", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8de02e61-05ee-4078-ae82-2aab97b34bfe@6c48a", + "displayName": "img_10012_19_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8de02e61-05ee-4078-ae82-2aab97b34bfe", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8de02e61-05ee-4078-ae82-2aab97b34bfe@f9941", + "displayName": "img_10012_19_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8de02e61-05ee-4078-ae82-2aab97b34bfe@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8de02e61-05ee-4078-ae82-2aab97b34bfe@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_1_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_1_thumbnail_blur.jpg new file mode 100644 index 00000000..e6921178 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..cc304659 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "52305fed-cf6d-44f7-b27d-f203ff6d23e6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "52305fed-cf6d-44f7-b27d-f203ff6d23e6@6c48a", + "displayName": "img_10012_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "52305fed-cf6d-44f7-b27d-f203ff6d23e6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "52305fed-cf6d-44f7-b27d-f203ff6d23e6@f9941", + "displayName": "img_10012_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "52305fed-cf6d-44f7-b27d-f203ff6d23e6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "52305fed-cf6d-44f7-b27d-f203ff6d23e6@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_20_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_20_thumbnail_blur.jpg new file mode 100644 index 00000000..d3a8f5d7 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_20_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_20_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_20_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4630774d --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_20_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bda4d2bd-a6d9-47e0-a724-6a67c8dcb4b2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bda4d2bd-a6d9-47e0-a724-6a67c8dcb4b2@6c48a", + "displayName": "img_10012_20_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bda4d2bd-a6d9-47e0-a724-6a67c8dcb4b2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "bda4d2bd-a6d9-47e0-a724-6a67c8dcb4b2@f9941", + "displayName": "img_10012_20_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 157, + "rawWidth": 90, + "rawHeight": 157, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -78.5, + 0, + 45, + -78.5, + 0, + -45, + 78.5, + 0, + 45, + 78.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 157, + 90, + 157, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -78.5, + 0 + ], + "maxPos": [ + 45, + 78.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bda4d2bd-a6d9-47e0-a724-6a67c8dcb4b2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bda4d2bd-a6d9-47e0-a724-6a67c8dcb4b2@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_21_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_21_thumbnail_blur.jpg new file mode 100644 index 00000000..b17cde1b Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_21_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_21_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_21_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..530b1829 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_21_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8e5ab38a-bfc8-4d03-bcc1-3dc564471c5d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8e5ab38a-bfc8-4d03-bcc1-3dc564471c5d@6c48a", + "displayName": "img_10012_21_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8e5ab38a-bfc8-4d03-bcc1-3dc564471c5d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8e5ab38a-bfc8-4d03-bcc1-3dc564471c5d@f9941", + "displayName": "img_10012_21_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8e5ab38a-bfc8-4d03-bcc1-3dc564471c5d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8e5ab38a-bfc8-4d03-bcc1-3dc564471c5d@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_22_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_22_thumbnail_blur.jpg new file mode 100644 index 00000000..548c6106 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_22_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_22_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_22_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1867ebb4 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_22_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ce430241-76e8-4843-bd6e-124074d7e04a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ce430241-76e8-4843-bd6e-124074d7e04a@6c48a", + "displayName": "img_10012_22_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ce430241-76e8-4843-bd6e-124074d7e04a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ce430241-76e8-4843-bd6e-124074d7e04a@f9941", + "displayName": "img_10012_22_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 157, + "rawWidth": 90, + "rawHeight": 157, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -78.5, + 0, + 45, + -78.5, + 0, + -45, + 78.5, + 0, + 45, + 78.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 157, + 90, + 157, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -78.5, + 0 + ], + "maxPos": [ + 45, + 78.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ce430241-76e8-4843-bd6e-124074d7e04a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ce430241-76e8-4843-bd6e-124074d7e04a@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_23_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_23_thumbnail_blur.jpg new file mode 100644 index 00000000..981d0f18 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_23_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_23_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_23_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c81bc403 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_23_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "84aafd98-f140-4ade-ac0b-1122562af315", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "84aafd98-f140-4ade-ac0b-1122562af315@6c48a", + "displayName": "img_10012_23_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "84aafd98-f140-4ade-ac0b-1122562af315", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "84aafd98-f140-4ade-ac0b-1122562af315@f9941", + "displayName": "img_10012_23_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "84aafd98-f140-4ade-ac0b-1122562af315@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "84aafd98-f140-4ade-ac0b-1122562af315@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_24_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_24_thumbnail_blur.jpg new file mode 100644 index 00000000..225f11a6 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_24_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_24_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_24_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6c0df079 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_24_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "450c655b-7ef9-4d1c-80d1-2900b2555d92", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "450c655b-7ef9-4d1c-80d1-2900b2555d92@6c48a", + "displayName": "img_10012_24_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "450c655b-7ef9-4d1c-80d1-2900b2555d92", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "450c655b-7ef9-4d1c-80d1-2900b2555d92@f9941", + "displayName": "img_10012_24_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "450c655b-7ef9-4d1c-80d1-2900b2555d92@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "450c655b-7ef9-4d1c-80d1-2900b2555d92@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_25_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_25_thumbnail_blur.jpg new file mode 100644 index 00000000..ba26f859 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_25_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_25_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_25_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e1638c5f --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_25_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d9dc8178-d866-47dd-8ec4-2c1dccfc637e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d9dc8178-d866-47dd-8ec4-2c1dccfc637e@6c48a", + "displayName": "img_10012_25_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d9dc8178-d866-47dd-8ec4-2c1dccfc637e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d9dc8178-d866-47dd-8ec4-2c1dccfc637e@f9941", + "displayName": "img_10012_25_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d9dc8178-d866-47dd-8ec4-2c1dccfc637e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d9dc8178-d866-47dd-8ec4-2c1dccfc637e@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_26_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_26_thumbnail_blur.jpg new file mode 100644 index 00000000..db89eb4b Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_26_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_26_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_26_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..64ecb82b --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_26_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a0310337-3164-4c6c-9eeb-75a366319b32", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a0310337-3164-4c6c-9eeb-75a366319b32@6c48a", + "displayName": "img_10012_26_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a0310337-3164-4c6c-9eeb-75a366319b32", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a0310337-3164-4c6c-9eeb-75a366319b32@f9941", + "displayName": "img_10012_26_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a0310337-3164-4c6c-9eeb-75a366319b32@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a0310337-3164-4c6c-9eeb-75a366319b32@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_27_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_27_thumbnail_blur.jpg new file mode 100644 index 00000000..100969e5 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_27_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_27_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_27_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..09fffe84 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_27_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "218f0ad3-bf0c-4a6f-bde8-8b0aac5a7f80", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "218f0ad3-bf0c-4a6f-bde8-8b0aac5a7f80@6c48a", + "displayName": "img_10012_27_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "218f0ad3-bf0c-4a6f-bde8-8b0aac5a7f80", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "218f0ad3-bf0c-4a6f-bde8-8b0aac5a7f80@f9941", + "displayName": "img_10012_27_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "218f0ad3-bf0c-4a6f-bde8-8b0aac5a7f80@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "218f0ad3-bf0c-4a6f-bde8-8b0aac5a7f80@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_28_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_28_thumbnail_blur.jpg new file mode 100644 index 00000000..814a4da3 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_28_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_28_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_28_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5d30b385 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_28_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5c4ae16e-fefe-4a1b-8d13-5777f4e44c42", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5c4ae16e-fefe-4a1b-8d13-5777f4e44c42@6c48a", + "displayName": "img_10012_28_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5c4ae16e-fefe-4a1b-8d13-5777f4e44c42", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5c4ae16e-fefe-4a1b-8d13-5777f4e44c42@f9941", + "displayName": "img_10012_28_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5c4ae16e-fefe-4a1b-8d13-5777f4e44c42@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5c4ae16e-fefe-4a1b-8d13-5777f4e44c42@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_29_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_29_thumbnail_blur.jpg new file mode 100644 index 00000000..b472a682 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_29_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_29_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_29_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4c7d85b8 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_29_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9710026e-3e67-4c91-bc4d-d0d9590a7bb0", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9710026e-3e67-4c91-bc4d-d0d9590a7bb0@6c48a", + "displayName": "img_10012_29_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9710026e-3e67-4c91-bc4d-d0d9590a7bb0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9710026e-3e67-4c91-bc4d-d0d9590a7bb0@f9941", + "displayName": "img_10012_29_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9710026e-3e67-4c91-bc4d-d0d9590a7bb0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9710026e-3e67-4c91-bc4d-d0d9590a7bb0@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_2_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_2_thumbnail_blur.jpg new file mode 100644 index 00000000..c90796de Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..967d3414 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a264cb2e-d7a3-4fad-a568-176d2f04e7ea", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a264cb2e-d7a3-4fad-a568-176d2f04e7ea@6c48a", + "displayName": "img_10012_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a264cb2e-d7a3-4fad-a568-176d2f04e7ea", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a264cb2e-d7a3-4fad-a568-176d2f04e7ea@f9941", + "displayName": "img_10012_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a264cb2e-d7a3-4fad-a568-176d2f04e7ea@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a264cb2e-d7a3-4fad-a568-176d2f04e7ea@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_30_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_30_thumbnail_blur.jpg new file mode 100644 index 00000000..5d8b957d Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_30_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_30_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_30_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..b1969ad4 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_30_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0b3e7443-d899-41b6-a6c3-85de47c3b209", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0b3e7443-d899-41b6-a6c3-85de47c3b209@6c48a", + "displayName": "img_10012_30_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0b3e7443-d899-41b6-a6c3-85de47c3b209", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0b3e7443-d899-41b6-a6c3-85de47c3b209@f9941", + "displayName": "img_10012_30_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0b3e7443-d899-41b6-a6c3-85de47c3b209@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0b3e7443-d899-41b6-a6c3-85de47c3b209@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_31_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_31_thumbnail_blur.jpg new file mode 100644 index 00000000..17b746f3 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_31_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_31_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_31_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d209d641 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_31_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0fc741b4-28fa-44c4-a47f-8524c75b4457", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0fc741b4-28fa-44c4-a47f-8524c75b4457@6c48a", + "displayName": "img_10012_31_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0fc741b4-28fa-44c4-a47f-8524c75b4457", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0fc741b4-28fa-44c4-a47f-8524c75b4457@f9941", + "displayName": "img_10012_31_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 157, + "rawWidth": 90, + "rawHeight": 157, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -78.5, + 0, + 45, + -78.5, + 0, + -45, + 78.5, + 0, + 45, + 78.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 157, + 90, + 157, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -78.5, + 0 + ], + "maxPos": [ + 45, + 78.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0fc741b4-28fa-44c4-a47f-8524c75b4457@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0fc741b4-28fa-44c4-a47f-8524c75b4457@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_32_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_32_thumbnail_blur.jpg new file mode 100644 index 00000000..78daed0b Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_32_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_32_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_32_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f5fec5b0 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_32_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9ef9233a-1fe1-4d9b-bb88-55cc29a4bbe1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9ef9233a-1fe1-4d9b-bb88-55cc29a4bbe1@6c48a", + "displayName": "img_10012_32_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9ef9233a-1fe1-4d9b-bb88-55cc29a4bbe1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9ef9233a-1fe1-4d9b-bb88-55cc29a4bbe1@f9941", + "displayName": "img_10012_32_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9ef9233a-1fe1-4d9b-bb88-55cc29a4bbe1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9ef9233a-1fe1-4d9b-bb88-55cc29a4bbe1@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_33_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_33_thumbnail_blur.jpg new file mode 100644 index 00000000..cc02b594 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_33_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_33_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_33_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..cdfe7868 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_33_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6704ecfe-c3c2-4030-9c18-6553d01245ba", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6704ecfe-c3c2-4030-9c18-6553d01245ba@6c48a", + "displayName": "img_10012_33_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6704ecfe-c3c2-4030-9c18-6553d01245ba", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6704ecfe-c3c2-4030-9c18-6553d01245ba@f9941", + "displayName": "img_10012_33_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6704ecfe-c3c2-4030-9c18-6553d01245ba@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6704ecfe-c3c2-4030-9c18-6553d01245ba@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_34_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_34_thumbnail_blur.jpg new file mode 100644 index 00000000..dc3858b6 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_34_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_34_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_34_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..cfcc6956 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_34_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a5334a9c-bb11-422b-a43d-661e9667ff40", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a5334a9c-bb11-422b-a43d-661e9667ff40@6c48a", + "displayName": "img_10012_34_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a5334a9c-bb11-422b-a43d-661e9667ff40", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a5334a9c-bb11-422b-a43d-661e9667ff40@f9941", + "displayName": "img_10012_34_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a5334a9c-bb11-422b-a43d-661e9667ff40@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a5334a9c-bb11-422b-a43d-661e9667ff40@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_35_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_35_thumbnail_blur.jpg new file mode 100644 index 00000000..1048a3cd Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_35_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_35_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_35_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9b916730 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_35_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f4d912dc-c064-43b8-8ff6-ec0cccaf1a2a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f4d912dc-c064-43b8-8ff6-ec0cccaf1a2a@6c48a", + "displayName": "img_10012_35_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f4d912dc-c064-43b8-8ff6-ec0cccaf1a2a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f4d912dc-c064-43b8-8ff6-ec0cccaf1a2a@f9941", + "displayName": "img_10012_35_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f4d912dc-c064-43b8-8ff6-ec0cccaf1a2a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f4d912dc-c064-43b8-8ff6-ec0cccaf1a2a@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_36_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_36_thumbnail_blur.jpg new file mode 100644 index 00000000..7855733f Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_36_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_36_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_36_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..504d1c1b --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_36_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1d051583-2458-4efb-962f-11d0b279214e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1d051583-2458-4efb-962f-11d0b279214e@6c48a", + "displayName": "img_10012_36_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1d051583-2458-4efb-962f-11d0b279214e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1d051583-2458-4efb-962f-11d0b279214e@f9941", + "displayName": "img_10012_36_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1d051583-2458-4efb-962f-11d0b279214e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1d051583-2458-4efb-962f-11d0b279214e@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_37_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_37_thumbnail_blur.jpg new file mode 100644 index 00000000..57ae89b6 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_37_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_37_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_37_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..987f1151 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_37_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cd1f9fc4-bbd3-4d5b-a885-a6b10bf0a70d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cd1f9fc4-bbd3-4d5b-a885-a6b10bf0a70d@6c48a", + "displayName": "img_10012_37_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cd1f9fc4-bbd3-4d5b-a885-a6b10bf0a70d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cd1f9fc4-bbd3-4d5b-a885-a6b10bf0a70d@f9941", + "displayName": "img_10012_37_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cd1f9fc4-bbd3-4d5b-a885-a6b10bf0a70d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cd1f9fc4-bbd3-4d5b-a885-a6b10bf0a70d@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_3_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_3_thumbnail_blur.jpg new file mode 100644 index 00000000..828fc519 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..fad3a0ac --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8bb5be2d-5612-473d-849b-8aaba8c59d01", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8bb5be2d-5612-473d-849b-8aaba8c59d01@6c48a", + "displayName": "img_10012_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8bb5be2d-5612-473d-849b-8aaba8c59d01", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8bb5be2d-5612-473d-849b-8aaba8c59d01@f9941", + "displayName": "img_10012_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8bb5be2d-5612-473d-849b-8aaba8c59d01@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8bb5be2d-5612-473d-849b-8aaba8c59d01@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_4_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_4_thumbnail_blur.jpg new file mode 100644 index 00000000..a1b1ff49 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ce1d6815 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2526e821-5d0c-43a6-bbe9-c022393187bf", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2526e821-5d0c-43a6-bbe9-c022393187bf@6c48a", + "displayName": "img_10012_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2526e821-5d0c-43a6-bbe9-c022393187bf", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2526e821-5d0c-43a6-bbe9-c022393187bf@f9941", + "displayName": "img_10012_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2526e821-5d0c-43a6-bbe9-c022393187bf@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2526e821-5d0c-43a6-bbe9-c022393187bf@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_5_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_5_thumbnail_blur.jpg new file mode 100644 index 00000000..da2aef2b Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a864f46b --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f25e1219-5802-4d7b-9c33-320f72587f6f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f25e1219-5802-4d7b-9c33-320f72587f6f@6c48a", + "displayName": "img_10012_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f25e1219-5802-4d7b-9c33-320f72587f6f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f25e1219-5802-4d7b-9c33-320f72587f6f@f9941", + "displayName": "img_10012_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f25e1219-5802-4d7b-9c33-320f72587f6f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f25e1219-5802-4d7b-9c33-320f72587f6f@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_6_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_6_thumbnail_blur.jpg new file mode 100644 index 00000000..225f11a6 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f3c0ff37 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5c6a196e-af91-462a-9455-9e5856336725", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5c6a196e-af91-462a-9455-9e5856336725@6c48a", + "displayName": "img_10012_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5c6a196e-af91-462a-9455-9e5856336725", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5c6a196e-af91-462a-9455-9e5856336725@f9941", + "displayName": "img_10012_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5c6a196e-af91-462a-9455-9e5856336725@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5c6a196e-af91-462a-9455-9e5856336725@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_7_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_7_thumbnail_blur.jpg new file mode 100644 index 00000000..f3be5313 Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0e0f5f48 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4eed4a1f-169c-42e7-912a-f2ccffbbb0e8", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4eed4a1f-169c-42e7-912a-f2ccffbbb0e8@6c48a", + "displayName": "img_10012_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4eed4a1f-169c-42e7-912a-f2ccffbbb0e8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4eed4a1f-169c-42e7-912a-f2ccffbbb0e8@f9941", + "displayName": "img_10012_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4eed4a1f-169c-42e7-912a-f2ccffbbb0e8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4eed4a1f-169c-42e7-912a-f2ccffbbb0e8@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_8_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_8_thumbnail_blur.jpg new file mode 100644 index 00000000..1b5eea1b Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..69073cd7 --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "270eae3f-b7db-411b-8728-d066d615dda4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "270eae3f-b7db-411b-8728-d066d615dda4@6c48a", + "displayName": "img_10012_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "270eae3f-b7db-411b-8728-d066d615dda4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "270eae3f-b7db-411b-8728-d066d615dda4@f9941", + "displayName": "img_10012_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "270eae3f-b7db-411b-8728-d066d615dda4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "270eae3f-b7db-411b-8728-d066d615dda4@6c48a" + } +} diff --git a/assets/bundles/Girls/10012/img/img_10012_9_thumbnail_blur.jpg b/assets/bundles/Girls/10012/img/img_10012_9_thumbnail_blur.jpg new file mode 100644 index 00000000..129fc59f Binary files /dev/null and b/assets/bundles/Girls/10012/img/img_10012_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10012/img/img_10012_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10012/img/img_10012_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..88a7095f --- /dev/null +++ b/assets/bundles/Girls/10012/img/img_10012_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "94bc02a0-a22f-47ac-8af6-da13a24a70f3", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "94bc02a0-a22f-47ac-8af6-da13a24a70f3@6c48a", + "displayName": "img_10012_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "94bc02a0-a22f-47ac-8af6-da13a24a70f3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "94bc02a0-a22f-47ac-8af6-da13a24a70f3@f9941", + "displayName": "img_10012_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "94bc02a0-a22f-47ac-8af6-da13a24a70f3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "94bc02a0-a22f-47ac-8af6-da13a24a70f3@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_10_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_10_thumbnail_blur.jpg new file mode 100644 index 00000000..bd8f3f8e Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..477776d9 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "97740b82-3aef-4cb1-88b6-94fbd8d28e94", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "97740b82-3aef-4cb1-88b6-94fbd8d28e94@6c48a", + "displayName": "img_10013_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "97740b82-3aef-4cb1-88b6-94fbd8d28e94", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "97740b82-3aef-4cb1-88b6-94fbd8d28e94@f9941", + "displayName": "img_10013_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97740b82-3aef-4cb1-88b6-94fbd8d28e94@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "97740b82-3aef-4cb1-88b6-94fbd8d28e94@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_11_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_11_thumbnail_blur.jpg new file mode 100644 index 00000000..c50b3488 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d68dc21c --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6a891da4-06bc-4733-988a-2e1f742911e9", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6a891da4-06bc-4733-988a-2e1f742911e9@6c48a", + "displayName": "img_10013_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6a891da4-06bc-4733-988a-2e1f742911e9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6a891da4-06bc-4733-988a-2e1f742911e9@f9941", + "displayName": "img_10013_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6a891da4-06bc-4733-988a-2e1f742911e9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6a891da4-06bc-4733-988a-2e1f742911e9@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_12_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_12_thumbnail_blur.jpg new file mode 100644 index 00000000..20994b23 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0de81d81 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b52351ec-7dca-435b-bb20-76dd8ccea1b1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b52351ec-7dca-435b-bb20-76dd8ccea1b1@6c48a", + "displayName": "img_10013_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b52351ec-7dca-435b-bb20-76dd8ccea1b1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b52351ec-7dca-435b-bb20-76dd8ccea1b1@f9941", + "displayName": "img_10013_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b52351ec-7dca-435b-bb20-76dd8ccea1b1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b52351ec-7dca-435b-bb20-76dd8ccea1b1@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_13_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_13_thumbnail_blur.jpg new file mode 100644 index 00000000..6651cea6 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8a440fdb --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7c48e3b7-0dde-4767-be8c-1294830b8c25", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7c48e3b7-0dde-4767-be8c-1294830b8c25@6c48a", + "displayName": "img_10013_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7c48e3b7-0dde-4767-be8c-1294830b8c25", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7c48e3b7-0dde-4767-be8c-1294830b8c25@f9941", + "displayName": "img_10013_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7c48e3b7-0dde-4767-be8c-1294830b8c25@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7c48e3b7-0dde-4767-be8c-1294830b8c25@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_14_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_14_thumbnail_blur.jpg new file mode 100644 index 00000000..76ba55d5 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a8852eab --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "89cf2bca-03e5-42c5-b3c8-ee600416fa09", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "89cf2bca-03e5-42c5-b3c8-ee600416fa09@6c48a", + "displayName": "img_10013_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "89cf2bca-03e5-42c5-b3c8-ee600416fa09", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "89cf2bca-03e5-42c5-b3c8-ee600416fa09@f9941", + "displayName": "img_10013_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "89cf2bca-03e5-42c5-b3c8-ee600416fa09@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "89cf2bca-03e5-42c5-b3c8-ee600416fa09@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_15_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_15_thumbnail_blur.jpg new file mode 100644 index 00000000..1a8b95b7 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c21d6bc8 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8912ee07-89b7-447a-bad0-cffb4696e875", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8912ee07-89b7-447a-bad0-cffb4696e875@6c48a", + "displayName": "img_10013_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8912ee07-89b7-447a-bad0-cffb4696e875", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8912ee07-89b7-447a-bad0-cffb4696e875@f9941", + "displayName": "img_10013_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8912ee07-89b7-447a-bad0-cffb4696e875@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8912ee07-89b7-447a-bad0-cffb4696e875@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_16_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_16_thumbnail_blur.jpg new file mode 100644 index 00000000..78ee4d58 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a09323c1 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c9eef170-40e9-4045-85af-b178c0b445c0", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c9eef170-40e9-4045-85af-b178c0b445c0@6c48a", + "displayName": "img_10013_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c9eef170-40e9-4045-85af-b178c0b445c0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c9eef170-40e9-4045-85af-b178c0b445c0@f9941", + "displayName": "img_10013_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c9eef170-40e9-4045-85af-b178c0b445c0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c9eef170-40e9-4045-85af-b178c0b445c0@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_17_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_17_thumbnail_blur.jpg new file mode 100644 index 00000000..3e85f5fa Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ea01df15 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "914b25c0-4014-4425-bcb2-ae25274ee58d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "914b25c0-4014-4425-bcb2-ae25274ee58d@6c48a", + "displayName": "img_10013_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "914b25c0-4014-4425-bcb2-ae25274ee58d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "914b25c0-4014-4425-bcb2-ae25274ee58d@f9941", + "displayName": "img_10013_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "914b25c0-4014-4425-bcb2-ae25274ee58d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "914b25c0-4014-4425-bcb2-ae25274ee58d@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_18_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_18_thumbnail_blur.jpg new file mode 100644 index 00000000..89aeec42 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_18_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_18_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_18_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1d698104 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_18_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7568859b-8ffb-4f97-b938-b515d6054a5f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7568859b-8ffb-4f97-b938-b515d6054a5f@6c48a", + "displayName": "img_10013_18_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7568859b-8ffb-4f97-b938-b515d6054a5f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7568859b-8ffb-4f97-b938-b515d6054a5f@f9941", + "displayName": "img_10013_18_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7568859b-8ffb-4f97-b938-b515d6054a5f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7568859b-8ffb-4f97-b938-b515d6054a5f@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_19_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_19_thumbnail_blur.jpg new file mode 100644 index 00000000..4850f5cd Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_19_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_19_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_19_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9cae6ee9 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_19_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d9f75769-c424-44ac-aa5a-dddad77b601b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d9f75769-c424-44ac-aa5a-dddad77b601b@6c48a", + "displayName": "img_10013_19_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d9f75769-c424-44ac-aa5a-dddad77b601b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d9f75769-c424-44ac-aa5a-dddad77b601b@f9941", + "displayName": "img_10013_19_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d9f75769-c424-44ac-aa5a-dddad77b601b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d9f75769-c424-44ac-aa5a-dddad77b601b@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_1_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_1_thumbnail_blur.jpg new file mode 100644 index 00000000..5e3d5cd4 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6592d01a --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "322e42c0-fbeb-4690-beb6-be21e620a4e0", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "322e42c0-fbeb-4690-beb6-be21e620a4e0@6c48a", + "displayName": "img_10013_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "322e42c0-fbeb-4690-beb6-be21e620a4e0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "322e42c0-fbeb-4690-beb6-be21e620a4e0@f9941", + "displayName": "img_10013_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "322e42c0-fbeb-4690-beb6-be21e620a4e0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "322e42c0-fbeb-4690-beb6-be21e620a4e0@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_20_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_20_thumbnail_blur.jpg new file mode 100644 index 00000000..7aee4a4b Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_20_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_20_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_20_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..037771d7 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_20_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b3f0b054-cd4b-4f79-876d-6d272bc96282", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b3f0b054-cd4b-4f79-876d-6d272bc96282@6c48a", + "displayName": "img_10013_20_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b3f0b054-cd4b-4f79-876d-6d272bc96282", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b3f0b054-cd4b-4f79-876d-6d272bc96282@f9941", + "displayName": "img_10013_20_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3f0b054-cd4b-4f79-876d-6d272bc96282@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b3f0b054-cd4b-4f79-876d-6d272bc96282@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_21_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_21_thumbnail_blur.jpg new file mode 100644 index 00000000..cdee6151 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_21_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_21_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_21_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4d732a4f --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_21_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "05f5f6cb-3bc4-432d-8312-77cb8be72b77", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "05f5f6cb-3bc4-432d-8312-77cb8be72b77@6c48a", + "displayName": "img_10013_21_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "05f5f6cb-3bc4-432d-8312-77cb8be72b77", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "05f5f6cb-3bc4-432d-8312-77cb8be72b77@f9941", + "displayName": "img_10013_21_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "05f5f6cb-3bc4-432d-8312-77cb8be72b77@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "05f5f6cb-3bc4-432d-8312-77cb8be72b77@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_22_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_22_thumbnail_blur.jpg new file mode 100644 index 00000000..37243183 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_22_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_22_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_22_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..117eecc2 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_22_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e03df899-6d8c-4fca-ad6b-d60387c510ec", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e03df899-6d8c-4fca-ad6b-d60387c510ec@6c48a", + "displayName": "img_10013_22_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e03df899-6d8c-4fca-ad6b-d60387c510ec", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e03df899-6d8c-4fca-ad6b-d60387c510ec@f9941", + "displayName": "img_10013_22_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e03df899-6d8c-4fca-ad6b-d60387c510ec@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e03df899-6d8c-4fca-ad6b-d60387c510ec@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_23_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_23_thumbnail_blur.jpg new file mode 100644 index 00000000..4e7a1d40 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_23_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_23_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_23_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a3098161 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_23_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "644ac2f1-482c-4dff-928f-70e761595fb6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "644ac2f1-482c-4dff-928f-70e761595fb6@6c48a", + "displayName": "img_10013_23_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "644ac2f1-482c-4dff-928f-70e761595fb6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "644ac2f1-482c-4dff-928f-70e761595fb6@f9941", + "displayName": "img_10013_23_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "644ac2f1-482c-4dff-928f-70e761595fb6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "644ac2f1-482c-4dff-928f-70e761595fb6@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_24_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_24_thumbnail_blur.jpg new file mode 100644 index 00000000..a7ee7451 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_24_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_24_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_24_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8b2663b0 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_24_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "355d524a-6633-40e8-9df3-d0b4efe7c980", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "355d524a-6633-40e8-9df3-d0b4efe7c980@6c48a", + "displayName": "img_10013_24_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "355d524a-6633-40e8-9df3-d0b4efe7c980", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "355d524a-6633-40e8-9df3-d0b4efe7c980@f9941", + "displayName": "img_10013_24_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "355d524a-6633-40e8-9df3-d0b4efe7c980@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "355d524a-6633-40e8-9df3-d0b4efe7c980@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_25_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_25_thumbnail_blur.jpg new file mode 100644 index 00000000..0de08784 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_25_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_25_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_25_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..581de2dd --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_25_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "95bc56f5-976d-4092-b69a-e0e68b7ded9c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "95bc56f5-976d-4092-b69a-e0e68b7ded9c@6c48a", + "displayName": "img_10013_25_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "95bc56f5-976d-4092-b69a-e0e68b7ded9c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "95bc56f5-976d-4092-b69a-e0e68b7ded9c@f9941", + "displayName": "img_10013_25_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "95bc56f5-976d-4092-b69a-e0e68b7ded9c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "95bc56f5-976d-4092-b69a-e0e68b7ded9c@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_26_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_26_thumbnail_blur.jpg new file mode 100644 index 00000000..b89e76b4 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_26_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_26_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_26_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a031b06c --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_26_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f7a22303-ff72-4e1b-8a91-72cb48329cda", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f7a22303-ff72-4e1b-8a91-72cb48329cda@6c48a", + "displayName": "img_10013_26_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f7a22303-ff72-4e1b-8a91-72cb48329cda", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f7a22303-ff72-4e1b-8a91-72cb48329cda@f9941", + "displayName": "img_10013_26_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 157, + "rawWidth": 90, + "rawHeight": 157, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -78.5, + 0, + 45, + -78.5, + 0, + -45, + 78.5, + 0, + 45, + 78.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 157, + 90, + 157, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -78.5, + 0 + ], + "maxPos": [ + 45, + 78.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f7a22303-ff72-4e1b-8a91-72cb48329cda@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f7a22303-ff72-4e1b-8a91-72cb48329cda@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_27_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_27_thumbnail_blur.jpg new file mode 100644 index 00000000..cbe61da1 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_27_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_27_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_27_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0284bc48 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_27_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "37b428d4-766e-461e-a19e-ff42b440f0f1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "37b428d4-766e-461e-a19e-ff42b440f0f1@6c48a", + "displayName": "img_10013_27_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "37b428d4-766e-461e-a19e-ff42b440f0f1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "37b428d4-766e-461e-a19e-ff42b440f0f1@f9941", + "displayName": "img_10013_27_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "37b428d4-766e-461e-a19e-ff42b440f0f1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "37b428d4-766e-461e-a19e-ff42b440f0f1@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_28_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_28_thumbnail_blur.jpg new file mode 100644 index 00000000..0eb45e12 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_28_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_28_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_28_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..92a0d2ef --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_28_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1d388ace-1401-47ce-b26c-91eb896350e7", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1d388ace-1401-47ce-b26c-91eb896350e7@6c48a", + "displayName": "img_10013_28_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1d388ace-1401-47ce-b26c-91eb896350e7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1d388ace-1401-47ce-b26c-91eb896350e7@f9941", + "displayName": "img_10013_28_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1d388ace-1401-47ce-b26c-91eb896350e7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1d388ace-1401-47ce-b26c-91eb896350e7@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_29_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_29_thumbnail_blur.jpg new file mode 100644 index 00000000..94c050ce Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_29_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_29_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_29_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ef017002 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_29_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fd2de346-5658-4a51-889b-c224da9de448", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fd2de346-5658-4a51-889b-c224da9de448@6c48a", + "displayName": "img_10013_29_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fd2de346-5658-4a51-889b-c224da9de448", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "fd2de346-5658-4a51-889b-c224da9de448@f9941", + "displayName": "img_10013_29_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fd2de346-5658-4a51-889b-c224da9de448@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fd2de346-5658-4a51-889b-c224da9de448@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_2_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_2_thumbnail_blur.jpg new file mode 100644 index 00000000..10b72fce Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..518bcbcf --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "837f39a6-d8be-4b8b-bfe6-6defd7a9d049", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "837f39a6-d8be-4b8b-bfe6-6defd7a9d049@6c48a", + "displayName": "img_10013_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "837f39a6-d8be-4b8b-bfe6-6defd7a9d049", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "837f39a6-d8be-4b8b-bfe6-6defd7a9d049@f9941", + "displayName": "img_10013_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "837f39a6-d8be-4b8b-bfe6-6defd7a9d049@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "837f39a6-d8be-4b8b-bfe6-6defd7a9d049@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_30_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_30_thumbnail_blur.jpg new file mode 100644 index 00000000..f0e92dbd Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_30_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_30_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_30_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..04099270 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_30_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c03e122e-fd27-481f-aec2-30f5458b3a8d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c03e122e-fd27-481f-aec2-30f5458b3a8d@6c48a", + "displayName": "img_10013_30_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c03e122e-fd27-481f-aec2-30f5458b3a8d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c03e122e-fd27-481f-aec2-30f5458b3a8d@f9941", + "displayName": "img_10013_30_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c03e122e-fd27-481f-aec2-30f5458b3a8d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c03e122e-fd27-481f-aec2-30f5458b3a8d@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_31_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_31_thumbnail_blur.jpg new file mode 100644 index 00000000..fa877a15 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_31_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_31_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_31_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..fc1d0f81 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_31_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "23738ebf-ee72-4cf9-9899-1acbdd5bc073", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "23738ebf-ee72-4cf9-9899-1acbdd5bc073@6c48a", + "displayName": "img_10013_31_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "23738ebf-ee72-4cf9-9899-1acbdd5bc073", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "23738ebf-ee72-4cf9-9899-1acbdd5bc073@f9941", + "displayName": "img_10013_31_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "23738ebf-ee72-4cf9-9899-1acbdd5bc073@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "23738ebf-ee72-4cf9-9899-1acbdd5bc073@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_32_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_32_thumbnail_blur.jpg new file mode 100644 index 00000000..20ae9f5b Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_32_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_32_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_32_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..b428ddcc --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_32_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0e21ad9e-2a43-4190-a527-9971706a8102", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0e21ad9e-2a43-4190-a527-9971706a8102@6c48a", + "displayName": "img_10013_32_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0e21ad9e-2a43-4190-a527-9971706a8102", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0e21ad9e-2a43-4190-a527-9971706a8102@f9941", + "displayName": "img_10013_32_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0e21ad9e-2a43-4190-a527-9971706a8102@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0e21ad9e-2a43-4190-a527-9971706a8102@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_33_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_33_thumbnail_blur.jpg new file mode 100644 index 00000000..82fd9483 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_33_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_33_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_33_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..be2f4953 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_33_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c8e44013-b47f-45ac-9609-93a2eda19d63", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c8e44013-b47f-45ac-9609-93a2eda19d63@6c48a", + "displayName": "img_10013_33_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c8e44013-b47f-45ac-9609-93a2eda19d63", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c8e44013-b47f-45ac-9609-93a2eda19d63@f9941", + "displayName": "img_10013_33_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c8e44013-b47f-45ac-9609-93a2eda19d63@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c8e44013-b47f-45ac-9609-93a2eda19d63@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_3_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_3_thumbnail_blur.jpg new file mode 100644 index 00000000..f458ccc3 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9b60c132 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7d86dbc3-a58d-4baa-ae39-21b5f5d631ab", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7d86dbc3-a58d-4baa-ae39-21b5f5d631ab@6c48a", + "displayName": "img_10013_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7d86dbc3-a58d-4baa-ae39-21b5f5d631ab", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7d86dbc3-a58d-4baa-ae39-21b5f5d631ab@f9941", + "displayName": "img_10013_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 157, + "rawWidth": 90, + "rawHeight": 157, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -78.5, + 0, + 45, + -78.5, + 0, + -45, + 78.5, + 0, + 45, + 78.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 157, + 90, + 157, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -78.5, + 0 + ], + "maxPos": [ + 45, + 78.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7d86dbc3-a58d-4baa-ae39-21b5f5d631ab@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7d86dbc3-a58d-4baa-ae39-21b5f5d631ab@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_4_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_4_thumbnail_blur.jpg new file mode 100644 index 00000000..42926fac Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7dc692b1 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fc300846-40e0-45c2-96ef-960ec7dfeb77", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fc300846-40e0-45c2-96ef-960ec7dfeb77@6c48a", + "displayName": "img_10013_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fc300846-40e0-45c2-96ef-960ec7dfeb77", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "fc300846-40e0-45c2-96ef-960ec7dfeb77@f9941", + "displayName": "img_10013_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fc300846-40e0-45c2-96ef-960ec7dfeb77@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fc300846-40e0-45c2-96ef-960ec7dfeb77@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_5_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_5_thumbnail_blur.jpg new file mode 100644 index 00000000..bf7c63c2 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..02b73a07 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0918ffd5-9dd6-4aad-8942-d5154a4a3fea", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0918ffd5-9dd6-4aad-8942-d5154a4a3fea@6c48a", + "displayName": "img_10013_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0918ffd5-9dd6-4aad-8942-d5154a4a3fea", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0918ffd5-9dd6-4aad-8942-d5154a4a3fea@f9941", + "displayName": "img_10013_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0918ffd5-9dd6-4aad-8942-d5154a4a3fea@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0918ffd5-9dd6-4aad-8942-d5154a4a3fea@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_6_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_6_thumbnail_blur.jpg new file mode 100644 index 00000000..83bc82c4 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6ec019bc --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "680414b6-ae55-4960-a607-55a49b5ce1c4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "680414b6-ae55-4960-a607-55a49b5ce1c4@6c48a", + "displayName": "img_10013_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "680414b6-ae55-4960-a607-55a49b5ce1c4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "680414b6-ae55-4960-a607-55a49b5ce1c4@f9941", + "displayName": "img_10013_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "680414b6-ae55-4960-a607-55a49b5ce1c4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "680414b6-ae55-4960-a607-55a49b5ce1c4@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_7_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_7_thumbnail_blur.jpg new file mode 100644 index 00000000..93f59414 Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e88a78ba --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f9d309cb-9eec-4ef9-9b8d-39405f2a0534", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f9d309cb-9eec-4ef9-9b8d-39405f2a0534@6c48a", + "displayName": "img_10013_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f9d309cb-9eec-4ef9-9b8d-39405f2a0534", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f9d309cb-9eec-4ef9-9b8d-39405f2a0534@f9941", + "displayName": "img_10013_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f9d309cb-9eec-4ef9-9b8d-39405f2a0534@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f9d309cb-9eec-4ef9-9b8d-39405f2a0534@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_8_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_8_thumbnail_blur.jpg new file mode 100644 index 00000000..59eb28da Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..b0e4bca1 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5cf5a247-72db-41e4-be84-4a41f98e593e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5cf5a247-72db-41e4-be84-4a41f98e593e@6c48a", + "displayName": "img_10013_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5cf5a247-72db-41e4-be84-4a41f98e593e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5cf5a247-72db-41e4-be84-4a41f98e593e@f9941", + "displayName": "img_10013_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5cf5a247-72db-41e4-be84-4a41f98e593e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5cf5a247-72db-41e4-be84-4a41f98e593e@6c48a" + } +} diff --git a/assets/bundles/Girls/10013/img/img_10013_9_thumbnail_blur.jpg b/assets/bundles/Girls/10013/img/img_10013_9_thumbnail_blur.jpg new file mode 100644 index 00000000..239751cb Binary files /dev/null and b/assets/bundles/Girls/10013/img/img_10013_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10013/img/img_10013_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10013/img/img_10013_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c292db81 --- /dev/null +++ b/assets/bundles/Girls/10013/img/img_10013_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "033ead88-1787-419b-87bd-bbaeb4258a8f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "033ead88-1787-419b-87bd-bbaeb4258a8f@6c48a", + "displayName": "img_10013_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "033ead88-1787-419b-87bd-bbaeb4258a8f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "033ead88-1787-419b-87bd-bbaeb4258a8f@f9941", + "displayName": "img_10013_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "033ead88-1787-419b-87bd-bbaeb4258a8f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "033ead88-1787-419b-87bd-bbaeb4258a8f@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_10_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_10_thumbnail_blur.jpg new file mode 100644 index 00000000..d974b439 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..32587362 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "37931a08-db75-44ec-b242-562a1f2da2c3", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "37931a08-db75-44ec-b242-562a1f2da2c3@6c48a", + "displayName": "img_10014_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "37931a08-db75-44ec-b242-562a1f2da2c3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "37931a08-db75-44ec-b242-562a1f2da2c3@f9941", + "displayName": "img_10014_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "37931a08-db75-44ec-b242-562a1f2da2c3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "37931a08-db75-44ec-b242-562a1f2da2c3@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_11_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_11_thumbnail_blur.jpg new file mode 100644 index 00000000..0dadd193 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..148150c6 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1e641d08-297d-4708-81d3-671b6d6473c6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1e641d08-297d-4708-81d3-671b6d6473c6@6c48a", + "displayName": "img_10014_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1e641d08-297d-4708-81d3-671b6d6473c6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1e641d08-297d-4708-81d3-671b6d6473c6@f9941", + "displayName": "img_10014_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1e641d08-297d-4708-81d3-671b6d6473c6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1e641d08-297d-4708-81d3-671b6d6473c6@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_12_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_12_thumbnail_blur.jpg new file mode 100644 index 00000000..380e0cec Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..15456e35 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "09909910-ce78-4bba-9b7c-58186946b4d9", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "09909910-ce78-4bba-9b7c-58186946b4d9@6c48a", + "displayName": "img_10014_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "09909910-ce78-4bba-9b7c-58186946b4d9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "09909910-ce78-4bba-9b7c-58186946b4d9@f9941", + "displayName": "img_10014_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "09909910-ce78-4bba-9b7c-58186946b4d9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "09909910-ce78-4bba-9b7c-58186946b4d9@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_13_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_13_thumbnail_blur.jpg new file mode 100644 index 00000000..358449e2 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5d413555 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ee8e524f-5b3d-4acf-b7b8-01525d7da0c2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ee8e524f-5b3d-4acf-b7b8-01525d7da0c2@6c48a", + "displayName": "img_10014_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ee8e524f-5b3d-4acf-b7b8-01525d7da0c2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ee8e524f-5b3d-4acf-b7b8-01525d7da0c2@f9941", + "displayName": "img_10014_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ee8e524f-5b3d-4acf-b7b8-01525d7da0c2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ee8e524f-5b3d-4acf-b7b8-01525d7da0c2@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_14_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_14_thumbnail_blur.jpg new file mode 100644 index 00000000..89008045 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6fc1db96 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bd7eb164-907f-4db6-a978-8b900eabc787", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bd7eb164-907f-4db6-a978-8b900eabc787@6c48a", + "displayName": "img_10014_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bd7eb164-907f-4db6-a978-8b900eabc787", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "bd7eb164-907f-4db6-a978-8b900eabc787@f9941", + "displayName": "img_10014_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bd7eb164-907f-4db6-a978-8b900eabc787@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bd7eb164-907f-4db6-a978-8b900eabc787@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_15_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_15_thumbnail_blur.jpg new file mode 100644 index 00000000..02e9145b Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..46f836e8 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3771444c-ba39-4522-816c-99ea9c86972a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3771444c-ba39-4522-816c-99ea9c86972a@6c48a", + "displayName": "img_10014_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3771444c-ba39-4522-816c-99ea9c86972a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3771444c-ba39-4522-816c-99ea9c86972a@f9941", + "displayName": "img_10014_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3771444c-ba39-4522-816c-99ea9c86972a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3771444c-ba39-4522-816c-99ea9c86972a@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_16_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_16_thumbnail_blur.jpg new file mode 100644 index 00000000..249f642f Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a4ba7980 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "55c7753c-b483-4c12-b520-14fc9518b75d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "55c7753c-b483-4c12-b520-14fc9518b75d@6c48a", + "displayName": "img_10014_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "55c7753c-b483-4c12-b520-14fc9518b75d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "55c7753c-b483-4c12-b520-14fc9518b75d@f9941", + "displayName": "img_10014_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "55c7753c-b483-4c12-b520-14fc9518b75d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "55c7753c-b483-4c12-b520-14fc9518b75d@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_17_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_17_thumbnail_blur.jpg new file mode 100644 index 00000000..cb59009d Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..40f0a4c9 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "15fc46db-50c1-40ec-92a4-decb8b068e6d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "15fc46db-50c1-40ec-92a4-decb8b068e6d@6c48a", + "displayName": "img_10014_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "15fc46db-50c1-40ec-92a4-decb8b068e6d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "15fc46db-50c1-40ec-92a4-decb8b068e6d@f9941", + "displayName": "img_10014_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "15fc46db-50c1-40ec-92a4-decb8b068e6d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "15fc46db-50c1-40ec-92a4-decb8b068e6d@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_18_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_18_thumbnail_blur.jpg new file mode 100644 index 00000000..1782b55f Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_18_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_18_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_18_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ba8bc558 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_18_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c57ce583-1274-425b-900f-2b0bd91edfd2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c57ce583-1274-425b-900f-2b0bd91edfd2@6c48a", + "displayName": "img_10014_18_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c57ce583-1274-425b-900f-2b0bd91edfd2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c57ce583-1274-425b-900f-2b0bd91edfd2@f9941", + "displayName": "img_10014_18_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c57ce583-1274-425b-900f-2b0bd91edfd2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c57ce583-1274-425b-900f-2b0bd91edfd2@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_19_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_19_thumbnail_blur.jpg new file mode 100644 index 00000000..b2e8a14b Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_19_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_19_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_19_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4c32e351 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_19_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "41cd2bdd-784d-466d-9bea-dea814b86112", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "41cd2bdd-784d-466d-9bea-dea814b86112@6c48a", + "displayName": "img_10014_19_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "41cd2bdd-784d-466d-9bea-dea814b86112", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "41cd2bdd-784d-466d-9bea-dea814b86112@f9941", + "displayName": "img_10014_19_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "41cd2bdd-784d-466d-9bea-dea814b86112@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "41cd2bdd-784d-466d-9bea-dea814b86112@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_1_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_1_thumbnail_blur.jpg new file mode 100644 index 00000000..b6ee3da5 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c6dc720a --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9609e581-fb43-4278-b692-6a87e8971f5c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9609e581-fb43-4278-b692-6a87e8971f5c@6c48a", + "displayName": "img_10014_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9609e581-fb43-4278-b692-6a87e8971f5c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9609e581-fb43-4278-b692-6a87e8971f5c@f9941", + "displayName": "img_10014_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9609e581-fb43-4278-b692-6a87e8971f5c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9609e581-fb43-4278-b692-6a87e8971f5c@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_20_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_20_thumbnail_blur.jpg new file mode 100644 index 00000000..e04e30bf Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_20_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_20_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_20_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..922c4879 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_20_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e63ca449-0369-4659-a3f6-20ee4f2e3a7f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e63ca449-0369-4659-a3f6-20ee4f2e3a7f@6c48a", + "displayName": "img_10014_20_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e63ca449-0369-4659-a3f6-20ee4f2e3a7f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e63ca449-0369-4659-a3f6-20ee4f2e3a7f@f9941", + "displayName": "img_10014_20_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e63ca449-0369-4659-a3f6-20ee4f2e3a7f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e63ca449-0369-4659-a3f6-20ee4f2e3a7f@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_21_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_21_thumbnail_blur.jpg new file mode 100644 index 00000000..f73118a5 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_21_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_21_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_21_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..214fc08b --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_21_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b4814e17-b282-4da2-bf57-de1b4f8697d1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b4814e17-b282-4da2-bf57-de1b4f8697d1@6c48a", + "displayName": "img_10014_21_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b4814e17-b282-4da2-bf57-de1b4f8697d1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b4814e17-b282-4da2-bf57-de1b4f8697d1@f9941", + "displayName": "img_10014_21_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b4814e17-b282-4da2-bf57-de1b4f8697d1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b4814e17-b282-4da2-bf57-de1b4f8697d1@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_22_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_22_thumbnail_blur.jpg new file mode 100644 index 00000000..0bd60a70 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_22_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_22_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_22_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..737d6d3c --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_22_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c5507942-bb36-46c3-aa85-fb34bc3d5091", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c5507942-bb36-46c3-aa85-fb34bc3d5091@6c48a", + "displayName": "img_10014_22_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c5507942-bb36-46c3-aa85-fb34bc3d5091", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c5507942-bb36-46c3-aa85-fb34bc3d5091@f9941", + "displayName": "img_10014_22_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c5507942-bb36-46c3-aa85-fb34bc3d5091@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c5507942-bb36-46c3-aa85-fb34bc3d5091@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_23_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_23_thumbnail_blur.jpg new file mode 100644 index 00000000..135cbdd8 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_23_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_23_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_23_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3fb61a4c --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_23_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fc9d0394-9be8-454b-b85c-074dabec99a1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fc9d0394-9be8-454b-b85c-074dabec99a1@6c48a", + "displayName": "img_10014_23_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fc9d0394-9be8-454b-b85c-074dabec99a1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "fc9d0394-9be8-454b-b85c-074dabec99a1@f9941", + "displayName": "img_10014_23_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fc9d0394-9be8-454b-b85c-074dabec99a1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fc9d0394-9be8-454b-b85c-074dabec99a1@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_24_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_24_thumbnail_blur.jpg new file mode 100644 index 00000000..2c4996b1 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_24_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_24_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_24_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4fa836ad --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_24_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5c2076f3-63b9-4091-88d7-1909bd858174", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5c2076f3-63b9-4091-88d7-1909bd858174@6c48a", + "displayName": "img_10014_24_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5c2076f3-63b9-4091-88d7-1909bd858174", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5c2076f3-63b9-4091-88d7-1909bd858174@f9941", + "displayName": "img_10014_24_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5c2076f3-63b9-4091-88d7-1909bd858174@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5c2076f3-63b9-4091-88d7-1909bd858174@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_25_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_25_thumbnail_blur.jpg new file mode 100644 index 00000000..fb58e19f Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_25_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_25_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_25_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7a5a94a6 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_25_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7e04d846-dfec-44f0-928e-7df7e138c112", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7e04d846-dfec-44f0-928e-7df7e138c112@6c48a", + "displayName": "img_10014_25_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7e04d846-dfec-44f0-928e-7df7e138c112", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7e04d846-dfec-44f0-928e-7df7e138c112@f9941", + "displayName": "img_10014_25_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7e04d846-dfec-44f0-928e-7df7e138c112@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7e04d846-dfec-44f0-928e-7df7e138c112@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_26_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_26_thumbnail_blur.jpg new file mode 100644 index 00000000..73428d21 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_26_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_26_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_26_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4154e3f5 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_26_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d834ec9e-3851-4b02-b53e-069b1623e5a1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d834ec9e-3851-4b02-b53e-069b1623e5a1@6c48a", + "displayName": "img_10014_26_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d834ec9e-3851-4b02-b53e-069b1623e5a1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d834ec9e-3851-4b02-b53e-069b1623e5a1@f9941", + "displayName": "img_10014_26_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d834ec9e-3851-4b02-b53e-069b1623e5a1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d834ec9e-3851-4b02-b53e-069b1623e5a1@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_27_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_27_thumbnail_blur.jpg new file mode 100644 index 00000000..2db3bc3a Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_27_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_27_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_27_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..07b27a15 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_27_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f0848c97-4db7-4853-b39e-a9f66dd50b35", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f0848c97-4db7-4853-b39e-a9f66dd50b35@6c48a", + "displayName": "img_10014_27_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f0848c97-4db7-4853-b39e-a9f66dd50b35", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f0848c97-4db7-4853-b39e-a9f66dd50b35@f9941", + "displayName": "img_10014_27_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f0848c97-4db7-4853-b39e-a9f66dd50b35@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f0848c97-4db7-4853-b39e-a9f66dd50b35@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_28_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_28_thumbnail_blur.jpg new file mode 100644 index 00000000..5d3cdc8a Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_28_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_28_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_28_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d8621efe --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_28_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f1d9f5e1-9970-4fc5-a246-a1724a84a692", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f1d9f5e1-9970-4fc5-a246-a1724a84a692@6c48a", + "displayName": "img_10014_28_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f1d9f5e1-9970-4fc5-a246-a1724a84a692", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f1d9f5e1-9970-4fc5-a246-a1724a84a692@f9941", + "displayName": "img_10014_28_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f1d9f5e1-9970-4fc5-a246-a1724a84a692@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f1d9f5e1-9970-4fc5-a246-a1724a84a692@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_29_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_29_thumbnail_blur.jpg new file mode 100644 index 00000000..78777411 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_29_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_29_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_29_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3e1ebd8c --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_29_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "92cdfcc8-c3c2-4d91-861c-721fbd9d4e5b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "92cdfcc8-c3c2-4d91-861c-721fbd9d4e5b@6c48a", + "displayName": "img_10014_29_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "92cdfcc8-c3c2-4d91-861c-721fbd9d4e5b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "92cdfcc8-c3c2-4d91-861c-721fbd9d4e5b@f9941", + "displayName": "img_10014_29_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "92cdfcc8-c3c2-4d91-861c-721fbd9d4e5b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "92cdfcc8-c3c2-4d91-861c-721fbd9d4e5b@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_2_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_2_thumbnail_blur.jpg new file mode 100644 index 00000000..f7934183 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..515b5246 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c4c7fee8-2cc4-43c6-a320-08bb488d765c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c4c7fee8-2cc4-43c6-a320-08bb488d765c@6c48a", + "displayName": "img_10014_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c4c7fee8-2cc4-43c6-a320-08bb488d765c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c4c7fee8-2cc4-43c6-a320-08bb488d765c@f9941", + "displayName": "img_10014_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c4c7fee8-2cc4-43c6-a320-08bb488d765c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c4c7fee8-2cc4-43c6-a320-08bb488d765c@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_30_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_30_thumbnail_blur.jpg new file mode 100644 index 00000000..b98c7e23 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_30_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_30_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_30_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5299c991 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_30_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0ae6f60a-5cc4-4df7-9a1f-55ae6ba59808", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0ae6f60a-5cc4-4df7-9a1f-55ae6ba59808@6c48a", + "displayName": "img_10014_30_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0ae6f60a-5cc4-4df7-9a1f-55ae6ba59808", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0ae6f60a-5cc4-4df7-9a1f-55ae6ba59808@f9941", + "displayName": "img_10014_30_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0ae6f60a-5cc4-4df7-9a1f-55ae6ba59808@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0ae6f60a-5cc4-4df7-9a1f-55ae6ba59808@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_31_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_31_thumbnail_blur.jpg new file mode 100644 index 00000000..cd17effd Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_31_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_31_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_31_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..205bc65b --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_31_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "faaf2fea-71f4-4442-8c63-36e220115d0a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "faaf2fea-71f4-4442-8c63-36e220115d0a@6c48a", + "displayName": "img_10014_31_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "faaf2fea-71f4-4442-8c63-36e220115d0a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "faaf2fea-71f4-4442-8c63-36e220115d0a@f9941", + "displayName": "img_10014_31_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "faaf2fea-71f4-4442-8c63-36e220115d0a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "faaf2fea-71f4-4442-8c63-36e220115d0a@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_32_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_32_thumbnail_blur.jpg new file mode 100644 index 00000000..ee0b4613 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_32_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_32_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_32_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0d179fd9 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_32_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "369716d6-bc0e-4c77-acb2-91c1ef707843", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "369716d6-bc0e-4c77-acb2-91c1ef707843@6c48a", + "displayName": "img_10014_32_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "369716d6-bc0e-4c77-acb2-91c1ef707843", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "369716d6-bc0e-4c77-acb2-91c1ef707843@f9941", + "displayName": "img_10014_32_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "369716d6-bc0e-4c77-acb2-91c1ef707843@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "369716d6-bc0e-4c77-acb2-91c1ef707843@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_33_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_33_thumbnail_blur.jpg new file mode 100644 index 00000000..35db9625 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_33_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_33_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_33_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..095399b3 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_33_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "92be0a9b-8bd1-4ec5-98af-9e9290ad9006", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "92be0a9b-8bd1-4ec5-98af-9e9290ad9006@6c48a", + "displayName": "img_10014_33_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "92be0a9b-8bd1-4ec5-98af-9e9290ad9006", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "92be0a9b-8bd1-4ec5-98af-9e9290ad9006@f9941", + "displayName": "img_10014_33_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "92be0a9b-8bd1-4ec5-98af-9e9290ad9006@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "92be0a9b-8bd1-4ec5-98af-9e9290ad9006@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_34_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_34_thumbnail_blur.jpg new file mode 100644 index 00000000..38e30112 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_34_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_34_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_34_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..56266bfd --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_34_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5f1e1fcf-22b1-43ba-914a-06e5346f13ef", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5f1e1fcf-22b1-43ba-914a-06e5346f13ef@6c48a", + "displayName": "img_10014_34_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5f1e1fcf-22b1-43ba-914a-06e5346f13ef", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5f1e1fcf-22b1-43ba-914a-06e5346f13ef@f9941", + "displayName": "img_10014_34_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5f1e1fcf-22b1-43ba-914a-06e5346f13ef@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5f1e1fcf-22b1-43ba-914a-06e5346f13ef@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_35_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_35_thumbnail_blur.jpg new file mode 100644 index 00000000..70908de3 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_35_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_35_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_35_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e0c15532 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_35_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2b794089-ba58-43b7-b314-498a2a31ff29", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2b794089-ba58-43b7-b314-498a2a31ff29@6c48a", + "displayName": "img_10014_35_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2b794089-ba58-43b7-b314-498a2a31ff29", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2b794089-ba58-43b7-b314-498a2a31ff29@f9941", + "displayName": "img_10014_35_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2b794089-ba58-43b7-b314-498a2a31ff29@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2b794089-ba58-43b7-b314-498a2a31ff29@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_36_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_36_thumbnail_blur.jpg new file mode 100644 index 00000000..579d02ca Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_36_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_36_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_36_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c883477f --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_36_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8e2f8632-532f-4a8e-ab4a-b98626f5d194", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8e2f8632-532f-4a8e-ab4a-b98626f5d194@6c48a", + "displayName": "img_10014_36_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8e2f8632-532f-4a8e-ab4a-b98626f5d194", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8e2f8632-532f-4a8e-ab4a-b98626f5d194@f9941", + "displayName": "img_10014_36_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8e2f8632-532f-4a8e-ab4a-b98626f5d194@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8e2f8632-532f-4a8e-ab4a-b98626f5d194@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_37_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_37_thumbnail_blur.jpg new file mode 100644 index 00000000..6496c96c Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_37_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_37_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_37_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e226f640 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_37_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0316bdab-0314-4acd-90d9-233388971902", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0316bdab-0314-4acd-90d9-233388971902@6c48a", + "displayName": "img_10014_37_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0316bdab-0314-4acd-90d9-233388971902", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0316bdab-0314-4acd-90d9-233388971902@f9941", + "displayName": "img_10014_37_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0316bdab-0314-4acd-90d9-233388971902@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0316bdab-0314-4acd-90d9-233388971902@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_38_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_38_thumbnail_blur.jpg new file mode 100644 index 00000000..1651bff8 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_38_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_38_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_38_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..16c93d0d --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_38_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "898e7952-bdb6-4078-ac49-ce2cfb7fe958", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "898e7952-bdb6-4078-ac49-ce2cfb7fe958@6c48a", + "displayName": "img_10014_38_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "898e7952-bdb6-4078-ac49-ce2cfb7fe958", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "898e7952-bdb6-4078-ac49-ce2cfb7fe958@f9941", + "displayName": "img_10014_38_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "898e7952-bdb6-4078-ac49-ce2cfb7fe958@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "898e7952-bdb6-4078-ac49-ce2cfb7fe958@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_39_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_39_thumbnail_blur.jpg new file mode 100644 index 00000000..c60f115d Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_39_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_39_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_39_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..95e8b28c --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_39_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cf230f28-f213-4f6e-a1ca-e1231d03be17", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cf230f28-f213-4f6e-a1ca-e1231d03be17@6c48a", + "displayName": "img_10014_39_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cf230f28-f213-4f6e-a1ca-e1231d03be17", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cf230f28-f213-4f6e-a1ca-e1231d03be17@f9941", + "displayName": "img_10014_39_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cf230f28-f213-4f6e-a1ca-e1231d03be17@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cf230f28-f213-4f6e-a1ca-e1231d03be17@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_3_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_3_thumbnail_blur.jpg new file mode 100644 index 00000000..a1359683 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ce014363 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "49e0e760-f255-4093-94f1-f1f745bfa746", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "49e0e760-f255-4093-94f1-f1f745bfa746@6c48a", + "displayName": "img_10014_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "49e0e760-f255-4093-94f1-f1f745bfa746", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "49e0e760-f255-4093-94f1-f1f745bfa746@f9941", + "displayName": "img_10014_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "49e0e760-f255-4093-94f1-f1f745bfa746@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "49e0e760-f255-4093-94f1-f1f745bfa746@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_40_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_40_thumbnail_blur.jpg new file mode 100644 index 00000000..8ed013c4 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_40_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_40_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_40_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1b727e37 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_40_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2ee6a42e-4cea-43e7-a7b6-58f915b45b24", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2ee6a42e-4cea-43e7-a7b6-58f915b45b24@6c48a", + "displayName": "img_10014_40_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2ee6a42e-4cea-43e7-a7b6-58f915b45b24", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2ee6a42e-4cea-43e7-a7b6-58f915b45b24@f9941", + "displayName": "img_10014_40_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2ee6a42e-4cea-43e7-a7b6-58f915b45b24@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2ee6a42e-4cea-43e7-a7b6-58f915b45b24@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_41_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_41_thumbnail_blur.jpg new file mode 100644 index 00000000..48b9145d Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_41_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_41_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_41_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..71d3128b --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_41_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a2f9990b-655d-46cb-8d60-d7d0ad75d118", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a2f9990b-655d-46cb-8d60-d7d0ad75d118@6c48a", + "displayName": "img_10014_41_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a2f9990b-655d-46cb-8d60-d7d0ad75d118", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a2f9990b-655d-46cb-8d60-d7d0ad75d118@f9941", + "displayName": "img_10014_41_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a2f9990b-655d-46cb-8d60-d7d0ad75d118@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a2f9990b-655d-46cb-8d60-d7d0ad75d118@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_42_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_42_thumbnail_blur.jpg new file mode 100644 index 00000000..15f2732a Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_42_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_42_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_42_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7b0e9cce --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_42_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "981d2891-b8a9-4f47-afa7-7afeaf54565d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "981d2891-b8a9-4f47-afa7-7afeaf54565d@6c48a", + "displayName": "img_10014_42_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "981d2891-b8a9-4f47-afa7-7afeaf54565d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "981d2891-b8a9-4f47-afa7-7afeaf54565d@f9941", + "displayName": "img_10014_42_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "981d2891-b8a9-4f47-afa7-7afeaf54565d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "981d2891-b8a9-4f47-afa7-7afeaf54565d@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_43_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_43_thumbnail_blur.jpg new file mode 100644 index 00000000..185fd5ba Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_43_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_43_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_43_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0fd09b2d --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_43_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4185733b-b8cd-4fc2-b04d-e49a8a3883cb", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4185733b-b8cd-4fc2-b04d-e49a8a3883cb@6c48a", + "displayName": "img_10014_43_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4185733b-b8cd-4fc2-b04d-e49a8a3883cb", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4185733b-b8cd-4fc2-b04d-e49a8a3883cb@f9941", + "displayName": "img_10014_43_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4185733b-b8cd-4fc2-b04d-e49a8a3883cb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4185733b-b8cd-4fc2-b04d-e49a8a3883cb@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_44_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_44_thumbnail_blur.jpg new file mode 100644 index 00000000..7dbd3f86 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_44_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_44_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_44_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5c4c0334 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_44_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8bf2e198-42cb-4f08-87c4-72b94c915b23", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8bf2e198-42cb-4f08-87c4-72b94c915b23@6c48a", + "displayName": "img_10014_44_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8bf2e198-42cb-4f08-87c4-72b94c915b23", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8bf2e198-42cb-4f08-87c4-72b94c915b23@f9941", + "displayName": "img_10014_44_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8bf2e198-42cb-4f08-87c4-72b94c915b23@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8bf2e198-42cb-4f08-87c4-72b94c915b23@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_45_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_45_thumbnail_blur.jpg new file mode 100644 index 00000000..add236d0 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_45_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_45_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_45_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..769e6593 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_45_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "be39772d-8063-4d9e-a0a1-c24132d470e5", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "be39772d-8063-4d9e-a0a1-c24132d470e5@6c48a", + "displayName": "img_10014_45_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "be39772d-8063-4d9e-a0a1-c24132d470e5", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "be39772d-8063-4d9e-a0a1-c24132d470e5@f9941", + "displayName": "img_10014_45_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "be39772d-8063-4d9e-a0a1-c24132d470e5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "be39772d-8063-4d9e-a0a1-c24132d470e5@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_46_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_46_thumbnail_blur.jpg new file mode 100644 index 00000000..1e1cde77 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_46_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_46_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_46_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..925d1ea1 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_46_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9104439d-4dfa-4e1f-bd8b-ba487a659016", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9104439d-4dfa-4e1f-bd8b-ba487a659016@6c48a", + "displayName": "img_10014_46_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9104439d-4dfa-4e1f-bd8b-ba487a659016", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9104439d-4dfa-4e1f-bd8b-ba487a659016@f9941", + "displayName": "img_10014_46_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9104439d-4dfa-4e1f-bd8b-ba487a659016@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9104439d-4dfa-4e1f-bd8b-ba487a659016@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_4_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_4_thumbnail_blur.jpg new file mode 100644 index 00000000..7c04c7b3 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5eba9df0 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8be32bba-e237-4085-afa4-ee07a86e25c0", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8be32bba-e237-4085-afa4-ee07a86e25c0@6c48a", + "displayName": "img_10014_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8be32bba-e237-4085-afa4-ee07a86e25c0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8be32bba-e237-4085-afa4-ee07a86e25c0@f9941", + "displayName": "img_10014_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8be32bba-e237-4085-afa4-ee07a86e25c0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8be32bba-e237-4085-afa4-ee07a86e25c0@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_5_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_5_thumbnail_blur.jpg new file mode 100644 index 00000000..416ec4c2 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7eada94d --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b44b649a-0b64-4e30-b3aa-067d34fa3774", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b44b649a-0b64-4e30-b3aa-067d34fa3774@6c48a", + "displayName": "img_10014_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b44b649a-0b64-4e30-b3aa-067d34fa3774", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b44b649a-0b64-4e30-b3aa-067d34fa3774@f9941", + "displayName": "img_10014_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b44b649a-0b64-4e30-b3aa-067d34fa3774@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b44b649a-0b64-4e30-b3aa-067d34fa3774@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_6_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_6_thumbnail_blur.jpg new file mode 100644 index 00000000..b177d994 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..05e72628 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4f14b499-23b0-4d1f-b4aa-2f560fce7243", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4f14b499-23b0-4d1f-b4aa-2f560fce7243@6c48a", + "displayName": "img_10014_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4f14b499-23b0-4d1f-b4aa-2f560fce7243", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4f14b499-23b0-4d1f-b4aa-2f560fce7243@f9941", + "displayName": "img_10014_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4f14b499-23b0-4d1f-b4aa-2f560fce7243@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4f14b499-23b0-4d1f-b4aa-2f560fce7243@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_7_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_7_thumbnail_blur.jpg new file mode 100644 index 00000000..62969c5f Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1dc12c76 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "794b2d27-40c0-4707-827c-b20be0fde89d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "794b2d27-40c0-4707-827c-b20be0fde89d@6c48a", + "displayName": "img_10014_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "794b2d27-40c0-4707-827c-b20be0fde89d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "794b2d27-40c0-4707-827c-b20be0fde89d@f9941", + "displayName": "img_10014_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "794b2d27-40c0-4707-827c-b20be0fde89d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "794b2d27-40c0-4707-827c-b20be0fde89d@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_8_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_8_thumbnail_blur.jpg new file mode 100644 index 00000000..edb2d56b Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7504796f --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fb21e9fb-599d-455c-9bc1-a7870caf5cd0", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fb21e9fb-599d-455c-9bc1-a7870caf5cd0@6c48a", + "displayName": "img_10014_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fb21e9fb-599d-455c-9bc1-a7870caf5cd0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "fb21e9fb-599d-455c-9bc1-a7870caf5cd0@f9941", + "displayName": "img_10014_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fb21e9fb-599d-455c-9bc1-a7870caf5cd0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fb21e9fb-599d-455c-9bc1-a7870caf5cd0@6c48a" + } +} diff --git a/assets/bundles/Girls/10014/img/img_10014_9_thumbnail_blur.jpg b/assets/bundles/Girls/10014/img/img_10014_9_thumbnail_blur.jpg new file mode 100644 index 00000000..2a34f856 Binary files /dev/null and b/assets/bundles/Girls/10014/img/img_10014_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10014/img/img_10014_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10014/img/img_10014_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e4d01fb1 --- /dev/null +++ b/assets/bundles/Girls/10014/img/img_10014_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4dcffbe2-d7af-48c6-abe6-3cf92afa2a0f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4dcffbe2-d7af-48c6-abe6-3cf92afa2a0f@6c48a", + "displayName": "img_10014_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4dcffbe2-d7af-48c6-abe6-3cf92afa2a0f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4dcffbe2-d7af-48c6-abe6-3cf92afa2a0f@f9941", + "displayName": "img_10014_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4dcffbe2-d7af-48c6-abe6-3cf92afa2a0f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4dcffbe2-d7af-48c6-abe6-3cf92afa2a0f@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_10_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_10_thumbnail_blur.jpg new file mode 100644 index 00000000..da0d8460 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..63d560d9 --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cb3a244c-de01-4e69-a780-7f29b1a07449", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cb3a244c-de01-4e69-a780-7f29b1a07449@6c48a", + "displayName": "img_10015_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cb3a244c-de01-4e69-a780-7f29b1a07449", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cb3a244c-de01-4e69-a780-7f29b1a07449@f9941", + "displayName": "img_10015_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cb3a244c-de01-4e69-a780-7f29b1a07449@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cb3a244c-de01-4e69-a780-7f29b1a07449@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_11_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_11_thumbnail_blur.jpg new file mode 100644 index 00000000..51bee145 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..00fa07c0 --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ca0e2c06-f329-4839-8517-03825f25b138", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ca0e2c06-f329-4839-8517-03825f25b138@6c48a", + "displayName": "img_10015_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ca0e2c06-f329-4839-8517-03825f25b138", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ca0e2c06-f329-4839-8517-03825f25b138@f9941", + "displayName": "img_10015_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ca0e2c06-f329-4839-8517-03825f25b138@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ca0e2c06-f329-4839-8517-03825f25b138@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_12_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_12_thumbnail_blur.jpg new file mode 100644 index 00000000..668846ec Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c08f8424 --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d36aef92-cea1-4be8-b7ad-825cf773a4e5", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d36aef92-cea1-4be8-b7ad-825cf773a4e5@6c48a", + "displayName": "img_10015_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d36aef92-cea1-4be8-b7ad-825cf773a4e5", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d36aef92-cea1-4be8-b7ad-825cf773a4e5@f9941", + "displayName": "img_10015_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d36aef92-cea1-4be8-b7ad-825cf773a4e5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d36aef92-cea1-4be8-b7ad-825cf773a4e5@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_13_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_13_thumbnail_blur.jpg new file mode 100644 index 00000000..7a1cdcf7 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..70f04fd8 --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "212bd96a-1397-45f3-9b01-0a5c05e550ab", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "212bd96a-1397-45f3-9b01-0a5c05e550ab@6c48a", + "displayName": "img_10015_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "212bd96a-1397-45f3-9b01-0a5c05e550ab", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "212bd96a-1397-45f3-9b01-0a5c05e550ab@f9941", + "displayName": "img_10015_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 157, + "rawWidth": 90, + "rawHeight": 157, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -78.5, + 0, + 45, + -78.5, + 0, + -45, + 78.5, + 0, + 45, + 78.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 157, + 90, + 157, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -78.5, + 0 + ], + "maxPos": [ + 45, + 78.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "212bd96a-1397-45f3-9b01-0a5c05e550ab@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "212bd96a-1397-45f3-9b01-0a5c05e550ab@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_14_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_14_thumbnail_blur.jpg new file mode 100644 index 00000000..143e8ebc Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d9fa9f25 --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6d6357c8-77e2-4eba-bddb-4cd8750a744a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6d6357c8-77e2-4eba-bddb-4cd8750a744a@6c48a", + "displayName": "img_10015_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6d6357c8-77e2-4eba-bddb-4cd8750a744a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6d6357c8-77e2-4eba-bddb-4cd8750a744a@f9941", + "displayName": "img_10015_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6d6357c8-77e2-4eba-bddb-4cd8750a744a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6d6357c8-77e2-4eba-bddb-4cd8750a744a@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_15_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_15_thumbnail_blur.jpg new file mode 100644 index 00000000..43889ec2 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0009c3b4 --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "812c8db7-4771-4617-b936-0e846c1eee7a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "812c8db7-4771-4617-b936-0e846c1eee7a@6c48a", + "displayName": "img_10015_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "812c8db7-4771-4617-b936-0e846c1eee7a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "812c8db7-4771-4617-b936-0e846c1eee7a@f9941", + "displayName": "img_10015_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "812c8db7-4771-4617-b936-0e846c1eee7a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "812c8db7-4771-4617-b936-0e846c1eee7a@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_16_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_16_thumbnail_blur.jpg new file mode 100644 index 00000000..65cd1d29 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..de31433e --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c5a7eb46-fccf-4d4a-a3d7-82b9850ecf5a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c5a7eb46-fccf-4d4a-a3d7-82b9850ecf5a@6c48a", + "displayName": "img_10015_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c5a7eb46-fccf-4d4a-a3d7-82b9850ecf5a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c5a7eb46-fccf-4d4a-a3d7-82b9850ecf5a@f9941", + "displayName": "img_10015_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c5a7eb46-fccf-4d4a-a3d7-82b9850ecf5a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c5a7eb46-fccf-4d4a-a3d7-82b9850ecf5a@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_17_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_17_thumbnail_blur.jpg new file mode 100644 index 00000000..7d14f1c3 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..62168eae --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f81b5792-63e8-46be-a30b-68eb9fc5ec49", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f81b5792-63e8-46be-a30b-68eb9fc5ec49@6c48a", + "displayName": "img_10015_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f81b5792-63e8-46be-a30b-68eb9fc5ec49", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f81b5792-63e8-46be-a30b-68eb9fc5ec49@f9941", + "displayName": "img_10015_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f81b5792-63e8-46be-a30b-68eb9fc5ec49@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f81b5792-63e8-46be-a30b-68eb9fc5ec49@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_18_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_18_thumbnail_blur.jpg new file mode 100644 index 00000000..dbc9acd8 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_18_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_18_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_18_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..11112471 --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_18_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "61c315ba-5d8f-4732-91d8-49de243fb4c5", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "61c315ba-5d8f-4732-91d8-49de243fb4c5@6c48a", + "displayName": "img_10015_18_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "61c315ba-5d8f-4732-91d8-49de243fb4c5", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "61c315ba-5d8f-4732-91d8-49de243fb4c5@f9941", + "displayName": "img_10015_18_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "61c315ba-5d8f-4732-91d8-49de243fb4c5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "61c315ba-5d8f-4732-91d8-49de243fb4c5@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_19_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_19_thumbnail_blur.jpg new file mode 100644 index 00000000..400f12d2 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_19_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_19_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_19_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..60bdee45 --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_19_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "67571b9d-7952-4001-ba72-5a6cf382f6c8", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "67571b9d-7952-4001-ba72-5a6cf382f6c8@6c48a", + "displayName": "img_10015_19_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "67571b9d-7952-4001-ba72-5a6cf382f6c8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "67571b9d-7952-4001-ba72-5a6cf382f6c8@f9941", + "displayName": "img_10015_19_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "67571b9d-7952-4001-ba72-5a6cf382f6c8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "67571b9d-7952-4001-ba72-5a6cf382f6c8@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_1_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_1_thumbnail_blur.jpg new file mode 100644 index 00000000..1fe590f5 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..2a07c4d2 --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ef0f8c47-e16a-454d-9615-bd9664c316b1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ef0f8c47-e16a-454d-9615-bd9664c316b1@6c48a", + "displayName": "img_10015_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ef0f8c47-e16a-454d-9615-bd9664c316b1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ef0f8c47-e16a-454d-9615-bd9664c316b1@f9941", + "displayName": "img_10015_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ef0f8c47-e16a-454d-9615-bd9664c316b1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ef0f8c47-e16a-454d-9615-bd9664c316b1@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_20_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_20_thumbnail_blur.jpg new file mode 100644 index 00000000..a69c5d12 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_20_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_20_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_20_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..29099555 --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_20_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "61d8a79d-3725-4104-b1a7-2c1f95d1e911", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "61d8a79d-3725-4104-b1a7-2c1f95d1e911@6c48a", + "displayName": "img_10015_20_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "61d8a79d-3725-4104-b1a7-2c1f95d1e911", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "61d8a79d-3725-4104-b1a7-2c1f95d1e911@f9941", + "displayName": "img_10015_20_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "61d8a79d-3725-4104-b1a7-2c1f95d1e911@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "61d8a79d-3725-4104-b1a7-2c1f95d1e911@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_21_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_21_thumbnail_blur.jpg new file mode 100644 index 00000000..fe387240 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_21_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_21_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_21_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..09d9bdf4 --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_21_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e81b57c9-b078-4d95-bcf1-f04196a77f8d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e81b57c9-b078-4d95-bcf1-f04196a77f8d@6c48a", + "displayName": "img_10015_21_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e81b57c9-b078-4d95-bcf1-f04196a77f8d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e81b57c9-b078-4d95-bcf1-f04196a77f8d@f9941", + "displayName": "img_10015_21_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e81b57c9-b078-4d95-bcf1-f04196a77f8d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e81b57c9-b078-4d95-bcf1-f04196a77f8d@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_2_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_2_thumbnail_blur.jpg new file mode 100644 index 00000000..132e7797 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..46510b08 --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "db7ad5b0-877a-4baa-abea-c750932ef3d5", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "db7ad5b0-877a-4baa-abea-c750932ef3d5@6c48a", + "displayName": "img_10015_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "db7ad5b0-877a-4baa-abea-c750932ef3d5", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "db7ad5b0-877a-4baa-abea-c750932ef3d5@f9941", + "displayName": "img_10015_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 157, + "rawWidth": 90, + "rawHeight": 157, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -78.5, + 0, + 45, + -78.5, + 0, + -45, + 78.5, + 0, + 45, + 78.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 157, + 90, + 157, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -78.5, + 0 + ], + "maxPos": [ + 45, + 78.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "db7ad5b0-877a-4baa-abea-c750932ef3d5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "db7ad5b0-877a-4baa-abea-c750932ef3d5@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_3_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_3_thumbnail_blur.jpg new file mode 100644 index 00000000..c44bb800 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..bab7a30c --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9427fd77-f8d3-4e36-a34f-0eebc5cfc330", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9427fd77-f8d3-4e36-a34f-0eebc5cfc330@6c48a", + "displayName": "img_10015_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9427fd77-f8d3-4e36-a34f-0eebc5cfc330", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9427fd77-f8d3-4e36-a34f-0eebc5cfc330@f9941", + "displayName": "img_10015_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9427fd77-f8d3-4e36-a34f-0eebc5cfc330@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9427fd77-f8d3-4e36-a34f-0eebc5cfc330@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_4_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_4_thumbnail_blur.jpg new file mode 100644 index 00000000..f49b2f73 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e91d67bb --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3dc0ef46-d9cf-4d2e-aa87-c48afa5b9a37", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3dc0ef46-d9cf-4d2e-aa87-c48afa5b9a37@6c48a", + "displayName": "img_10015_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3dc0ef46-d9cf-4d2e-aa87-c48afa5b9a37", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3dc0ef46-d9cf-4d2e-aa87-c48afa5b9a37@f9941", + "displayName": "img_10015_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3dc0ef46-d9cf-4d2e-aa87-c48afa5b9a37@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3dc0ef46-d9cf-4d2e-aa87-c48afa5b9a37@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_5_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_5_thumbnail_blur.jpg new file mode 100644 index 00000000..6179edbd Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..04e40f94 --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2732b743-f681-4fda-b813-f40947b393a5", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2732b743-f681-4fda-b813-f40947b393a5@6c48a", + "displayName": "img_10015_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2732b743-f681-4fda-b813-f40947b393a5", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2732b743-f681-4fda-b813-f40947b393a5@f9941", + "displayName": "img_10015_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2732b743-f681-4fda-b813-f40947b393a5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2732b743-f681-4fda-b813-f40947b393a5@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_6_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_6_thumbnail_blur.jpg new file mode 100644 index 00000000..1278cb92 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1f0b4e73 --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bfdef8da-2fee-4628-98e9-b5b501913506", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bfdef8da-2fee-4628-98e9-b5b501913506@6c48a", + "displayName": "img_10015_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bfdef8da-2fee-4628-98e9-b5b501913506", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "bfdef8da-2fee-4628-98e9-b5b501913506@f9941", + "displayName": "img_10015_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bfdef8da-2fee-4628-98e9-b5b501913506@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bfdef8da-2fee-4628-98e9-b5b501913506@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_7_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_7_thumbnail_blur.jpg new file mode 100644 index 00000000..5dd3b0f7 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..dd76409b --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "304f101d-0b22-429f-83c3-bd55483d2c79", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "304f101d-0b22-429f-83c3-bd55483d2c79@6c48a", + "displayName": "img_10015_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "304f101d-0b22-429f-83c3-bd55483d2c79", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "304f101d-0b22-429f-83c3-bd55483d2c79@f9941", + "displayName": "img_10015_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "304f101d-0b22-429f-83c3-bd55483d2c79@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "304f101d-0b22-429f-83c3-bd55483d2c79@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_8_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_8_thumbnail_blur.jpg new file mode 100644 index 00000000..69f88df9 Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6d0cb259 --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d8dbc70b-0bed-4737-a26d-3d2a8baf9de4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d8dbc70b-0bed-4737-a26d-3d2a8baf9de4@6c48a", + "displayName": "img_10015_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d8dbc70b-0bed-4737-a26d-3d2a8baf9de4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d8dbc70b-0bed-4737-a26d-3d2a8baf9de4@f9941", + "displayName": "img_10015_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d8dbc70b-0bed-4737-a26d-3d2a8baf9de4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d8dbc70b-0bed-4737-a26d-3d2a8baf9de4@6c48a" + } +} diff --git a/assets/bundles/Girls/10015/img/img_10015_9_thumbnail_blur.jpg b/assets/bundles/Girls/10015/img/img_10015_9_thumbnail_blur.jpg new file mode 100644 index 00000000..06fdab2c Binary files /dev/null and b/assets/bundles/Girls/10015/img/img_10015_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10015/img/img_10015_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10015/img/img_10015_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..265094dd --- /dev/null +++ b/assets/bundles/Girls/10015/img/img_10015_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8ce0c75f-e8aa-4f53-9ce9-5ad0a6186c1f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8ce0c75f-e8aa-4f53-9ce9-5ad0a6186c1f@6c48a", + "displayName": "img_10015_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8ce0c75f-e8aa-4f53-9ce9-5ad0a6186c1f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8ce0c75f-e8aa-4f53-9ce9-5ad0a6186c1f@f9941", + "displayName": "img_10015_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8ce0c75f-e8aa-4f53-9ce9-5ad0a6186c1f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8ce0c75f-e8aa-4f53-9ce9-5ad0a6186c1f@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_10_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_10_thumbnail_blur.jpg new file mode 100644 index 00000000..cb2e99af Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..71989829 --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "686543b0-f4e4-4f83-83d2-fa446c690f04", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "686543b0-f4e4-4f83-83d2-fa446c690f04@6c48a", + "displayName": "img_10016_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "686543b0-f4e4-4f83-83d2-fa446c690f04", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "686543b0-f4e4-4f83-83d2-fa446c690f04@f9941", + "displayName": "img_10016_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "686543b0-f4e4-4f83-83d2-fa446c690f04@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "686543b0-f4e4-4f83-83d2-fa446c690f04@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_11_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_11_thumbnail_blur.jpg new file mode 100644 index 00000000..ef770005 Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..b704b466 --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "37bf0535-1fe0-4e71-ac8f-70115ebc57cd", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "37bf0535-1fe0-4e71-ac8f-70115ebc57cd@6c48a", + "displayName": "img_10016_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "37bf0535-1fe0-4e71-ac8f-70115ebc57cd", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "37bf0535-1fe0-4e71-ac8f-70115ebc57cd@f9941", + "displayName": "img_10016_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "37bf0535-1fe0-4e71-ac8f-70115ebc57cd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "37bf0535-1fe0-4e71-ac8f-70115ebc57cd@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_12_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_12_thumbnail_blur.jpg new file mode 100644 index 00000000..e565ea98 Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..33dac785 --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e9bd266e-386a-42b7-b053-a35eb29be993", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e9bd266e-386a-42b7-b053-a35eb29be993@6c48a", + "displayName": "img_10016_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e9bd266e-386a-42b7-b053-a35eb29be993", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e9bd266e-386a-42b7-b053-a35eb29be993@f9941", + "displayName": "img_10016_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e9bd266e-386a-42b7-b053-a35eb29be993@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e9bd266e-386a-42b7-b053-a35eb29be993@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_13_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_13_thumbnail_blur.jpg new file mode 100644 index 00000000..6f5bf2d0 Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..41fccd9f --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "02c9bf19-5f97-48e5-82ce-c389bf853b28", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "02c9bf19-5f97-48e5-82ce-c389bf853b28@6c48a", + "displayName": "img_10016_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "02c9bf19-5f97-48e5-82ce-c389bf853b28", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "02c9bf19-5f97-48e5-82ce-c389bf853b28@f9941", + "displayName": "img_10016_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "02c9bf19-5f97-48e5-82ce-c389bf853b28@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "02c9bf19-5f97-48e5-82ce-c389bf853b28@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_14_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_14_thumbnail_blur.jpg new file mode 100644 index 00000000..3044aea4 Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ee14c03d --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b7294ba9-c220-488f-ade4-79c093f0448a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b7294ba9-c220-488f-ade4-79c093f0448a@6c48a", + "displayName": "img_10016_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b7294ba9-c220-488f-ade4-79c093f0448a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b7294ba9-c220-488f-ade4-79c093f0448a@f9941", + "displayName": "img_10016_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b7294ba9-c220-488f-ade4-79c093f0448a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b7294ba9-c220-488f-ade4-79c093f0448a@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_15_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_15_thumbnail_blur.jpg new file mode 100644 index 00000000..c1d87128 Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..fa4541bf --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "60429eee-92c6-4724-9a85-43c486fc0d53", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "60429eee-92c6-4724-9a85-43c486fc0d53@6c48a", + "displayName": "img_10016_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "60429eee-92c6-4724-9a85-43c486fc0d53", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "60429eee-92c6-4724-9a85-43c486fc0d53@f9941", + "displayName": "img_10016_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "60429eee-92c6-4724-9a85-43c486fc0d53@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "60429eee-92c6-4724-9a85-43c486fc0d53@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_16_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_16_thumbnail_blur.jpg new file mode 100644 index 00000000..b0e2a175 Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c7658216 --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "88784c8c-e5b3-4060-aaa9-12f311b6b505", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "88784c8c-e5b3-4060-aaa9-12f311b6b505@6c48a", + "displayName": "img_10016_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "88784c8c-e5b3-4060-aaa9-12f311b6b505", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "88784c8c-e5b3-4060-aaa9-12f311b6b505@f9941", + "displayName": "img_10016_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "88784c8c-e5b3-4060-aaa9-12f311b6b505@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "88784c8c-e5b3-4060-aaa9-12f311b6b505@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_17_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_17_thumbnail_blur.jpg new file mode 100644 index 00000000..e08ad0b2 Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e3a957d6 --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "58fa6758-d6b3-4996-9457-3dcd498cda6b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "58fa6758-d6b3-4996-9457-3dcd498cda6b@6c48a", + "displayName": "img_10016_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "58fa6758-d6b3-4996-9457-3dcd498cda6b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "58fa6758-d6b3-4996-9457-3dcd498cda6b@f9941", + "displayName": "img_10016_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "58fa6758-d6b3-4996-9457-3dcd498cda6b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "58fa6758-d6b3-4996-9457-3dcd498cda6b@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_18_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_18_thumbnail_blur.jpg new file mode 100644 index 00000000..d52a66a1 Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_18_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_18_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_18_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..84c9a7a2 --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_18_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4abc2e36-48f7-4302-8edf-4f0059b16910", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4abc2e36-48f7-4302-8edf-4f0059b16910@6c48a", + "displayName": "img_10016_18_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4abc2e36-48f7-4302-8edf-4f0059b16910", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4abc2e36-48f7-4302-8edf-4f0059b16910@f9941", + "displayName": "img_10016_18_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4abc2e36-48f7-4302-8edf-4f0059b16910@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4abc2e36-48f7-4302-8edf-4f0059b16910@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_19_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_19_thumbnail_blur.jpg new file mode 100644 index 00000000..1f56ac96 Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_19_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_19_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_19_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9bf82158 --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_19_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "46659e08-67e5-4487-8365-82a2cb509287", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "46659e08-67e5-4487-8365-82a2cb509287@6c48a", + "displayName": "img_10016_19_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "46659e08-67e5-4487-8365-82a2cb509287", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "46659e08-67e5-4487-8365-82a2cb509287@f9941", + "displayName": "img_10016_19_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "46659e08-67e5-4487-8365-82a2cb509287@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "46659e08-67e5-4487-8365-82a2cb509287@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_1_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_1_thumbnail_blur.jpg new file mode 100644 index 00000000..3ad1cc02 Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9e7da30c --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6e5ab354-c834-4c0e-b349-00b307708637", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6e5ab354-c834-4c0e-b349-00b307708637@6c48a", + "displayName": "img_10016_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6e5ab354-c834-4c0e-b349-00b307708637", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6e5ab354-c834-4c0e-b349-00b307708637@f9941", + "displayName": "img_10016_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6e5ab354-c834-4c0e-b349-00b307708637@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6e5ab354-c834-4c0e-b349-00b307708637@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_20_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_20_thumbnail_blur.jpg new file mode 100644 index 00000000..9b0ca5cd Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_20_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_20_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_20_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d60ef33b --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_20_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7f034fc7-fc05-42ea-9431-16cd28f709c2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7f034fc7-fc05-42ea-9431-16cd28f709c2@6c48a", + "displayName": "img_10016_20_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7f034fc7-fc05-42ea-9431-16cd28f709c2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7f034fc7-fc05-42ea-9431-16cd28f709c2@f9941", + "displayName": "img_10016_20_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7f034fc7-fc05-42ea-9431-16cd28f709c2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7f034fc7-fc05-42ea-9431-16cd28f709c2@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_2_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_2_thumbnail_blur.jpg new file mode 100644 index 00000000..d7a30a59 Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..862bedc8 --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b7e37d7f-8547-40a0-a226-6612ad2012c0", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b7e37d7f-8547-40a0-a226-6612ad2012c0@6c48a", + "displayName": "img_10016_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b7e37d7f-8547-40a0-a226-6612ad2012c0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b7e37d7f-8547-40a0-a226-6612ad2012c0@f9941", + "displayName": "img_10016_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b7e37d7f-8547-40a0-a226-6612ad2012c0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b7e37d7f-8547-40a0-a226-6612ad2012c0@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_3_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_3_thumbnail_blur.jpg new file mode 100644 index 00000000..fd79e393 Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..77ff7b0d --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e90ad921-2d2a-4ee1-8b21-1e761fc52f89", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e90ad921-2d2a-4ee1-8b21-1e761fc52f89@6c48a", + "displayName": "img_10016_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e90ad921-2d2a-4ee1-8b21-1e761fc52f89", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e90ad921-2d2a-4ee1-8b21-1e761fc52f89@f9941", + "displayName": "img_10016_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e90ad921-2d2a-4ee1-8b21-1e761fc52f89@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e90ad921-2d2a-4ee1-8b21-1e761fc52f89@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_4_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_4_thumbnail_blur.jpg new file mode 100644 index 00000000..67fc31db Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1ebf9adf --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "05d005f2-dbdc-4bde-996d-8f4313926a8c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "05d005f2-dbdc-4bde-996d-8f4313926a8c@6c48a", + "displayName": "img_10016_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "05d005f2-dbdc-4bde-996d-8f4313926a8c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "05d005f2-dbdc-4bde-996d-8f4313926a8c@f9941", + "displayName": "img_10016_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "05d005f2-dbdc-4bde-996d-8f4313926a8c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "05d005f2-dbdc-4bde-996d-8f4313926a8c@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_5_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_5_thumbnail_blur.jpg new file mode 100644 index 00000000..00729119 Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..20d2e4a6 --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f0e75f63-e57b-4f98-808b-d8fa180666b3", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f0e75f63-e57b-4f98-808b-d8fa180666b3@6c48a", + "displayName": "img_10016_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f0e75f63-e57b-4f98-808b-d8fa180666b3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f0e75f63-e57b-4f98-808b-d8fa180666b3@f9941", + "displayName": "img_10016_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f0e75f63-e57b-4f98-808b-d8fa180666b3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f0e75f63-e57b-4f98-808b-d8fa180666b3@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_6_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_6_thumbnail_blur.jpg new file mode 100644 index 00000000..e0a57b69 Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5fdc5d11 --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cff349e3-ed9f-4de3-aad0-eea7b9960060", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cff349e3-ed9f-4de3-aad0-eea7b9960060@6c48a", + "displayName": "img_10016_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cff349e3-ed9f-4de3-aad0-eea7b9960060", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cff349e3-ed9f-4de3-aad0-eea7b9960060@f9941", + "displayName": "img_10016_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cff349e3-ed9f-4de3-aad0-eea7b9960060@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cff349e3-ed9f-4de3-aad0-eea7b9960060@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_7_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_7_thumbnail_blur.jpg new file mode 100644 index 00000000..3fbab228 Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..966fe257 --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a52fc489-1796-483e-b8a7-ce1e7e880017", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a52fc489-1796-483e-b8a7-ce1e7e880017@6c48a", + "displayName": "img_10016_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a52fc489-1796-483e-b8a7-ce1e7e880017", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a52fc489-1796-483e-b8a7-ce1e7e880017@f9941", + "displayName": "img_10016_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a52fc489-1796-483e-b8a7-ce1e7e880017@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a52fc489-1796-483e-b8a7-ce1e7e880017@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_8_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_8_thumbnail_blur.jpg new file mode 100644 index 00000000..dd47183e Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9db42644 --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b446cce2-0506-4f5d-852f-d1277171249f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b446cce2-0506-4f5d-852f-d1277171249f@6c48a", + "displayName": "img_10016_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b446cce2-0506-4f5d-852f-d1277171249f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b446cce2-0506-4f5d-852f-d1277171249f@f9941", + "displayName": "img_10016_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b446cce2-0506-4f5d-852f-d1277171249f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b446cce2-0506-4f5d-852f-d1277171249f@6c48a" + } +} diff --git a/assets/bundles/Girls/10016/img/img_10016_9_thumbnail_blur.jpg b/assets/bundles/Girls/10016/img/img_10016_9_thumbnail_blur.jpg new file mode 100644 index 00000000..494928b7 Binary files /dev/null and b/assets/bundles/Girls/10016/img/img_10016_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10016/img/img_10016_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10016/img/img_10016_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..386b8744 --- /dev/null +++ b/assets/bundles/Girls/10016/img/img_10016_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "348c933f-11e0-4039-819d-907d5956ae93", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "348c933f-11e0-4039-819d-907d5956ae93@6c48a", + "displayName": "img_10016_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "348c933f-11e0-4039-819d-907d5956ae93", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "348c933f-11e0-4039-819d-907d5956ae93@f9941", + "displayName": "img_10016_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "348c933f-11e0-4039-819d-907d5956ae93@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "348c933f-11e0-4039-819d-907d5956ae93@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_1.png b/assets/bundles/Girls/10017/img/img_10017_1.png new file mode 100644 index 00000000..011f3acc Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_1.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_1.png.meta b/assets/bundles/Girls/10017/img/img_10017_1.png.meta new file mode 100644 index 00000000..bb213bc0 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "af90a6d1-2a81-47e1-be8e-7daa46a953b7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "af90a6d1-2a81-47e1-be8e-7daa46a953b7@6c48a", + "displayName": "img_10017_1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "af90a6d1-2a81-47e1-be8e-7daa46a953b7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "af90a6d1-2a81-47e1-be8e-7daa46a953b7@f9941", + "displayName": "img_10017_1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "af90a6d1-2a81-47e1-be8e-7daa46a953b7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "af90a6d1-2a81-47e1-be8e-7daa46a953b7@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_10.png b/assets/bundles/Girls/10017/img/img_10017_10.png new file mode 100644 index 00000000..537b42d9 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_10.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_10.png.meta b/assets/bundles/Girls/10017/img/img_10017_10.png.meta new file mode 100644 index 00000000..444e9c91 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ec161f2b-0c65-4634-bb25-a50f6ac56ec3", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ec161f2b-0c65-4634-bb25-a50f6ac56ec3@6c48a", + "displayName": "img_10017_10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ec161f2b-0c65-4634-bb25-a50f6ac56ec3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ec161f2b-0c65-4634-bb25-a50f6ac56ec3@f9941", + "displayName": "img_10017_10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ec161f2b-0c65-4634-bb25-a50f6ac56ec3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ec161f2b-0c65-4634-bb25-a50f6ac56ec3@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_10_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_10_thumbnail.jpg new file mode 100644 index 00000000..ad5c2644 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_10_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_10_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_10_thumbnail.jpg.meta new file mode 100644 index 00000000..d050cf74 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_10_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "93c9ed4f-21cf-4a98-b2a4-179d376a1ff4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "93c9ed4f-21cf-4a98-b2a4-179d376a1ff4@6c48a", + "displayName": "img_10017_10_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "93c9ed4f-21cf-4a98-b2a4-179d376a1ff4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "93c9ed4f-21cf-4a98-b2a4-179d376a1ff4@f9941", + "displayName": "img_10017_10_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "93c9ed4f-21cf-4a98-b2a4-179d376a1ff4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "93c9ed4f-21cf-4a98-b2a4-179d376a1ff4@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_10_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_10_thumbnail_blur.jpg new file mode 100644 index 00000000..04c9b36c Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0d431730 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bff9c4bd-f574-4159-b988-e26f44e78e03", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bff9c4bd-f574-4159-b988-e26f44e78e03@6c48a", + "displayName": "img_10017_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bff9c4bd-f574-4159-b988-e26f44e78e03", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "bff9c4bd-f574-4159-b988-e26f44e78e03@f9941", + "displayName": "img_10017_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bff9c4bd-f574-4159-b988-e26f44e78e03@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bff9c4bd-f574-4159-b988-e26f44e78e03@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_11.png b/assets/bundles/Girls/10017/img/img_10017_11.png new file mode 100644 index 00000000..da78d54b Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_11.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_11.png.meta b/assets/bundles/Girls/10017/img/img_10017_11.png.meta new file mode 100644 index 00000000..b1f08c75 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b85aab1f-bbed-4f59-94ac-6950b6422cfb", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b85aab1f-bbed-4f59-94ac-6950b6422cfb@6c48a", + "displayName": "img_10017_11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b85aab1f-bbed-4f59-94ac-6950b6422cfb", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b85aab1f-bbed-4f59-94ac-6950b6422cfb@f9941", + "displayName": "img_10017_11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b85aab1f-bbed-4f59-94ac-6950b6422cfb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b85aab1f-bbed-4f59-94ac-6950b6422cfb@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_11_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_11_thumbnail.jpg new file mode 100644 index 00000000..8d2878e6 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_11_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_11_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_11_thumbnail.jpg.meta new file mode 100644 index 00000000..c09b8a2b --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_11_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "afa00b91-1fd1-4e2e-95ff-132f76ce39af", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "afa00b91-1fd1-4e2e-95ff-132f76ce39af@6c48a", + "displayName": "img_10017_11_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "afa00b91-1fd1-4e2e-95ff-132f76ce39af", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "afa00b91-1fd1-4e2e-95ff-132f76ce39af@f9941", + "displayName": "img_10017_11_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "afa00b91-1fd1-4e2e-95ff-132f76ce39af@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "afa00b91-1fd1-4e2e-95ff-132f76ce39af@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_11_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_11_thumbnail_blur.jpg new file mode 100644 index 00000000..9519c8cb Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c660e4ae --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6f06a8cf-dac5-4146-ae09-e1f1fcf543eb", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6f06a8cf-dac5-4146-ae09-e1f1fcf543eb@6c48a", + "displayName": "img_10017_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6f06a8cf-dac5-4146-ae09-e1f1fcf543eb", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6f06a8cf-dac5-4146-ae09-e1f1fcf543eb@f9941", + "displayName": "img_10017_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6f06a8cf-dac5-4146-ae09-e1f1fcf543eb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6f06a8cf-dac5-4146-ae09-e1f1fcf543eb@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_12.png b/assets/bundles/Girls/10017/img/img_10017_12.png new file mode 100644 index 00000000..4af83ef1 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_12.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_12.png.meta b/assets/bundles/Girls/10017/img/img_10017_12.png.meta new file mode 100644 index 00000000..25d9a769 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_12.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d4a552f1-3030-4490-93d2-5e8cf0ec85a1", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d4a552f1-3030-4490-93d2-5e8cf0ec85a1@6c48a", + "displayName": "img_10017_12", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d4a552f1-3030-4490-93d2-5e8cf0ec85a1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d4a552f1-3030-4490-93d2-5e8cf0ec85a1@f9941", + "displayName": "img_10017_12", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d4a552f1-3030-4490-93d2-5e8cf0ec85a1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d4a552f1-3030-4490-93d2-5e8cf0ec85a1@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_12_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_12_thumbnail.jpg new file mode 100644 index 00000000..c7045472 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_12_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_12_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_12_thumbnail.jpg.meta new file mode 100644 index 00000000..3510dff8 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_12_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d9de8e88-3078-4c3d-8c22-f05c8cb630b6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d9de8e88-3078-4c3d-8c22-f05c8cb630b6@6c48a", + "displayName": "img_10017_12_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d9de8e88-3078-4c3d-8c22-f05c8cb630b6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d9de8e88-3078-4c3d-8c22-f05c8cb630b6@f9941", + "displayName": "img_10017_12_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d9de8e88-3078-4c3d-8c22-f05c8cb630b6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d9de8e88-3078-4c3d-8c22-f05c8cb630b6@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_12_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_12_thumbnail_blur.jpg new file mode 100644 index 00000000..28eb54e3 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..94893016 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "00f4b609-a818-46b2-a53b-4bd8b84e4938", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "00f4b609-a818-46b2-a53b-4bd8b84e4938@6c48a", + "displayName": "img_10017_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "00f4b609-a818-46b2-a53b-4bd8b84e4938", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "00f4b609-a818-46b2-a53b-4bd8b84e4938@f9941", + "displayName": "img_10017_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "00f4b609-a818-46b2-a53b-4bd8b84e4938@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "00f4b609-a818-46b2-a53b-4bd8b84e4938@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_13.png b/assets/bundles/Girls/10017/img/img_10017_13.png new file mode 100644 index 00000000..dc85ba79 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_13.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_13.png.meta b/assets/bundles/Girls/10017/img/img_10017_13.png.meta new file mode 100644 index 00000000..3ed6b8d2 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_13.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "98aa7ba3-395f-4b46-b8bc-84364a537fc9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "98aa7ba3-395f-4b46-b8bc-84364a537fc9@6c48a", + "displayName": "img_10017_13", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "98aa7ba3-395f-4b46-b8bc-84364a537fc9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "98aa7ba3-395f-4b46-b8bc-84364a537fc9@f9941", + "displayName": "img_10017_13", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "98aa7ba3-395f-4b46-b8bc-84364a537fc9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "98aa7ba3-395f-4b46-b8bc-84364a537fc9@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_13_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_13_thumbnail.jpg new file mode 100644 index 00000000..7354a5b4 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_13_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_13_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_13_thumbnail.jpg.meta new file mode 100644 index 00000000..ba2fbf48 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_13_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e6b060ab-8388-491b-98dd-4a309ba8ab68", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e6b060ab-8388-491b-98dd-4a309ba8ab68@6c48a", + "displayName": "img_10017_13_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e6b060ab-8388-491b-98dd-4a309ba8ab68", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e6b060ab-8388-491b-98dd-4a309ba8ab68@f9941", + "displayName": "img_10017_13_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e6b060ab-8388-491b-98dd-4a309ba8ab68@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e6b060ab-8388-491b-98dd-4a309ba8ab68@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_13_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_13_thumbnail_blur.jpg new file mode 100644 index 00000000..5270b981 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..fa3199ee --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cd5d16f3-ce0a-48cb-813a-6d4fc9722201", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cd5d16f3-ce0a-48cb-813a-6d4fc9722201@6c48a", + "displayName": "img_10017_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cd5d16f3-ce0a-48cb-813a-6d4fc9722201", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cd5d16f3-ce0a-48cb-813a-6d4fc9722201@f9941", + "displayName": "img_10017_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cd5d16f3-ce0a-48cb-813a-6d4fc9722201@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cd5d16f3-ce0a-48cb-813a-6d4fc9722201@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_14.png b/assets/bundles/Girls/10017/img/img_10017_14.png new file mode 100644 index 00000000..8c9e45c0 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_14.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_14.png.meta b/assets/bundles/Girls/10017/img/img_10017_14.png.meta new file mode 100644 index 00000000..b1f94797 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_14.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c3124e4f-f159-4c96-b172-2b95a9f618a4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c3124e4f-f159-4c96-b172-2b95a9f618a4@6c48a", + "displayName": "img_10017_14", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c3124e4f-f159-4c96-b172-2b95a9f618a4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c3124e4f-f159-4c96-b172-2b95a9f618a4@f9941", + "displayName": "img_10017_14", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c3124e4f-f159-4c96-b172-2b95a9f618a4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c3124e4f-f159-4c96-b172-2b95a9f618a4@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_14_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_14_thumbnail.jpg new file mode 100644 index 00000000..8a33e27d Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_14_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_14_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_14_thumbnail.jpg.meta new file mode 100644 index 00000000..ae9207f6 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_14_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "61317eec-0899-4a67-ae00-5e1132a0ba3b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "61317eec-0899-4a67-ae00-5e1132a0ba3b@6c48a", + "displayName": "img_10017_14_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "61317eec-0899-4a67-ae00-5e1132a0ba3b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "61317eec-0899-4a67-ae00-5e1132a0ba3b@f9941", + "displayName": "img_10017_14_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "61317eec-0899-4a67-ae00-5e1132a0ba3b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "61317eec-0899-4a67-ae00-5e1132a0ba3b@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_14_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_14_thumbnail_blur.jpg new file mode 100644 index 00000000..9f59253b Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..781ea48b --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fbb1f326-f9a0-44ef-9162-c6c52b40a0ce", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fbb1f326-f9a0-44ef-9162-c6c52b40a0ce@6c48a", + "displayName": "img_10017_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fbb1f326-f9a0-44ef-9162-c6c52b40a0ce", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "fbb1f326-f9a0-44ef-9162-c6c52b40a0ce@f9941", + "displayName": "img_10017_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fbb1f326-f9a0-44ef-9162-c6c52b40a0ce@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fbb1f326-f9a0-44ef-9162-c6c52b40a0ce@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_15.png b/assets/bundles/Girls/10017/img/img_10017_15.png new file mode 100644 index 00000000..8fadc510 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_15.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_15.png.meta b/assets/bundles/Girls/10017/img/img_10017_15.png.meta new file mode 100644 index 00000000..3bc7775f --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_15.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8b25150d-477e-4cda-b8c0-554d10b35d25", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8b25150d-477e-4cda-b8c0-554d10b35d25@6c48a", + "displayName": "img_10017_15", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8b25150d-477e-4cda-b8c0-554d10b35d25", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8b25150d-477e-4cda-b8c0-554d10b35d25@f9941", + "displayName": "img_10017_15", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8b25150d-477e-4cda-b8c0-554d10b35d25@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8b25150d-477e-4cda-b8c0-554d10b35d25@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_15_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_15_thumbnail.jpg new file mode 100644 index 00000000..777f67f4 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_15_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_15_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_15_thumbnail.jpg.meta new file mode 100644 index 00000000..96931f69 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_15_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b1fd4fa3-609b-4101-aed0-64fcd7133011", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b1fd4fa3-609b-4101-aed0-64fcd7133011@6c48a", + "displayName": "img_10017_15_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b1fd4fa3-609b-4101-aed0-64fcd7133011", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b1fd4fa3-609b-4101-aed0-64fcd7133011@f9941", + "displayName": "img_10017_15_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b1fd4fa3-609b-4101-aed0-64fcd7133011@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b1fd4fa3-609b-4101-aed0-64fcd7133011@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_15_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_15_thumbnail_blur.jpg new file mode 100644 index 00000000..cbce6620 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..06a36186 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "82e4d277-98c6-4ab0-b797-f19a2f1ab3bd", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "82e4d277-98c6-4ab0-b797-f19a2f1ab3bd@6c48a", + "displayName": "img_10017_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "82e4d277-98c6-4ab0-b797-f19a2f1ab3bd", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "82e4d277-98c6-4ab0-b797-f19a2f1ab3bd@f9941", + "displayName": "img_10017_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "82e4d277-98c6-4ab0-b797-f19a2f1ab3bd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "82e4d277-98c6-4ab0-b797-f19a2f1ab3bd@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_16.png b/assets/bundles/Girls/10017/img/img_10017_16.png new file mode 100644 index 00000000..c570ecf6 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_16.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_16.png.meta b/assets/bundles/Girls/10017/img/img_10017_16.png.meta new file mode 100644 index 00000000..a7cb9e12 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_16.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "44d5efd0-1f30-41ef-9285-8be2c9789257", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "44d5efd0-1f30-41ef-9285-8be2c9789257@6c48a", + "displayName": "img_10017_16", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "44d5efd0-1f30-41ef-9285-8be2c9789257", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "44d5efd0-1f30-41ef-9285-8be2c9789257@f9941", + "displayName": "img_10017_16", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "44d5efd0-1f30-41ef-9285-8be2c9789257@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "44d5efd0-1f30-41ef-9285-8be2c9789257@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_16_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_16_thumbnail.jpg new file mode 100644 index 00000000..e573108d Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_16_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_16_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_16_thumbnail.jpg.meta new file mode 100644 index 00000000..172f697b --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_16_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d3edf507-89ac-4c52-b86f-df80cfd8eb92", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d3edf507-89ac-4c52-b86f-df80cfd8eb92@6c48a", + "displayName": "img_10017_16_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d3edf507-89ac-4c52-b86f-df80cfd8eb92", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d3edf507-89ac-4c52-b86f-df80cfd8eb92@f9941", + "displayName": "img_10017_16_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d3edf507-89ac-4c52-b86f-df80cfd8eb92@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d3edf507-89ac-4c52-b86f-df80cfd8eb92@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_16_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_16_thumbnail_blur.jpg new file mode 100644 index 00000000..7e7ff8b8 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..368e8066 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a1eb44a8-987d-4527-a3b2-21a5dc73945b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a1eb44a8-987d-4527-a3b2-21a5dc73945b@6c48a", + "displayName": "img_10017_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a1eb44a8-987d-4527-a3b2-21a5dc73945b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a1eb44a8-987d-4527-a3b2-21a5dc73945b@f9941", + "displayName": "img_10017_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a1eb44a8-987d-4527-a3b2-21a5dc73945b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a1eb44a8-987d-4527-a3b2-21a5dc73945b@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_17.png b/assets/bundles/Girls/10017/img/img_10017_17.png new file mode 100644 index 00000000..9ae3310e Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_17.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_17.png.meta b/assets/bundles/Girls/10017/img/img_10017_17.png.meta new file mode 100644 index 00000000..90cd98f0 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_17.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "36d29944-1a52-4c77-96c1-4e3bffc1cb73", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "36d29944-1a52-4c77-96c1-4e3bffc1cb73@6c48a", + "displayName": "img_10017_17", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "36d29944-1a52-4c77-96c1-4e3bffc1cb73", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "36d29944-1a52-4c77-96c1-4e3bffc1cb73@f9941", + "displayName": "img_10017_17", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "36d29944-1a52-4c77-96c1-4e3bffc1cb73@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "36d29944-1a52-4c77-96c1-4e3bffc1cb73@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_17_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_17_thumbnail.jpg new file mode 100644 index 00000000..02c85351 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_17_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_17_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_17_thumbnail.jpg.meta new file mode 100644 index 00000000..71055a79 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_17_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8c2d3b62-2dfc-41ea-a132-b79ea51d0118", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8c2d3b62-2dfc-41ea-a132-b79ea51d0118@6c48a", + "displayName": "img_10017_17_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8c2d3b62-2dfc-41ea-a132-b79ea51d0118", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8c2d3b62-2dfc-41ea-a132-b79ea51d0118@f9941", + "displayName": "img_10017_17_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8c2d3b62-2dfc-41ea-a132-b79ea51d0118@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8c2d3b62-2dfc-41ea-a132-b79ea51d0118@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_17_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_17_thumbnail_blur.jpg new file mode 100644 index 00000000..72bfd6ec Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4c666e56 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c79b5b42-be91-4c15-bce7-4e16b288a89c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c79b5b42-be91-4c15-bce7-4e16b288a89c@6c48a", + "displayName": "img_10017_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c79b5b42-be91-4c15-bce7-4e16b288a89c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c79b5b42-be91-4c15-bce7-4e16b288a89c@f9941", + "displayName": "img_10017_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c79b5b42-be91-4c15-bce7-4e16b288a89c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c79b5b42-be91-4c15-bce7-4e16b288a89c@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_1_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_1_thumbnail.jpg new file mode 100644 index 00000000..5e12ab9d Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_1_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_1_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_1_thumbnail.jpg.meta new file mode 100644 index 00000000..c09c9825 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_1_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b6fc220b-5595-4b10-a1d2-693103c40777", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b6fc220b-5595-4b10-a1d2-693103c40777@6c48a", + "displayName": "img_10017_1_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b6fc220b-5595-4b10-a1d2-693103c40777", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b6fc220b-5595-4b10-a1d2-693103c40777@f9941", + "displayName": "img_10017_1_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b6fc220b-5595-4b10-a1d2-693103c40777@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b6fc220b-5595-4b10-a1d2-693103c40777@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_1_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_1_thumbnail_blur.jpg new file mode 100644 index 00000000..f33883f6 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..fbb066d9 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c3813710-a161-428c-a089-0f392178daf2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c3813710-a161-428c-a089-0f392178daf2@6c48a", + "displayName": "img_10017_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c3813710-a161-428c-a089-0f392178daf2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c3813710-a161-428c-a089-0f392178daf2@f9941", + "displayName": "img_10017_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c3813710-a161-428c-a089-0f392178daf2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c3813710-a161-428c-a089-0f392178daf2@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_2.png b/assets/bundles/Girls/10017/img/img_10017_2.png new file mode 100644 index 00000000..51a5716f Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_2.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_2.png.meta b/assets/bundles/Girls/10017/img/img_10017_2.png.meta new file mode 100644 index 00000000..598b2bac --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "40cd32b9-b501-414c-8e09-b79f1d284ed1", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "40cd32b9-b501-414c-8e09-b79f1d284ed1@6c48a", + "displayName": "img_10017_2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "40cd32b9-b501-414c-8e09-b79f1d284ed1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "40cd32b9-b501-414c-8e09-b79f1d284ed1@f9941", + "displayName": "img_10017_2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "40cd32b9-b501-414c-8e09-b79f1d284ed1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "40cd32b9-b501-414c-8e09-b79f1d284ed1@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_2_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_2_thumbnail.jpg new file mode 100644 index 00000000..ca5c8805 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_2_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_2_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_2_thumbnail.jpg.meta new file mode 100644 index 00000000..2f1d638f --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_2_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "df78f562-27a0-47de-bf5a-a58aa4ac82bc", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "df78f562-27a0-47de-bf5a-a58aa4ac82bc@6c48a", + "displayName": "img_10017_2_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "df78f562-27a0-47de-bf5a-a58aa4ac82bc", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "df78f562-27a0-47de-bf5a-a58aa4ac82bc@f9941", + "displayName": "img_10017_2_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "df78f562-27a0-47de-bf5a-a58aa4ac82bc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "df78f562-27a0-47de-bf5a-a58aa4ac82bc@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_2_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_2_thumbnail_blur.jpg new file mode 100644 index 00000000..4cabae39 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..fbd15373 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4088d617-7c5a-41a9-9915-e1ffd5984b36", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4088d617-7c5a-41a9-9915-e1ffd5984b36@6c48a", + "displayName": "img_10017_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4088d617-7c5a-41a9-9915-e1ffd5984b36", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4088d617-7c5a-41a9-9915-e1ffd5984b36@f9941", + "displayName": "img_10017_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4088d617-7c5a-41a9-9915-e1ffd5984b36@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4088d617-7c5a-41a9-9915-e1ffd5984b36@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_3.png b/assets/bundles/Girls/10017/img/img_10017_3.png new file mode 100644 index 00000000..de96879e Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_3.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_3.png.meta b/assets/bundles/Girls/10017/img/img_10017_3.png.meta new file mode 100644 index 00000000..e7ace2d8 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "28090aed-e14f-4477-b0a1-6793929997bf", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "28090aed-e14f-4477-b0a1-6793929997bf@6c48a", + "displayName": "img_10017_3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "28090aed-e14f-4477-b0a1-6793929997bf", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "28090aed-e14f-4477-b0a1-6793929997bf@f9941", + "displayName": "img_10017_3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "28090aed-e14f-4477-b0a1-6793929997bf@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "28090aed-e14f-4477-b0a1-6793929997bf@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_3_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_3_thumbnail.jpg new file mode 100644 index 00000000..68c7acc5 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_3_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_3_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_3_thumbnail.jpg.meta new file mode 100644 index 00000000..f5edf089 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_3_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cd4c3e07-e3a5-45b2-a0e2-320ccad51b14", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cd4c3e07-e3a5-45b2-a0e2-320ccad51b14@6c48a", + "displayName": "img_10017_3_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cd4c3e07-e3a5-45b2-a0e2-320ccad51b14", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cd4c3e07-e3a5-45b2-a0e2-320ccad51b14@f9941", + "displayName": "img_10017_3_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cd4c3e07-e3a5-45b2-a0e2-320ccad51b14@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cd4c3e07-e3a5-45b2-a0e2-320ccad51b14@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_3_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_3_thumbnail_blur.jpg new file mode 100644 index 00000000..bb2cff3e Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3537cd6f --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ff2ac160-0e4a-4d36-9fe1-6763cea5df9d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ff2ac160-0e4a-4d36-9fe1-6763cea5df9d@6c48a", + "displayName": "img_10017_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ff2ac160-0e4a-4d36-9fe1-6763cea5df9d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ff2ac160-0e4a-4d36-9fe1-6763cea5df9d@f9941", + "displayName": "img_10017_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ff2ac160-0e4a-4d36-9fe1-6763cea5df9d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ff2ac160-0e4a-4d36-9fe1-6763cea5df9d@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_4.png b/assets/bundles/Girls/10017/img/img_10017_4.png new file mode 100644 index 00000000..c3c188b4 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_4.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_4.png.meta b/assets/bundles/Girls/10017/img/img_10017_4.png.meta new file mode 100644 index 00000000..81d7c825 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fed02d89-f7ef-4c09-bbe4-0d6826f30c16", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fed02d89-f7ef-4c09-bbe4-0d6826f30c16@6c48a", + "displayName": "img_10017_4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fed02d89-f7ef-4c09-bbe4-0d6826f30c16", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "fed02d89-f7ef-4c09-bbe4-0d6826f30c16@f9941", + "displayName": "img_10017_4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fed02d89-f7ef-4c09-bbe4-0d6826f30c16@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fed02d89-f7ef-4c09-bbe4-0d6826f30c16@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_4_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_4_thumbnail.jpg new file mode 100644 index 00000000..9f82c42f Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_4_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_4_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_4_thumbnail.jpg.meta new file mode 100644 index 00000000..5d2b9c53 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_4_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "47aa4ca4-ae90-4b4f-88d6-32f895773cd6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "47aa4ca4-ae90-4b4f-88d6-32f895773cd6@6c48a", + "displayName": "img_10017_4_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "47aa4ca4-ae90-4b4f-88d6-32f895773cd6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "47aa4ca4-ae90-4b4f-88d6-32f895773cd6@f9941", + "displayName": "img_10017_4_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "47aa4ca4-ae90-4b4f-88d6-32f895773cd6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "47aa4ca4-ae90-4b4f-88d6-32f895773cd6@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_4_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_4_thumbnail_blur.jpg new file mode 100644 index 00000000..23687967 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..14a30d48 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "278b9412-b039-4dbc-83cc-f97b83672e5b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "278b9412-b039-4dbc-83cc-f97b83672e5b@6c48a", + "displayName": "img_10017_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "278b9412-b039-4dbc-83cc-f97b83672e5b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "278b9412-b039-4dbc-83cc-f97b83672e5b@f9941", + "displayName": "img_10017_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "278b9412-b039-4dbc-83cc-f97b83672e5b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "278b9412-b039-4dbc-83cc-f97b83672e5b@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_5.png b/assets/bundles/Girls/10017/img/img_10017_5.png new file mode 100644 index 00000000..433c0a5d Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_5.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_5.png.meta b/assets/bundles/Girls/10017/img/img_10017_5.png.meta new file mode 100644 index 00000000..a449a533 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2bc6f7ff-fdb9-443b-a1c0-ca33ba95b466", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2bc6f7ff-fdb9-443b-a1c0-ca33ba95b466@6c48a", + "displayName": "img_10017_5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2bc6f7ff-fdb9-443b-a1c0-ca33ba95b466", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2bc6f7ff-fdb9-443b-a1c0-ca33ba95b466@f9941", + "displayName": "img_10017_5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2bc6f7ff-fdb9-443b-a1c0-ca33ba95b466@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2bc6f7ff-fdb9-443b-a1c0-ca33ba95b466@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_5_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_5_thumbnail.jpg new file mode 100644 index 00000000..a78cfcfa Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_5_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_5_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_5_thumbnail.jpg.meta new file mode 100644 index 00000000..9a0a430f --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_5_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f42c3fa2-eecf-4032-a102-4d3918520656", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f42c3fa2-eecf-4032-a102-4d3918520656@6c48a", + "displayName": "img_10017_5_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f42c3fa2-eecf-4032-a102-4d3918520656", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f42c3fa2-eecf-4032-a102-4d3918520656@f9941", + "displayName": "img_10017_5_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f42c3fa2-eecf-4032-a102-4d3918520656@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f42c3fa2-eecf-4032-a102-4d3918520656@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_5_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_5_thumbnail_blur.jpg new file mode 100644 index 00000000..d3db7895 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5318f16f --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "21654fa1-daa4-4959-ae57-936a065a055e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "21654fa1-daa4-4959-ae57-936a065a055e@6c48a", + "displayName": "img_10017_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "21654fa1-daa4-4959-ae57-936a065a055e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "21654fa1-daa4-4959-ae57-936a065a055e@f9941", + "displayName": "img_10017_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "21654fa1-daa4-4959-ae57-936a065a055e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "21654fa1-daa4-4959-ae57-936a065a055e@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_6.png b/assets/bundles/Girls/10017/img/img_10017_6.png new file mode 100644 index 00000000..d9fc2e62 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_6.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_6.png.meta b/assets/bundles/Girls/10017/img/img_10017_6.png.meta new file mode 100644 index 00000000..61cd12e4 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ca8e0221-01e8-450f-b36a-f009d2038de4", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ca8e0221-01e8-450f-b36a-f009d2038de4@6c48a", + "displayName": "img_10017_6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ca8e0221-01e8-450f-b36a-f009d2038de4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ca8e0221-01e8-450f-b36a-f009d2038de4@f9941", + "displayName": "img_10017_6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ca8e0221-01e8-450f-b36a-f009d2038de4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ca8e0221-01e8-450f-b36a-f009d2038de4@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_6_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_6_thumbnail.jpg new file mode 100644 index 00000000..0854dc4c Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_6_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_6_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_6_thumbnail.jpg.meta new file mode 100644 index 00000000..1dad3315 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_6_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7f0f777e-7ef1-4ea4-8bb7-c52f11e4fd59", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7f0f777e-7ef1-4ea4-8bb7-c52f11e4fd59@6c48a", + "displayName": "img_10017_6_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7f0f777e-7ef1-4ea4-8bb7-c52f11e4fd59", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7f0f777e-7ef1-4ea4-8bb7-c52f11e4fd59@f9941", + "displayName": "img_10017_6_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7f0f777e-7ef1-4ea4-8bb7-c52f11e4fd59@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7f0f777e-7ef1-4ea4-8bb7-c52f11e4fd59@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_6_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_6_thumbnail_blur.jpg new file mode 100644 index 00000000..46cf67fd Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..333d2f90 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4cc5de45-44b6-4261-addd-7e5dc6369e55", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4cc5de45-44b6-4261-addd-7e5dc6369e55@6c48a", + "displayName": "img_10017_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4cc5de45-44b6-4261-addd-7e5dc6369e55", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4cc5de45-44b6-4261-addd-7e5dc6369e55@f9941", + "displayName": "img_10017_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4cc5de45-44b6-4261-addd-7e5dc6369e55@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4cc5de45-44b6-4261-addd-7e5dc6369e55@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_7.png b/assets/bundles/Girls/10017/img/img_10017_7.png new file mode 100644 index 00000000..43c422df Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_7.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_7.png.meta b/assets/bundles/Girls/10017/img/img_10017_7.png.meta new file mode 100644 index 00000000..e85b84dc --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "db731979-1a4a-4118-89ff-2f68d51ec418", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "db731979-1a4a-4118-89ff-2f68d51ec418@6c48a", + "displayName": "img_10017_7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "db731979-1a4a-4118-89ff-2f68d51ec418", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "db731979-1a4a-4118-89ff-2f68d51ec418@f9941", + "displayName": "img_10017_7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "db731979-1a4a-4118-89ff-2f68d51ec418@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "db731979-1a4a-4118-89ff-2f68d51ec418@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_7_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_7_thumbnail.jpg new file mode 100644 index 00000000..48a39980 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_7_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_7_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_7_thumbnail.jpg.meta new file mode 100644 index 00000000..1774027a --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_7_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2e771032-b32c-4353-873c-03953c4fbc49", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2e771032-b32c-4353-873c-03953c4fbc49@6c48a", + "displayName": "img_10017_7_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2e771032-b32c-4353-873c-03953c4fbc49", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2e771032-b32c-4353-873c-03953c4fbc49@f9941", + "displayName": "img_10017_7_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2e771032-b32c-4353-873c-03953c4fbc49@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2e771032-b32c-4353-873c-03953c4fbc49@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_7_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_7_thumbnail_blur.jpg new file mode 100644 index 00000000..07b58220 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ba807e40 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d15f2cac-4d0d-4351-8645-88660f3cf031", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d15f2cac-4d0d-4351-8645-88660f3cf031@6c48a", + "displayName": "img_10017_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d15f2cac-4d0d-4351-8645-88660f3cf031", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d15f2cac-4d0d-4351-8645-88660f3cf031@f9941", + "displayName": "img_10017_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d15f2cac-4d0d-4351-8645-88660f3cf031@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d15f2cac-4d0d-4351-8645-88660f3cf031@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_8.png b/assets/bundles/Girls/10017/img/img_10017_8.png new file mode 100644 index 00000000..40c5aca2 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_8.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_8.png.meta b/assets/bundles/Girls/10017/img/img_10017_8.png.meta new file mode 100644 index 00000000..d6dfe7c0 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4a274214-bdb2-4f8f-9669-2c81d635fb2a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4a274214-bdb2-4f8f-9669-2c81d635fb2a@6c48a", + "displayName": "img_10017_8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4a274214-bdb2-4f8f-9669-2c81d635fb2a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4a274214-bdb2-4f8f-9669-2c81d635fb2a@f9941", + "displayName": "img_10017_8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4a274214-bdb2-4f8f-9669-2c81d635fb2a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4a274214-bdb2-4f8f-9669-2c81d635fb2a@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_8_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_8_thumbnail.jpg new file mode 100644 index 00000000..36607275 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_8_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_8_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_8_thumbnail.jpg.meta new file mode 100644 index 00000000..621af43b --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_8_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f202a7c0-5e07-4f2c-8363-1fda9eab03e8", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f202a7c0-5e07-4f2c-8363-1fda9eab03e8@6c48a", + "displayName": "img_10017_8_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f202a7c0-5e07-4f2c-8363-1fda9eab03e8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f202a7c0-5e07-4f2c-8363-1fda9eab03e8@f9941", + "displayName": "img_10017_8_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f202a7c0-5e07-4f2c-8363-1fda9eab03e8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f202a7c0-5e07-4f2c-8363-1fda9eab03e8@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_8_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_8_thumbnail_blur.jpg new file mode 100644 index 00000000..41f13ff6 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ad1d7c26 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "50e872e0-f9ba-4394-96cb-c22ec14dca01", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "50e872e0-f9ba-4394-96cb-c22ec14dca01@6c48a", + "displayName": "img_10017_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "50e872e0-f9ba-4394-96cb-c22ec14dca01", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "50e872e0-f9ba-4394-96cb-c22ec14dca01@f9941", + "displayName": "img_10017_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "50e872e0-f9ba-4394-96cb-c22ec14dca01@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "50e872e0-f9ba-4394-96cb-c22ec14dca01@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_9.png b/assets/bundles/Girls/10017/img/img_10017_9.png new file mode 100644 index 00000000..5c4eb1b7 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_9.png differ diff --git a/assets/bundles/Girls/10017/img/img_10017_9.png.meta b/assets/bundles/Girls/10017/img/img_10017_9.png.meta new file mode 100644 index 00000000..1b76e9b2 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2b514fe8-f9d2-482a-9c9a-1d4eab64264f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2b514fe8-f9d2-482a-9c9a-1d4eab64264f@6c48a", + "displayName": "img_10017_9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2b514fe8-f9d2-482a-9c9a-1d4eab64264f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2b514fe8-f9d2-482a-9c9a-1d4eab64264f@f9941", + "displayName": "img_10017_9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2b514fe8-f9d2-482a-9c9a-1d4eab64264f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2b514fe8-f9d2-482a-9c9a-1d4eab64264f@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_9_thumbnail.jpg b/assets/bundles/Girls/10017/img/img_10017_9_thumbnail.jpg new file mode 100644 index 00000000..072a2833 Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_9_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_9_thumbnail.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_9_thumbnail.jpg.meta new file mode 100644 index 00000000..fef66488 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_9_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5faf4f7d-3881-4838-bdab-dadb90110748", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5faf4f7d-3881-4838-bdab-dadb90110748@6c48a", + "displayName": "img_10017_9_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5faf4f7d-3881-4838-bdab-dadb90110748", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5faf4f7d-3881-4838-bdab-dadb90110748@f9941", + "displayName": "img_10017_9_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5faf4f7d-3881-4838-bdab-dadb90110748@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5faf4f7d-3881-4838-bdab-dadb90110748@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/img/img_10017_9_thumbnail_blur.jpg b/assets/bundles/Girls/10017/img/img_10017_9_thumbnail_blur.jpg new file mode 100644 index 00000000..2dbf85de Binary files /dev/null and b/assets/bundles/Girls/10017/img/img_10017_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/img/img_10017_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/img/img_10017_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..26ae57f1 --- /dev/null +++ b/assets/bundles/Girls/10017/img/img_10017_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "110936da-05a7-4c00-b877-a9156dab00b2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "110936da-05a7-4c00-b877-a9156dab00b2@6c48a", + "displayName": "img_10017_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "110936da-05a7-4c00-b877-a9156dab00b2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "110936da-05a7-4c00-b877-a9156dab00b2@f9941", + "displayName": "img_10017_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "110936da-05a7-4c00-b877-a9156dab00b2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "110936da-05a7-4c00-b877-a9156dab00b2@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/video/video_10017_1.mp4 b/assets/bundles/Girls/10017/video/video_10017_1.mp4 new file mode 100644 index 00000000..d375b1a1 Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_1.mp4 differ diff --git a/assets/bundles/Girls/10017/video/video_10017_1.mp4.meta b/assets/bundles/Girls/10017/video/video_10017_1.mp4.meta new file mode 100644 index 00000000..2e42f4a2 --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_1.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "d2c4e1d2-da4e-4a9d-8657-c95d1e9d543b", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10017/video/video_10017_1_thumbnail.jpg b/assets/bundles/Girls/10017/video/video_10017_1_thumbnail.jpg new file mode 100644 index 00000000..31ee201f Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_1_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/video/video_10017_1_thumbnail.jpg.meta b/assets/bundles/Girls/10017/video/video_10017_1_thumbnail.jpg.meta new file mode 100644 index 00000000..3f146676 --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_1_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0e6c11eb-e12c-4c45-9d1b-3148c98164f7", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0e6c11eb-e12c-4c45-9d1b-3148c98164f7@6c48a", + "displayName": "video_10017_1_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0e6c11eb-e12c-4c45-9d1b-3148c98164f7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0e6c11eb-e12c-4c45-9d1b-3148c98164f7@f9941", + "displayName": "video_10017_1_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0e6c11eb-e12c-4c45-9d1b-3148c98164f7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0e6c11eb-e12c-4c45-9d1b-3148c98164f7@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/video/video_10017_1_thumbnail_blur.jpg b/assets/bundles/Girls/10017/video/video_10017_1_thumbnail_blur.jpg new file mode 100644 index 00000000..27a28f6e Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/video/video_10017_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/video/video_10017_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..88f76865 --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b06e7018-7e2a-4b28-9400-0e7701c0924e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b06e7018-7e2a-4b28-9400-0e7701c0924e@6c48a", + "displayName": "video_10017_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b06e7018-7e2a-4b28-9400-0e7701c0924e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b06e7018-7e2a-4b28-9400-0e7701c0924e@f9941", + "displayName": "video_10017_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b06e7018-7e2a-4b28-9400-0e7701c0924e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b06e7018-7e2a-4b28-9400-0e7701c0924e@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/video/video_10017_2.mp4 b/assets/bundles/Girls/10017/video/video_10017_2.mp4 new file mode 100644 index 00000000..d39860d6 Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_2.mp4 differ diff --git a/assets/bundles/Girls/10017/video/video_10017_2.mp4.meta b/assets/bundles/Girls/10017/video/video_10017_2.mp4.meta new file mode 100644 index 00000000..9aeb21b4 --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_2.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "b426de4a-9e4f-4fa1-b2e2-211c5e32b19c", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10017/video/video_10017_2_thumbnail.jpg b/assets/bundles/Girls/10017/video/video_10017_2_thumbnail.jpg new file mode 100644 index 00000000..4fcaa7cf Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_2_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/video/video_10017_2_thumbnail.jpg.meta b/assets/bundles/Girls/10017/video/video_10017_2_thumbnail.jpg.meta new file mode 100644 index 00000000..a9bea733 --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_2_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a3e5dd69-b46c-424b-9ca5-14db23e831e4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a3e5dd69-b46c-424b-9ca5-14db23e831e4@6c48a", + "displayName": "video_10017_2_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a3e5dd69-b46c-424b-9ca5-14db23e831e4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a3e5dd69-b46c-424b-9ca5-14db23e831e4@f9941", + "displayName": "video_10017_2_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a3e5dd69-b46c-424b-9ca5-14db23e831e4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a3e5dd69-b46c-424b-9ca5-14db23e831e4@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/video/video_10017_2_thumbnail_blur.jpg b/assets/bundles/Girls/10017/video/video_10017_2_thumbnail_blur.jpg new file mode 100644 index 00000000..d34607c2 Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/video/video_10017_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/video/video_10017_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d65d4479 --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "851678df-5f7a-438c-935e-3ffa67e2062a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "851678df-5f7a-438c-935e-3ffa67e2062a@6c48a", + "displayName": "video_10017_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "851678df-5f7a-438c-935e-3ffa67e2062a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "851678df-5f7a-438c-935e-3ffa67e2062a@f9941", + "displayName": "video_10017_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "851678df-5f7a-438c-935e-3ffa67e2062a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "851678df-5f7a-438c-935e-3ffa67e2062a@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/video/video_10017_3.mp4 b/assets/bundles/Girls/10017/video/video_10017_3.mp4 new file mode 100644 index 00000000..b6f46c9e Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_3.mp4 differ diff --git a/assets/bundles/Girls/10017/video/video_10017_3.mp4.meta b/assets/bundles/Girls/10017/video/video_10017_3.mp4.meta new file mode 100644 index 00000000..8578e09f --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_3.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "d13b7e6e-11c1-448d-9252-89dac6bc5ca2", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10017/video/video_10017_3_thumbnail.jpg b/assets/bundles/Girls/10017/video/video_10017_3_thumbnail.jpg new file mode 100644 index 00000000..5fe92ae0 Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_3_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/video/video_10017_3_thumbnail.jpg.meta b/assets/bundles/Girls/10017/video/video_10017_3_thumbnail.jpg.meta new file mode 100644 index 00000000..729aeff8 --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_3_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "efb4d537-4db6-466d-975d-ddf1773f5dec", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "efb4d537-4db6-466d-975d-ddf1773f5dec@6c48a", + "displayName": "video_10017_3_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "efb4d537-4db6-466d-975d-ddf1773f5dec", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "efb4d537-4db6-466d-975d-ddf1773f5dec@f9941", + "displayName": "video_10017_3_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "efb4d537-4db6-466d-975d-ddf1773f5dec@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "efb4d537-4db6-466d-975d-ddf1773f5dec@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/video/video_10017_3_thumbnail_blur.jpg b/assets/bundles/Girls/10017/video/video_10017_3_thumbnail_blur.jpg new file mode 100644 index 00000000..9c71b1f3 Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/video/video_10017_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/video/video_10017_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..69326375 --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "500f33d1-bb54-4b95-81e5-f5a1828cef2e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "500f33d1-bb54-4b95-81e5-f5a1828cef2e@6c48a", + "displayName": "video_10017_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "500f33d1-bb54-4b95-81e5-f5a1828cef2e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "500f33d1-bb54-4b95-81e5-f5a1828cef2e@f9941", + "displayName": "video_10017_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "500f33d1-bb54-4b95-81e5-f5a1828cef2e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "500f33d1-bb54-4b95-81e5-f5a1828cef2e@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/video/video_10017_4.mp4 b/assets/bundles/Girls/10017/video/video_10017_4.mp4 new file mode 100644 index 00000000..2d054f93 Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_4.mp4 differ diff --git a/assets/bundles/Girls/10017/video/video_10017_4.mp4.meta b/assets/bundles/Girls/10017/video/video_10017_4.mp4.meta new file mode 100644 index 00000000..6e88e006 --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_4.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "af470bb8-f6d6-42a3-a6f5-015a79f8245a", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10017/video/video_10017_4_thumbnail.jpg b/assets/bundles/Girls/10017/video/video_10017_4_thumbnail.jpg new file mode 100644 index 00000000..5d6ff008 Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_4_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/video/video_10017_4_thumbnail.jpg.meta b/assets/bundles/Girls/10017/video/video_10017_4_thumbnail.jpg.meta new file mode 100644 index 00000000..0aefb735 --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_4_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7811af4e-f5f5-4a78-a25d-351b83c06201", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7811af4e-f5f5-4a78-a25d-351b83c06201@6c48a", + "displayName": "video_10017_4_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7811af4e-f5f5-4a78-a25d-351b83c06201", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7811af4e-f5f5-4a78-a25d-351b83c06201@f9941", + "displayName": "video_10017_4_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7811af4e-f5f5-4a78-a25d-351b83c06201@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7811af4e-f5f5-4a78-a25d-351b83c06201@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/video/video_10017_4_thumbnail_blur.jpg b/assets/bundles/Girls/10017/video/video_10017_4_thumbnail_blur.jpg new file mode 100644 index 00000000..15ecaff1 Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/video/video_10017_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/video/video_10017_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..75299da5 --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c5994923-190c-4c7b-8435-288a3a7928b3", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c5994923-190c-4c7b-8435-288a3a7928b3@6c48a", + "displayName": "video_10017_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c5994923-190c-4c7b-8435-288a3a7928b3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c5994923-190c-4c7b-8435-288a3a7928b3@f9941", + "displayName": "video_10017_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c5994923-190c-4c7b-8435-288a3a7928b3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c5994923-190c-4c7b-8435-288a3a7928b3@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/video/video_10017_5.mp4 b/assets/bundles/Girls/10017/video/video_10017_5.mp4 new file mode 100644 index 00000000..0dc5207c Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_5.mp4 differ diff --git a/assets/bundles/Girls/10017/video/video_10017_5.mp4.meta b/assets/bundles/Girls/10017/video/video_10017_5.mp4.meta new file mode 100644 index 00000000..be13c2ca --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_5.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "a25e7129-695a-4eb2-96b6-55b14756cb34", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10017/video/video_10017_5_thumbnail.jpg b/assets/bundles/Girls/10017/video/video_10017_5_thumbnail.jpg new file mode 100644 index 00000000..134b2e90 Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_5_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/video/video_10017_5_thumbnail.jpg.meta b/assets/bundles/Girls/10017/video/video_10017_5_thumbnail.jpg.meta new file mode 100644 index 00000000..0c00936d --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_5_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "62dd5abd-6660-41f8-bde2-97326e578fe2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "62dd5abd-6660-41f8-bde2-97326e578fe2@6c48a", + "displayName": "video_10017_5_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "62dd5abd-6660-41f8-bde2-97326e578fe2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "62dd5abd-6660-41f8-bde2-97326e578fe2@f9941", + "displayName": "video_10017_5_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "62dd5abd-6660-41f8-bde2-97326e578fe2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "62dd5abd-6660-41f8-bde2-97326e578fe2@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/video/video_10017_5_thumbnail_blur.jpg b/assets/bundles/Girls/10017/video/video_10017_5_thumbnail_blur.jpg new file mode 100644 index 00000000..8c7b7b16 Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/video/video_10017_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/video/video_10017_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..b41ce51a --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "988a2b69-2ea6-435a-bf4c-394a4187f219", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "988a2b69-2ea6-435a-bf4c-394a4187f219@6c48a", + "displayName": "video_10017_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "988a2b69-2ea6-435a-bf4c-394a4187f219", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "988a2b69-2ea6-435a-bf4c-394a4187f219@f9941", + "displayName": "video_10017_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "988a2b69-2ea6-435a-bf4c-394a4187f219@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "988a2b69-2ea6-435a-bf4c-394a4187f219@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/video/video_10017_6.mp4 b/assets/bundles/Girls/10017/video/video_10017_6.mp4 new file mode 100644 index 00000000..40a461c1 Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_6.mp4 differ diff --git a/assets/bundles/Girls/10017/video/video_10017_6.mp4.meta b/assets/bundles/Girls/10017/video/video_10017_6.mp4.meta new file mode 100644 index 00000000..e36aa7ec --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_6.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "939aed72-8492-4497-8564-c93ad347ea7c", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10017/video/video_10017_6_thumbnail.jpg b/assets/bundles/Girls/10017/video/video_10017_6_thumbnail.jpg new file mode 100644 index 00000000..6dabb077 Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_6_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10017/video/video_10017_6_thumbnail.jpg.meta b/assets/bundles/Girls/10017/video/video_10017_6_thumbnail.jpg.meta new file mode 100644 index 00000000..cc255db8 --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_6_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3db1bf20-aa52-453e-9fa4-e81d7d953df7", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3db1bf20-aa52-453e-9fa4-e81d7d953df7@6c48a", + "displayName": "video_10017_6_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3db1bf20-aa52-453e-9fa4-e81d7d953df7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3db1bf20-aa52-453e-9fa4-e81d7d953df7@f9941", + "displayName": "video_10017_6_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3db1bf20-aa52-453e-9fa4-e81d7d953df7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3db1bf20-aa52-453e-9fa4-e81d7d953df7@6c48a" + } +} diff --git a/assets/bundles/Girls/10017/video/video_10017_6_thumbnail_blur.jpg b/assets/bundles/Girls/10017/video/video_10017_6_thumbnail_blur.jpg new file mode 100644 index 00000000..6b975854 Binary files /dev/null and b/assets/bundles/Girls/10017/video/video_10017_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10017/video/video_10017_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10017/video/video_10017_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..14d85c81 --- /dev/null +++ b/assets/bundles/Girls/10017/video/video_10017_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "04651766-92ee-46f9-862d-a41c6a6b7d2c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "04651766-92ee-46f9-862d-a41c6a6b7d2c@6c48a", + "displayName": "video_10017_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "04651766-92ee-46f9-862d-a41c6a6b7d2c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "04651766-92ee-46f9-862d-a41c6a6b7d2c@f9941", + "displayName": "video_10017_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "04651766-92ee-46f9-862d-a41c6a6b7d2c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "04651766-92ee-46f9-862d-a41c6a6b7d2c@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_10_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_10_thumbnail_blur.jpg new file mode 100644 index 00000000..a3017c38 Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3c41dee4 --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "20a2abfc-4cda-45b0-9813-f3975b1075af", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "20a2abfc-4cda-45b0-9813-f3975b1075af@6c48a", + "displayName": "img_10018_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "20a2abfc-4cda-45b0-9813-f3975b1075af", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "20a2abfc-4cda-45b0-9813-f3975b1075af@f9941", + "displayName": "img_10018_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "20a2abfc-4cda-45b0-9813-f3975b1075af@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "20a2abfc-4cda-45b0-9813-f3975b1075af@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_11_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_11_thumbnail_blur.jpg new file mode 100644 index 00000000..02ca945c Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a1f97ffd --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "285edb74-c1c9-4fa6-bac1-109bd2a3d0b9", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "285edb74-c1c9-4fa6-bac1-109bd2a3d0b9@6c48a", + "displayName": "img_10018_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "285edb74-c1c9-4fa6-bac1-109bd2a3d0b9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "285edb74-c1c9-4fa6-bac1-109bd2a3d0b9@f9941", + "displayName": "img_10018_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "285edb74-c1c9-4fa6-bac1-109bd2a3d0b9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "285edb74-c1c9-4fa6-bac1-109bd2a3d0b9@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_12_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_12_thumbnail_blur.jpg new file mode 100644 index 00000000..fc429e61 Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..202a5742 --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a154a14b-97c5-45fe-9010-3872c4d74d30", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a154a14b-97c5-45fe-9010-3872c4d74d30@6c48a", + "displayName": "img_10018_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a154a14b-97c5-45fe-9010-3872c4d74d30", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a154a14b-97c5-45fe-9010-3872c4d74d30@f9941", + "displayName": "img_10018_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a154a14b-97c5-45fe-9010-3872c4d74d30@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a154a14b-97c5-45fe-9010-3872c4d74d30@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_13_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_13_thumbnail_blur.jpg new file mode 100644 index 00000000..20b0659a Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..92b8b06b --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6a1429fa-130f-4d9d-aa5f-96b3dab90c65", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6a1429fa-130f-4d9d-aa5f-96b3dab90c65@6c48a", + "displayName": "img_10018_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6a1429fa-130f-4d9d-aa5f-96b3dab90c65", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6a1429fa-130f-4d9d-aa5f-96b3dab90c65@f9941", + "displayName": "img_10018_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6a1429fa-130f-4d9d-aa5f-96b3dab90c65@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6a1429fa-130f-4d9d-aa5f-96b3dab90c65@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_14_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_14_thumbnail_blur.jpg new file mode 100644 index 00000000..a37ed39c Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..22d0e75f --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "61e334e2-2f9a-4f78-b2a7-4165b840045a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "61e334e2-2f9a-4f78-b2a7-4165b840045a@6c48a", + "displayName": "img_10018_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "61e334e2-2f9a-4f78-b2a7-4165b840045a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "61e334e2-2f9a-4f78-b2a7-4165b840045a@f9941", + "displayName": "img_10018_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "61e334e2-2f9a-4f78-b2a7-4165b840045a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "61e334e2-2f9a-4f78-b2a7-4165b840045a@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_15_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_15_thumbnail_blur.jpg new file mode 100644 index 00000000..4b69ce03 Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a96dc29a --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3011cdaf-deac-4bcc-a89a-cdfb92e937f1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3011cdaf-deac-4bcc-a89a-cdfb92e937f1@6c48a", + "displayName": "img_10018_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3011cdaf-deac-4bcc-a89a-cdfb92e937f1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3011cdaf-deac-4bcc-a89a-cdfb92e937f1@f9941", + "displayName": "img_10018_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3011cdaf-deac-4bcc-a89a-cdfb92e937f1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3011cdaf-deac-4bcc-a89a-cdfb92e937f1@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_16_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_16_thumbnail_blur.jpg new file mode 100644 index 00000000..4984060d Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d1a4b019 --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dbd5d03b-4661-4aa8-ad5a-d7ae44a38dfc", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dbd5d03b-4661-4aa8-ad5a-d7ae44a38dfc@6c48a", + "displayName": "img_10018_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dbd5d03b-4661-4aa8-ad5a-d7ae44a38dfc", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "dbd5d03b-4661-4aa8-ad5a-d7ae44a38dfc@f9941", + "displayName": "img_10018_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dbd5d03b-4661-4aa8-ad5a-d7ae44a38dfc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dbd5d03b-4661-4aa8-ad5a-d7ae44a38dfc@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_17_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_17_thumbnail_blur.jpg new file mode 100644 index 00000000..822a7a2d Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9748883e --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "165a2a40-dbd4-4e85-86d8-349c3429a62c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "165a2a40-dbd4-4e85-86d8-349c3429a62c@6c48a", + "displayName": "img_10018_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "165a2a40-dbd4-4e85-86d8-349c3429a62c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "165a2a40-dbd4-4e85-86d8-349c3429a62c@f9941", + "displayName": "img_10018_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "165a2a40-dbd4-4e85-86d8-349c3429a62c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "165a2a40-dbd4-4e85-86d8-349c3429a62c@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_1_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_1_thumbnail_blur.jpg new file mode 100644 index 00000000..caea5207 Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..da8d0f78 --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6d3bee92-7914-45d0-8b04-1889d81f1ee1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6d3bee92-7914-45d0-8b04-1889d81f1ee1@6c48a", + "displayName": "img_10018_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6d3bee92-7914-45d0-8b04-1889d81f1ee1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6d3bee92-7914-45d0-8b04-1889d81f1ee1@f9941", + "displayName": "img_10018_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6d3bee92-7914-45d0-8b04-1889d81f1ee1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6d3bee92-7914-45d0-8b04-1889d81f1ee1@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_2_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_2_thumbnail_blur.jpg new file mode 100644 index 00000000..83a61876 Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f9c82341 --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cb394dff-b591-4817-be12-596b630c6b84", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cb394dff-b591-4817-be12-596b630c6b84@6c48a", + "displayName": "img_10018_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cb394dff-b591-4817-be12-596b630c6b84", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cb394dff-b591-4817-be12-596b630c6b84@f9941", + "displayName": "img_10018_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cb394dff-b591-4817-be12-596b630c6b84@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cb394dff-b591-4817-be12-596b630c6b84@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_3_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_3_thumbnail_blur.jpg new file mode 100644 index 00000000..6553f923 Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3aff65f1 --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "193f4f7e-11d5-4801-9980-3c0ce8d921df", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "193f4f7e-11d5-4801-9980-3c0ce8d921df@6c48a", + "displayName": "img_10018_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "193f4f7e-11d5-4801-9980-3c0ce8d921df", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "193f4f7e-11d5-4801-9980-3c0ce8d921df@f9941", + "displayName": "img_10018_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "193f4f7e-11d5-4801-9980-3c0ce8d921df@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "193f4f7e-11d5-4801-9980-3c0ce8d921df@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_4_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_4_thumbnail_blur.jpg new file mode 100644 index 00000000..78d9357f Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..91665db5 --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a4c512de-135a-45d6-a87c-185bc077ca31", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a4c512de-135a-45d6-a87c-185bc077ca31@6c48a", + "displayName": "img_10018_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a4c512de-135a-45d6-a87c-185bc077ca31", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a4c512de-135a-45d6-a87c-185bc077ca31@f9941", + "displayName": "img_10018_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a4c512de-135a-45d6-a87c-185bc077ca31@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a4c512de-135a-45d6-a87c-185bc077ca31@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_5_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_5_thumbnail_blur.jpg new file mode 100644 index 00000000..dd354826 Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8abf05d0 --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "69de46f5-1b35-4c93-aaa9-3c995dfa628c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "69de46f5-1b35-4c93-aaa9-3c995dfa628c@6c48a", + "displayName": "img_10018_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "69de46f5-1b35-4c93-aaa9-3c995dfa628c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "69de46f5-1b35-4c93-aaa9-3c995dfa628c@f9941", + "displayName": "img_10018_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "69de46f5-1b35-4c93-aaa9-3c995dfa628c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "69de46f5-1b35-4c93-aaa9-3c995dfa628c@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_6_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_6_thumbnail_blur.jpg new file mode 100644 index 00000000..a8d75f29 Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..dc87aebf --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4ec46e38-bfa6-4d89-81b8-2388c14ad797", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4ec46e38-bfa6-4d89-81b8-2388c14ad797@6c48a", + "displayName": "img_10018_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4ec46e38-bfa6-4d89-81b8-2388c14ad797", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4ec46e38-bfa6-4d89-81b8-2388c14ad797@f9941", + "displayName": "img_10018_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4ec46e38-bfa6-4d89-81b8-2388c14ad797@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4ec46e38-bfa6-4d89-81b8-2388c14ad797@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_7_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_7_thumbnail_blur.jpg new file mode 100644 index 00000000..72dfc1dc Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..dde1138b --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ec1444e4-2e59-44fc-913b-22368a0b6300", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ec1444e4-2e59-44fc-913b-22368a0b6300@6c48a", + "displayName": "img_10018_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ec1444e4-2e59-44fc-913b-22368a0b6300", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ec1444e4-2e59-44fc-913b-22368a0b6300@f9941", + "displayName": "img_10018_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ec1444e4-2e59-44fc-913b-22368a0b6300@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ec1444e4-2e59-44fc-913b-22368a0b6300@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_8_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_8_thumbnail_blur.jpg new file mode 100644 index 00000000..99d44fb3 Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..cb9e7d1f --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "390edc05-4356-47df-abf0-7b0672d2342e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "390edc05-4356-47df-abf0-7b0672d2342e@6c48a", + "displayName": "img_10018_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "390edc05-4356-47df-abf0-7b0672d2342e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "390edc05-4356-47df-abf0-7b0672d2342e@f9941", + "displayName": "img_10018_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "390edc05-4356-47df-abf0-7b0672d2342e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "390edc05-4356-47df-abf0-7b0672d2342e@6c48a" + } +} diff --git a/assets/bundles/Girls/10018/img/img_10018_9_thumbnail_blur.jpg b/assets/bundles/Girls/10018/img/img_10018_9_thumbnail_blur.jpg new file mode 100644 index 00000000..11e68ceb Binary files /dev/null and b/assets/bundles/Girls/10018/img/img_10018_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10018/img/img_10018_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10018/img/img_10018_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..85092d15 --- /dev/null +++ b/assets/bundles/Girls/10018/img/img_10018_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5834c52e-e765-4d20-a3e5-965e1b55fd1d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5834c52e-e765-4d20-a3e5-965e1b55fd1d@6c48a", + "displayName": "img_10018_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5834c52e-e765-4d20-a3e5-965e1b55fd1d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5834c52e-e765-4d20-a3e5-965e1b55fd1d@f9941", + "displayName": "img_10018_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5834c52e-e765-4d20-a3e5-965e1b55fd1d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5834c52e-e765-4d20-a3e5-965e1b55fd1d@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_10_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_10_thumbnail_blur.jpg new file mode 100644 index 00000000..5e24d135 Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..de998ca1 --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "88f62ed2-028a-4521-9be7-3b26b3335019", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "88f62ed2-028a-4521-9be7-3b26b3335019@6c48a", + "displayName": "img_10019_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "88f62ed2-028a-4521-9be7-3b26b3335019", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "88f62ed2-028a-4521-9be7-3b26b3335019@f9941", + "displayName": "img_10019_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 157, + "rawWidth": 90, + "rawHeight": 157, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -78.5, + 0, + 45, + -78.5, + 0, + -45, + 78.5, + 0, + 45, + 78.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 157, + 90, + 157, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -78.5, + 0 + ], + "maxPos": [ + 45, + 78.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "88f62ed2-028a-4521-9be7-3b26b3335019@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "88f62ed2-028a-4521-9be7-3b26b3335019@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_11_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_11_thumbnail_blur.jpg new file mode 100644 index 00000000..8bf72bab Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d591fdeb --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cd0455e5-d87a-4629-8a2a-e568219eea6e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cd0455e5-d87a-4629-8a2a-e568219eea6e@6c48a", + "displayName": "img_10019_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cd0455e5-d87a-4629-8a2a-e568219eea6e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cd0455e5-d87a-4629-8a2a-e568219eea6e@f9941", + "displayName": "img_10019_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cd0455e5-d87a-4629-8a2a-e568219eea6e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cd0455e5-d87a-4629-8a2a-e568219eea6e@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_12_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_12_thumbnail_blur.jpg new file mode 100644 index 00000000..5f7a2388 Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d589b03f --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3c93a87b-48a1-4c3d-b414-78b4e90a83e0", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3c93a87b-48a1-4c3d-b414-78b4e90a83e0@6c48a", + "displayName": "img_10019_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3c93a87b-48a1-4c3d-b414-78b4e90a83e0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3c93a87b-48a1-4c3d-b414-78b4e90a83e0@f9941", + "displayName": "img_10019_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3c93a87b-48a1-4c3d-b414-78b4e90a83e0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3c93a87b-48a1-4c3d-b414-78b4e90a83e0@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_13_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_13_thumbnail_blur.jpg new file mode 100644 index 00000000..96a4e6af Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1aa86dbb --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d9a69f39-833a-445b-ba8e-715b878dde16", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d9a69f39-833a-445b-ba8e-715b878dde16@6c48a", + "displayName": "img_10019_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d9a69f39-833a-445b-ba8e-715b878dde16", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d9a69f39-833a-445b-ba8e-715b878dde16@f9941", + "displayName": "img_10019_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d9a69f39-833a-445b-ba8e-715b878dde16@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d9a69f39-833a-445b-ba8e-715b878dde16@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_14_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_14_thumbnail_blur.jpg new file mode 100644 index 00000000..802dfe38 Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..53fa48b8 --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7a38aab8-2b41-4f2b-ac9e-263936e0c9c0", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7a38aab8-2b41-4f2b-ac9e-263936e0c9c0@6c48a", + "displayName": "img_10019_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7a38aab8-2b41-4f2b-ac9e-263936e0c9c0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7a38aab8-2b41-4f2b-ac9e-263936e0c9c0@f9941", + "displayName": "img_10019_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7a38aab8-2b41-4f2b-ac9e-263936e0c9c0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7a38aab8-2b41-4f2b-ac9e-263936e0c9c0@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_15_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_15_thumbnail_blur.jpg new file mode 100644 index 00000000..2aeddeff Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..26b9cad8 --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f5362c53-7dec-4b04-9674-d7d0502f1676", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f5362c53-7dec-4b04-9674-d7d0502f1676@6c48a", + "displayName": "img_10019_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f5362c53-7dec-4b04-9674-d7d0502f1676", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f5362c53-7dec-4b04-9674-d7d0502f1676@f9941", + "displayName": "img_10019_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f5362c53-7dec-4b04-9674-d7d0502f1676@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f5362c53-7dec-4b04-9674-d7d0502f1676@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_16_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_16_thumbnail_blur.jpg new file mode 100644 index 00000000..92a14a00 Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0bc88f9e --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a1b05c73-ad68-47f5-801e-e08a2ea7971c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a1b05c73-ad68-47f5-801e-e08a2ea7971c@6c48a", + "displayName": "img_10019_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a1b05c73-ad68-47f5-801e-e08a2ea7971c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a1b05c73-ad68-47f5-801e-e08a2ea7971c@f9941", + "displayName": "img_10019_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a1b05c73-ad68-47f5-801e-e08a2ea7971c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a1b05c73-ad68-47f5-801e-e08a2ea7971c@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_17_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_17_thumbnail_blur.jpg new file mode 100644 index 00000000..af791871 Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..27e88455 --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5ea21a2f-a944-4453-a58e-50489a7f2689", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5ea21a2f-a944-4453-a58e-50489a7f2689@6c48a", + "displayName": "img_10019_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5ea21a2f-a944-4453-a58e-50489a7f2689", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5ea21a2f-a944-4453-a58e-50489a7f2689@f9941", + "displayName": "img_10019_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5ea21a2f-a944-4453-a58e-50489a7f2689@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5ea21a2f-a944-4453-a58e-50489a7f2689@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_18_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_18_thumbnail_blur.jpg new file mode 100644 index 00000000..785cc677 Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_18_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_18_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_18_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c3dc2443 --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_18_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5646201d-9d73-4106-8558-155e6e361c43", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5646201d-9d73-4106-8558-155e6e361c43@6c48a", + "displayName": "img_10019_18_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5646201d-9d73-4106-8558-155e6e361c43", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5646201d-9d73-4106-8558-155e6e361c43@f9941", + "displayName": "img_10019_18_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5646201d-9d73-4106-8558-155e6e361c43@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5646201d-9d73-4106-8558-155e6e361c43@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_19_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_19_thumbnail_blur.jpg new file mode 100644 index 00000000..aea36d70 Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_19_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_19_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_19_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d1244c17 --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_19_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "86e51a42-fdc4-4779-8749-8e26e8fdf35a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "86e51a42-fdc4-4779-8749-8e26e8fdf35a@6c48a", + "displayName": "img_10019_19_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "86e51a42-fdc4-4779-8749-8e26e8fdf35a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "86e51a42-fdc4-4779-8749-8e26e8fdf35a@f9941", + "displayName": "img_10019_19_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "86e51a42-fdc4-4779-8749-8e26e8fdf35a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "86e51a42-fdc4-4779-8749-8e26e8fdf35a@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_1_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_1_thumbnail_blur.jpg new file mode 100644 index 00000000..65697e95 Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9efd56d0 --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "63c9f898-c37f-440c-8184-6a6c9ef0d692", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "63c9f898-c37f-440c-8184-6a6c9ef0d692@6c48a", + "displayName": "img_10019_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "63c9f898-c37f-440c-8184-6a6c9ef0d692", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "63c9f898-c37f-440c-8184-6a6c9ef0d692@f9941", + "displayName": "img_10019_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "63c9f898-c37f-440c-8184-6a6c9ef0d692@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "63c9f898-c37f-440c-8184-6a6c9ef0d692@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_20_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_20_thumbnail_blur.jpg new file mode 100644 index 00000000..b3b92f15 Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_20_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_20_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_20_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d259026f --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_20_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "12e4e232-ab28-4805-a1d5-849e7c6736a9", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "12e4e232-ab28-4805-a1d5-849e7c6736a9@6c48a", + "displayName": "img_10019_20_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "12e4e232-ab28-4805-a1d5-849e7c6736a9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "12e4e232-ab28-4805-a1d5-849e7c6736a9@f9941", + "displayName": "img_10019_20_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "12e4e232-ab28-4805-a1d5-849e7c6736a9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "12e4e232-ab28-4805-a1d5-849e7c6736a9@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_21_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_21_thumbnail_blur.jpg new file mode 100644 index 00000000..721423b5 Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_21_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_21_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_21_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9d0ae5ea --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_21_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ffc0e40c-495e-4fee-9aa9-45f7c1c50de8", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ffc0e40c-495e-4fee-9aa9-45f7c1c50de8@6c48a", + "displayName": "img_10019_21_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ffc0e40c-495e-4fee-9aa9-45f7c1c50de8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ffc0e40c-495e-4fee-9aa9-45f7c1c50de8@f9941", + "displayName": "img_10019_21_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ffc0e40c-495e-4fee-9aa9-45f7c1c50de8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ffc0e40c-495e-4fee-9aa9-45f7c1c50de8@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_2_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_2_thumbnail_blur.jpg new file mode 100644 index 00000000..38b40462 Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..cc7694c4 --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3d4aeec2-ac03-4c40-904d-61d23efe0008", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3d4aeec2-ac03-4c40-904d-61d23efe0008@6c48a", + "displayName": "img_10019_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3d4aeec2-ac03-4c40-904d-61d23efe0008", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3d4aeec2-ac03-4c40-904d-61d23efe0008@f9941", + "displayName": "img_10019_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3d4aeec2-ac03-4c40-904d-61d23efe0008@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3d4aeec2-ac03-4c40-904d-61d23efe0008@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_3_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_3_thumbnail_blur.jpg new file mode 100644 index 00000000..d13fe224 Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..afda1dc1 --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d3448ab4-e341-4567-b3bd-ab17228920d3", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d3448ab4-e341-4567-b3bd-ab17228920d3@6c48a", + "displayName": "img_10019_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d3448ab4-e341-4567-b3bd-ab17228920d3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d3448ab4-e341-4567-b3bd-ab17228920d3@f9941", + "displayName": "img_10019_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d3448ab4-e341-4567-b3bd-ab17228920d3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d3448ab4-e341-4567-b3bd-ab17228920d3@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_4_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_4_thumbnail_blur.jpg new file mode 100644 index 00000000..8b91c98f Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e486fc21 --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "77e305dd-65fe-4db7-83fc-8b42090e6fe2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "77e305dd-65fe-4db7-83fc-8b42090e6fe2@6c48a", + "displayName": "img_10019_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "77e305dd-65fe-4db7-83fc-8b42090e6fe2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "77e305dd-65fe-4db7-83fc-8b42090e6fe2@f9941", + "displayName": "img_10019_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "77e305dd-65fe-4db7-83fc-8b42090e6fe2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "77e305dd-65fe-4db7-83fc-8b42090e6fe2@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_5_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_5_thumbnail_blur.jpg new file mode 100644 index 00000000..0f059612 Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d5f0dde3 --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d743516e-d412-417e-bd63-c2f4312c6125", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d743516e-d412-417e-bd63-c2f4312c6125@6c48a", + "displayName": "img_10019_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d743516e-d412-417e-bd63-c2f4312c6125", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d743516e-d412-417e-bd63-c2f4312c6125@f9941", + "displayName": "img_10019_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d743516e-d412-417e-bd63-c2f4312c6125@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d743516e-d412-417e-bd63-c2f4312c6125@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_6_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_6_thumbnail_blur.jpg new file mode 100644 index 00000000..e49bf57d Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f95862f2 --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "09b31e5d-6c4c-43f2-8edd-7b807fe956d9", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "09b31e5d-6c4c-43f2-8edd-7b807fe956d9@6c48a", + "displayName": "img_10019_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "09b31e5d-6c4c-43f2-8edd-7b807fe956d9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "09b31e5d-6c4c-43f2-8edd-7b807fe956d9@f9941", + "displayName": "img_10019_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "09b31e5d-6c4c-43f2-8edd-7b807fe956d9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "09b31e5d-6c4c-43f2-8edd-7b807fe956d9@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_7_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_7_thumbnail_blur.jpg new file mode 100644 index 00000000..4cc91a1a Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f7bcb56f --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "21ec146f-2e63-45fa-b7b8-61ddd70419a5", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "21ec146f-2e63-45fa-b7b8-61ddd70419a5@6c48a", + "displayName": "img_10019_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "21ec146f-2e63-45fa-b7b8-61ddd70419a5", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "21ec146f-2e63-45fa-b7b8-61ddd70419a5@f9941", + "displayName": "img_10019_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "21ec146f-2e63-45fa-b7b8-61ddd70419a5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "21ec146f-2e63-45fa-b7b8-61ddd70419a5@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_8_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_8_thumbnail_blur.jpg new file mode 100644 index 00000000..43e20a38 Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..324beeeb --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f5b3f29e-12a8-4593-97a6-45aeaaa34cfc", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f5b3f29e-12a8-4593-97a6-45aeaaa34cfc@6c48a", + "displayName": "img_10019_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f5b3f29e-12a8-4593-97a6-45aeaaa34cfc", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f5b3f29e-12a8-4593-97a6-45aeaaa34cfc@f9941", + "displayName": "img_10019_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f5b3f29e-12a8-4593-97a6-45aeaaa34cfc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f5b3f29e-12a8-4593-97a6-45aeaaa34cfc@6c48a" + } +} diff --git a/assets/bundles/Girls/10019/img/img_10019_9_thumbnail_blur.jpg b/assets/bundles/Girls/10019/img/img_10019_9_thumbnail_blur.jpg new file mode 100644 index 00000000..463a1998 Binary files /dev/null and b/assets/bundles/Girls/10019/img/img_10019_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10019/img/img_10019_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10019/img/img_10019_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..350df762 --- /dev/null +++ b/assets/bundles/Girls/10019/img/img_10019_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c08a3aa7-9dbb-42d0-a0bf-f3b4d734505b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c08a3aa7-9dbb-42d0-a0bf-f3b4d734505b@6c48a", + "displayName": "img_10019_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c08a3aa7-9dbb-42d0-a0bf-f3b4d734505b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c08a3aa7-9dbb-42d0-a0bf-f3b4d734505b@f9941", + "displayName": "img_10019_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c08a3aa7-9dbb-42d0-a0bf-f3b4d734505b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c08a3aa7-9dbb-42d0-a0bf-f3b4d734505b@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_10_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_10_thumbnail_blur.jpg new file mode 100644 index 00000000..731a0633 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a3eef30a --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "23e988ca-48cf-4b2b-9889-f6070c0897bc", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "23e988ca-48cf-4b2b-9889-f6070c0897bc@6c48a", + "displayName": "img_10020_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "23e988ca-48cf-4b2b-9889-f6070c0897bc", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "23e988ca-48cf-4b2b-9889-f6070c0897bc@f9941", + "displayName": "img_10020_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "23e988ca-48cf-4b2b-9889-f6070c0897bc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "23e988ca-48cf-4b2b-9889-f6070c0897bc@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_11_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_11_thumbnail_blur.jpg new file mode 100644 index 00000000..ea09e55b Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..63c00fb5 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ee390c63-1020-4159-8e1f-1aa069dc3694", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ee390c63-1020-4159-8e1f-1aa069dc3694@6c48a", + "displayName": "img_10020_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ee390c63-1020-4159-8e1f-1aa069dc3694", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ee390c63-1020-4159-8e1f-1aa069dc3694@f9941", + "displayName": "img_10020_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ee390c63-1020-4159-8e1f-1aa069dc3694@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ee390c63-1020-4159-8e1f-1aa069dc3694@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_12_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_12_thumbnail_blur.jpg new file mode 100644 index 00000000..2673312b Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f5d309e7 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a381d987-7787-47f2-a45d-b6af4c712c5b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a381d987-7787-47f2-a45d-b6af4c712c5b@6c48a", + "displayName": "img_10020_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a381d987-7787-47f2-a45d-b6af4c712c5b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a381d987-7787-47f2-a45d-b6af4c712c5b@f9941", + "displayName": "img_10020_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a381d987-7787-47f2-a45d-b6af4c712c5b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a381d987-7787-47f2-a45d-b6af4c712c5b@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_13_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_13_thumbnail_blur.jpg new file mode 100644 index 00000000..8764e721 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..82d2f066 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "56dce37d-b59d-4f2d-8b52-0440610d2428", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "56dce37d-b59d-4f2d-8b52-0440610d2428@6c48a", + "displayName": "img_10020_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "56dce37d-b59d-4f2d-8b52-0440610d2428", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "56dce37d-b59d-4f2d-8b52-0440610d2428@f9941", + "displayName": "img_10020_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "56dce37d-b59d-4f2d-8b52-0440610d2428@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "56dce37d-b59d-4f2d-8b52-0440610d2428@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_14_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_14_thumbnail_blur.jpg new file mode 100644 index 00000000..dfa9899f Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..73006277 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "81a2d1bb-2cfb-456a-b976-5627614e6303", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "81a2d1bb-2cfb-456a-b976-5627614e6303@6c48a", + "displayName": "img_10020_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "81a2d1bb-2cfb-456a-b976-5627614e6303", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "81a2d1bb-2cfb-456a-b976-5627614e6303@f9941", + "displayName": "img_10020_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "81a2d1bb-2cfb-456a-b976-5627614e6303@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "81a2d1bb-2cfb-456a-b976-5627614e6303@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_15_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_15_thumbnail_blur.jpg new file mode 100644 index 00000000..b0135e94 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..31fdeb22 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "771454e4-9cd3-4396-a6e4-07f1bbd86e96", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "771454e4-9cd3-4396-a6e4-07f1bbd86e96@6c48a", + "displayName": "img_10020_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "771454e4-9cd3-4396-a6e4-07f1bbd86e96", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "771454e4-9cd3-4396-a6e4-07f1bbd86e96@f9941", + "displayName": "img_10020_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "771454e4-9cd3-4396-a6e4-07f1bbd86e96@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "771454e4-9cd3-4396-a6e4-07f1bbd86e96@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_16_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_16_thumbnail_blur.jpg new file mode 100644 index 00000000..4fb8c1e4 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..cad97a57 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b4031c2d-05ae-4519-b7b3-1875d79a6b5e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b4031c2d-05ae-4519-b7b3-1875d79a6b5e@6c48a", + "displayName": "img_10020_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b4031c2d-05ae-4519-b7b3-1875d79a6b5e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b4031c2d-05ae-4519-b7b3-1875d79a6b5e@f9941", + "displayName": "img_10020_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b4031c2d-05ae-4519-b7b3-1875d79a6b5e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b4031c2d-05ae-4519-b7b3-1875d79a6b5e@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_17_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_17_thumbnail_blur.jpg new file mode 100644 index 00000000..7c06c4c0 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9062512b --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "162d4c8f-1f6f-40e2-ae62-2a9816de4d63", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "162d4c8f-1f6f-40e2-ae62-2a9816de4d63@6c48a", + "displayName": "img_10020_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "162d4c8f-1f6f-40e2-ae62-2a9816de4d63", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "162d4c8f-1f6f-40e2-ae62-2a9816de4d63@f9941", + "displayName": "img_10020_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "162d4c8f-1f6f-40e2-ae62-2a9816de4d63@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "162d4c8f-1f6f-40e2-ae62-2a9816de4d63@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_18_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_18_thumbnail_blur.jpg new file mode 100644 index 00000000..9c53f39e Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_18_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_18_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_18_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..34ff306c --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_18_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7284263c-5bd4-4f34-b2f5-479f45eb07a5", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7284263c-5bd4-4f34-b2f5-479f45eb07a5@6c48a", + "displayName": "img_10020_18_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7284263c-5bd4-4f34-b2f5-479f45eb07a5", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7284263c-5bd4-4f34-b2f5-479f45eb07a5@f9941", + "displayName": "img_10020_18_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7284263c-5bd4-4f34-b2f5-479f45eb07a5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7284263c-5bd4-4f34-b2f5-479f45eb07a5@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_19_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_19_thumbnail_blur.jpg new file mode 100644 index 00000000..1c323266 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_19_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_19_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_19_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3f4e7885 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_19_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0944eb70-9408-47f8-9fcb-8e1cc7caee48", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0944eb70-9408-47f8-9fcb-8e1cc7caee48@6c48a", + "displayName": "img_10020_19_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0944eb70-9408-47f8-9fcb-8e1cc7caee48", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0944eb70-9408-47f8-9fcb-8e1cc7caee48@f9941", + "displayName": "img_10020_19_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0944eb70-9408-47f8-9fcb-8e1cc7caee48@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0944eb70-9408-47f8-9fcb-8e1cc7caee48@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_1_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_1_thumbnail_blur.jpg new file mode 100644 index 00000000..df49508c Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7acb3508 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "83f4d964-31b4-4952-93de-cd7089fe0419", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "83f4d964-31b4-4952-93de-cd7089fe0419@6c48a", + "displayName": "img_10020_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "83f4d964-31b4-4952-93de-cd7089fe0419", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "83f4d964-31b4-4952-93de-cd7089fe0419@f9941", + "displayName": "img_10020_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "83f4d964-31b4-4952-93de-cd7089fe0419@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "83f4d964-31b4-4952-93de-cd7089fe0419@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_20_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_20_thumbnail_blur.jpg new file mode 100644 index 00000000..6601823a Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_20_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_20_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_20_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7966fb10 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_20_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b308e595-0af2-40c8-8e31-d0595b325f24", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b308e595-0af2-40c8-8e31-d0595b325f24@6c48a", + "displayName": "img_10020_20_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b308e595-0af2-40c8-8e31-d0595b325f24", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b308e595-0af2-40c8-8e31-d0595b325f24@f9941", + "displayName": "img_10020_20_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b308e595-0af2-40c8-8e31-d0595b325f24@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b308e595-0af2-40c8-8e31-d0595b325f24@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_21_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_21_thumbnail_blur.jpg new file mode 100644 index 00000000..e07827e4 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_21_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_21_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_21_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c9c34322 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_21_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "da8dabff-a814-43c3-b82f-ad90af019ab4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "da8dabff-a814-43c3-b82f-ad90af019ab4@6c48a", + "displayName": "img_10020_21_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "da8dabff-a814-43c3-b82f-ad90af019ab4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "da8dabff-a814-43c3-b82f-ad90af019ab4@f9941", + "displayName": "img_10020_21_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "da8dabff-a814-43c3-b82f-ad90af019ab4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "da8dabff-a814-43c3-b82f-ad90af019ab4@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_22_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_22_thumbnail_blur.jpg new file mode 100644 index 00000000..199f839c Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_22_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_22_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_22_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..686dc2ca --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_22_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6d071a56-16c3-4080-ae44-e1cc8c4b0bb7", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6d071a56-16c3-4080-ae44-e1cc8c4b0bb7@6c48a", + "displayName": "img_10020_22_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6d071a56-16c3-4080-ae44-e1cc8c4b0bb7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6d071a56-16c3-4080-ae44-e1cc8c4b0bb7@f9941", + "displayName": "img_10020_22_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6d071a56-16c3-4080-ae44-e1cc8c4b0bb7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6d071a56-16c3-4080-ae44-e1cc8c4b0bb7@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_23_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_23_thumbnail_blur.jpg new file mode 100644 index 00000000..bac46a19 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_23_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_23_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_23_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c21972d2 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_23_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e85c2f0b-532e-4523-951c-691c15cc3a6d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e85c2f0b-532e-4523-951c-691c15cc3a6d@6c48a", + "displayName": "img_10020_23_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e85c2f0b-532e-4523-951c-691c15cc3a6d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e85c2f0b-532e-4523-951c-691c15cc3a6d@f9941", + "displayName": "img_10020_23_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e85c2f0b-532e-4523-951c-691c15cc3a6d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e85c2f0b-532e-4523-951c-691c15cc3a6d@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_24_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_24_thumbnail_blur.jpg new file mode 100644 index 00000000..f333c14d Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_24_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_24_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_24_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5e7d218b --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_24_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9df78efd-f09d-4803-a55d-bdf0b894687c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9df78efd-f09d-4803-a55d-bdf0b894687c@6c48a", + "displayName": "img_10020_24_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9df78efd-f09d-4803-a55d-bdf0b894687c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9df78efd-f09d-4803-a55d-bdf0b894687c@f9941", + "displayName": "img_10020_24_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9df78efd-f09d-4803-a55d-bdf0b894687c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9df78efd-f09d-4803-a55d-bdf0b894687c@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_25_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_25_thumbnail_blur.jpg new file mode 100644 index 00000000..7ef6c192 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_25_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_25_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_25_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..674b5d3f --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_25_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "968b3c36-522e-4160-82b9-b394b61efe71", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "968b3c36-522e-4160-82b9-b394b61efe71@6c48a", + "displayName": "img_10020_25_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "968b3c36-522e-4160-82b9-b394b61efe71", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "968b3c36-522e-4160-82b9-b394b61efe71@f9941", + "displayName": "img_10020_25_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "968b3c36-522e-4160-82b9-b394b61efe71@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "968b3c36-522e-4160-82b9-b394b61efe71@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_26_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_26_thumbnail_blur.jpg new file mode 100644 index 00000000..e4b658ee Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_26_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_26_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_26_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6c68ec60 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_26_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3207424d-5430-4304-baa8-8e0f1bac9142", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3207424d-5430-4304-baa8-8e0f1bac9142@6c48a", + "displayName": "img_10020_26_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3207424d-5430-4304-baa8-8e0f1bac9142", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3207424d-5430-4304-baa8-8e0f1bac9142@f9941", + "displayName": "img_10020_26_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3207424d-5430-4304-baa8-8e0f1bac9142@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3207424d-5430-4304-baa8-8e0f1bac9142@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_27_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_27_thumbnail_blur.jpg new file mode 100644 index 00000000..0ab6d8d5 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_27_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_27_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_27_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1e52cc6f --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_27_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8ffeda40-20bc-4674-bd76-fa02d749b2ae", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8ffeda40-20bc-4674-bd76-fa02d749b2ae@6c48a", + "displayName": "img_10020_27_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8ffeda40-20bc-4674-bd76-fa02d749b2ae", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8ffeda40-20bc-4674-bd76-fa02d749b2ae@f9941", + "displayName": "img_10020_27_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8ffeda40-20bc-4674-bd76-fa02d749b2ae@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8ffeda40-20bc-4674-bd76-fa02d749b2ae@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_28_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_28_thumbnail_blur.jpg new file mode 100644 index 00000000..0ababe5f Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_28_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_28_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_28_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a040b934 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_28_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "228923ff-6027-42c0-875a-4320a6d508c9", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "228923ff-6027-42c0-875a-4320a6d508c9@6c48a", + "displayName": "img_10020_28_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "228923ff-6027-42c0-875a-4320a6d508c9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "228923ff-6027-42c0-875a-4320a6d508c9@f9941", + "displayName": "img_10020_28_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "228923ff-6027-42c0-875a-4320a6d508c9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "228923ff-6027-42c0-875a-4320a6d508c9@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_29_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_29_thumbnail_blur.jpg new file mode 100644 index 00000000..e73c9b3c Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_29_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_29_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_29_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d9a304aa --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_29_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "92aad85c-536c-453a-9ef0-5b90c771cb4c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "92aad85c-536c-453a-9ef0-5b90c771cb4c@6c48a", + "displayName": "img_10020_29_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "92aad85c-536c-453a-9ef0-5b90c771cb4c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "92aad85c-536c-453a-9ef0-5b90c771cb4c@f9941", + "displayName": "img_10020_29_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "92aad85c-536c-453a-9ef0-5b90c771cb4c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "92aad85c-536c-453a-9ef0-5b90c771cb4c@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_2_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_2_thumbnail_blur.jpg new file mode 100644 index 00000000..998cdcad Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..2c4dcb82 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3ef14818-6dc6-4f57-be94-be98fc6a520b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3ef14818-6dc6-4f57-be94-be98fc6a520b@6c48a", + "displayName": "img_10020_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3ef14818-6dc6-4f57-be94-be98fc6a520b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3ef14818-6dc6-4f57-be94-be98fc6a520b@f9941", + "displayName": "img_10020_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3ef14818-6dc6-4f57-be94-be98fc6a520b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3ef14818-6dc6-4f57-be94-be98fc6a520b@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_30_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_30_thumbnail_blur.jpg new file mode 100644 index 00000000..b7caa110 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_30_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_30_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_30_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6abfb26f --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_30_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "101868f7-1193-43ac-9026-b843f0c6cc00", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "101868f7-1193-43ac-9026-b843f0c6cc00@6c48a", + "displayName": "img_10020_30_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "101868f7-1193-43ac-9026-b843f0c6cc00", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "101868f7-1193-43ac-9026-b843f0c6cc00@f9941", + "displayName": "img_10020_30_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "101868f7-1193-43ac-9026-b843f0c6cc00@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "101868f7-1193-43ac-9026-b843f0c6cc00@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_31_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_31_thumbnail_blur.jpg new file mode 100644 index 00000000..b8126915 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_31_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_31_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_31_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5bb844c4 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_31_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b719143b-70f9-4cb6-8ad2-63aa7973dbb3", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b719143b-70f9-4cb6-8ad2-63aa7973dbb3@6c48a", + "displayName": "img_10020_31_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b719143b-70f9-4cb6-8ad2-63aa7973dbb3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b719143b-70f9-4cb6-8ad2-63aa7973dbb3@f9941", + "displayName": "img_10020_31_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b719143b-70f9-4cb6-8ad2-63aa7973dbb3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b719143b-70f9-4cb6-8ad2-63aa7973dbb3@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_32_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_32_thumbnail_blur.jpg new file mode 100644 index 00000000..8289d086 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_32_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_32_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_32_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4388fe40 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_32_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "25a9f024-01fb-4d91-879c-61ffd5a264e2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "25a9f024-01fb-4d91-879c-61ffd5a264e2@6c48a", + "displayName": "img_10020_32_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "25a9f024-01fb-4d91-879c-61ffd5a264e2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "25a9f024-01fb-4d91-879c-61ffd5a264e2@f9941", + "displayName": "img_10020_32_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "25a9f024-01fb-4d91-879c-61ffd5a264e2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "25a9f024-01fb-4d91-879c-61ffd5a264e2@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_33_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_33_thumbnail_blur.jpg new file mode 100644 index 00000000..ec8c6566 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_33_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_33_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_33_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5776a301 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_33_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4029ceef-2a6a-4962-a6a9-36d92136cffa", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4029ceef-2a6a-4962-a6a9-36d92136cffa@6c48a", + "displayName": "img_10020_33_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4029ceef-2a6a-4962-a6a9-36d92136cffa", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4029ceef-2a6a-4962-a6a9-36d92136cffa@f9941", + "displayName": "img_10020_33_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4029ceef-2a6a-4962-a6a9-36d92136cffa@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4029ceef-2a6a-4962-a6a9-36d92136cffa@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_34_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_34_thumbnail_blur.jpg new file mode 100644 index 00000000..b1d997e2 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_34_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_34_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_34_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..23087c92 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_34_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3c1de922-5277-43f2-b60d-d6a9e115e51e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3c1de922-5277-43f2-b60d-d6a9e115e51e@6c48a", + "displayName": "img_10020_34_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3c1de922-5277-43f2-b60d-d6a9e115e51e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3c1de922-5277-43f2-b60d-d6a9e115e51e@f9941", + "displayName": "img_10020_34_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3c1de922-5277-43f2-b60d-d6a9e115e51e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3c1de922-5277-43f2-b60d-d6a9e115e51e@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_35_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_35_thumbnail_blur.jpg new file mode 100644 index 00000000..d3340a2e Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_35_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_35_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_35_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8fab4710 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_35_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d02a7493-5a36-4c37-b44a-3d1472de47f4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d02a7493-5a36-4c37-b44a-3d1472de47f4@6c48a", + "displayName": "img_10020_35_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d02a7493-5a36-4c37-b44a-3d1472de47f4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d02a7493-5a36-4c37-b44a-3d1472de47f4@f9941", + "displayName": "img_10020_35_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d02a7493-5a36-4c37-b44a-3d1472de47f4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d02a7493-5a36-4c37-b44a-3d1472de47f4@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_36_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_36_thumbnail_blur.jpg new file mode 100644 index 00000000..899cf1f3 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_36_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_36_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_36_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1309514a --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_36_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6dad1eca-47b9-4ea8-91c9-53b2d57dea3b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6dad1eca-47b9-4ea8-91c9-53b2d57dea3b@6c48a", + "displayName": "img_10020_36_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6dad1eca-47b9-4ea8-91c9-53b2d57dea3b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6dad1eca-47b9-4ea8-91c9-53b2d57dea3b@f9941", + "displayName": "img_10020_36_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6dad1eca-47b9-4ea8-91c9-53b2d57dea3b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6dad1eca-47b9-4ea8-91c9-53b2d57dea3b@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_37_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_37_thumbnail_blur.jpg new file mode 100644 index 00000000..a04f3356 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_37_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_37_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_37_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..beb28f9f --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_37_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d4aa8e64-480a-47eb-809d-7a2f86bcc281", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d4aa8e64-480a-47eb-809d-7a2f86bcc281@6c48a", + "displayName": "img_10020_37_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d4aa8e64-480a-47eb-809d-7a2f86bcc281", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d4aa8e64-480a-47eb-809d-7a2f86bcc281@f9941", + "displayName": "img_10020_37_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d4aa8e64-480a-47eb-809d-7a2f86bcc281@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d4aa8e64-480a-47eb-809d-7a2f86bcc281@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_38_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_38_thumbnail_blur.jpg new file mode 100644 index 00000000..7137cbbe Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_38_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_38_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_38_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c173e153 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_38_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "09ee32cd-f378-42d9-93d8-946d81db47d7", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "09ee32cd-f378-42d9-93d8-946d81db47d7@6c48a", + "displayName": "img_10020_38_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "09ee32cd-f378-42d9-93d8-946d81db47d7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "09ee32cd-f378-42d9-93d8-946d81db47d7@f9941", + "displayName": "img_10020_38_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "09ee32cd-f378-42d9-93d8-946d81db47d7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "09ee32cd-f378-42d9-93d8-946d81db47d7@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_39_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_39_thumbnail_blur.jpg new file mode 100644 index 00000000..f7fe1b05 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_39_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_39_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_39_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8f89ae8c --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_39_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7392967a-ac1a-41c9-81e4-10dc2b453aaf", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7392967a-ac1a-41c9-81e4-10dc2b453aaf@6c48a", + "displayName": "img_10020_39_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7392967a-ac1a-41c9-81e4-10dc2b453aaf", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7392967a-ac1a-41c9-81e4-10dc2b453aaf@f9941", + "displayName": "img_10020_39_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7392967a-ac1a-41c9-81e4-10dc2b453aaf@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7392967a-ac1a-41c9-81e4-10dc2b453aaf@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_3_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_3_thumbnail_blur.jpg new file mode 100644 index 00000000..101d88fc Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..01faaba3 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cd1a3f66-ddab-4f22-9389-e7c93ebcd08b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cd1a3f66-ddab-4f22-9389-e7c93ebcd08b@6c48a", + "displayName": "img_10020_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cd1a3f66-ddab-4f22-9389-e7c93ebcd08b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cd1a3f66-ddab-4f22-9389-e7c93ebcd08b@f9941", + "displayName": "img_10020_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cd1a3f66-ddab-4f22-9389-e7c93ebcd08b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cd1a3f66-ddab-4f22-9389-e7c93ebcd08b@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_40_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_40_thumbnail_blur.jpg new file mode 100644 index 00000000..1f515f56 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_40_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_40_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_40_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5ce55823 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_40_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f3e4ddf7-3fb0-486b-bc44-fff5d9a900d9", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f3e4ddf7-3fb0-486b-bc44-fff5d9a900d9@6c48a", + "displayName": "img_10020_40_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f3e4ddf7-3fb0-486b-bc44-fff5d9a900d9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f3e4ddf7-3fb0-486b-bc44-fff5d9a900d9@f9941", + "displayName": "img_10020_40_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f3e4ddf7-3fb0-486b-bc44-fff5d9a900d9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f3e4ddf7-3fb0-486b-bc44-fff5d9a900d9@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_41_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_41_thumbnail_blur.jpg new file mode 100644 index 00000000..373d33b1 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_41_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_41_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_41_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3cd16c2e --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_41_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3828dc42-d520-464e-97ba-7e80b0d0cf1b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3828dc42-d520-464e-97ba-7e80b0d0cf1b@6c48a", + "displayName": "img_10020_41_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3828dc42-d520-464e-97ba-7e80b0d0cf1b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3828dc42-d520-464e-97ba-7e80b0d0cf1b@f9941", + "displayName": "img_10020_41_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3828dc42-d520-464e-97ba-7e80b0d0cf1b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3828dc42-d520-464e-97ba-7e80b0d0cf1b@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_42_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_42_thumbnail_blur.jpg new file mode 100644 index 00000000..375e474b Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_42_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_42_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_42_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ac73dfb1 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_42_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2b549b1a-ff3e-4c8f-9fb8-ba1e8fd38aef", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2b549b1a-ff3e-4c8f-9fb8-ba1e8fd38aef@6c48a", + "displayName": "img_10020_42_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2b549b1a-ff3e-4c8f-9fb8-ba1e8fd38aef", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2b549b1a-ff3e-4c8f-9fb8-ba1e8fd38aef@f9941", + "displayName": "img_10020_42_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2b549b1a-ff3e-4c8f-9fb8-ba1e8fd38aef@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2b549b1a-ff3e-4c8f-9fb8-ba1e8fd38aef@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_43_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_43_thumbnail_blur.jpg new file mode 100644 index 00000000..315b663d Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_43_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_43_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_43_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a3c9d2f6 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_43_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "357470e7-3c13-467f-aa3b-5a5492d6f052", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "357470e7-3c13-467f-aa3b-5a5492d6f052@6c48a", + "displayName": "img_10020_43_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "357470e7-3c13-467f-aa3b-5a5492d6f052", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "357470e7-3c13-467f-aa3b-5a5492d6f052@f9941", + "displayName": "img_10020_43_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "357470e7-3c13-467f-aa3b-5a5492d6f052@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "357470e7-3c13-467f-aa3b-5a5492d6f052@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_44_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_44_thumbnail_blur.jpg new file mode 100644 index 00000000..f9339698 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_44_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_44_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_44_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..93f63bba --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_44_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f2d5aab8-070e-4661-875f-c392c0780ca5", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f2d5aab8-070e-4661-875f-c392c0780ca5@6c48a", + "displayName": "img_10020_44_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f2d5aab8-070e-4661-875f-c392c0780ca5", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f2d5aab8-070e-4661-875f-c392c0780ca5@f9941", + "displayName": "img_10020_44_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f2d5aab8-070e-4661-875f-c392c0780ca5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f2d5aab8-070e-4661-875f-c392c0780ca5@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_4_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_4_thumbnail_blur.jpg new file mode 100644 index 00000000..128fee48 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..44ee8b3f --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "093a8205-2934-4f7c-8a0b-e8b894c3eee5", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "093a8205-2934-4f7c-8a0b-e8b894c3eee5@6c48a", + "displayName": "img_10020_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "093a8205-2934-4f7c-8a0b-e8b894c3eee5", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "093a8205-2934-4f7c-8a0b-e8b894c3eee5@f9941", + "displayName": "img_10020_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "093a8205-2934-4f7c-8a0b-e8b894c3eee5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "093a8205-2934-4f7c-8a0b-e8b894c3eee5@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_5_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_5_thumbnail_blur.jpg new file mode 100644 index 00000000..99de7b1e Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..cabd277d --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "71ed1a5a-7948-436a-ac73-41fa0c07e98f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "71ed1a5a-7948-436a-ac73-41fa0c07e98f@6c48a", + "displayName": "img_10020_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "71ed1a5a-7948-436a-ac73-41fa0c07e98f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "71ed1a5a-7948-436a-ac73-41fa0c07e98f@f9941", + "displayName": "img_10020_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "71ed1a5a-7948-436a-ac73-41fa0c07e98f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "71ed1a5a-7948-436a-ac73-41fa0c07e98f@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_6_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_6_thumbnail_blur.jpg new file mode 100644 index 00000000..612466aa Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..04b498e3 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4ea119c0-24ff-4a98-bace-8100048c582c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4ea119c0-24ff-4a98-bace-8100048c582c@6c48a", + "displayName": "img_10020_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4ea119c0-24ff-4a98-bace-8100048c582c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4ea119c0-24ff-4a98-bace-8100048c582c@f9941", + "displayName": "img_10020_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4ea119c0-24ff-4a98-bace-8100048c582c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4ea119c0-24ff-4a98-bace-8100048c582c@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_7_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_7_thumbnail_blur.jpg new file mode 100644 index 00000000..d0e8e433 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..b7843ec3 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ac84e6f9-82f9-41e5-b061-187c4752ea22", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ac84e6f9-82f9-41e5-b061-187c4752ea22@6c48a", + "displayName": "img_10020_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ac84e6f9-82f9-41e5-b061-187c4752ea22", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ac84e6f9-82f9-41e5-b061-187c4752ea22@f9941", + "displayName": "img_10020_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ac84e6f9-82f9-41e5-b061-187c4752ea22@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ac84e6f9-82f9-41e5-b061-187c4752ea22@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_8_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_8_thumbnail_blur.jpg new file mode 100644 index 00000000..b7fc412c Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6ba6d7c9 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "44a407fa-0e84-4b08-81ae-c7e67f1e8275", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "44a407fa-0e84-4b08-81ae-c7e67f1e8275@6c48a", + "displayName": "img_10020_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "44a407fa-0e84-4b08-81ae-c7e67f1e8275", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "44a407fa-0e84-4b08-81ae-c7e67f1e8275@f9941", + "displayName": "img_10020_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "44a407fa-0e84-4b08-81ae-c7e67f1e8275@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "44a407fa-0e84-4b08-81ae-c7e67f1e8275@6c48a" + } +} diff --git a/assets/bundles/Girls/10020/img/img_10020_9_thumbnail_blur.jpg b/assets/bundles/Girls/10020/img/img_10020_9_thumbnail_blur.jpg new file mode 100644 index 00000000..edef4261 Binary files /dev/null and b/assets/bundles/Girls/10020/img/img_10020_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10020/img/img_10020_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10020/img/img_10020_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..dca9cbf9 --- /dev/null +++ b/assets/bundles/Girls/10020/img/img_10020_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "de791ec9-4f9e-49c7-8810-57e9d378a0b4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "de791ec9-4f9e-49c7-8810-57e9d378a0b4@6c48a", + "displayName": "img_10020_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "de791ec9-4f9e-49c7-8810-57e9d378a0b4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "de791ec9-4f9e-49c7-8810-57e9d378a0b4@f9941", + "displayName": "img_10020_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "de791ec9-4f9e-49c7-8810-57e9d378a0b4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "de791ec9-4f9e-49c7-8810-57e9d378a0b4@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_1.png b/assets/bundles/Girls/10021/img/img_10021_1.png new file mode 100644 index 00000000..157f6bec Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_1.png differ diff --git a/assets/bundles/Girls/10021/img/img_10021_1.png.meta b/assets/bundles/Girls/10021/img/img_10021_1.png.meta new file mode 100644 index 00000000..a8565e98 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cb9b1036-2aec-48e1-9ad3-2e023b7d5291", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cb9b1036-2aec-48e1-9ad3-2e023b7d5291@6c48a", + "displayName": "img_10021_1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cb9b1036-2aec-48e1-9ad3-2e023b7d5291", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cb9b1036-2aec-48e1-9ad3-2e023b7d5291@f9941", + "displayName": "img_10021_1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cb9b1036-2aec-48e1-9ad3-2e023b7d5291@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cb9b1036-2aec-48e1-9ad3-2e023b7d5291@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_10.png b/assets/bundles/Girls/10021/img/img_10021_10.png new file mode 100644 index 00000000..0c214705 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_10.png differ diff --git a/assets/bundles/Girls/10021/img/img_10021_10.png.meta b/assets/bundles/Girls/10021/img/img_10021_10.png.meta new file mode 100644 index 00000000..ee136d46 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0839a00b-89e1-4385-a4d0-b43a06d94a58", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0839a00b-89e1-4385-a4d0-b43a06d94a58@6c48a", + "displayName": "img_10021_10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0839a00b-89e1-4385-a4d0-b43a06d94a58", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0839a00b-89e1-4385-a4d0-b43a06d94a58@f9941", + "displayName": "img_10021_10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0839a00b-89e1-4385-a4d0-b43a06d94a58@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0839a00b-89e1-4385-a4d0-b43a06d94a58@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_10_thumbnail.jpg b/assets/bundles/Girls/10021/img/img_10021_10_thumbnail.jpg new file mode 100644 index 00000000..6d8bb992 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_10_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_10_thumbnail.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_10_thumbnail.jpg.meta new file mode 100644 index 00000000..3d7eaebe --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_10_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "90893921-44a0-4556-8a42-355f12647642", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "90893921-44a0-4556-8a42-355f12647642@6c48a", + "displayName": "img_10021_10_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "90893921-44a0-4556-8a42-355f12647642", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "90893921-44a0-4556-8a42-355f12647642@f9941", + "displayName": "img_10021_10_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "90893921-44a0-4556-8a42-355f12647642@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "90893921-44a0-4556-8a42-355f12647642@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_10_thumbnail_blur.jpg b/assets/bundles/Girls/10021/img/img_10021_10_thumbnail_blur.jpg new file mode 100644 index 00000000..eb32f539 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..908d4600 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "90f162cc-8e58-45a8-ac03-d8986445e556", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "90f162cc-8e58-45a8-ac03-d8986445e556@6c48a", + "displayName": "img_10021_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "90f162cc-8e58-45a8-ac03-d8986445e556", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "90f162cc-8e58-45a8-ac03-d8986445e556@f9941", + "displayName": "img_10021_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "90f162cc-8e58-45a8-ac03-d8986445e556@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "90f162cc-8e58-45a8-ac03-d8986445e556@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_11.png b/assets/bundles/Girls/10021/img/img_10021_11.png new file mode 100644 index 00000000..ed30e154 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_11.png differ diff --git a/assets/bundles/Girls/10021/img/img_10021_11.png.meta b/assets/bundles/Girls/10021/img/img_10021_11.png.meta new file mode 100644 index 00000000..441f1397 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a0e4a3ef-b8bd-4cf6-a65f-c42e21c3d990", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a0e4a3ef-b8bd-4cf6-a65f-c42e21c3d990@6c48a", + "displayName": "img_10021_11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a0e4a3ef-b8bd-4cf6-a65f-c42e21c3d990", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a0e4a3ef-b8bd-4cf6-a65f-c42e21c3d990@f9941", + "displayName": "img_10021_11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a0e4a3ef-b8bd-4cf6-a65f-c42e21c3d990@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a0e4a3ef-b8bd-4cf6-a65f-c42e21c3d990@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_11_thumbnail.jpg b/assets/bundles/Girls/10021/img/img_10021_11_thumbnail.jpg new file mode 100644 index 00000000..d5bc10dd Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_11_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_11_thumbnail.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_11_thumbnail.jpg.meta new file mode 100644 index 00000000..a74f0b5d --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_11_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "15f5866b-87d1-419c-a2a3-e988f2f5408c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "15f5866b-87d1-419c-a2a3-e988f2f5408c@6c48a", + "displayName": "img_10021_11_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "15f5866b-87d1-419c-a2a3-e988f2f5408c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "15f5866b-87d1-419c-a2a3-e988f2f5408c@f9941", + "displayName": "img_10021_11_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "15f5866b-87d1-419c-a2a3-e988f2f5408c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "15f5866b-87d1-419c-a2a3-e988f2f5408c@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_11_thumbnail_blur.jpg b/assets/bundles/Girls/10021/img/img_10021_11_thumbnail_blur.jpg new file mode 100644 index 00000000..f86a34a0 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..babddd31 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "748ff6c5-ce1c-43b7-b454-994c2cbf4134", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "748ff6c5-ce1c-43b7-b454-994c2cbf4134@6c48a", + "displayName": "img_10021_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "748ff6c5-ce1c-43b7-b454-994c2cbf4134", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "748ff6c5-ce1c-43b7-b454-994c2cbf4134@f9941", + "displayName": "img_10021_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "748ff6c5-ce1c-43b7-b454-994c2cbf4134@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "748ff6c5-ce1c-43b7-b454-994c2cbf4134@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_12.png b/assets/bundles/Girls/10021/img/img_10021_12.png new file mode 100644 index 00000000..a4689ca2 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_12.png differ diff --git a/assets/bundles/Girls/10021/img/img_10021_12.png.meta b/assets/bundles/Girls/10021/img/img_10021_12.png.meta new file mode 100644 index 00000000..9a14ccef --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_12.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c5569e96-2d5d-47ce-a08f-2e36c7ecaa9f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c5569e96-2d5d-47ce-a08f-2e36c7ecaa9f@6c48a", + "displayName": "img_10021_12", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c5569e96-2d5d-47ce-a08f-2e36c7ecaa9f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c5569e96-2d5d-47ce-a08f-2e36c7ecaa9f@f9941", + "displayName": "img_10021_12", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c5569e96-2d5d-47ce-a08f-2e36c7ecaa9f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c5569e96-2d5d-47ce-a08f-2e36c7ecaa9f@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_12_thumbnail.jpg b/assets/bundles/Girls/10021/img/img_10021_12_thumbnail.jpg new file mode 100644 index 00000000..e14c8ee5 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_12_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_12_thumbnail.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_12_thumbnail.jpg.meta new file mode 100644 index 00000000..8f20d0f7 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_12_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "643774f4-9313-4fe6-ac34-de804a69d4d6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "643774f4-9313-4fe6-ac34-de804a69d4d6@6c48a", + "displayName": "img_10021_12_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "643774f4-9313-4fe6-ac34-de804a69d4d6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "643774f4-9313-4fe6-ac34-de804a69d4d6@f9941", + "displayName": "img_10021_12_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "643774f4-9313-4fe6-ac34-de804a69d4d6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "643774f4-9313-4fe6-ac34-de804a69d4d6@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_12_thumbnail_blur.jpg b/assets/bundles/Girls/10021/img/img_10021_12_thumbnail_blur.jpg new file mode 100644 index 00000000..f3b0fa5c Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..b960eb09 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "392c80ff-39f0-409c-a539-55b6cf1f8aac", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "392c80ff-39f0-409c-a539-55b6cf1f8aac@6c48a", + "displayName": "img_10021_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "392c80ff-39f0-409c-a539-55b6cf1f8aac", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "392c80ff-39f0-409c-a539-55b6cf1f8aac@f9941", + "displayName": "img_10021_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "392c80ff-39f0-409c-a539-55b6cf1f8aac@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "392c80ff-39f0-409c-a539-55b6cf1f8aac@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_13.png b/assets/bundles/Girls/10021/img/img_10021_13.png new file mode 100644 index 00000000..63147c95 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_13.png differ diff --git a/assets/bundles/Girls/10021/img/img_10021_13.png.meta b/assets/bundles/Girls/10021/img/img_10021_13.png.meta new file mode 100644 index 00000000..e51f2736 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_13.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "95e71007-738f-425f-9f7d-13c3ffd50eb9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "95e71007-738f-425f-9f7d-13c3ffd50eb9@6c48a", + "displayName": "img_10021_13", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "95e71007-738f-425f-9f7d-13c3ffd50eb9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "95e71007-738f-425f-9f7d-13c3ffd50eb9@f9941", + "displayName": "img_10021_13", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "95e71007-738f-425f-9f7d-13c3ffd50eb9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "95e71007-738f-425f-9f7d-13c3ffd50eb9@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_13_thumbnail.jpg b/assets/bundles/Girls/10021/img/img_10021_13_thumbnail.jpg new file mode 100644 index 00000000..2595aa17 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_13_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_13_thumbnail.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_13_thumbnail.jpg.meta new file mode 100644 index 00000000..8d92ead6 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_13_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6c0c2c56-7afd-417f-a721-881d77988464", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6c0c2c56-7afd-417f-a721-881d77988464@6c48a", + "displayName": "img_10021_13_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6c0c2c56-7afd-417f-a721-881d77988464", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6c0c2c56-7afd-417f-a721-881d77988464@f9941", + "displayName": "img_10021_13_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6c0c2c56-7afd-417f-a721-881d77988464@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6c0c2c56-7afd-417f-a721-881d77988464@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_13_thumbnail_blur.jpg b/assets/bundles/Girls/10021/img/img_10021_13_thumbnail_blur.jpg new file mode 100644 index 00000000..6053c4cd Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9ca6f10b --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d0a5a47c-b8df-4b2e-9eee-22d8fde8367e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d0a5a47c-b8df-4b2e-9eee-22d8fde8367e@6c48a", + "displayName": "img_10021_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d0a5a47c-b8df-4b2e-9eee-22d8fde8367e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d0a5a47c-b8df-4b2e-9eee-22d8fde8367e@f9941", + "displayName": "img_10021_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d0a5a47c-b8df-4b2e-9eee-22d8fde8367e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d0a5a47c-b8df-4b2e-9eee-22d8fde8367e@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_1_thumbnail.jpg b/assets/bundles/Girls/10021/img/img_10021_1_thumbnail.jpg new file mode 100644 index 00000000..07296f63 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_1_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_1_thumbnail.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_1_thumbnail.jpg.meta new file mode 100644 index 00000000..6207f4d3 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_1_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d89f9986-0922-4ab2-bd2f-f03dcd7aebe4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d89f9986-0922-4ab2-bd2f-f03dcd7aebe4@6c48a", + "displayName": "img_10021_1_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d89f9986-0922-4ab2-bd2f-f03dcd7aebe4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d89f9986-0922-4ab2-bd2f-f03dcd7aebe4@f9941", + "displayName": "img_10021_1_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d89f9986-0922-4ab2-bd2f-f03dcd7aebe4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d89f9986-0922-4ab2-bd2f-f03dcd7aebe4@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_1_thumbnail_blur.jpg b/assets/bundles/Girls/10021/img/img_10021_1_thumbnail_blur.jpg new file mode 100644 index 00000000..ce1d6e6e Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..48a72b66 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "55bae046-a92f-4e48-8a14-a770772168e5", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "55bae046-a92f-4e48-8a14-a770772168e5@6c48a", + "displayName": "img_10021_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "55bae046-a92f-4e48-8a14-a770772168e5", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "55bae046-a92f-4e48-8a14-a770772168e5@f9941", + "displayName": "img_10021_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "55bae046-a92f-4e48-8a14-a770772168e5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "55bae046-a92f-4e48-8a14-a770772168e5@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_2.png b/assets/bundles/Girls/10021/img/img_10021_2.png new file mode 100644 index 00000000..91876718 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_2.png differ diff --git a/assets/bundles/Girls/10021/img/img_10021_2.png.meta b/assets/bundles/Girls/10021/img/img_10021_2.png.meta new file mode 100644 index 00000000..246e3d07 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "57581d12-65dc-4735-8c54-8d0b89525ad7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "57581d12-65dc-4735-8c54-8d0b89525ad7@6c48a", + "displayName": "img_10021_2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "57581d12-65dc-4735-8c54-8d0b89525ad7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "57581d12-65dc-4735-8c54-8d0b89525ad7@f9941", + "displayName": "img_10021_2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "57581d12-65dc-4735-8c54-8d0b89525ad7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "57581d12-65dc-4735-8c54-8d0b89525ad7@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_2_thumbnail.jpg b/assets/bundles/Girls/10021/img/img_10021_2_thumbnail.jpg new file mode 100644 index 00000000..c01e3b20 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_2_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_2_thumbnail.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_2_thumbnail.jpg.meta new file mode 100644 index 00000000..51751745 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_2_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "977ce350-f9dc-4087-b2ec-073fe9a94e60", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "977ce350-f9dc-4087-b2ec-073fe9a94e60@6c48a", + "displayName": "img_10021_2_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "977ce350-f9dc-4087-b2ec-073fe9a94e60", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "977ce350-f9dc-4087-b2ec-073fe9a94e60@f9941", + "displayName": "img_10021_2_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "977ce350-f9dc-4087-b2ec-073fe9a94e60@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "977ce350-f9dc-4087-b2ec-073fe9a94e60@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_2_thumbnail_blur.jpg b/assets/bundles/Girls/10021/img/img_10021_2_thumbnail_blur.jpg new file mode 100644 index 00000000..bd5e52e1 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..37aab984 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e9f9addf-3283-4fbd-90a8-a1aa53319fa1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e9f9addf-3283-4fbd-90a8-a1aa53319fa1@6c48a", + "displayName": "img_10021_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e9f9addf-3283-4fbd-90a8-a1aa53319fa1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e9f9addf-3283-4fbd-90a8-a1aa53319fa1@f9941", + "displayName": "img_10021_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e9f9addf-3283-4fbd-90a8-a1aa53319fa1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e9f9addf-3283-4fbd-90a8-a1aa53319fa1@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_3.png b/assets/bundles/Girls/10021/img/img_10021_3.png new file mode 100644 index 00000000..a2c0835a Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_3.png differ diff --git a/assets/bundles/Girls/10021/img/img_10021_3.png.meta b/assets/bundles/Girls/10021/img/img_10021_3.png.meta new file mode 100644 index 00000000..83f70f3e --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "297b861c-5ed1-4d14-9c0f-3f536445f4cb", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "297b861c-5ed1-4d14-9c0f-3f536445f4cb@6c48a", + "displayName": "img_10021_3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "297b861c-5ed1-4d14-9c0f-3f536445f4cb", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "297b861c-5ed1-4d14-9c0f-3f536445f4cb@f9941", + "displayName": "img_10021_3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "297b861c-5ed1-4d14-9c0f-3f536445f4cb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "297b861c-5ed1-4d14-9c0f-3f536445f4cb@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_3_thumbnail.jpg b/assets/bundles/Girls/10021/img/img_10021_3_thumbnail.jpg new file mode 100644 index 00000000..bfa02cc0 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_3_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_3_thumbnail.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_3_thumbnail.jpg.meta new file mode 100644 index 00000000..0fd3d32c --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_3_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cddb81de-53d8-40ae-b05c-ea876d61dcf2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cddb81de-53d8-40ae-b05c-ea876d61dcf2@6c48a", + "displayName": "img_10021_3_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cddb81de-53d8-40ae-b05c-ea876d61dcf2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cddb81de-53d8-40ae-b05c-ea876d61dcf2@f9941", + "displayName": "img_10021_3_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cddb81de-53d8-40ae-b05c-ea876d61dcf2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cddb81de-53d8-40ae-b05c-ea876d61dcf2@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_3_thumbnail_blur.jpg b/assets/bundles/Girls/10021/img/img_10021_3_thumbnail_blur.jpg new file mode 100644 index 00000000..463d0443 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..213ba8df --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "252d59b9-8f30-4f61-9618-4fc31113dd74", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "252d59b9-8f30-4f61-9618-4fc31113dd74@6c48a", + "displayName": "img_10021_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "252d59b9-8f30-4f61-9618-4fc31113dd74", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "252d59b9-8f30-4f61-9618-4fc31113dd74@f9941", + "displayName": "img_10021_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "252d59b9-8f30-4f61-9618-4fc31113dd74@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "252d59b9-8f30-4f61-9618-4fc31113dd74@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_4.png b/assets/bundles/Girls/10021/img/img_10021_4.png new file mode 100644 index 00000000..63ed875a Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_4.png differ diff --git a/assets/bundles/Girls/10021/img/img_10021_4.png.meta b/assets/bundles/Girls/10021/img/img_10021_4.png.meta new file mode 100644 index 00000000..b353ad9d --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ba474461-7302-43fa-8350-7f8a19df58ae", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ba474461-7302-43fa-8350-7f8a19df58ae@6c48a", + "displayName": "img_10021_4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ba474461-7302-43fa-8350-7f8a19df58ae", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ba474461-7302-43fa-8350-7f8a19df58ae@f9941", + "displayName": "img_10021_4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ba474461-7302-43fa-8350-7f8a19df58ae@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ba474461-7302-43fa-8350-7f8a19df58ae@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_4_thumbnail.jpg b/assets/bundles/Girls/10021/img/img_10021_4_thumbnail.jpg new file mode 100644 index 00000000..1e5b722c Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_4_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_4_thumbnail.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_4_thumbnail.jpg.meta new file mode 100644 index 00000000..cabfdc58 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_4_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "61bd261e-98be-4b69-93d6-1593e34a2208", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "61bd261e-98be-4b69-93d6-1593e34a2208@6c48a", + "displayName": "img_10021_4_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "61bd261e-98be-4b69-93d6-1593e34a2208", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "61bd261e-98be-4b69-93d6-1593e34a2208@f9941", + "displayName": "img_10021_4_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "61bd261e-98be-4b69-93d6-1593e34a2208@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "61bd261e-98be-4b69-93d6-1593e34a2208@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_4_thumbnail_blur.jpg b/assets/bundles/Girls/10021/img/img_10021_4_thumbnail_blur.jpg new file mode 100644 index 00000000..bfc9a445 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..b337b66c --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9a942ed6-efb1-45f7-ab8d-35a33ec2135f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9a942ed6-efb1-45f7-ab8d-35a33ec2135f@6c48a", + "displayName": "img_10021_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9a942ed6-efb1-45f7-ab8d-35a33ec2135f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9a942ed6-efb1-45f7-ab8d-35a33ec2135f@f9941", + "displayName": "img_10021_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9a942ed6-efb1-45f7-ab8d-35a33ec2135f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9a942ed6-efb1-45f7-ab8d-35a33ec2135f@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_5.png b/assets/bundles/Girls/10021/img/img_10021_5.png new file mode 100644 index 00000000..d9c6e7e8 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_5.png differ diff --git a/assets/bundles/Girls/10021/img/img_10021_5.png.meta b/assets/bundles/Girls/10021/img/img_10021_5.png.meta new file mode 100644 index 00000000..071a11e3 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f547b3da-f6e7-4678-bcb2-5d9e5cadba7d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f547b3da-f6e7-4678-bcb2-5d9e5cadba7d@6c48a", + "displayName": "img_10021_5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f547b3da-f6e7-4678-bcb2-5d9e5cadba7d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f547b3da-f6e7-4678-bcb2-5d9e5cadba7d@f9941", + "displayName": "img_10021_5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f547b3da-f6e7-4678-bcb2-5d9e5cadba7d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f547b3da-f6e7-4678-bcb2-5d9e5cadba7d@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_5_thumbnail.jpg b/assets/bundles/Girls/10021/img/img_10021_5_thumbnail.jpg new file mode 100644 index 00000000..2d76780b Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_5_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_5_thumbnail.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_5_thumbnail.jpg.meta new file mode 100644 index 00000000..645cc327 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_5_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e1b4df3b-7505-4135-b581-c3d57edcbdb5", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e1b4df3b-7505-4135-b581-c3d57edcbdb5@6c48a", + "displayName": "img_10021_5_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e1b4df3b-7505-4135-b581-c3d57edcbdb5", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e1b4df3b-7505-4135-b581-c3d57edcbdb5@f9941", + "displayName": "img_10021_5_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e1b4df3b-7505-4135-b581-c3d57edcbdb5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e1b4df3b-7505-4135-b581-c3d57edcbdb5@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_5_thumbnail_blur.jpg b/assets/bundles/Girls/10021/img/img_10021_5_thumbnail_blur.jpg new file mode 100644 index 00000000..51dfe71a Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4e445a9a --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3aff891a-de9d-4d7c-96e5-5190e1f10e1d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3aff891a-de9d-4d7c-96e5-5190e1f10e1d@6c48a", + "displayName": "img_10021_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3aff891a-de9d-4d7c-96e5-5190e1f10e1d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3aff891a-de9d-4d7c-96e5-5190e1f10e1d@f9941", + "displayName": "img_10021_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3aff891a-de9d-4d7c-96e5-5190e1f10e1d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3aff891a-de9d-4d7c-96e5-5190e1f10e1d@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_6.png b/assets/bundles/Girls/10021/img/img_10021_6.png new file mode 100644 index 00000000..7d707160 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_6.png differ diff --git a/assets/bundles/Girls/10021/img/img_10021_6.png.meta b/assets/bundles/Girls/10021/img/img_10021_6.png.meta new file mode 100644 index 00000000..c85a1ce4 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c4d4d8e4-6119-401b-a828-ad4897093c6d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c4d4d8e4-6119-401b-a828-ad4897093c6d@6c48a", + "displayName": "img_10021_6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c4d4d8e4-6119-401b-a828-ad4897093c6d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c4d4d8e4-6119-401b-a828-ad4897093c6d@f9941", + "displayName": "img_10021_6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c4d4d8e4-6119-401b-a828-ad4897093c6d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c4d4d8e4-6119-401b-a828-ad4897093c6d@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_6_thumbnail.jpg b/assets/bundles/Girls/10021/img/img_10021_6_thumbnail.jpg new file mode 100644 index 00000000..731b9d91 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_6_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_6_thumbnail.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_6_thumbnail.jpg.meta new file mode 100644 index 00000000..63ad24e7 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_6_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7cccf9ba-9a1a-4222-b04f-daabe605a9b7", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7cccf9ba-9a1a-4222-b04f-daabe605a9b7@6c48a", + "displayName": "img_10021_6_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7cccf9ba-9a1a-4222-b04f-daabe605a9b7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7cccf9ba-9a1a-4222-b04f-daabe605a9b7@f9941", + "displayName": "img_10021_6_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7cccf9ba-9a1a-4222-b04f-daabe605a9b7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7cccf9ba-9a1a-4222-b04f-daabe605a9b7@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_6_thumbnail_blur.jpg b/assets/bundles/Girls/10021/img/img_10021_6_thumbnail_blur.jpg new file mode 100644 index 00000000..73b46c84 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..fd67ed0c --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5a4be34b-678e-4fcc-a046-dfe6756539e1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5a4be34b-678e-4fcc-a046-dfe6756539e1@6c48a", + "displayName": "img_10021_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5a4be34b-678e-4fcc-a046-dfe6756539e1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5a4be34b-678e-4fcc-a046-dfe6756539e1@f9941", + "displayName": "img_10021_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5a4be34b-678e-4fcc-a046-dfe6756539e1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5a4be34b-678e-4fcc-a046-dfe6756539e1@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_7.png b/assets/bundles/Girls/10021/img/img_10021_7.png new file mode 100644 index 00000000..6e640295 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_7.png differ diff --git a/assets/bundles/Girls/10021/img/img_10021_7.png.meta b/assets/bundles/Girls/10021/img/img_10021_7.png.meta new file mode 100644 index 00000000..274273ec --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e0356a28-3d15-4cf6-8f30-8bc6c29599f0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e0356a28-3d15-4cf6-8f30-8bc6c29599f0@6c48a", + "displayName": "img_10021_7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e0356a28-3d15-4cf6-8f30-8bc6c29599f0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e0356a28-3d15-4cf6-8f30-8bc6c29599f0@f9941", + "displayName": "img_10021_7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e0356a28-3d15-4cf6-8f30-8bc6c29599f0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e0356a28-3d15-4cf6-8f30-8bc6c29599f0@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_7_thumbnail.jpg b/assets/bundles/Girls/10021/img/img_10021_7_thumbnail.jpg new file mode 100644 index 00000000..ff41785b Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_7_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_7_thumbnail.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_7_thumbnail.jpg.meta new file mode 100644 index 00000000..06ac073e --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_7_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f5d50e62-7246-4811-8b78-0834b5287363", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f5d50e62-7246-4811-8b78-0834b5287363@6c48a", + "displayName": "img_10021_7_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f5d50e62-7246-4811-8b78-0834b5287363", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f5d50e62-7246-4811-8b78-0834b5287363@f9941", + "displayName": "img_10021_7_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f5d50e62-7246-4811-8b78-0834b5287363@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f5d50e62-7246-4811-8b78-0834b5287363@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_7_thumbnail_blur.jpg b/assets/bundles/Girls/10021/img/img_10021_7_thumbnail_blur.jpg new file mode 100644 index 00000000..f09a5f90 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..78a38515 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "452e8dc7-8516-4836-a0af-5a202445a303", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "452e8dc7-8516-4836-a0af-5a202445a303@6c48a", + "displayName": "img_10021_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "452e8dc7-8516-4836-a0af-5a202445a303", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "452e8dc7-8516-4836-a0af-5a202445a303@f9941", + "displayName": "img_10021_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "452e8dc7-8516-4836-a0af-5a202445a303@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "452e8dc7-8516-4836-a0af-5a202445a303@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_8.png b/assets/bundles/Girls/10021/img/img_10021_8.png new file mode 100644 index 00000000..f9799559 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_8.png differ diff --git a/assets/bundles/Girls/10021/img/img_10021_8.png.meta b/assets/bundles/Girls/10021/img/img_10021_8.png.meta new file mode 100644 index 00000000..8eff9a53 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "94d60f14-93f0-4a16-ae95-f89fc275df78", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "94d60f14-93f0-4a16-ae95-f89fc275df78@6c48a", + "displayName": "img_10021_8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "94d60f14-93f0-4a16-ae95-f89fc275df78", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "94d60f14-93f0-4a16-ae95-f89fc275df78@f9941", + "displayName": "img_10021_8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "94d60f14-93f0-4a16-ae95-f89fc275df78@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "94d60f14-93f0-4a16-ae95-f89fc275df78@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_8_thumbnail.jpg b/assets/bundles/Girls/10021/img/img_10021_8_thumbnail.jpg new file mode 100644 index 00000000..6dcb4ed3 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_8_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_8_thumbnail.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_8_thumbnail.jpg.meta new file mode 100644 index 00000000..4c4bd371 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_8_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7c3febf5-a078-41e4-b58c-3144a2af67ca", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7c3febf5-a078-41e4-b58c-3144a2af67ca@6c48a", + "displayName": "img_10021_8_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7c3febf5-a078-41e4-b58c-3144a2af67ca", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7c3febf5-a078-41e4-b58c-3144a2af67ca@f9941", + "displayName": "img_10021_8_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7c3febf5-a078-41e4-b58c-3144a2af67ca@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7c3febf5-a078-41e4-b58c-3144a2af67ca@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_8_thumbnail_blur.jpg b/assets/bundles/Girls/10021/img/img_10021_8_thumbnail_blur.jpg new file mode 100644 index 00000000..d9f28191 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..fb554c17 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f2678275-2a0c-4afb-86d5-8b71c83a3b62", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f2678275-2a0c-4afb-86d5-8b71c83a3b62@6c48a", + "displayName": "img_10021_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f2678275-2a0c-4afb-86d5-8b71c83a3b62", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f2678275-2a0c-4afb-86d5-8b71c83a3b62@f9941", + "displayName": "img_10021_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f2678275-2a0c-4afb-86d5-8b71c83a3b62@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f2678275-2a0c-4afb-86d5-8b71c83a3b62@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_9.png b/assets/bundles/Girls/10021/img/img_10021_9.png new file mode 100644 index 00000000..3ec575d1 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_9.png differ diff --git a/assets/bundles/Girls/10021/img/img_10021_9.png.meta b/assets/bundles/Girls/10021/img/img_10021_9.png.meta new file mode 100644 index 00000000..62784aa7 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cdb864af-800c-4379-a117-a84db3522ed8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cdb864af-800c-4379-a117-a84db3522ed8@6c48a", + "displayName": "img_10021_9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cdb864af-800c-4379-a117-a84db3522ed8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cdb864af-800c-4379-a117-a84db3522ed8@f9941", + "displayName": "img_10021_9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cdb864af-800c-4379-a117-a84db3522ed8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cdb864af-800c-4379-a117-a84db3522ed8@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_9_thumbnail.jpg b/assets/bundles/Girls/10021/img/img_10021_9_thumbnail.jpg new file mode 100644 index 00000000..f5155884 Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_9_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_9_thumbnail.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_9_thumbnail.jpg.meta new file mode 100644 index 00000000..56f4ac5a --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_9_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1c860e21-81af-467d-a43e-22eb15f884c3", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1c860e21-81af-467d-a43e-22eb15f884c3@6c48a", + "displayName": "img_10021_9_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1c860e21-81af-467d-a43e-22eb15f884c3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1c860e21-81af-467d-a43e-22eb15f884c3@f9941", + "displayName": "img_10021_9_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1c860e21-81af-467d-a43e-22eb15f884c3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1c860e21-81af-467d-a43e-22eb15f884c3@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/img/img_10021_9_thumbnail_blur.jpg b/assets/bundles/Girls/10021/img/img_10021_9_thumbnail_blur.jpg new file mode 100644 index 00000000..a7e1e83d Binary files /dev/null and b/assets/bundles/Girls/10021/img/img_10021_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/img/img_10021_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/img/img_10021_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e7a826a1 --- /dev/null +++ b/assets/bundles/Girls/10021/img/img_10021_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "91b210d3-91ad-40e2-8f5d-7093c01d503b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "91b210d3-91ad-40e2-8f5d-7093c01d503b@6c48a", + "displayName": "img_10021_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "91b210d3-91ad-40e2-8f5d-7093c01d503b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "91b210d3-91ad-40e2-8f5d-7093c01d503b@f9941", + "displayName": "img_10021_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "91b210d3-91ad-40e2-8f5d-7093c01d503b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "91b210d3-91ad-40e2-8f5d-7093c01d503b@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/video/video_10021_1.mp4 b/assets/bundles/Girls/10021/video/video_10021_1.mp4 new file mode 100644 index 00000000..6aba887a Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_1.mp4 differ diff --git a/assets/bundles/Girls/10021/video/video_10021_1.mp4.meta b/assets/bundles/Girls/10021/video/video_10021_1.mp4.meta new file mode 100644 index 00000000..df3848c2 --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_1.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "70c5042c-7cda-4c4d-be08-418da1155cf6", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10021/video/video_10021_1_thumbnail.jpg b/assets/bundles/Girls/10021/video/video_10021_1_thumbnail.jpg new file mode 100644 index 00000000..7a2e51ae Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_1_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/video/video_10021_1_thumbnail.jpg.meta b/assets/bundles/Girls/10021/video/video_10021_1_thumbnail.jpg.meta new file mode 100644 index 00000000..1ec9df92 --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_1_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "97bc9575-d800-4d83-b767-d01f453d531f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "97bc9575-d800-4d83-b767-d01f453d531f@6c48a", + "displayName": "video_10021_1_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "97bc9575-d800-4d83-b767-d01f453d531f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "97bc9575-d800-4d83-b767-d01f453d531f@f9941", + "displayName": "video_10021_1_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97bc9575-d800-4d83-b767-d01f453d531f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "97bc9575-d800-4d83-b767-d01f453d531f@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/video/video_10021_1_thumbnail_blur.jpg b/assets/bundles/Girls/10021/video/video_10021_1_thumbnail_blur.jpg new file mode 100644 index 00000000..9235e089 Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/video/video_10021_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/video/video_10021_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3d8233a9 --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8dc88994-f98d-41dd-847e-f7dc7db8c220", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8dc88994-f98d-41dd-847e-f7dc7db8c220@6c48a", + "displayName": "video_10021_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8dc88994-f98d-41dd-847e-f7dc7db8c220", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8dc88994-f98d-41dd-847e-f7dc7db8c220@f9941", + "displayName": "video_10021_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8dc88994-f98d-41dd-847e-f7dc7db8c220@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8dc88994-f98d-41dd-847e-f7dc7db8c220@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/video/video_10021_2.mp4 b/assets/bundles/Girls/10021/video/video_10021_2.mp4 new file mode 100644 index 00000000..8459832f Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_2.mp4 differ diff --git a/assets/bundles/Girls/10021/video/video_10021_2.mp4.meta b/assets/bundles/Girls/10021/video/video_10021_2.mp4.meta new file mode 100644 index 00000000..61c8e9f6 --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_2.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "ff9946ef-2dde-4e22-8dbb-c3f551342de9", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10021/video/video_10021_2_thumbnail.jpg b/assets/bundles/Girls/10021/video/video_10021_2_thumbnail.jpg new file mode 100644 index 00000000..06827f7c Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_2_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/video/video_10021_2_thumbnail.jpg.meta b/assets/bundles/Girls/10021/video/video_10021_2_thumbnail.jpg.meta new file mode 100644 index 00000000..ad06c3a3 --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_2_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "24ca3cf2-4e7c-4a4f-bb7e-b2fb862d7abe", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "24ca3cf2-4e7c-4a4f-bb7e-b2fb862d7abe@6c48a", + "displayName": "video_10021_2_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "24ca3cf2-4e7c-4a4f-bb7e-b2fb862d7abe", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "24ca3cf2-4e7c-4a4f-bb7e-b2fb862d7abe@f9941", + "displayName": "video_10021_2_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "24ca3cf2-4e7c-4a4f-bb7e-b2fb862d7abe@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "24ca3cf2-4e7c-4a4f-bb7e-b2fb862d7abe@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/video/video_10021_2_thumbnail_blur.jpg b/assets/bundles/Girls/10021/video/video_10021_2_thumbnail_blur.jpg new file mode 100644 index 00000000..91c5eec7 Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/video/video_10021_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/video/video_10021_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..817774be --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c1afcae3-07b7-4079-992d-10d7cf362148", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c1afcae3-07b7-4079-992d-10d7cf362148@6c48a", + "displayName": "video_10021_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c1afcae3-07b7-4079-992d-10d7cf362148", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c1afcae3-07b7-4079-992d-10d7cf362148@f9941", + "displayName": "video_10021_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c1afcae3-07b7-4079-992d-10d7cf362148@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c1afcae3-07b7-4079-992d-10d7cf362148@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/video/video_10021_3.mp4 b/assets/bundles/Girls/10021/video/video_10021_3.mp4 new file mode 100644 index 00000000..03e0e95a Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_3.mp4 differ diff --git a/assets/bundles/Girls/10021/video/video_10021_3.mp4.meta b/assets/bundles/Girls/10021/video/video_10021_3.mp4.meta new file mode 100644 index 00000000..0edf1206 --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_3.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "0771a773-d81e-49c1-b365-e85668e51b2d", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10021/video/video_10021_3_thumbnail.jpg b/assets/bundles/Girls/10021/video/video_10021_3_thumbnail.jpg new file mode 100644 index 00000000..d05234a5 Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_3_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/video/video_10021_3_thumbnail.jpg.meta b/assets/bundles/Girls/10021/video/video_10021_3_thumbnail.jpg.meta new file mode 100644 index 00000000..632c9ab2 --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_3_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e10bbd28-569a-47fd-b022-0da5a653479e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e10bbd28-569a-47fd-b022-0da5a653479e@6c48a", + "displayName": "video_10021_3_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e10bbd28-569a-47fd-b022-0da5a653479e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e10bbd28-569a-47fd-b022-0da5a653479e@f9941", + "displayName": "video_10021_3_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e10bbd28-569a-47fd-b022-0da5a653479e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e10bbd28-569a-47fd-b022-0da5a653479e@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/video/video_10021_3_thumbnail_blur.jpg b/assets/bundles/Girls/10021/video/video_10021_3_thumbnail_blur.jpg new file mode 100644 index 00000000..e11c7c9a Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/video/video_10021_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/video/video_10021_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..48d7a9c3 --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f8a6c5ee-78f9-45e9-8885-0f2be0ba61fa", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f8a6c5ee-78f9-45e9-8885-0f2be0ba61fa@6c48a", + "displayName": "video_10021_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f8a6c5ee-78f9-45e9-8885-0f2be0ba61fa", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f8a6c5ee-78f9-45e9-8885-0f2be0ba61fa@f9941", + "displayName": "video_10021_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f8a6c5ee-78f9-45e9-8885-0f2be0ba61fa@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f8a6c5ee-78f9-45e9-8885-0f2be0ba61fa@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/video/video_10021_4.mp4 b/assets/bundles/Girls/10021/video/video_10021_4.mp4 new file mode 100644 index 00000000..44c1c20f Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_4.mp4 differ diff --git a/assets/bundles/Girls/10021/video/video_10021_4.mp4.meta b/assets/bundles/Girls/10021/video/video_10021_4.mp4.meta new file mode 100644 index 00000000..168147b5 --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_4.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "30500bcd-20c5-4776-802f-59b9ad661f0c", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10021/video/video_10021_4_thumbnail.jpg b/assets/bundles/Girls/10021/video/video_10021_4_thumbnail.jpg new file mode 100644 index 00000000..c7cfdd13 Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_4_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/video/video_10021_4_thumbnail.jpg.meta b/assets/bundles/Girls/10021/video/video_10021_4_thumbnail.jpg.meta new file mode 100644 index 00000000..703b73f8 --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_4_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "168e7f9f-1358-4726-890a-29b7ae384384", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "168e7f9f-1358-4726-890a-29b7ae384384@6c48a", + "displayName": "video_10021_4_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "168e7f9f-1358-4726-890a-29b7ae384384", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "168e7f9f-1358-4726-890a-29b7ae384384@f9941", + "displayName": "video_10021_4_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "168e7f9f-1358-4726-890a-29b7ae384384@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "168e7f9f-1358-4726-890a-29b7ae384384@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/video/video_10021_4_thumbnail_blur.jpg b/assets/bundles/Girls/10021/video/video_10021_4_thumbnail_blur.jpg new file mode 100644 index 00000000..163a5c5d Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/video/video_10021_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/video/video_10021_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ca06f7f2 --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e2cbff43-6729-400d-930a-b068b42d76b6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e2cbff43-6729-400d-930a-b068b42d76b6@6c48a", + "displayName": "video_10021_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e2cbff43-6729-400d-930a-b068b42d76b6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e2cbff43-6729-400d-930a-b068b42d76b6@f9941", + "displayName": "video_10021_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e2cbff43-6729-400d-930a-b068b42d76b6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e2cbff43-6729-400d-930a-b068b42d76b6@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/video/video_10021_5.mp4 b/assets/bundles/Girls/10021/video/video_10021_5.mp4 new file mode 100644 index 00000000..7acd26b9 Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_5.mp4 differ diff --git a/assets/bundles/Girls/10021/video/video_10021_5.mp4.meta b/assets/bundles/Girls/10021/video/video_10021_5.mp4.meta new file mode 100644 index 00000000..90fb7890 --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_5.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "54902f25-31f7-4f79-b54a-617c8e1cb791", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10021/video/video_10021_5_thumbnail.jpg b/assets/bundles/Girls/10021/video/video_10021_5_thumbnail.jpg new file mode 100644 index 00000000..2df5ebc6 Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_5_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/video/video_10021_5_thumbnail.jpg.meta b/assets/bundles/Girls/10021/video/video_10021_5_thumbnail.jpg.meta new file mode 100644 index 00000000..24d88e8c --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_5_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2ac3fe42-566d-4848-a008-3d37a8352115", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2ac3fe42-566d-4848-a008-3d37a8352115@6c48a", + "displayName": "video_10021_5_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2ac3fe42-566d-4848-a008-3d37a8352115", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2ac3fe42-566d-4848-a008-3d37a8352115@f9941", + "displayName": "video_10021_5_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2ac3fe42-566d-4848-a008-3d37a8352115@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2ac3fe42-566d-4848-a008-3d37a8352115@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/video/video_10021_5_thumbnail_blur.jpg b/assets/bundles/Girls/10021/video/video_10021_5_thumbnail_blur.jpg new file mode 100644 index 00000000..efeb8413 Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/video/video_10021_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/video/video_10021_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..106c84cc --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9b953ecc-15ae-4661-8436-42e937d38bb4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9b953ecc-15ae-4661-8436-42e937d38bb4@6c48a", + "displayName": "video_10021_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9b953ecc-15ae-4661-8436-42e937d38bb4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9b953ecc-15ae-4661-8436-42e937d38bb4@f9941", + "displayName": "video_10021_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9b953ecc-15ae-4661-8436-42e937d38bb4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9b953ecc-15ae-4661-8436-42e937d38bb4@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/video/video_10021_6.mp4 b/assets/bundles/Girls/10021/video/video_10021_6.mp4 new file mode 100644 index 00000000..1fc58276 Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_6.mp4 differ diff --git a/assets/bundles/Girls/10021/video/video_10021_6.mp4.meta b/assets/bundles/Girls/10021/video/video_10021_6.mp4.meta new file mode 100644 index 00000000..ba063d66 --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_6.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "8028ba58-4cc1-40a6-ac02-ae7fe7f2f15e", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10021/video/video_10021_6_thumbnail.jpg b/assets/bundles/Girls/10021/video/video_10021_6_thumbnail.jpg new file mode 100644 index 00000000..70eb951e Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_6_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10021/video/video_10021_6_thumbnail.jpg.meta b/assets/bundles/Girls/10021/video/video_10021_6_thumbnail.jpg.meta new file mode 100644 index 00000000..fa885c33 --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_6_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b2d63c68-1da9-4814-839f-7696baba7b2a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b2d63c68-1da9-4814-839f-7696baba7b2a@6c48a", + "displayName": "video_10021_6_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b2d63c68-1da9-4814-839f-7696baba7b2a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b2d63c68-1da9-4814-839f-7696baba7b2a@f9941", + "displayName": "video_10021_6_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b2d63c68-1da9-4814-839f-7696baba7b2a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b2d63c68-1da9-4814-839f-7696baba7b2a@6c48a" + } +} diff --git a/assets/bundles/Girls/10021/video/video_10021_6_thumbnail_blur.jpg b/assets/bundles/Girls/10021/video/video_10021_6_thumbnail_blur.jpg new file mode 100644 index 00000000..1238e656 Binary files /dev/null and b/assets/bundles/Girls/10021/video/video_10021_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10021/video/video_10021_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10021/video/video_10021_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..77db9fee --- /dev/null +++ b/assets/bundles/Girls/10021/video/video_10021_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1eff3e34-0004-473f-91ff-b771e9dfe021", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1eff3e34-0004-473f-91ff-b771e9dfe021@6c48a", + "displayName": "video_10021_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1eff3e34-0004-473f-91ff-b771e9dfe021", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1eff3e34-0004-473f-91ff-b771e9dfe021@f9941", + "displayName": "video_10021_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1eff3e34-0004-473f-91ff-b771e9dfe021@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1eff3e34-0004-473f-91ff-b771e9dfe021@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_10_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_10_thumbnail_blur.jpg new file mode 100644 index 00000000..6bff6bf6 Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..42c9c02f --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7e9adef1-6b3b-4ca1-8480-e3564ed74eb6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7e9adef1-6b3b-4ca1-8480-e3564ed74eb6@6c48a", + "displayName": "img_10022_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7e9adef1-6b3b-4ca1-8480-e3564ed74eb6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7e9adef1-6b3b-4ca1-8480-e3564ed74eb6@f9941", + "displayName": "img_10022_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7e9adef1-6b3b-4ca1-8480-e3564ed74eb6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7e9adef1-6b3b-4ca1-8480-e3564ed74eb6@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_11_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_11_thumbnail_blur.jpg new file mode 100644 index 00000000..6e6ebaac Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..78c01f53 --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "aa65ec63-3ba0-4de1-b331-424f79dfb80e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "aa65ec63-3ba0-4de1-b331-424f79dfb80e@6c48a", + "displayName": "img_10022_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "aa65ec63-3ba0-4de1-b331-424f79dfb80e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "aa65ec63-3ba0-4de1-b331-424f79dfb80e@f9941", + "displayName": "img_10022_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aa65ec63-3ba0-4de1-b331-424f79dfb80e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "aa65ec63-3ba0-4de1-b331-424f79dfb80e@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_12_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_12_thumbnail_blur.jpg new file mode 100644 index 00000000..9f7ca90f Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5770f987 --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ed7257c4-a6fc-4385-9b04-710d072a375c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ed7257c4-a6fc-4385-9b04-710d072a375c@6c48a", + "displayName": "img_10022_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ed7257c4-a6fc-4385-9b04-710d072a375c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ed7257c4-a6fc-4385-9b04-710d072a375c@f9941", + "displayName": "img_10022_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ed7257c4-a6fc-4385-9b04-710d072a375c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ed7257c4-a6fc-4385-9b04-710d072a375c@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_13_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_13_thumbnail_blur.jpg new file mode 100644 index 00000000..853a6bfc Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..848dab19 --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c69bc96a-8c48-4941-abc5-181c8c6801c2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c69bc96a-8c48-4941-abc5-181c8c6801c2@6c48a", + "displayName": "img_10022_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c69bc96a-8c48-4941-abc5-181c8c6801c2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c69bc96a-8c48-4941-abc5-181c8c6801c2@f9941", + "displayName": "img_10022_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c69bc96a-8c48-4941-abc5-181c8c6801c2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c69bc96a-8c48-4941-abc5-181c8c6801c2@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_14_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_14_thumbnail_blur.jpg new file mode 100644 index 00000000..6a96ad51 Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0564b3d7 --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "46d4d6ac-96ea-4757-a121-76009af7d810", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "46d4d6ac-96ea-4757-a121-76009af7d810@6c48a", + "displayName": "img_10022_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "46d4d6ac-96ea-4757-a121-76009af7d810", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "46d4d6ac-96ea-4757-a121-76009af7d810@f9941", + "displayName": "img_10022_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "46d4d6ac-96ea-4757-a121-76009af7d810@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "46d4d6ac-96ea-4757-a121-76009af7d810@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_15_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_15_thumbnail_blur.jpg new file mode 100644 index 00000000..ebcaacb3 Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ce1b1feb --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b8265d50-8b0f-4770-9317-769008628700", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b8265d50-8b0f-4770-9317-769008628700@6c48a", + "displayName": "img_10022_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b8265d50-8b0f-4770-9317-769008628700", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b8265d50-8b0f-4770-9317-769008628700@f9941", + "displayName": "img_10022_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b8265d50-8b0f-4770-9317-769008628700@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b8265d50-8b0f-4770-9317-769008628700@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_16_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_16_thumbnail_blur.jpg new file mode 100644 index 00000000..3bc30eb6 Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f38c7e25 --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "864fd2f4-a030-424e-897e-c3e8b89b3906", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "864fd2f4-a030-424e-897e-c3e8b89b3906@6c48a", + "displayName": "img_10022_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "864fd2f4-a030-424e-897e-c3e8b89b3906", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "864fd2f4-a030-424e-897e-c3e8b89b3906@f9941", + "displayName": "img_10022_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "864fd2f4-a030-424e-897e-c3e8b89b3906@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "864fd2f4-a030-424e-897e-c3e8b89b3906@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_17_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_17_thumbnail_blur.jpg new file mode 100644 index 00000000..d40c141d Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5a9e9f36 --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "603e802e-c436-4139-9d5f-663ae7a4ecbd", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "603e802e-c436-4139-9d5f-663ae7a4ecbd@6c48a", + "displayName": "img_10022_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "603e802e-c436-4139-9d5f-663ae7a4ecbd", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "603e802e-c436-4139-9d5f-663ae7a4ecbd@f9941", + "displayName": "img_10022_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "603e802e-c436-4139-9d5f-663ae7a4ecbd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "603e802e-c436-4139-9d5f-663ae7a4ecbd@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_1_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_1_thumbnail_blur.jpg new file mode 100644 index 00000000..8225203f Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9c82b9ca --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5fd9bb31-ea74-4134-b6ec-5d2bee626b06", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5fd9bb31-ea74-4134-b6ec-5d2bee626b06@6c48a", + "displayName": "img_10022_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5fd9bb31-ea74-4134-b6ec-5d2bee626b06", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5fd9bb31-ea74-4134-b6ec-5d2bee626b06@f9941", + "displayName": "img_10022_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5fd9bb31-ea74-4134-b6ec-5d2bee626b06@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5fd9bb31-ea74-4134-b6ec-5d2bee626b06@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_2_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_2_thumbnail_blur.jpg new file mode 100644 index 00000000..f3a475f1 Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9a9fd19d --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2229cd52-5d6e-466f-b18c-faf3dd0df1ff", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2229cd52-5d6e-466f-b18c-faf3dd0df1ff@6c48a", + "displayName": "img_10022_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2229cd52-5d6e-466f-b18c-faf3dd0df1ff", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2229cd52-5d6e-466f-b18c-faf3dd0df1ff@f9941", + "displayName": "img_10022_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2229cd52-5d6e-466f-b18c-faf3dd0df1ff@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2229cd52-5d6e-466f-b18c-faf3dd0df1ff@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_3_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_3_thumbnail_blur.jpg new file mode 100644 index 00000000..c515e5a7 Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..af27fcba --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "332e87b0-c3dd-4f7b-8750-9c93cad72705", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "332e87b0-c3dd-4f7b-8750-9c93cad72705@6c48a", + "displayName": "img_10022_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "332e87b0-c3dd-4f7b-8750-9c93cad72705", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "332e87b0-c3dd-4f7b-8750-9c93cad72705@f9941", + "displayName": "img_10022_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "332e87b0-c3dd-4f7b-8750-9c93cad72705@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "332e87b0-c3dd-4f7b-8750-9c93cad72705@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_4_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_4_thumbnail_blur.jpg new file mode 100644 index 00000000..f51974dc Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..85c43e8b --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "805bc6cb-9e2f-453a-8b6c-14b7d40f6859", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "805bc6cb-9e2f-453a-8b6c-14b7d40f6859@6c48a", + "displayName": "img_10022_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "805bc6cb-9e2f-453a-8b6c-14b7d40f6859", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "805bc6cb-9e2f-453a-8b6c-14b7d40f6859@f9941", + "displayName": "img_10022_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "805bc6cb-9e2f-453a-8b6c-14b7d40f6859@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "805bc6cb-9e2f-453a-8b6c-14b7d40f6859@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_5_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_5_thumbnail_blur.jpg new file mode 100644 index 00000000..b9143e91 Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..05edd4e2 --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "773204a6-0941-4653-a074-45a8e823c097", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "773204a6-0941-4653-a074-45a8e823c097@6c48a", + "displayName": "img_10022_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "773204a6-0941-4653-a074-45a8e823c097", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "773204a6-0941-4653-a074-45a8e823c097@f9941", + "displayName": "img_10022_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "773204a6-0941-4653-a074-45a8e823c097@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "773204a6-0941-4653-a074-45a8e823c097@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_6_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_6_thumbnail_blur.jpg new file mode 100644 index 00000000..383aaecf Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..56d5959f --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a88b5498-81f5-4b07-8702-aee202e8e135", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a88b5498-81f5-4b07-8702-aee202e8e135@6c48a", + "displayName": "img_10022_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a88b5498-81f5-4b07-8702-aee202e8e135", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a88b5498-81f5-4b07-8702-aee202e8e135@f9941", + "displayName": "img_10022_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a88b5498-81f5-4b07-8702-aee202e8e135@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a88b5498-81f5-4b07-8702-aee202e8e135@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_7_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_7_thumbnail_blur.jpg new file mode 100644 index 00000000..8cc765a1 Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4f2ba541 --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7c922dfd-2985-49bb-a330-fd2251dd5dd2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7c922dfd-2985-49bb-a330-fd2251dd5dd2@6c48a", + "displayName": "img_10022_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7c922dfd-2985-49bb-a330-fd2251dd5dd2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7c922dfd-2985-49bb-a330-fd2251dd5dd2@f9941", + "displayName": "img_10022_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7c922dfd-2985-49bb-a330-fd2251dd5dd2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7c922dfd-2985-49bb-a330-fd2251dd5dd2@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_8_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_8_thumbnail_blur.jpg new file mode 100644 index 00000000..3b16bff0 Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..fa34192b --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "08f083c7-eced-4650-995d-1b7319c9c14d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "08f083c7-eced-4650-995d-1b7319c9c14d@6c48a", + "displayName": "img_10022_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "08f083c7-eced-4650-995d-1b7319c9c14d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "08f083c7-eced-4650-995d-1b7319c9c14d@f9941", + "displayName": "img_10022_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "08f083c7-eced-4650-995d-1b7319c9c14d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "08f083c7-eced-4650-995d-1b7319c9c14d@6c48a" + } +} diff --git a/assets/bundles/Girls/10022/img/img_10022_9_thumbnail_blur.jpg b/assets/bundles/Girls/10022/img/img_10022_9_thumbnail_blur.jpg new file mode 100644 index 00000000..d4e664de Binary files /dev/null and b/assets/bundles/Girls/10022/img/img_10022_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10022/img/img_10022_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10022/img/img_10022_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..58fef6b8 --- /dev/null +++ b/assets/bundles/Girls/10022/img/img_10022_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cf5e4276-dbf4-4ddd-9c15-ccb0e7ce5e45", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cf5e4276-dbf4-4ddd-9c15-ccb0e7ce5e45@6c48a", + "displayName": "img_10022_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cf5e4276-dbf4-4ddd-9c15-ccb0e7ce5e45", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cf5e4276-dbf4-4ddd-9c15-ccb0e7ce5e45@f9941", + "displayName": "img_10022_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cf5e4276-dbf4-4ddd-9c15-ccb0e7ce5e45@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cf5e4276-dbf4-4ddd-9c15-ccb0e7ce5e45@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_10_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_10_thumbnail_blur.jpg new file mode 100644 index 00000000..b8efa06a Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..dbaba86a --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dd361040-21d0-4abb-b013-2af18eff1145", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dd361040-21d0-4abb-b013-2af18eff1145@6c48a", + "displayName": "img_10023_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dd361040-21d0-4abb-b013-2af18eff1145", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "dd361040-21d0-4abb-b013-2af18eff1145@f9941", + "displayName": "img_10023_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dd361040-21d0-4abb-b013-2af18eff1145@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dd361040-21d0-4abb-b013-2af18eff1145@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_11_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_11_thumbnail_blur.jpg new file mode 100644 index 00000000..bce5376f Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7ce1c7c0 --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2caf16aa-06a0-4d99-ae15-0017073fc3e9", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2caf16aa-06a0-4d99-ae15-0017073fc3e9@6c48a", + "displayName": "img_10023_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2caf16aa-06a0-4d99-ae15-0017073fc3e9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2caf16aa-06a0-4d99-ae15-0017073fc3e9@f9941", + "displayName": "img_10023_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2caf16aa-06a0-4d99-ae15-0017073fc3e9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2caf16aa-06a0-4d99-ae15-0017073fc3e9@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_12_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_12_thumbnail_blur.jpg new file mode 100644 index 00000000..b6667777 Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..2c00b118 --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "faf31165-e89e-4af6-8f18-167ad9d9ed09", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "faf31165-e89e-4af6-8f18-167ad9d9ed09@6c48a", + "displayName": "img_10023_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "faf31165-e89e-4af6-8f18-167ad9d9ed09", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "faf31165-e89e-4af6-8f18-167ad9d9ed09@f9941", + "displayName": "img_10023_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "faf31165-e89e-4af6-8f18-167ad9d9ed09@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "faf31165-e89e-4af6-8f18-167ad9d9ed09@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_13_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_13_thumbnail_blur.jpg new file mode 100644 index 00000000..44aec76e Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7364fb76 --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6e23ca0a-18c4-4abb-8f04-b6cd7806283a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6e23ca0a-18c4-4abb-8f04-b6cd7806283a@6c48a", + "displayName": "img_10023_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6e23ca0a-18c4-4abb-8f04-b6cd7806283a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6e23ca0a-18c4-4abb-8f04-b6cd7806283a@f9941", + "displayName": "img_10023_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6e23ca0a-18c4-4abb-8f04-b6cd7806283a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6e23ca0a-18c4-4abb-8f04-b6cd7806283a@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_14_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_14_thumbnail_blur.jpg new file mode 100644 index 00000000..805ea912 Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ddbf7267 --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "13edb7af-e1c4-41d2-b39a-faf02fdcd46e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "13edb7af-e1c4-41d2-b39a-faf02fdcd46e@6c48a", + "displayName": "img_10023_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "13edb7af-e1c4-41d2-b39a-faf02fdcd46e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "13edb7af-e1c4-41d2-b39a-faf02fdcd46e@f9941", + "displayName": "img_10023_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 157, + "rawWidth": 90, + "rawHeight": 157, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -78.5, + 0, + 45, + -78.5, + 0, + -45, + 78.5, + 0, + 45, + 78.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 157, + 90, + 157, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -78.5, + 0 + ], + "maxPos": [ + 45, + 78.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "13edb7af-e1c4-41d2-b39a-faf02fdcd46e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "13edb7af-e1c4-41d2-b39a-faf02fdcd46e@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_15_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_15_thumbnail_blur.jpg new file mode 100644 index 00000000..783ec14e Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..dedefe04 --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bd166720-6ea4-4d8a-bde2-ac37f1e01aa7", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bd166720-6ea4-4d8a-bde2-ac37f1e01aa7@6c48a", + "displayName": "img_10023_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bd166720-6ea4-4d8a-bde2-ac37f1e01aa7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "bd166720-6ea4-4d8a-bde2-ac37f1e01aa7@f9941", + "displayName": "img_10023_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bd166720-6ea4-4d8a-bde2-ac37f1e01aa7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bd166720-6ea4-4d8a-bde2-ac37f1e01aa7@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_16_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_16_thumbnail_blur.jpg new file mode 100644 index 00000000..e8bd9c96 Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3bb5bfcc --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "04ebfcca-d103-42dc-bc78-84c86419c502", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "04ebfcca-d103-42dc-bc78-84c86419c502@6c48a", + "displayName": "img_10023_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "04ebfcca-d103-42dc-bc78-84c86419c502", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "04ebfcca-d103-42dc-bc78-84c86419c502@f9941", + "displayName": "img_10023_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "04ebfcca-d103-42dc-bc78-84c86419c502@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "04ebfcca-d103-42dc-bc78-84c86419c502@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_17_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_17_thumbnail_blur.jpg new file mode 100644 index 00000000..c0f313cd Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f1bc5f23 --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "01284378-9182-4230-9a76-029a9864c930", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "01284378-9182-4230-9a76-029a9864c930@6c48a", + "displayName": "img_10023_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "01284378-9182-4230-9a76-029a9864c930", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "01284378-9182-4230-9a76-029a9864c930@f9941", + "displayName": "img_10023_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "01284378-9182-4230-9a76-029a9864c930@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "01284378-9182-4230-9a76-029a9864c930@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_18_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_18_thumbnail_blur.jpg new file mode 100644 index 00000000..e3aeb7b4 Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_18_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_18_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_18_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..02e6e822 --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_18_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e573a12c-debc-4adc-bd53-946719247c26", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e573a12c-debc-4adc-bd53-946719247c26@6c48a", + "displayName": "img_10023_18_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e573a12c-debc-4adc-bd53-946719247c26", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e573a12c-debc-4adc-bd53-946719247c26@f9941", + "displayName": "img_10023_18_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e573a12c-debc-4adc-bd53-946719247c26@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e573a12c-debc-4adc-bd53-946719247c26@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_19_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_19_thumbnail_blur.jpg new file mode 100644 index 00000000..f8d6e545 Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_19_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_19_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_19_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..dbcbf408 --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_19_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4caf6b64-037e-4e5b-992b-d156a27ce368", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4caf6b64-037e-4e5b-992b-d156a27ce368@6c48a", + "displayName": "img_10023_19_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4caf6b64-037e-4e5b-992b-d156a27ce368", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4caf6b64-037e-4e5b-992b-d156a27ce368@f9941", + "displayName": "img_10023_19_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4caf6b64-037e-4e5b-992b-d156a27ce368@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4caf6b64-037e-4e5b-992b-d156a27ce368@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_1_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_1_thumbnail_blur.jpg new file mode 100644 index 00000000..0e7ce7cc Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c2d06d0c --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5697f889-afc9-41fc-92ea-0b3495a98a6a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5697f889-afc9-41fc-92ea-0b3495a98a6a@6c48a", + "displayName": "img_10023_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5697f889-afc9-41fc-92ea-0b3495a98a6a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5697f889-afc9-41fc-92ea-0b3495a98a6a@f9941", + "displayName": "img_10023_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5697f889-afc9-41fc-92ea-0b3495a98a6a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5697f889-afc9-41fc-92ea-0b3495a98a6a@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_20_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_20_thumbnail_blur.jpg new file mode 100644 index 00000000..4babdbce Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_20_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_20_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_20_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..14c31ca4 --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_20_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "63307423-8a83-418a-bfac-b757ea1d4c9b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "63307423-8a83-418a-bfac-b757ea1d4c9b@6c48a", + "displayName": "img_10023_20_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "63307423-8a83-418a-bfac-b757ea1d4c9b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "63307423-8a83-418a-bfac-b757ea1d4c9b@f9941", + "displayName": "img_10023_20_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "63307423-8a83-418a-bfac-b757ea1d4c9b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "63307423-8a83-418a-bfac-b757ea1d4c9b@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_21_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_21_thumbnail_blur.jpg new file mode 100644 index 00000000..0cdea17c Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_21_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_21_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_21_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8b32c606 --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_21_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "07605a75-2bea-4171-876c-9074714dc738", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "07605a75-2bea-4171-876c-9074714dc738@6c48a", + "displayName": "img_10023_21_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "07605a75-2bea-4171-876c-9074714dc738", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "07605a75-2bea-4171-876c-9074714dc738@f9941", + "displayName": "img_10023_21_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "07605a75-2bea-4171-876c-9074714dc738@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "07605a75-2bea-4171-876c-9074714dc738@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_22_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_22_thumbnail_blur.jpg new file mode 100644 index 00000000..710a36f8 Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_22_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_22_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_22_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..61fef658 --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_22_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "82d26f20-35c4-4018-b53d-7857c7ac3d59", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "82d26f20-35c4-4018-b53d-7857c7ac3d59@6c48a", + "displayName": "img_10023_22_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "82d26f20-35c4-4018-b53d-7857c7ac3d59", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "82d26f20-35c4-4018-b53d-7857c7ac3d59@f9941", + "displayName": "img_10023_22_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "82d26f20-35c4-4018-b53d-7857c7ac3d59@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "82d26f20-35c4-4018-b53d-7857c7ac3d59@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_2_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_2_thumbnail_blur.jpg new file mode 100644 index 00000000..fcc5bc45 Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a42ff35b --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "72e4b4d7-ce4f-471a-8d7c-48ae6b3f2b97", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "72e4b4d7-ce4f-471a-8d7c-48ae6b3f2b97@6c48a", + "displayName": "img_10023_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "72e4b4d7-ce4f-471a-8d7c-48ae6b3f2b97", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "72e4b4d7-ce4f-471a-8d7c-48ae6b3f2b97@f9941", + "displayName": "img_10023_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "72e4b4d7-ce4f-471a-8d7c-48ae6b3f2b97@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "72e4b4d7-ce4f-471a-8d7c-48ae6b3f2b97@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_3_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_3_thumbnail_blur.jpg new file mode 100644 index 00000000..f10bb65f Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7a3670cb --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a3726b8f-bba5-4851-b223-0f64db52a871", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a3726b8f-bba5-4851-b223-0f64db52a871@6c48a", + "displayName": "img_10023_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a3726b8f-bba5-4851-b223-0f64db52a871", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a3726b8f-bba5-4851-b223-0f64db52a871@f9941", + "displayName": "img_10023_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a3726b8f-bba5-4851-b223-0f64db52a871@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a3726b8f-bba5-4851-b223-0f64db52a871@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_4_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_4_thumbnail_blur.jpg new file mode 100644 index 00000000..8aab8695 Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..deb2b28a --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "aca48434-f4c1-4b98-84e2-ad3ab85b54a6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "aca48434-f4c1-4b98-84e2-ad3ab85b54a6@6c48a", + "displayName": "img_10023_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "aca48434-f4c1-4b98-84e2-ad3ab85b54a6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "aca48434-f4c1-4b98-84e2-ad3ab85b54a6@f9941", + "displayName": "img_10023_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aca48434-f4c1-4b98-84e2-ad3ab85b54a6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "aca48434-f4c1-4b98-84e2-ad3ab85b54a6@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_5_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_5_thumbnail_blur.jpg new file mode 100644 index 00000000..c2af618e Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0b1838ee --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "863fe950-65cc-4a6f-8781-ae8bf9d4dce9", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "863fe950-65cc-4a6f-8781-ae8bf9d4dce9@6c48a", + "displayName": "img_10023_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "863fe950-65cc-4a6f-8781-ae8bf9d4dce9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "863fe950-65cc-4a6f-8781-ae8bf9d4dce9@f9941", + "displayName": "img_10023_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "863fe950-65cc-4a6f-8781-ae8bf9d4dce9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "863fe950-65cc-4a6f-8781-ae8bf9d4dce9@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_6_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_6_thumbnail_blur.jpg new file mode 100644 index 00000000..7798b441 Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..b53f633f --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "54b09c45-75c1-4493-9086-c8d7897c8e75", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "54b09c45-75c1-4493-9086-c8d7897c8e75@6c48a", + "displayName": "img_10023_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "54b09c45-75c1-4493-9086-c8d7897c8e75", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "54b09c45-75c1-4493-9086-c8d7897c8e75@f9941", + "displayName": "img_10023_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "54b09c45-75c1-4493-9086-c8d7897c8e75@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "54b09c45-75c1-4493-9086-c8d7897c8e75@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_7_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_7_thumbnail_blur.jpg new file mode 100644 index 00000000..b1f3e811 Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..eaab69a9 --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a89c2abf-a205-485f-b0e8-7fb92df833a3", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a89c2abf-a205-485f-b0e8-7fb92df833a3@6c48a", + "displayName": "img_10023_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a89c2abf-a205-485f-b0e8-7fb92df833a3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a89c2abf-a205-485f-b0e8-7fb92df833a3@f9941", + "displayName": "img_10023_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a89c2abf-a205-485f-b0e8-7fb92df833a3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a89c2abf-a205-485f-b0e8-7fb92df833a3@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_8_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_8_thumbnail_blur.jpg new file mode 100644 index 00000000..6bc255ce Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4b36e8f3 --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bbeb5200-9d3b-4143-b200-8d9789e4c06e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bbeb5200-9d3b-4143-b200-8d9789e4c06e@6c48a", + "displayName": "img_10023_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bbeb5200-9d3b-4143-b200-8d9789e4c06e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "bbeb5200-9d3b-4143-b200-8d9789e4c06e@f9941", + "displayName": "img_10023_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bbeb5200-9d3b-4143-b200-8d9789e4c06e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bbeb5200-9d3b-4143-b200-8d9789e4c06e@6c48a" + } +} diff --git a/assets/bundles/Girls/10023/img/img_10023_9_thumbnail_blur.jpg b/assets/bundles/Girls/10023/img/img_10023_9_thumbnail_blur.jpg new file mode 100644 index 00000000..814a9a18 Binary files /dev/null and b/assets/bundles/Girls/10023/img/img_10023_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10023/img/img_10023_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10023/img/img_10023_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..de4f2b61 --- /dev/null +++ b/assets/bundles/Girls/10023/img/img_10023_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9c921eed-4910-4945-94cf-937f520a94d6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9c921eed-4910-4945-94cf-937f520a94d6@6c48a", + "displayName": "img_10023_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9c921eed-4910-4945-94cf-937f520a94d6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9c921eed-4910-4945-94cf-937f520a94d6@f9941", + "displayName": "img_10023_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9c921eed-4910-4945-94cf-937f520a94d6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9c921eed-4910-4945-94cf-937f520a94d6@6c48a" + } +} diff --git a/assets/bundles/Girls/10024/img/img_10024_10_thumbnail_blur.jpg b/assets/bundles/Girls/10024/img/img_10024_10_thumbnail_blur.jpg new file mode 100644 index 00000000..e7860d52 Binary files /dev/null and b/assets/bundles/Girls/10024/img/img_10024_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10024/img/img_10024_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10024/img/img_10024_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f9ccaddb --- /dev/null +++ b/assets/bundles/Girls/10024/img/img_10024_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7c551a0d-443e-4d60-ae52-d701abffa126", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7c551a0d-443e-4d60-ae52-d701abffa126@6c48a", + "displayName": "img_10024_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7c551a0d-443e-4d60-ae52-d701abffa126", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7c551a0d-443e-4d60-ae52-d701abffa126@f9941", + "displayName": "img_10024_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7c551a0d-443e-4d60-ae52-d701abffa126@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7c551a0d-443e-4d60-ae52-d701abffa126@6c48a" + } +} diff --git a/assets/bundles/Girls/10024/img/img_10024_11_thumbnail_blur.jpg b/assets/bundles/Girls/10024/img/img_10024_11_thumbnail_blur.jpg new file mode 100644 index 00000000..fab5f644 Binary files /dev/null and b/assets/bundles/Girls/10024/img/img_10024_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10024/img/img_10024_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10024/img/img_10024_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..01675697 --- /dev/null +++ b/assets/bundles/Girls/10024/img/img_10024_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f8253b8f-4528-4752-bbba-1e98c1a7c124", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f8253b8f-4528-4752-bbba-1e98c1a7c124@6c48a", + "displayName": "img_10024_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f8253b8f-4528-4752-bbba-1e98c1a7c124", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f8253b8f-4528-4752-bbba-1e98c1a7c124@f9941", + "displayName": "img_10024_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f8253b8f-4528-4752-bbba-1e98c1a7c124@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f8253b8f-4528-4752-bbba-1e98c1a7c124@6c48a" + } +} diff --git a/assets/bundles/Girls/10024/img/img_10024_12_thumbnail_blur.jpg b/assets/bundles/Girls/10024/img/img_10024_12_thumbnail_blur.jpg new file mode 100644 index 00000000..2c46263b Binary files /dev/null and b/assets/bundles/Girls/10024/img/img_10024_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10024/img/img_10024_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10024/img/img_10024_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0e3f5c50 --- /dev/null +++ b/assets/bundles/Girls/10024/img/img_10024_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "74dc1287-1bf7-4fa1-8fd7-cab9f966c23d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "74dc1287-1bf7-4fa1-8fd7-cab9f966c23d@6c48a", + "displayName": "img_10024_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "74dc1287-1bf7-4fa1-8fd7-cab9f966c23d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "74dc1287-1bf7-4fa1-8fd7-cab9f966c23d@f9941", + "displayName": "img_10024_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "74dc1287-1bf7-4fa1-8fd7-cab9f966c23d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "74dc1287-1bf7-4fa1-8fd7-cab9f966c23d@6c48a" + } +} diff --git a/assets/bundles/Girls/10024/img/img_10024_1_thumbnail_blur.jpg b/assets/bundles/Girls/10024/img/img_10024_1_thumbnail_blur.jpg new file mode 100644 index 00000000..41ad618b Binary files /dev/null and b/assets/bundles/Girls/10024/img/img_10024_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10024/img/img_10024_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10024/img/img_10024_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..eaeea070 --- /dev/null +++ b/assets/bundles/Girls/10024/img/img_10024_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ae6bf8da-0d12-4d76-810b-d99d5fd3e962", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ae6bf8da-0d12-4d76-810b-d99d5fd3e962@6c48a", + "displayName": "img_10024_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ae6bf8da-0d12-4d76-810b-d99d5fd3e962", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ae6bf8da-0d12-4d76-810b-d99d5fd3e962@f9941", + "displayName": "img_10024_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ae6bf8da-0d12-4d76-810b-d99d5fd3e962@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ae6bf8da-0d12-4d76-810b-d99d5fd3e962@6c48a" + } +} diff --git a/assets/bundles/Girls/10024/img/img_10024_2_thumbnail_blur.jpg b/assets/bundles/Girls/10024/img/img_10024_2_thumbnail_blur.jpg new file mode 100644 index 00000000..6ddeb563 Binary files /dev/null and b/assets/bundles/Girls/10024/img/img_10024_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10024/img/img_10024_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10024/img/img_10024_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f86fb19e --- /dev/null +++ b/assets/bundles/Girls/10024/img/img_10024_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "66812c2b-5b86-407b-9f31-27ababb29204", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "66812c2b-5b86-407b-9f31-27ababb29204@6c48a", + "displayName": "img_10024_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "66812c2b-5b86-407b-9f31-27ababb29204", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "66812c2b-5b86-407b-9f31-27ababb29204@f9941", + "displayName": "img_10024_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "66812c2b-5b86-407b-9f31-27ababb29204@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "66812c2b-5b86-407b-9f31-27ababb29204@6c48a" + } +} diff --git a/assets/bundles/Girls/10024/img/img_10024_3_thumbnail_blur.jpg b/assets/bundles/Girls/10024/img/img_10024_3_thumbnail_blur.jpg new file mode 100644 index 00000000..6db2a597 Binary files /dev/null and b/assets/bundles/Girls/10024/img/img_10024_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10024/img/img_10024_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10024/img/img_10024_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0c0908a7 --- /dev/null +++ b/assets/bundles/Girls/10024/img/img_10024_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4c1baada-5e05-4038-9b94-333a0c17463f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4c1baada-5e05-4038-9b94-333a0c17463f@6c48a", + "displayName": "img_10024_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4c1baada-5e05-4038-9b94-333a0c17463f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4c1baada-5e05-4038-9b94-333a0c17463f@f9941", + "displayName": "img_10024_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4c1baada-5e05-4038-9b94-333a0c17463f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4c1baada-5e05-4038-9b94-333a0c17463f@6c48a" + } +} diff --git a/assets/bundles/Girls/10024/img/img_10024_4_thumbnail_blur.jpg b/assets/bundles/Girls/10024/img/img_10024_4_thumbnail_blur.jpg new file mode 100644 index 00000000..25b7f0a7 Binary files /dev/null and b/assets/bundles/Girls/10024/img/img_10024_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10024/img/img_10024_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10024/img/img_10024_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..12b1f521 --- /dev/null +++ b/assets/bundles/Girls/10024/img/img_10024_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f07f7c78-2717-4e91-8615-2a6e46c9d12e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f07f7c78-2717-4e91-8615-2a6e46c9d12e@6c48a", + "displayName": "img_10024_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f07f7c78-2717-4e91-8615-2a6e46c9d12e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f07f7c78-2717-4e91-8615-2a6e46c9d12e@f9941", + "displayName": "img_10024_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f07f7c78-2717-4e91-8615-2a6e46c9d12e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f07f7c78-2717-4e91-8615-2a6e46c9d12e@6c48a" + } +} diff --git a/assets/bundles/Girls/10024/img/img_10024_5_thumbnail_blur.jpg b/assets/bundles/Girls/10024/img/img_10024_5_thumbnail_blur.jpg new file mode 100644 index 00000000..7b5b5727 Binary files /dev/null and b/assets/bundles/Girls/10024/img/img_10024_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10024/img/img_10024_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10024/img/img_10024_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f249dc4c --- /dev/null +++ b/assets/bundles/Girls/10024/img/img_10024_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7be09257-f3ee-4620-9771-856656d36647", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7be09257-f3ee-4620-9771-856656d36647@6c48a", + "displayName": "img_10024_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7be09257-f3ee-4620-9771-856656d36647", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7be09257-f3ee-4620-9771-856656d36647@f9941", + "displayName": "img_10024_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7be09257-f3ee-4620-9771-856656d36647@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7be09257-f3ee-4620-9771-856656d36647@6c48a" + } +} diff --git a/assets/bundles/Girls/10024/img/img_10024_6_thumbnail_blur.jpg b/assets/bundles/Girls/10024/img/img_10024_6_thumbnail_blur.jpg new file mode 100644 index 00000000..316c8816 Binary files /dev/null and b/assets/bundles/Girls/10024/img/img_10024_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10024/img/img_10024_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10024/img/img_10024_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..03e97cfc --- /dev/null +++ b/assets/bundles/Girls/10024/img/img_10024_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9925cc40-0de5-4184-ba13-299d4272b621", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9925cc40-0de5-4184-ba13-299d4272b621@6c48a", + "displayName": "img_10024_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9925cc40-0de5-4184-ba13-299d4272b621", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9925cc40-0de5-4184-ba13-299d4272b621@f9941", + "displayName": "img_10024_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9925cc40-0de5-4184-ba13-299d4272b621@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9925cc40-0de5-4184-ba13-299d4272b621@6c48a" + } +} diff --git a/assets/bundles/Girls/10024/img/img_10024_7_thumbnail_blur.jpg b/assets/bundles/Girls/10024/img/img_10024_7_thumbnail_blur.jpg new file mode 100644 index 00000000..51e958f3 Binary files /dev/null and b/assets/bundles/Girls/10024/img/img_10024_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10024/img/img_10024_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10024/img/img_10024_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a7fc7743 --- /dev/null +++ b/assets/bundles/Girls/10024/img/img_10024_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "251936b0-d6b3-4d2e-9f59-7c79033442c4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "251936b0-d6b3-4d2e-9f59-7c79033442c4@6c48a", + "displayName": "img_10024_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "251936b0-d6b3-4d2e-9f59-7c79033442c4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "251936b0-d6b3-4d2e-9f59-7c79033442c4@f9941", + "displayName": "img_10024_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "251936b0-d6b3-4d2e-9f59-7c79033442c4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "251936b0-d6b3-4d2e-9f59-7c79033442c4@6c48a" + } +} diff --git a/assets/bundles/Girls/10024/img/img_10024_8_thumbnail_blur.jpg b/assets/bundles/Girls/10024/img/img_10024_8_thumbnail_blur.jpg new file mode 100644 index 00000000..4970407a Binary files /dev/null and b/assets/bundles/Girls/10024/img/img_10024_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10024/img/img_10024_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10024/img/img_10024_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..91d72f9e --- /dev/null +++ b/assets/bundles/Girls/10024/img/img_10024_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b4056596-a5ce-4f05-876e-9c9a03050006", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b4056596-a5ce-4f05-876e-9c9a03050006@6c48a", + "displayName": "img_10024_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b4056596-a5ce-4f05-876e-9c9a03050006", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b4056596-a5ce-4f05-876e-9c9a03050006@f9941", + "displayName": "img_10024_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b4056596-a5ce-4f05-876e-9c9a03050006@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b4056596-a5ce-4f05-876e-9c9a03050006@6c48a" + } +} diff --git a/assets/bundles/Girls/10024/img/img_10024_9_thumbnail_blur.jpg b/assets/bundles/Girls/10024/img/img_10024_9_thumbnail_blur.jpg new file mode 100644 index 00000000..2bc6fb39 Binary files /dev/null and b/assets/bundles/Girls/10024/img/img_10024_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10024/img/img_10024_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10024/img/img_10024_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7f596517 --- /dev/null +++ b/assets/bundles/Girls/10024/img/img_10024_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "31b0b2a1-9bc2-43ae-9330-0cd80c6853c2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "31b0b2a1-9bc2-43ae-9330-0cd80c6853c2@6c48a", + "displayName": "img_10024_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "31b0b2a1-9bc2-43ae-9330-0cd80c6853c2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "31b0b2a1-9bc2-43ae-9330-0cd80c6853c2@f9941", + "displayName": "img_10024_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "31b0b2a1-9bc2-43ae-9330-0cd80c6853c2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "31b0b2a1-9bc2-43ae-9330-0cd80c6853c2@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_10_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_10_thumbnail_blur.jpg new file mode 100644 index 00000000..f4e61a99 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..03d90473 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "75b7c67f-9db9-4657-b8a6-d946f3258756", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "75b7c67f-9db9-4657-b8a6-d946f3258756@6c48a", + "displayName": "img_10025_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "75b7c67f-9db9-4657-b8a6-d946f3258756", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "75b7c67f-9db9-4657-b8a6-d946f3258756@f9941", + "displayName": "img_10025_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "75b7c67f-9db9-4657-b8a6-d946f3258756@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "75b7c67f-9db9-4657-b8a6-d946f3258756@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_11_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_11_thumbnail_blur.jpg new file mode 100644 index 00000000..1174c004 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3ce08376 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "083ffc4a-9061-46f5-88be-c12d966ad481", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "083ffc4a-9061-46f5-88be-c12d966ad481@6c48a", + "displayName": "img_10025_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "083ffc4a-9061-46f5-88be-c12d966ad481", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "083ffc4a-9061-46f5-88be-c12d966ad481@f9941", + "displayName": "img_10025_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "083ffc4a-9061-46f5-88be-c12d966ad481@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "083ffc4a-9061-46f5-88be-c12d966ad481@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_12_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_12_thumbnail_blur.jpg new file mode 100644 index 00000000..d4e013f2 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ab606a08 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e214ff64-5343-477c-aa39-9e539f61959e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e214ff64-5343-477c-aa39-9e539f61959e@6c48a", + "displayName": "img_10025_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e214ff64-5343-477c-aa39-9e539f61959e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e214ff64-5343-477c-aa39-9e539f61959e@f9941", + "displayName": "img_10025_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e214ff64-5343-477c-aa39-9e539f61959e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e214ff64-5343-477c-aa39-9e539f61959e@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_13_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_13_thumbnail_blur.jpg new file mode 100644 index 00000000..3d651fbb Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..591e8965 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cb89774c-1fa6-4b14-8fe3-fdef60432b0f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cb89774c-1fa6-4b14-8fe3-fdef60432b0f@6c48a", + "displayName": "img_10025_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cb89774c-1fa6-4b14-8fe3-fdef60432b0f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cb89774c-1fa6-4b14-8fe3-fdef60432b0f@f9941", + "displayName": "img_10025_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cb89774c-1fa6-4b14-8fe3-fdef60432b0f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cb89774c-1fa6-4b14-8fe3-fdef60432b0f@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_14_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_14_thumbnail_blur.jpg new file mode 100644 index 00000000..0de5cd06 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c3ba1c98 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b64d0ef5-490a-4203-8e37-3a68c0439003", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b64d0ef5-490a-4203-8e37-3a68c0439003@6c48a", + "displayName": "img_10025_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b64d0ef5-490a-4203-8e37-3a68c0439003", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b64d0ef5-490a-4203-8e37-3a68c0439003@f9941", + "displayName": "img_10025_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b64d0ef5-490a-4203-8e37-3a68c0439003@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b64d0ef5-490a-4203-8e37-3a68c0439003@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_15_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_15_thumbnail_blur.jpg new file mode 100644 index 00000000..124c82ed Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..18daf2fa --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4ad48e79-82a4-4645-bfe6-449fb0b64982", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4ad48e79-82a4-4645-bfe6-449fb0b64982@6c48a", + "displayName": "img_10025_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4ad48e79-82a4-4645-bfe6-449fb0b64982", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4ad48e79-82a4-4645-bfe6-449fb0b64982@f9941", + "displayName": "img_10025_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4ad48e79-82a4-4645-bfe6-449fb0b64982@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4ad48e79-82a4-4645-bfe6-449fb0b64982@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_16_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_16_thumbnail_blur.jpg new file mode 100644 index 00000000..4c7a2d06 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3b24af7c --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a73a962e-b649-4d9d-859c-34b1a97307ad", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a73a962e-b649-4d9d-859c-34b1a97307ad@6c48a", + "displayName": "img_10025_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a73a962e-b649-4d9d-859c-34b1a97307ad", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a73a962e-b649-4d9d-859c-34b1a97307ad@f9941", + "displayName": "img_10025_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a73a962e-b649-4d9d-859c-34b1a97307ad@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a73a962e-b649-4d9d-859c-34b1a97307ad@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_17_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_17_thumbnail_blur.jpg new file mode 100644 index 00000000..cd6ee7ca Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4a427b4b --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c3e928f1-8d97-4e8c-a488-39ca8622fcca", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c3e928f1-8d97-4e8c-a488-39ca8622fcca@6c48a", + "displayName": "img_10025_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c3e928f1-8d97-4e8c-a488-39ca8622fcca", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c3e928f1-8d97-4e8c-a488-39ca8622fcca@f9941", + "displayName": "img_10025_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c3e928f1-8d97-4e8c-a488-39ca8622fcca@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c3e928f1-8d97-4e8c-a488-39ca8622fcca@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_18_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_18_thumbnail_blur.jpg new file mode 100644 index 00000000..41e533b7 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_18_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_18_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_18_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..bfbb0949 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_18_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5a9934b3-bb26-4d24-9976-3c22debfd57b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5a9934b3-bb26-4d24-9976-3c22debfd57b@6c48a", + "displayName": "img_10025_18_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5a9934b3-bb26-4d24-9976-3c22debfd57b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5a9934b3-bb26-4d24-9976-3c22debfd57b@f9941", + "displayName": "img_10025_18_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5a9934b3-bb26-4d24-9976-3c22debfd57b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5a9934b3-bb26-4d24-9976-3c22debfd57b@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_19_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_19_thumbnail_blur.jpg new file mode 100644 index 00000000..861d3820 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_19_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_19_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_19_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..61c5a530 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_19_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7fd0025b-1e35-4e69-bfd9-45906e8c1a31", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7fd0025b-1e35-4e69-bfd9-45906e8c1a31@6c48a", + "displayName": "img_10025_19_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7fd0025b-1e35-4e69-bfd9-45906e8c1a31", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7fd0025b-1e35-4e69-bfd9-45906e8c1a31@f9941", + "displayName": "img_10025_19_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7fd0025b-1e35-4e69-bfd9-45906e8c1a31@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7fd0025b-1e35-4e69-bfd9-45906e8c1a31@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_1_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_1_thumbnail_blur.jpg new file mode 100644 index 00000000..1e28b4c0 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..78cffedb --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "64892852-50c4-4a56-b50c-b2b6e1030774", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "64892852-50c4-4a56-b50c-b2b6e1030774@6c48a", + "displayName": "img_10025_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "64892852-50c4-4a56-b50c-b2b6e1030774", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "64892852-50c4-4a56-b50c-b2b6e1030774@f9941", + "displayName": "img_10025_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "64892852-50c4-4a56-b50c-b2b6e1030774@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "64892852-50c4-4a56-b50c-b2b6e1030774@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_20_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_20_thumbnail_blur.jpg new file mode 100644 index 00000000..64a35404 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_20_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_20_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_20_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..99ea3a5c --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_20_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8c9d635c-d999-4353-aa5a-5c1c4b0045c4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8c9d635c-d999-4353-aa5a-5c1c4b0045c4@6c48a", + "displayName": "img_10025_20_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8c9d635c-d999-4353-aa5a-5c1c4b0045c4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8c9d635c-d999-4353-aa5a-5c1c4b0045c4@f9941", + "displayName": "img_10025_20_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8c9d635c-d999-4353-aa5a-5c1c4b0045c4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8c9d635c-d999-4353-aa5a-5c1c4b0045c4@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_21_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_21_thumbnail_blur.jpg new file mode 100644 index 00000000..0b72f514 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_21_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_21_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_21_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1334cd8e --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_21_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9aca6075-edcc-45c4-addd-6cb9a7006e13", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9aca6075-edcc-45c4-addd-6cb9a7006e13@6c48a", + "displayName": "img_10025_21_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9aca6075-edcc-45c4-addd-6cb9a7006e13", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9aca6075-edcc-45c4-addd-6cb9a7006e13@f9941", + "displayName": "img_10025_21_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9aca6075-edcc-45c4-addd-6cb9a7006e13@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9aca6075-edcc-45c4-addd-6cb9a7006e13@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_22_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_22_thumbnail_blur.jpg new file mode 100644 index 00000000..a7f25e89 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_22_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_22_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_22_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..52286c82 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_22_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7568ac53-eab1-48fc-b9a3-3237870b9cb3", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7568ac53-eab1-48fc-b9a3-3237870b9cb3@6c48a", + "displayName": "img_10025_22_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7568ac53-eab1-48fc-b9a3-3237870b9cb3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7568ac53-eab1-48fc-b9a3-3237870b9cb3@f9941", + "displayName": "img_10025_22_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7568ac53-eab1-48fc-b9a3-3237870b9cb3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7568ac53-eab1-48fc-b9a3-3237870b9cb3@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_23_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_23_thumbnail_blur.jpg new file mode 100644 index 00000000..d63db5dc Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_23_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_23_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_23_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8f540498 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_23_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "049bd949-2c38-4419-a742-a2c6f3289e41", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "049bd949-2c38-4419-a742-a2c6f3289e41@6c48a", + "displayName": "img_10025_23_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "049bd949-2c38-4419-a742-a2c6f3289e41", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "049bd949-2c38-4419-a742-a2c6f3289e41@f9941", + "displayName": "img_10025_23_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "049bd949-2c38-4419-a742-a2c6f3289e41@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "049bd949-2c38-4419-a742-a2c6f3289e41@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_24_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_24_thumbnail_blur.jpg new file mode 100644 index 00000000..3e6f39b6 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_24_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_24_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_24_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7927188c --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_24_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d302a029-6145-4bed-bfb9-54dc52f86ffd", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d302a029-6145-4bed-bfb9-54dc52f86ffd@6c48a", + "displayName": "img_10025_24_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d302a029-6145-4bed-bfb9-54dc52f86ffd", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d302a029-6145-4bed-bfb9-54dc52f86ffd@f9941", + "displayName": "img_10025_24_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d302a029-6145-4bed-bfb9-54dc52f86ffd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d302a029-6145-4bed-bfb9-54dc52f86ffd@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_25_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_25_thumbnail_blur.jpg new file mode 100644 index 00000000..8a777393 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_25_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_25_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_25_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a9b01d2d --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_25_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e28dc663-074d-4714-906d-c152960c5e5b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e28dc663-074d-4714-906d-c152960c5e5b@6c48a", + "displayName": "img_10025_25_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e28dc663-074d-4714-906d-c152960c5e5b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e28dc663-074d-4714-906d-c152960c5e5b@f9941", + "displayName": "img_10025_25_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e28dc663-074d-4714-906d-c152960c5e5b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e28dc663-074d-4714-906d-c152960c5e5b@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_26_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_26_thumbnail_blur.jpg new file mode 100644 index 00000000..f8df3ea6 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_26_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_26_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_26_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9d8c35d0 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_26_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "db726f4f-cf39-4070-b71a-2a76d392bfc0", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "db726f4f-cf39-4070-b71a-2a76d392bfc0@6c48a", + "displayName": "img_10025_26_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "db726f4f-cf39-4070-b71a-2a76d392bfc0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "db726f4f-cf39-4070-b71a-2a76d392bfc0@f9941", + "displayName": "img_10025_26_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "db726f4f-cf39-4070-b71a-2a76d392bfc0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "db726f4f-cf39-4070-b71a-2a76d392bfc0@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_27_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_27_thumbnail_blur.jpg new file mode 100644 index 00000000..0b9bc3b1 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_27_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_27_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_27_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..681d80e7 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_27_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9cee7f75-23d1-4771-90f0-4ce8b6bb3344", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9cee7f75-23d1-4771-90f0-4ce8b6bb3344@6c48a", + "displayName": "img_10025_27_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9cee7f75-23d1-4771-90f0-4ce8b6bb3344", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9cee7f75-23d1-4771-90f0-4ce8b6bb3344@f9941", + "displayName": "img_10025_27_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9cee7f75-23d1-4771-90f0-4ce8b6bb3344@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9cee7f75-23d1-4771-90f0-4ce8b6bb3344@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_28_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_28_thumbnail_blur.jpg new file mode 100644 index 00000000..9d7d2aa7 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_28_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_28_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_28_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a547912c --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_28_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "fd9dbdb9-7874-498d-bcf8-dfad74545bca", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "fd9dbdb9-7874-498d-bcf8-dfad74545bca@6c48a", + "displayName": "img_10025_28_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "fd9dbdb9-7874-498d-bcf8-dfad74545bca", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "fd9dbdb9-7874-498d-bcf8-dfad74545bca@f9941", + "displayName": "img_10025_28_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "fd9dbdb9-7874-498d-bcf8-dfad74545bca@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "fd9dbdb9-7874-498d-bcf8-dfad74545bca@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_29_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_29_thumbnail_blur.jpg new file mode 100644 index 00000000..100cc6a3 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_29_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_29_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_29_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c312c719 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_29_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e30ab0c7-ff6c-44d7-9916-960b2d1359ed", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e30ab0c7-ff6c-44d7-9916-960b2d1359ed@6c48a", + "displayName": "img_10025_29_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e30ab0c7-ff6c-44d7-9916-960b2d1359ed", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e30ab0c7-ff6c-44d7-9916-960b2d1359ed@f9941", + "displayName": "img_10025_29_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e30ab0c7-ff6c-44d7-9916-960b2d1359ed@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e30ab0c7-ff6c-44d7-9916-960b2d1359ed@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_2_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_2_thumbnail_blur.jpg new file mode 100644 index 00000000..aa452b7e Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..df330a08 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7ec64b87-3273-4cee-9192-682c5565c566", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7ec64b87-3273-4cee-9192-682c5565c566@6c48a", + "displayName": "img_10025_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7ec64b87-3273-4cee-9192-682c5565c566", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7ec64b87-3273-4cee-9192-682c5565c566@f9941", + "displayName": "img_10025_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7ec64b87-3273-4cee-9192-682c5565c566@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7ec64b87-3273-4cee-9192-682c5565c566@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_30_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_30_thumbnail_blur.jpg new file mode 100644 index 00000000..04a1b6ba Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_30_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_30_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_30_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..65ffa678 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_30_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cb478aa3-c3f0-4b06-8bd4-69c8026b2700", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cb478aa3-c3f0-4b06-8bd4-69c8026b2700@6c48a", + "displayName": "img_10025_30_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cb478aa3-c3f0-4b06-8bd4-69c8026b2700", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cb478aa3-c3f0-4b06-8bd4-69c8026b2700@f9941", + "displayName": "img_10025_30_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cb478aa3-c3f0-4b06-8bd4-69c8026b2700@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cb478aa3-c3f0-4b06-8bd4-69c8026b2700@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_31_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_31_thumbnail_blur.jpg new file mode 100644 index 00000000..15724c8f Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_31_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_31_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_31_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8944d4e4 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_31_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3cf5dece-f090-4c4c-954e-145f50ebf580", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3cf5dece-f090-4c4c-954e-145f50ebf580@6c48a", + "displayName": "img_10025_31_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3cf5dece-f090-4c4c-954e-145f50ebf580", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3cf5dece-f090-4c4c-954e-145f50ebf580@f9941", + "displayName": "img_10025_31_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3cf5dece-f090-4c4c-954e-145f50ebf580@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3cf5dece-f090-4c4c-954e-145f50ebf580@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_32_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_32_thumbnail_blur.jpg new file mode 100644 index 00000000..03b0f778 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_32_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_32_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_32_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3f1278df --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_32_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "30377122-d554-483a-81c1-b62c2eae3269", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "30377122-d554-483a-81c1-b62c2eae3269@6c48a", + "displayName": "img_10025_32_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "30377122-d554-483a-81c1-b62c2eae3269", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "30377122-d554-483a-81c1-b62c2eae3269@f9941", + "displayName": "img_10025_32_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "30377122-d554-483a-81c1-b62c2eae3269@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "30377122-d554-483a-81c1-b62c2eae3269@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_33_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_33_thumbnail_blur.jpg new file mode 100644 index 00000000..726a9eb1 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_33_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_33_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_33_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ea9bf1ab --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_33_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "151a2371-b1d6-41ec-b931-a75a7f55dfce", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "151a2371-b1d6-41ec-b931-a75a7f55dfce@6c48a", + "displayName": "img_10025_33_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "151a2371-b1d6-41ec-b931-a75a7f55dfce", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "151a2371-b1d6-41ec-b931-a75a7f55dfce@f9941", + "displayName": "img_10025_33_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "151a2371-b1d6-41ec-b931-a75a7f55dfce@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "151a2371-b1d6-41ec-b931-a75a7f55dfce@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_34_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_34_thumbnail_blur.jpg new file mode 100644 index 00000000..c5cd439e Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_34_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_34_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_34_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a9273f62 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_34_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "deb9c147-b19c-431c-80ae-96f2e17782e0", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "deb9c147-b19c-431c-80ae-96f2e17782e0@6c48a", + "displayName": "img_10025_34_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "deb9c147-b19c-431c-80ae-96f2e17782e0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "deb9c147-b19c-431c-80ae-96f2e17782e0@f9941", + "displayName": "img_10025_34_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "deb9c147-b19c-431c-80ae-96f2e17782e0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "deb9c147-b19c-431c-80ae-96f2e17782e0@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_35_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_35_thumbnail_blur.jpg new file mode 100644 index 00000000..e83d544f Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_35_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_35_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_35_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d120da81 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_35_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ef41b90a-d9bf-4398-88de-8dfe9b635b64", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ef41b90a-d9bf-4398-88de-8dfe9b635b64@6c48a", + "displayName": "img_10025_35_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ef41b90a-d9bf-4398-88de-8dfe9b635b64", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ef41b90a-d9bf-4398-88de-8dfe9b635b64@f9941", + "displayName": "img_10025_35_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ef41b90a-d9bf-4398-88de-8dfe9b635b64@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ef41b90a-d9bf-4398-88de-8dfe9b635b64@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_36_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_36_thumbnail_blur.jpg new file mode 100644 index 00000000..13950197 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_36_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_36_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_36_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a7220f77 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_36_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4019bc10-4e9a-4315-a6ab-ff3a03c2ca4c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4019bc10-4e9a-4315-a6ab-ff3a03c2ca4c@6c48a", + "displayName": "img_10025_36_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4019bc10-4e9a-4315-a6ab-ff3a03c2ca4c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4019bc10-4e9a-4315-a6ab-ff3a03c2ca4c@f9941", + "displayName": "img_10025_36_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4019bc10-4e9a-4315-a6ab-ff3a03c2ca4c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4019bc10-4e9a-4315-a6ab-ff3a03c2ca4c@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_37_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_37_thumbnail_blur.jpg new file mode 100644 index 00000000..7c2ac0c7 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_37_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_37_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_37_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9b02cfdd --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_37_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cceb1178-8057-4b37-b3d9-86ceb436f58f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cceb1178-8057-4b37-b3d9-86ceb436f58f@6c48a", + "displayName": "img_10025_37_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cceb1178-8057-4b37-b3d9-86ceb436f58f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cceb1178-8057-4b37-b3d9-86ceb436f58f@f9941", + "displayName": "img_10025_37_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cceb1178-8057-4b37-b3d9-86ceb436f58f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cceb1178-8057-4b37-b3d9-86ceb436f58f@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_38_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_38_thumbnail_blur.jpg new file mode 100644 index 00000000..f2419f2c Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_38_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_38_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_38_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..796a816a --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_38_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2c1e969d-b412-4c2f-bfcd-1fb174beeda6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2c1e969d-b412-4c2f-bfcd-1fb174beeda6@6c48a", + "displayName": "img_10025_38_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2c1e969d-b412-4c2f-bfcd-1fb174beeda6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2c1e969d-b412-4c2f-bfcd-1fb174beeda6@f9941", + "displayName": "img_10025_38_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2c1e969d-b412-4c2f-bfcd-1fb174beeda6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2c1e969d-b412-4c2f-bfcd-1fb174beeda6@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_39_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_39_thumbnail_blur.jpg new file mode 100644 index 00000000..34626a74 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_39_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_39_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_39_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e4edb783 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_39_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "dcd81263-b22e-410c-a04e-c900701787b6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "dcd81263-b22e-410c-a04e-c900701787b6@6c48a", + "displayName": "img_10025_39_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "dcd81263-b22e-410c-a04e-c900701787b6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "dcd81263-b22e-410c-a04e-c900701787b6@f9941", + "displayName": "img_10025_39_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "dcd81263-b22e-410c-a04e-c900701787b6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "dcd81263-b22e-410c-a04e-c900701787b6@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_3_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_3_thumbnail_blur.jpg new file mode 100644 index 00000000..a323ca8f Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..79d672c1 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bead6f3f-c7a4-45f3-976a-16cea633d7a6", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bead6f3f-c7a4-45f3-976a-16cea633d7a6@6c48a", + "displayName": "img_10025_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bead6f3f-c7a4-45f3-976a-16cea633d7a6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "bead6f3f-c7a4-45f3-976a-16cea633d7a6@f9941", + "displayName": "img_10025_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bead6f3f-c7a4-45f3-976a-16cea633d7a6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bead6f3f-c7a4-45f3-976a-16cea633d7a6@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_40_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_40_thumbnail_blur.jpg new file mode 100644 index 00000000..574486f7 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_40_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_40_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_40_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7a5a2aa1 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_40_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f4e6464c-8649-4cee-b8fc-e432f02189ef", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f4e6464c-8649-4cee-b8fc-e432f02189ef@6c48a", + "displayName": "img_10025_40_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f4e6464c-8649-4cee-b8fc-e432f02189ef", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f4e6464c-8649-4cee-b8fc-e432f02189ef@f9941", + "displayName": "img_10025_40_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f4e6464c-8649-4cee-b8fc-e432f02189ef@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f4e6464c-8649-4cee-b8fc-e432f02189ef@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_41_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_41_thumbnail_blur.jpg new file mode 100644 index 00000000..dbfe50ce Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_41_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_41_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_41_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..00bd1547 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_41_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0311a308-1f3d-4528-af63-11d81b5965d4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0311a308-1f3d-4528-af63-11d81b5965d4@6c48a", + "displayName": "img_10025_41_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0311a308-1f3d-4528-af63-11d81b5965d4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0311a308-1f3d-4528-af63-11d81b5965d4@f9941", + "displayName": "img_10025_41_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0311a308-1f3d-4528-af63-11d81b5965d4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0311a308-1f3d-4528-af63-11d81b5965d4@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_4_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_4_thumbnail_blur.jpg new file mode 100644 index 00000000..3a5720cd Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f1d897fb --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c0f2731e-a1ba-4cee-addc-d4e4a70f685d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c0f2731e-a1ba-4cee-addc-d4e4a70f685d@6c48a", + "displayName": "img_10025_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c0f2731e-a1ba-4cee-addc-d4e4a70f685d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c0f2731e-a1ba-4cee-addc-d4e4a70f685d@f9941", + "displayName": "img_10025_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c0f2731e-a1ba-4cee-addc-d4e4a70f685d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c0f2731e-a1ba-4cee-addc-d4e4a70f685d@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_5_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_5_thumbnail_blur.jpg new file mode 100644 index 00000000..017e685f Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..415dd9a7 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1df995a4-1203-478c-a754-38e795388127", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1df995a4-1203-478c-a754-38e795388127@6c48a", + "displayName": "img_10025_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1df995a4-1203-478c-a754-38e795388127", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1df995a4-1203-478c-a754-38e795388127@f9941", + "displayName": "img_10025_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1df995a4-1203-478c-a754-38e795388127@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1df995a4-1203-478c-a754-38e795388127@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_6_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_6_thumbnail_blur.jpg new file mode 100644 index 00000000..4be38763 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e613d2d3 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1602ab9c-993b-47c6-bf82-403a343b6a0b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1602ab9c-993b-47c6-bf82-403a343b6a0b@6c48a", + "displayName": "img_10025_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1602ab9c-993b-47c6-bf82-403a343b6a0b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1602ab9c-993b-47c6-bf82-403a343b6a0b@f9941", + "displayName": "img_10025_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1602ab9c-993b-47c6-bf82-403a343b6a0b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1602ab9c-993b-47c6-bf82-403a343b6a0b@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_7_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_7_thumbnail_blur.jpg new file mode 100644 index 00000000..d3d22e8b Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..45276b93 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "795abce7-2de2-428a-b952-018297642c4b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "795abce7-2de2-428a-b952-018297642c4b@6c48a", + "displayName": "img_10025_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "795abce7-2de2-428a-b952-018297642c4b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "795abce7-2de2-428a-b952-018297642c4b@f9941", + "displayName": "img_10025_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "795abce7-2de2-428a-b952-018297642c4b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "795abce7-2de2-428a-b952-018297642c4b@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_8_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_8_thumbnail_blur.jpg new file mode 100644 index 00000000..e2e96f91 Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d0d324a5 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "57a026ff-d263-46da-a3e1-333731ba352a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "57a026ff-d263-46da-a3e1-333731ba352a@6c48a", + "displayName": "img_10025_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "57a026ff-d263-46da-a3e1-333731ba352a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "57a026ff-d263-46da-a3e1-333731ba352a@f9941", + "displayName": "img_10025_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "57a026ff-d263-46da-a3e1-333731ba352a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "57a026ff-d263-46da-a3e1-333731ba352a@6c48a" + } +} diff --git a/assets/bundles/Girls/10025/img/img_10025_9_thumbnail_blur.jpg b/assets/bundles/Girls/10025/img/img_10025_9_thumbnail_blur.jpg new file mode 100644 index 00000000..7aceebfc Binary files /dev/null and b/assets/bundles/Girls/10025/img/img_10025_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10025/img/img_10025_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10025/img/img_10025_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6d0125d9 --- /dev/null +++ b/assets/bundles/Girls/10025/img/img_10025_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "531c7f9a-6a29-4c9f-abe9-0a94e9c66d4e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "531c7f9a-6a29-4c9f-abe9-0a94e9c66d4e@6c48a", + "displayName": "img_10025_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "531c7f9a-6a29-4c9f-abe9-0a94e9c66d4e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "531c7f9a-6a29-4c9f-abe9-0a94e9c66d4e@f9941", + "displayName": "img_10025_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "531c7f9a-6a29-4c9f-abe9-0a94e9c66d4e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "531c7f9a-6a29-4c9f-abe9-0a94e9c66d4e@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_10_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_10_thumbnail_blur.jpg new file mode 100644 index 00000000..0d041b98 Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3bdb4a0d --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a92884d6-a1ab-4b70-9b7d-4dc5d38fbbc2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a92884d6-a1ab-4b70-9b7d-4dc5d38fbbc2@6c48a", + "displayName": "img_10026_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a92884d6-a1ab-4b70-9b7d-4dc5d38fbbc2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a92884d6-a1ab-4b70-9b7d-4dc5d38fbbc2@f9941", + "displayName": "img_10026_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a92884d6-a1ab-4b70-9b7d-4dc5d38fbbc2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a92884d6-a1ab-4b70-9b7d-4dc5d38fbbc2@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_11_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_11_thumbnail_blur.jpg new file mode 100644 index 00000000..77b4aeb5 Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..da46837f --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "13f4507a-8191-46de-ab94-840b91f8c502", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "13f4507a-8191-46de-ab94-840b91f8c502@6c48a", + "displayName": "img_10026_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "13f4507a-8191-46de-ab94-840b91f8c502", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "13f4507a-8191-46de-ab94-840b91f8c502@f9941", + "displayName": "img_10026_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "13f4507a-8191-46de-ab94-840b91f8c502@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "13f4507a-8191-46de-ab94-840b91f8c502@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_12_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_12_thumbnail_blur.jpg new file mode 100644 index 00000000..0b8c26b8 Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..18e09ed2 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "da6f8ebf-6c1b-41f4-b1f7-be5fd5ff2cb3", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "da6f8ebf-6c1b-41f4-b1f7-be5fd5ff2cb3@6c48a", + "displayName": "img_10026_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "da6f8ebf-6c1b-41f4-b1f7-be5fd5ff2cb3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "da6f8ebf-6c1b-41f4-b1f7-be5fd5ff2cb3@f9941", + "displayName": "img_10026_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "da6f8ebf-6c1b-41f4-b1f7-be5fd5ff2cb3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "da6f8ebf-6c1b-41f4-b1f7-be5fd5ff2cb3@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_13_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_13_thumbnail_blur.jpg new file mode 100644 index 00000000..5ef5b37d Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c1473f5c --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a0de86e4-8000-4380-b589-dab7ba86090f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a0de86e4-8000-4380-b589-dab7ba86090f@6c48a", + "displayName": "img_10026_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a0de86e4-8000-4380-b589-dab7ba86090f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a0de86e4-8000-4380-b589-dab7ba86090f@f9941", + "displayName": "img_10026_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a0de86e4-8000-4380-b589-dab7ba86090f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a0de86e4-8000-4380-b589-dab7ba86090f@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_14_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_14_thumbnail_blur.jpg new file mode 100644 index 00000000..354be8a4 Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..edfb1516 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ea8eff26-7818-49b4-9fe3-08789395f67a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ea8eff26-7818-49b4-9fe3-08789395f67a@6c48a", + "displayName": "img_10026_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ea8eff26-7818-49b4-9fe3-08789395f67a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ea8eff26-7818-49b4-9fe3-08789395f67a@f9941", + "displayName": "img_10026_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ea8eff26-7818-49b4-9fe3-08789395f67a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ea8eff26-7818-49b4-9fe3-08789395f67a@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_15_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_15_thumbnail_blur.jpg new file mode 100644 index 00000000..82d4208e Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ff7c1cd4 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bfcee66e-7a9a-43de-9def-e2c3163b7840", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bfcee66e-7a9a-43de-9def-e2c3163b7840@6c48a", + "displayName": "img_10026_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bfcee66e-7a9a-43de-9def-e2c3163b7840", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "bfcee66e-7a9a-43de-9def-e2c3163b7840@f9941", + "displayName": "img_10026_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bfcee66e-7a9a-43de-9def-e2c3163b7840@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bfcee66e-7a9a-43de-9def-e2c3163b7840@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_16_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_16_thumbnail_blur.jpg new file mode 100644 index 00000000..1af4ceb5 Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..bb9c8227 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "431080a8-96bf-419b-959e-652c746cd48b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "431080a8-96bf-419b-959e-652c746cd48b@6c48a", + "displayName": "img_10026_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "431080a8-96bf-419b-959e-652c746cd48b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "431080a8-96bf-419b-959e-652c746cd48b@f9941", + "displayName": "img_10026_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "431080a8-96bf-419b-959e-652c746cd48b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "431080a8-96bf-419b-959e-652c746cd48b@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_17_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_17_thumbnail_blur.jpg new file mode 100644 index 00000000..5d5df7e1 Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..623e6f68 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bef2d027-0803-4635-95ae-838ffb5433df", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bef2d027-0803-4635-95ae-838ffb5433df@6c48a", + "displayName": "img_10026_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bef2d027-0803-4635-95ae-838ffb5433df", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "bef2d027-0803-4635-95ae-838ffb5433df@f9941", + "displayName": "img_10026_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bef2d027-0803-4635-95ae-838ffb5433df@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bef2d027-0803-4635-95ae-838ffb5433df@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_18_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_18_thumbnail_blur.jpg new file mode 100644 index 00000000..f85d6b70 Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_18_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_18_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_18_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c427540d --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_18_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2489d193-e7f3-46b2-a85e-2f97ed476761", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2489d193-e7f3-46b2-a85e-2f97ed476761@6c48a", + "displayName": "img_10026_18_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2489d193-e7f3-46b2-a85e-2f97ed476761", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2489d193-e7f3-46b2-a85e-2f97ed476761@f9941", + "displayName": "img_10026_18_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2489d193-e7f3-46b2-a85e-2f97ed476761@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2489d193-e7f3-46b2-a85e-2f97ed476761@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_19_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_19_thumbnail_blur.jpg new file mode 100644 index 00000000..9e15e6aa Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_19_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_19_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_19_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4ec588a3 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_19_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "38ad493a-a287-4287-a05f-ed7de2d81a1f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "38ad493a-a287-4287-a05f-ed7de2d81a1f@6c48a", + "displayName": "img_10026_19_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "38ad493a-a287-4287-a05f-ed7de2d81a1f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "38ad493a-a287-4287-a05f-ed7de2d81a1f@f9941", + "displayName": "img_10026_19_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "38ad493a-a287-4287-a05f-ed7de2d81a1f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "38ad493a-a287-4287-a05f-ed7de2d81a1f@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_1_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_1_thumbnail_blur.jpg new file mode 100644 index 00000000..73249369 Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ceec784a --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4df07c6e-221e-4898-a074-ec2acbc24d0c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4df07c6e-221e-4898-a074-ec2acbc24d0c@6c48a", + "displayName": "img_10026_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4df07c6e-221e-4898-a074-ec2acbc24d0c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4df07c6e-221e-4898-a074-ec2acbc24d0c@f9941", + "displayName": "img_10026_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4df07c6e-221e-4898-a074-ec2acbc24d0c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4df07c6e-221e-4898-a074-ec2acbc24d0c@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_20_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_20_thumbnail_blur.jpg new file mode 100644 index 00000000..6842158a Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_20_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_20_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_20_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..08a3fc14 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_20_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "83f06e6c-1cb8-421c-b737-a956994674c2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "83f06e6c-1cb8-421c-b737-a956994674c2@6c48a", + "displayName": "img_10026_20_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "83f06e6c-1cb8-421c-b737-a956994674c2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "83f06e6c-1cb8-421c-b737-a956994674c2@f9941", + "displayName": "img_10026_20_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "83f06e6c-1cb8-421c-b737-a956994674c2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "83f06e6c-1cb8-421c-b737-a956994674c2@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_21_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_21_thumbnail_blur.jpg new file mode 100644 index 00000000..937a5bfc Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_21_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_21_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_21_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4f2b4225 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_21_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "edd28e7d-e3a1-4bcf-bfc4-da8992f9a1db", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "edd28e7d-e3a1-4bcf-bfc4-da8992f9a1db@6c48a", + "displayName": "img_10026_21_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "edd28e7d-e3a1-4bcf-bfc4-da8992f9a1db", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "edd28e7d-e3a1-4bcf-bfc4-da8992f9a1db@f9941", + "displayName": "img_10026_21_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "edd28e7d-e3a1-4bcf-bfc4-da8992f9a1db@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "edd28e7d-e3a1-4bcf-bfc4-da8992f9a1db@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_22_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_22_thumbnail_blur.jpg new file mode 100644 index 00000000..872ef22a Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_22_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_22_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_22_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..56ece023 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_22_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "42b64fb4-ebaa-48b7-8849-1936d2d767ca", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "42b64fb4-ebaa-48b7-8849-1936d2d767ca@6c48a", + "displayName": "img_10026_22_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "42b64fb4-ebaa-48b7-8849-1936d2d767ca", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "42b64fb4-ebaa-48b7-8849-1936d2d767ca@f9941", + "displayName": "img_10026_22_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "42b64fb4-ebaa-48b7-8849-1936d2d767ca@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "42b64fb4-ebaa-48b7-8849-1936d2d767ca@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_23_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_23_thumbnail_blur.jpg new file mode 100644 index 00000000..95e19a78 Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_23_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_23_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_23_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1dbb03d9 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_23_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "658d9dcc-489b-42d1-ae00-0e6e71175652", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "658d9dcc-489b-42d1-ae00-0e6e71175652@6c48a", + "displayName": "img_10026_23_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "658d9dcc-489b-42d1-ae00-0e6e71175652", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "658d9dcc-489b-42d1-ae00-0e6e71175652@f9941", + "displayName": "img_10026_23_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "658d9dcc-489b-42d1-ae00-0e6e71175652@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "658d9dcc-489b-42d1-ae00-0e6e71175652@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_24_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_24_thumbnail_blur.jpg new file mode 100644 index 00000000..f19d1a8b Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_24_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_24_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_24_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..997b2853 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_24_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7969d3e2-a3e4-4b48-a299-93cc06079155", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7969d3e2-a3e4-4b48-a299-93cc06079155@6c48a", + "displayName": "img_10026_24_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7969d3e2-a3e4-4b48-a299-93cc06079155", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7969d3e2-a3e4-4b48-a299-93cc06079155@f9941", + "displayName": "img_10026_24_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7969d3e2-a3e4-4b48-a299-93cc06079155@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7969d3e2-a3e4-4b48-a299-93cc06079155@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_25_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_25_thumbnail_blur.jpg new file mode 100644 index 00000000..28b354be Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_25_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_25_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_25_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f6b405f5 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_25_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "39fc5263-3512-4ea8-9f58-6091be766e27", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "39fc5263-3512-4ea8-9f58-6091be766e27@6c48a", + "displayName": "img_10026_25_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "39fc5263-3512-4ea8-9f58-6091be766e27", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "39fc5263-3512-4ea8-9f58-6091be766e27@f9941", + "displayName": "img_10026_25_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "39fc5263-3512-4ea8-9f58-6091be766e27@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "39fc5263-3512-4ea8-9f58-6091be766e27@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_2_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_2_thumbnail_blur.jpg new file mode 100644 index 00000000..25cf932b Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7b74f7c0 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4cd8294c-b788-48ba-bbf4-f43d3ef2f03c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4cd8294c-b788-48ba-bbf4-f43d3ef2f03c@6c48a", + "displayName": "img_10026_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4cd8294c-b788-48ba-bbf4-f43d3ef2f03c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4cd8294c-b788-48ba-bbf4-f43d3ef2f03c@f9941", + "displayName": "img_10026_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4cd8294c-b788-48ba-bbf4-f43d3ef2f03c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4cd8294c-b788-48ba-bbf4-f43d3ef2f03c@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_3_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_3_thumbnail_blur.jpg new file mode 100644 index 00000000..65b4a11e Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..dc39b854 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "847b46be-d813-4ea3-aa9b-178d9329be90", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "847b46be-d813-4ea3-aa9b-178d9329be90@6c48a", + "displayName": "img_10026_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "847b46be-d813-4ea3-aa9b-178d9329be90", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "847b46be-d813-4ea3-aa9b-178d9329be90@f9941", + "displayName": "img_10026_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "847b46be-d813-4ea3-aa9b-178d9329be90@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "847b46be-d813-4ea3-aa9b-178d9329be90@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_4_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_4_thumbnail_blur.jpg new file mode 100644 index 00000000..78729839 Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4088c43e --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "951e8106-bf44-4123-beb7-214373da44cb", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "951e8106-bf44-4123-beb7-214373da44cb@6c48a", + "displayName": "img_10026_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "951e8106-bf44-4123-beb7-214373da44cb", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "951e8106-bf44-4123-beb7-214373da44cb@f9941", + "displayName": "img_10026_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "951e8106-bf44-4123-beb7-214373da44cb@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "951e8106-bf44-4123-beb7-214373da44cb@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_5_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_5_thumbnail_blur.jpg new file mode 100644 index 00000000..a95e15cc Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..56902b82 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a9fcbcf1-fe4b-4705-96ed-5a01ce6f3101", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a9fcbcf1-fe4b-4705-96ed-5a01ce6f3101@6c48a", + "displayName": "img_10026_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a9fcbcf1-fe4b-4705-96ed-5a01ce6f3101", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a9fcbcf1-fe4b-4705-96ed-5a01ce6f3101@f9941", + "displayName": "img_10026_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a9fcbcf1-fe4b-4705-96ed-5a01ce6f3101@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a9fcbcf1-fe4b-4705-96ed-5a01ce6f3101@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_6_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_6_thumbnail_blur.jpg new file mode 100644 index 00000000..f70741e2 Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f2fe948f --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e28ad9bf-a98b-43cd-bf0b-e1c04112de79", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e28ad9bf-a98b-43cd-bf0b-e1c04112de79@6c48a", + "displayName": "img_10026_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e28ad9bf-a98b-43cd-bf0b-e1c04112de79", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e28ad9bf-a98b-43cd-bf0b-e1c04112de79@f9941", + "displayName": "img_10026_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e28ad9bf-a98b-43cd-bf0b-e1c04112de79@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e28ad9bf-a98b-43cd-bf0b-e1c04112de79@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_7_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_7_thumbnail_blur.jpg new file mode 100644 index 00000000..df073c50 Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..30405523 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "04646200-bbac-4342-b133-05f11c769760", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "04646200-bbac-4342-b133-05f11c769760@6c48a", + "displayName": "img_10026_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "04646200-bbac-4342-b133-05f11c769760", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "04646200-bbac-4342-b133-05f11c769760@f9941", + "displayName": "img_10026_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "04646200-bbac-4342-b133-05f11c769760@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "04646200-bbac-4342-b133-05f11c769760@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_8_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_8_thumbnail_blur.jpg new file mode 100644 index 00000000..4273a155 Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..991928c5 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2324f91d-4211-4cf2-bd4a-6db40935e2f2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2324f91d-4211-4cf2-bd4a-6db40935e2f2@6c48a", + "displayName": "img_10026_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2324f91d-4211-4cf2-bd4a-6db40935e2f2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2324f91d-4211-4cf2-bd4a-6db40935e2f2@f9941", + "displayName": "img_10026_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2324f91d-4211-4cf2-bd4a-6db40935e2f2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2324f91d-4211-4cf2-bd4a-6db40935e2f2@6c48a" + } +} diff --git a/assets/bundles/Girls/10026/img/img_10026_9_thumbnail_blur.jpg b/assets/bundles/Girls/10026/img/img_10026_9_thumbnail_blur.jpg new file mode 100644 index 00000000..09d8bf13 Binary files /dev/null and b/assets/bundles/Girls/10026/img/img_10026_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10026/img/img_10026_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10026/img/img_10026_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7f721851 --- /dev/null +++ b/assets/bundles/Girls/10026/img/img_10026_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d812a22d-e7af-49bf-abcd-89f67e3a2343", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d812a22d-e7af-49bf-abcd-89f67e3a2343@6c48a", + "displayName": "img_10026_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d812a22d-e7af-49bf-abcd-89f67e3a2343", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d812a22d-e7af-49bf-abcd-89f67e3a2343@f9941", + "displayName": "img_10026_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d812a22d-e7af-49bf-abcd-89f67e3a2343@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d812a22d-e7af-49bf-abcd-89f67e3a2343@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/togame.meta b/assets/bundles/Girls/10027/avatar.meta similarity index 70% rename from assets/bundles/Girls/10027/togame.meta rename to assets/bundles/Girls/10027/avatar.meta index ec491487..1e0352b2 100644 --- a/assets/bundles/Girls/10027/togame.meta +++ b/assets/bundles/Girls/10027/avatar.meta @@ -2,7 +2,7 @@ "ver": "1.2.0", "importer": "directory", "imported": true, - "uuid": "2f8b623a-e36e-4441-9a83-c7e7ad7fddfd", + "uuid": "f4ae6f2c-e468-4d70-b90b-2ceeacfbeb39", "files": [], "subMetas": {}, "userData": {} diff --git a/assets/bundles/Girls/10027/img.meta b/assets/bundles/Girls/10027/img.meta new file mode 100644 index 00000000..d1ad9789 --- /dev/null +++ b/assets/bundles/Girls/10027/img.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "03cf67dd-2465-48b9-9f5f-473dc6b04bad", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10027/img/img_10027_1.png b/assets/bundles/Girls/10027/img/img_10027_1.png new file mode 100644 index 00000000..202bda84 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_1.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_1.png.meta b/assets/bundles/Girls/10027/img/img_10027_1.png.meta new file mode 100644 index 00000000..628b1e80 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7ad40694-4ba2-43d5-baf4-c7a851750189", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7ad40694-4ba2-43d5-baf4-c7a851750189@6c48a", + "displayName": "img_10027_1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7ad40694-4ba2-43d5-baf4-c7a851750189", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7ad40694-4ba2-43d5-baf4-c7a851750189@f9941", + "displayName": "img_10027_1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7ad40694-4ba2-43d5-baf4-c7a851750189@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7ad40694-4ba2-43d5-baf4-c7a851750189@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_10.png b/assets/bundles/Girls/10027/img/img_10027_10.png new file mode 100644 index 00000000..bafdb6f1 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_10.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_10.png.meta b/assets/bundles/Girls/10027/img/img_10027_10.png.meta new file mode 100644 index 00000000..60636ccb --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_10.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b145293c-5f6f-416a-a9fb-ada25d581a19", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b145293c-5f6f-416a-a9fb-ada25d581a19@6c48a", + "displayName": "img_10027_10", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b145293c-5f6f-416a-a9fb-ada25d581a19", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b145293c-5f6f-416a-a9fb-ada25d581a19@f9941", + "displayName": "img_10027_10", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b145293c-5f6f-416a-a9fb-ada25d581a19@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b145293c-5f6f-416a-a9fb-ada25d581a19@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_10_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_10_thumbnail.jpg new file mode 100644 index 00000000..4a5bfea4 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_10_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_10_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_10_thumbnail.jpg.meta new file mode 100644 index 00000000..e50bc0e3 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_10_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0c8d9776-bab2-440d-a163-2067cf3d39db", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0c8d9776-bab2-440d-a163-2067cf3d39db@6c48a", + "displayName": "img_10027_10_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0c8d9776-bab2-440d-a163-2067cf3d39db", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0c8d9776-bab2-440d-a163-2067cf3d39db@f9941", + "displayName": "img_10027_10_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0c8d9776-bab2-440d-a163-2067cf3d39db@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0c8d9776-bab2-440d-a163-2067cf3d39db@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_10_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_10_thumbnail_blur.jpg new file mode 100644 index 00000000..998f0afa Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..799b1874 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "93be8825-4e7b-4229-a0e2-57e14b0d5970", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "93be8825-4e7b-4229-a0e2-57e14b0d5970@6c48a", + "displayName": "img_10027_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "93be8825-4e7b-4229-a0e2-57e14b0d5970", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "93be8825-4e7b-4229-a0e2-57e14b0d5970@f9941", + "displayName": "img_10027_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "93be8825-4e7b-4229-a0e2-57e14b0d5970@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "93be8825-4e7b-4229-a0e2-57e14b0d5970@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_11.png b/assets/bundles/Girls/10027/img/img_10027_11.png new file mode 100644 index 00000000..f5c67e21 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_11.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_11.png.meta b/assets/bundles/Girls/10027/img/img_10027_11.png.meta new file mode 100644 index 00000000..8a28f7f5 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_11.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c3f51d04-79de-45fa-81e3-aa71d7259738", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c3f51d04-79de-45fa-81e3-aa71d7259738@6c48a", + "displayName": "img_10027_11", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c3f51d04-79de-45fa-81e3-aa71d7259738", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c3f51d04-79de-45fa-81e3-aa71d7259738@f9941", + "displayName": "img_10027_11", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c3f51d04-79de-45fa-81e3-aa71d7259738@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c3f51d04-79de-45fa-81e3-aa71d7259738@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_11_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_11_thumbnail.jpg new file mode 100644 index 00000000..fc01a9fe Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_11_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_11_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_11_thumbnail.jpg.meta new file mode 100644 index 00000000..69d162ba --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_11_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8083385d-9feb-4be2-8ce0-4ebce24d11ff", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8083385d-9feb-4be2-8ce0-4ebce24d11ff@6c48a", + "displayName": "img_10027_11_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8083385d-9feb-4be2-8ce0-4ebce24d11ff", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8083385d-9feb-4be2-8ce0-4ebce24d11ff@f9941", + "displayName": "img_10027_11_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8083385d-9feb-4be2-8ce0-4ebce24d11ff@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8083385d-9feb-4be2-8ce0-4ebce24d11ff@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_11_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_11_thumbnail_blur.jpg new file mode 100644 index 00000000..c1c489c8 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c5ee5785 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "983802b9-5936-4fe3-a574-2b9e09225f0f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "983802b9-5936-4fe3-a574-2b9e09225f0f@6c48a", + "displayName": "img_10027_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "983802b9-5936-4fe3-a574-2b9e09225f0f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "983802b9-5936-4fe3-a574-2b9e09225f0f@f9941", + "displayName": "img_10027_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "983802b9-5936-4fe3-a574-2b9e09225f0f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "983802b9-5936-4fe3-a574-2b9e09225f0f@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_12.png b/assets/bundles/Girls/10027/img/img_10027_12.png new file mode 100644 index 00000000..b6548bb3 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_12.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_12.png.meta b/assets/bundles/Girls/10027/img/img_10027_12.png.meta new file mode 100644 index 00000000..3a2488ed --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_12.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0e33e26d-93c4-43b3-a7a1-4bf93be6252d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0e33e26d-93c4-43b3-a7a1-4bf93be6252d@6c48a", + "displayName": "img_10027_12", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0e33e26d-93c4-43b3-a7a1-4bf93be6252d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0e33e26d-93c4-43b3-a7a1-4bf93be6252d@f9941", + "displayName": "img_10027_12", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0e33e26d-93c4-43b3-a7a1-4bf93be6252d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0e33e26d-93c4-43b3-a7a1-4bf93be6252d@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_12_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_12_thumbnail.jpg new file mode 100644 index 00000000..9ff37b45 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_12_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_12_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_12_thumbnail.jpg.meta new file mode 100644 index 00000000..723c70a0 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_12_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "34c3a732-d357-4ca2-b45e-63e1919a75da", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "34c3a732-d357-4ca2-b45e-63e1919a75da@6c48a", + "displayName": "img_10027_12_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "34c3a732-d357-4ca2-b45e-63e1919a75da", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "34c3a732-d357-4ca2-b45e-63e1919a75da@f9941", + "displayName": "img_10027_12_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "34c3a732-d357-4ca2-b45e-63e1919a75da@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "34c3a732-d357-4ca2-b45e-63e1919a75da@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_12_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_12_thumbnail_blur.jpg new file mode 100644 index 00000000..b469cd75 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6c0f4b96 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9e726bfe-d508-4b0b-9c21-73a6b6e7c764", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9e726bfe-d508-4b0b-9c21-73a6b6e7c764@6c48a", + "displayName": "img_10027_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9e726bfe-d508-4b0b-9c21-73a6b6e7c764", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9e726bfe-d508-4b0b-9c21-73a6b6e7c764@f9941", + "displayName": "img_10027_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9e726bfe-d508-4b0b-9c21-73a6b6e7c764@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9e726bfe-d508-4b0b-9c21-73a6b6e7c764@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_13.png b/assets/bundles/Girls/10027/img/img_10027_13.png new file mode 100644 index 00000000..5369b3c4 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_13.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_13.png.meta b/assets/bundles/Girls/10027/img/img_10027_13.png.meta new file mode 100644 index 00000000..b12b44aa --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_13.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d9aa71f9-881c-4999-843d-daed8f22bd77", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d9aa71f9-881c-4999-843d-daed8f22bd77@6c48a", + "displayName": "img_10027_13", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d9aa71f9-881c-4999-843d-daed8f22bd77", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d9aa71f9-881c-4999-843d-daed8f22bd77@f9941", + "displayName": "img_10027_13", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d9aa71f9-881c-4999-843d-daed8f22bd77@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d9aa71f9-881c-4999-843d-daed8f22bd77@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_13_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_13_thumbnail.jpg new file mode 100644 index 00000000..e2832551 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_13_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_13_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_13_thumbnail.jpg.meta new file mode 100644 index 00000000..f69a00fd --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_13_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e6253581-4f75-4ca7-8234-b1faae20a1f1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e6253581-4f75-4ca7-8234-b1faae20a1f1@6c48a", + "displayName": "img_10027_13_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e6253581-4f75-4ca7-8234-b1faae20a1f1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e6253581-4f75-4ca7-8234-b1faae20a1f1@f9941", + "displayName": "img_10027_13_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e6253581-4f75-4ca7-8234-b1faae20a1f1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e6253581-4f75-4ca7-8234-b1faae20a1f1@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_13_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_13_thumbnail_blur.jpg new file mode 100644 index 00000000..1b1cb007 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5ec08267 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "81f42c5d-a0f9-4837-a923-63ca24d59f80", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "81f42c5d-a0f9-4837-a923-63ca24d59f80@6c48a", + "displayName": "img_10027_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "81f42c5d-a0f9-4837-a923-63ca24d59f80", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "81f42c5d-a0f9-4837-a923-63ca24d59f80@f9941", + "displayName": "img_10027_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "81f42c5d-a0f9-4837-a923-63ca24d59f80@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "81f42c5d-a0f9-4837-a923-63ca24d59f80@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_14.png b/assets/bundles/Girls/10027/img/img_10027_14.png new file mode 100644 index 00000000..eb54ef60 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_14.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_14.png.meta b/assets/bundles/Girls/10027/img/img_10027_14.png.meta new file mode 100644 index 00000000..e2d2e908 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_14.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "735245ec-0fd2-4294-9812-cac0cd7b8aaa", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "735245ec-0fd2-4294-9812-cac0cd7b8aaa@6c48a", + "displayName": "img_10027_14", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "735245ec-0fd2-4294-9812-cac0cd7b8aaa", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "735245ec-0fd2-4294-9812-cac0cd7b8aaa@f9941", + "displayName": "img_10027_14", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "735245ec-0fd2-4294-9812-cac0cd7b8aaa@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "735245ec-0fd2-4294-9812-cac0cd7b8aaa@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_14_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_14_thumbnail.jpg new file mode 100644 index 00000000..72296c3e Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_14_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_14_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_14_thumbnail.jpg.meta new file mode 100644 index 00000000..2cedb220 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_14_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5556479d-a81d-41b7-a6b4-8095399c4a69", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5556479d-a81d-41b7-a6b4-8095399c4a69@6c48a", + "displayName": "img_10027_14_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5556479d-a81d-41b7-a6b4-8095399c4a69", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5556479d-a81d-41b7-a6b4-8095399c4a69@f9941", + "displayName": "img_10027_14_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5556479d-a81d-41b7-a6b4-8095399c4a69@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5556479d-a81d-41b7-a6b4-8095399c4a69@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_14_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_14_thumbnail_blur.jpg new file mode 100644 index 00000000..239fef03 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7d637e3a --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5d00a467-a858-487a-b391-c5a323d64458", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5d00a467-a858-487a-b391-c5a323d64458@6c48a", + "displayName": "img_10027_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5d00a467-a858-487a-b391-c5a323d64458", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5d00a467-a858-487a-b391-c5a323d64458@f9941", + "displayName": "img_10027_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5d00a467-a858-487a-b391-c5a323d64458@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5d00a467-a858-487a-b391-c5a323d64458@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_15.png b/assets/bundles/Girls/10027/img/img_10027_15.png new file mode 100644 index 00000000..8e9d459d Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_15.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_15.png.meta b/assets/bundles/Girls/10027/img/img_10027_15.png.meta new file mode 100644 index 00000000..858aa67d --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_15.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "14f985c5-9bdd-4259-8802-2b83e488ee0b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "14f985c5-9bdd-4259-8802-2b83e488ee0b@6c48a", + "displayName": "img_10027_15", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "14f985c5-9bdd-4259-8802-2b83e488ee0b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "14f985c5-9bdd-4259-8802-2b83e488ee0b@f9941", + "displayName": "img_10027_15", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "14f985c5-9bdd-4259-8802-2b83e488ee0b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "14f985c5-9bdd-4259-8802-2b83e488ee0b@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_15_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_15_thumbnail.jpg new file mode 100644 index 00000000..38300005 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_15_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_15_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_15_thumbnail.jpg.meta new file mode 100644 index 00000000..7a4d177d --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_15_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ed63ca28-c48b-47e1-948e-cf14decfdad7", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ed63ca28-c48b-47e1-948e-cf14decfdad7@6c48a", + "displayName": "img_10027_15_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ed63ca28-c48b-47e1-948e-cf14decfdad7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ed63ca28-c48b-47e1-948e-cf14decfdad7@f9941", + "displayName": "img_10027_15_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ed63ca28-c48b-47e1-948e-cf14decfdad7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ed63ca28-c48b-47e1-948e-cf14decfdad7@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_15_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_15_thumbnail_blur.jpg new file mode 100644 index 00000000..a977c717 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8ff79d01 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "af86c7d9-1e2d-455d-a7a9-81bcf0c6d7d7", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "af86c7d9-1e2d-455d-a7a9-81bcf0c6d7d7@6c48a", + "displayName": "img_10027_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "af86c7d9-1e2d-455d-a7a9-81bcf0c6d7d7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "af86c7d9-1e2d-455d-a7a9-81bcf0c6d7d7@f9941", + "displayName": "img_10027_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "af86c7d9-1e2d-455d-a7a9-81bcf0c6d7d7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "af86c7d9-1e2d-455d-a7a9-81bcf0c6d7d7@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_16.png b/assets/bundles/Girls/10027/img/img_10027_16.png new file mode 100644 index 00000000..253c03c4 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_16.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_16.png.meta b/assets/bundles/Girls/10027/img/img_10027_16.png.meta new file mode 100644 index 00000000..1af11f5e --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_16.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2214ecdd-44a6-4fb3-b5a6-7d933f7ecec0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2214ecdd-44a6-4fb3-b5a6-7d933f7ecec0@6c48a", + "displayName": "img_10027_16", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2214ecdd-44a6-4fb3-b5a6-7d933f7ecec0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2214ecdd-44a6-4fb3-b5a6-7d933f7ecec0@f9941", + "displayName": "img_10027_16", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2214ecdd-44a6-4fb3-b5a6-7d933f7ecec0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2214ecdd-44a6-4fb3-b5a6-7d933f7ecec0@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_16_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_16_thumbnail.jpg new file mode 100644 index 00000000..d738882d Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_16_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_16_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_16_thumbnail.jpg.meta new file mode 100644 index 00000000..00828e77 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_16_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "960dd778-d229-4276-bd99-f49b7eec871b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "960dd778-d229-4276-bd99-f49b7eec871b@6c48a", + "displayName": "img_10027_16_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "960dd778-d229-4276-bd99-f49b7eec871b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "960dd778-d229-4276-bd99-f49b7eec871b@f9941", + "displayName": "img_10027_16_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "960dd778-d229-4276-bd99-f49b7eec871b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "960dd778-d229-4276-bd99-f49b7eec871b@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_16_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_16_thumbnail_blur.jpg new file mode 100644 index 00000000..4aedd33e Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4e86ad21 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f02e8d0e-b21e-427a-8be9-d4cf466540c7", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f02e8d0e-b21e-427a-8be9-d4cf466540c7@6c48a", + "displayName": "img_10027_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f02e8d0e-b21e-427a-8be9-d4cf466540c7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f02e8d0e-b21e-427a-8be9-d4cf466540c7@f9941", + "displayName": "img_10027_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f02e8d0e-b21e-427a-8be9-d4cf466540c7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f02e8d0e-b21e-427a-8be9-d4cf466540c7@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_17.png b/assets/bundles/Girls/10027/img/img_10027_17.png new file mode 100644 index 00000000..77bb2581 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_17.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_17.png.meta b/assets/bundles/Girls/10027/img/img_10027_17.png.meta new file mode 100644 index 00000000..0d496cf6 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_17.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "472fbf4d-ec72-4bf0-8026-b6636bb705af", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "472fbf4d-ec72-4bf0-8026-b6636bb705af@6c48a", + "displayName": "img_10027_17", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "472fbf4d-ec72-4bf0-8026-b6636bb705af", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "472fbf4d-ec72-4bf0-8026-b6636bb705af@f9941", + "displayName": "img_10027_17", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "472fbf4d-ec72-4bf0-8026-b6636bb705af@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "472fbf4d-ec72-4bf0-8026-b6636bb705af@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_17_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_17_thumbnail.jpg new file mode 100644 index 00000000..8fe92ec7 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_17_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_17_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_17_thumbnail.jpg.meta new file mode 100644 index 00000000..2500ec2c --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_17_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "22464f82-5adc-4115-971f-635185ffa6e7", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "22464f82-5adc-4115-971f-635185ffa6e7@6c48a", + "displayName": "img_10027_17_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "22464f82-5adc-4115-971f-635185ffa6e7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "22464f82-5adc-4115-971f-635185ffa6e7@f9941", + "displayName": "img_10027_17_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "22464f82-5adc-4115-971f-635185ffa6e7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "22464f82-5adc-4115-971f-635185ffa6e7@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_17_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_17_thumbnail_blur.jpg new file mode 100644 index 00000000..44bcdbb6 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0fe4f7a4 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "13ceb79d-46b0-4bea-841a-9f106974e4ae", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "13ceb79d-46b0-4bea-841a-9f106974e4ae@6c48a", + "displayName": "img_10027_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "13ceb79d-46b0-4bea-841a-9f106974e4ae", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "13ceb79d-46b0-4bea-841a-9f106974e4ae@f9941", + "displayName": "img_10027_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "13ceb79d-46b0-4bea-841a-9f106974e4ae@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "13ceb79d-46b0-4bea-841a-9f106974e4ae@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_18.png b/assets/bundles/Girls/10027/img/img_10027_18.png new file mode 100644 index 00000000..375f126e Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_18.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_18.png.meta b/assets/bundles/Girls/10027/img/img_10027_18.png.meta new file mode 100644 index 00000000..9547463a --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_18.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8d5e2d64-b3b2-4080-8211-6f89e25e665b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8d5e2d64-b3b2-4080-8211-6f89e25e665b@6c48a", + "displayName": "img_10027_18", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8d5e2d64-b3b2-4080-8211-6f89e25e665b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8d5e2d64-b3b2-4080-8211-6f89e25e665b@f9941", + "displayName": "img_10027_18", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8d5e2d64-b3b2-4080-8211-6f89e25e665b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8d5e2d64-b3b2-4080-8211-6f89e25e665b@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_18_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_18_thumbnail.jpg new file mode 100644 index 00000000..cf753cf6 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_18_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_18_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_18_thumbnail.jpg.meta new file mode 100644 index 00000000..9fdf45f9 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_18_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d26f95d4-f3cb-449a-a902-6d4d703f97c1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d26f95d4-f3cb-449a-a902-6d4d703f97c1@6c48a", + "displayName": "img_10027_18_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d26f95d4-f3cb-449a-a902-6d4d703f97c1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d26f95d4-f3cb-449a-a902-6d4d703f97c1@f9941", + "displayName": "img_10027_18_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d26f95d4-f3cb-449a-a902-6d4d703f97c1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d26f95d4-f3cb-449a-a902-6d4d703f97c1@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_18_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_18_thumbnail_blur.jpg new file mode 100644 index 00000000..2d529546 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_18_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_18_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_18_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c21cf62a --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_18_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1bea01a3-d374-4060-86e9-31f460a016a8", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1bea01a3-d374-4060-86e9-31f460a016a8@6c48a", + "displayName": "img_10027_18_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1bea01a3-d374-4060-86e9-31f460a016a8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1bea01a3-d374-4060-86e9-31f460a016a8@f9941", + "displayName": "img_10027_18_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1bea01a3-d374-4060-86e9-31f460a016a8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1bea01a3-d374-4060-86e9-31f460a016a8@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_19.png b/assets/bundles/Girls/10027/img/img_10027_19.png new file mode 100644 index 00000000..9e6cd790 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_19.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_19.png.meta b/assets/bundles/Girls/10027/img/img_10027_19.png.meta new file mode 100644 index 00000000..c0e186b9 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_19.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ac87400d-4bc3-44ef-a3c0-3e183e42f415", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ac87400d-4bc3-44ef-a3c0-3e183e42f415@6c48a", + "displayName": "img_10027_19", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ac87400d-4bc3-44ef-a3c0-3e183e42f415", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ac87400d-4bc3-44ef-a3c0-3e183e42f415@f9941", + "displayName": "img_10027_19", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ac87400d-4bc3-44ef-a3c0-3e183e42f415@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ac87400d-4bc3-44ef-a3c0-3e183e42f415@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_19_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_19_thumbnail.jpg new file mode 100644 index 00000000..247930b4 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_19_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_19_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_19_thumbnail.jpg.meta new file mode 100644 index 00000000..a90925ab --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_19_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "af62fab0-bb5a-40ce-b134-474754632a9d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "af62fab0-bb5a-40ce-b134-474754632a9d@6c48a", + "displayName": "img_10027_19_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "af62fab0-bb5a-40ce-b134-474754632a9d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "af62fab0-bb5a-40ce-b134-474754632a9d@f9941", + "displayName": "img_10027_19_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "af62fab0-bb5a-40ce-b134-474754632a9d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "af62fab0-bb5a-40ce-b134-474754632a9d@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_19_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_19_thumbnail_blur.jpg new file mode 100644 index 00000000..5a7f28f4 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_19_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_19_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_19_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..deeaaa0b --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_19_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "48f2d09b-f01c-4f78-a995-4ebbe0d326f0", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "48f2d09b-f01c-4f78-a995-4ebbe0d326f0@6c48a", + "displayName": "img_10027_19_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "48f2d09b-f01c-4f78-a995-4ebbe0d326f0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "48f2d09b-f01c-4f78-a995-4ebbe0d326f0@f9941", + "displayName": "img_10027_19_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "48f2d09b-f01c-4f78-a995-4ebbe0d326f0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "48f2d09b-f01c-4f78-a995-4ebbe0d326f0@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_1_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_1_thumbnail.jpg new file mode 100644 index 00000000..a0796601 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_1_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_1_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_1_thumbnail.jpg.meta new file mode 100644 index 00000000..e2cd3d7e --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_1_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "80f8e3f3-1778-455d-89b9-4c0e29d6e7bd", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "80f8e3f3-1778-455d-89b9-4c0e29d6e7bd@6c48a", + "displayName": "img_10027_1_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "80f8e3f3-1778-455d-89b9-4c0e29d6e7bd", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "80f8e3f3-1778-455d-89b9-4c0e29d6e7bd@f9941", + "displayName": "img_10027_1_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "80f8e3f3-1778-455d-89b9-4c0e29d6e7bd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "80f8e3f3-1778-455d-89b9-4c0e29d6e7bd@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_1_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_1_thumbnail_blur.jpg new file mode 100644 index 00000000..4510fd08 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5bca34c5 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "acff41ab-1426-4eaf-9240-a58f92e3c7b0", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "acff41ab-1426-4eaf-9240-a58f92e3c7b0@6c48a", + "displayName": "img_10027_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "acff41ab-1426-4eaf-9240-a58f92e3c7b0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "acff41ab-1426-4eaf-9240-a58f92e3c7b0@f9941", + "displayName": "img_10027_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "acff41ab-1426-4eaf-9240-a58f92e3c7b0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "acff41ab-1426-4eaf-9240-a58f92e3c7b0@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_2.png b/assets/bundles/Girls/10027/img/img_10027_2.png new file mode 100644 index 00000000..4e3dbab5 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_2.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_2.png.meta b/assets/bundles/Girls/10027/img/img_10027_2.png.meta new file mode 100644 index 00000000..f5387434 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "46e4abe4-7ad2-4287-a944-c1d4a2611b7f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "46e4abe4-7ad2-4287-a944-c1d4a2611b7f@6c48a", + "displayName": "img_10027_2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "46e4abe4-7ad2-4287-a944-c1d4a2611b7f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "46e4abe4-7ad2-4287-a944-c1d4a2611b7f@f9941", + "displayName": "img_10027_2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "46e4abe4-7ad2-4287-a944-c1d4a2611b7f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "46e4abe4-7ad2-4287-a944-c1d4a2611b7f@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_2_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_2_thumbnail.jpg new file mode 100644 index 00000000..239be86c Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_2_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_2_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_2_thumbnail.jpg.meta new file mode 100644 index 00000000..214041f0 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_2_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e487eeaf-7a00-4aba-ad3c-5956665c3baa", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e487eeaf-7a00-4aba-ad3c-5956665c3baa@6c48a", + "displayName": "img_10027_2_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e487eeaf-7a00-4aba-ad3c-5956665c3baa", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e487eeaf-7a00-4aba-ad3c-5956665c3baa@f9941", + "displayName": "img_10027_2_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e487eeaf-7a00-4aba-ad3c-5956665c3baa@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e487eeaf-7a00-4aba-ad3c-5956665c3baa@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_2_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_2_thumbnail_blur.jpg new file mode 100644 index 00000000..0270de87 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..602b0967 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "305fad2b-a1fc-4ee5-a04d-75b07d24f618", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "305fad2b-a1fc-4ee5-a04d-75b07d24f618@6c48a", + "displayName": "img_10027_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "305fad2b-a1fc-4ee5-a04d-75b07d24f618", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "305fad2b-a1fc-4ee5-a04d-75b07d24f618@f9941", + "displayName": "img_10027_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "305fad2b-a1fc-4ee5-a04d-75b07d24f618@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "305fad2b-a1fc-4ee5-a04d-75b07d24f618@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_3.png b/assets/bundles/Girls/10027/img/img_10027_3.png new file mode 100644 index 00000000..69084e9f Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_3.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_3.png.meta b/assets/bundles/Girls/10027/img/img_10027_3.png.meta new file mode 100644 index 00000000..21e268f9 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "effd444e-08bc-42af-a2c8-7382e1ebcd98", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "effd444e-08bc-42af-a2c8-7382e1ebcd98@6c48a", + "displayName": "img_10027_3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "effd444e-08bc-42af-a2c8-7382e1ebcd98", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "effd444e-08bc-42af-a2c8-7382e1ebcd98@f9941", + "displayName": "img_10027_3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "effd444e-08bc-42af-a2c8-7382e1ebcd98@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "effd444e-08bc-42af-a2c8-7382e1ebcd98@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_3_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_3_thumbnail.jpg new file mode 100644 index 00000000..afab1cd9 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_3_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_3_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_3_thumbnail.jpg.meta new file mode 100644 index 00000000..6bfc8c41 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_3_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "87853c20-82fd-41ce-8841-a0c8bedf2169", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "87853c20-82fd-41ce-8841-a0c8bedf2169@6c48a", + "displayName": "img_10027_3_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "87853c20-82fd-41ce-8841-a0c8bedf2169", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "87853c20-82fd-41ce-8841-a0c8bedf2169@f9941", + "displayName": "img_10027_3_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "87853c20-82fd-41ce-8841-a0c8bedf2169@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "87853c20-82fd-41ce-8841-a0c8bedf2169@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_3_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_3_thumbnail_blur.jpg new file mode 100644 index 00000000..76f76781 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..64792932 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2b4aecb3-61d2-4142-a1e8-8bb7544fff0f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2b4aecb3-61d2-4142-a1e8-8bb7544fff0f@6c48a", + "displayName": "img_10027_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2b4aecb3-61d2-4142-a1e8-8bb7544fff0f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2b4aecb3-61d2-4142-a1e8-8bb7544fff0f@f9941", + "displayName": "img_10027_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2b4aecb3-61d2-4142-a1e8-8bb7544fff0f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2b4aecb3-61d2-4142-a1e8-8bb7544fff0f@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_4.png b/assets/bundles/Girls/10027/img/img_10027_4.png new file mode 100644 index 00000000..a6409952 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_4.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_4.png.meta b/assets/bundles/Girls/10027/img/img_10027_4.png.meta new file mode 100644 index 00000000..16447195 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_4.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "42d9bce7-8399-4ae1-89df-886fe717c02d", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "42d9bce7-8399-4ae1-89df-886fe717c02d@6c48a", + "displayName": "img_10027_4", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "42d9bce7-8399-4ae1-89df-886fe717c02d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "42d9bce7-8399-4ae1-89df-886fe717c02d@f9941", + "displayName": "img_10027_4", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "42d9bce7-8399-4ae1-89df-886fe717c02d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "42d9bce7-8399-4ae1-89df-886fe717c02d@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_4_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_4_thumbnail.jpg new file mode 100644 index 00000000..9fa4c41e Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_4_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_4_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_4_thumbnail.jpg.meta new file mode 100644 index 00000000..ad7007b8 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_4_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c591d91e-7c1e-4081-81dc-7bf35c6e4e03", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c591d91e-7c1e-4081-81dc-7bf35c6e4e03@6c48a", + "displayName": "img_10027_4_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c591d91e-7c1e-4081-81dc-7bf35c6e4e03", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c591d91e-7c1e-4081-81dc-7bf35c6e4e03@f9941", + "displayName": "img_10027_4_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c591d91e-7c1e-4081-81dc-7bf35c6e4e03@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c591d91e-7c1e-4081-81dc-7bf35c6e4e03@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_4_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_4_thumbnail_blur.jpg new file mode 100644 index 00000000..12a47e1f Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c1653355 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "45805282-f394-4c6b-ae0e-0b05325bd297", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "45805282-f394-4c6b-ae0e-0b05325bd297@6c48a", + "displayName": "img_10027_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "45805282-f394-4c6b-ae0e-0b05325bd297", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "45805282-f394-4c6b-ae0e-0b05325bd297@f9941", + "displayName": "img_10027_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "45805282-f394-4c6b-ae0e-0b05325bd297@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "45805282-f394-4c6b-ae0e-0b05325bd297@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_5.png b/assets/bundles/Girls/10027/img/img_10027_5.png new file mode 100644 index 00000000..54538fd5 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_5.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_5.png.meta b/assets/bundles/Girls/10027/img/img_10027_5.png.meta new file mode 100644 index 00000000..4ac4f49e --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9ff2f943-aa3c-4e99-8af7-14cd9f02de74", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9ff2f943-aa3c-4e99-8af7-14cd9f02de74@6c48a", + "displayName": "img_10027_5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9ff2f943-aa3c-4e99-8af7-14cd9f02de74", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9ff2f943-aa3c-4e99-8af7-14cd9f02de74@f9941", + "displayName": "img_10027_5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9ff2f943-aa3c-4e99-8af7-14cd9f02de74@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9ff2f943-aa3c-4e99-8af7-14cd9f02de74@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_5_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_5_thumbnail.jpg new file mode 100644 index 00000000..abf081f1 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_5_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_5_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_5_thumbnail.jpg.meta new file mode 100644 index 00000000..3706271f --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_5_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "0275c950-4493-4f4f-a885-810b0dd2084e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "0275c950-4493-4f4f-a885-810b0dd2084e@6c48a", + "displayName": "img_10027_5_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "0275c950-4493-4f4f-a885-810b0dd2084e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "0275c950-4493-4f4f-a885-810b0dd2084e@f9941", + "displayName": "img_10027_5_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "0275c950-4493-4f4f-a885-810b0dd2084e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "0275c950-4493-4f4f-a885-810b0dd2084e@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_5_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_5_thumbnail_blur.jpg new file mode 100644 index 00000000..47722fca Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..572dfdcb --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b060b6ab-a45d-432d-a525-2c848176a2f4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b060b6ab-a45d-432d-a525-2c848176a2f4@6c48a", + "displayName": "img_10027_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b060b6ab-a45d-432d-a525-2c848176a2f4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b060b6ab-a45d-432d-a525-2c848176a2f4@f9941", + "displayName": "img_10027_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b060b6ab-a45d-432d-a525-2c848176a2f4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b060b6ab-a45d-432d-a525-2c848176a2f4@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_6.png b/assets/bundles/Girls/10027/img/img_10027_6.png new file mode 100644 index 00000000..6219b098 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_6.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_6.png.meta b/assets/bundles/Girls/10027/img/img_10027_6.png.meta new file mode 100644 index 00000000..426d1c55 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_6.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "40451094-c786-4e57-96c7-c90219566712", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "40451094-c786-4e57-96c7-c90219566712@6c48a", + "displayName": "img_10027_6", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "40451094-c786-4e57-96c7-c90219566712", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "40451094-c786-4e57-96c7-c90219566712@f9941", + "displayName": "img_10027_6", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "40451094-c786-4e57-96c7-c90219566712@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "40451094-c786-4e57-96c7-c90219566712@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_6_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_6_thumbnail.jpg new file mode 100644 index 00000000..9a4061cf Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_6_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_6_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_6_thumbnail.jpg.meta new file mode 100644 index 00000000..c44724d6 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_6_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8332bcc5-9f0d-46fc-a5fc-6d802fd73eca", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8332bcc5-9f0d-46fc-a5fc-6d802fd73eca@6c48a", + "displayName": "img_10027_6_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8332bcc5-9f0d-46fc-a5fc-6d802fd73eca", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8332bcc5-9f0d-46fc-a5fc-6d802fd73eca@f9941", + "displayName": "img_10027_6_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8332bcc5-9f0d-46fc-a5fc-6d802fd73eca@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8332bcc5-9f0d-46fc-a5fc-6d802fd73eca@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_6_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_6_thumbnail_blur.jpg new file mode 100644 index 00000000..8eff8b56 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..05e6cec9 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "04ad9b94-2daf-4a7f-9844-4c3f3b00c542", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "04ad9b94-2daf-4a7f-9844-4c3f3b00c542@6c48a", + "displayName": "img_10027_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "04ad9b94-2daf-4a7f-9844-4c3f3b00c542", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "04ad9b94-2daf-4a7f-9844-4c3f3b00c542@f9941", + "displayName": "img_10027_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "04ad9b94-2daf-4a7f-9844-4c3f3b00c542@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "04ad9b94-2daf-4a7f-9844-4c3f3b00c542@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_7.png b/assets/bundles/Girls/10027/img/img_10027_7.png new file mode 100644 index 00000000..7bf9c746 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_7.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_7.png.meta b/assets/bundles/Girls/10027/img/img_10027_7.png.meta new file mode 100644 index 00000000..945f3c3f --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bf5f4487-6a33-4c9e-b49a-5590d39892c6", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bf5f4487-6a33-4c9e-b49a-5590d39892c6@6c48a", + "displayName": "img_10027_7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bf5f4487-6a33-4c9e-b49a-5590d39892c6", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "bf5f4487-6a33-4c9e-b49a-5590d39892c6@f9941", + "displayName": "img_10027_7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bf5f4487-6a33-4c9e-b49a-5590d39892c6@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bf5f4487-6a33-4c9e-b49a-5590d39892c6@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_7_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_7_thumbnail.jpg new file mode 100644 index 00000000..cea98e5b Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_7_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_7_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_7_thumbnail.jpg.meta new file mode 100644 index 00000000..a41ad7fc --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_7_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f5cbd6af-bb92-4034-9113-0e68520f4e8a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f5cbd6af-bb92-4034-9113-0e68520f4e8a@6c48a", + "displayName": "img_10027_7_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f5cbd6af-bb92-4034-9113-0e68520f4e8a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f5cbd6af-bb92-4034-9113-0e68520f4e8a@f9941", + "displayName": "img_10027_7_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f5cbd6af-bb92-4034-9113-0e68520f4e8a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f5cbd6af-bb92-4034-9113-0e68520f4e8a@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_7_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_7_thumbnail_blur.jpg new file mode 100644 index 00000000..3f0a2234 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..bb2a1951 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9b21737f-3ee3-481e-b9da-4906dd1e08c2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9b21737f-3ee3-481e-b9da-4906dd1e08c2@6c48a", + "displayName": "img_10027_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9b21737f-3ee3-481e-b9da-4906dd1e08c2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9b21737f-3ee3-481e-b9da-4906dd1e08c2@f9941", + "displayName": "img_10027_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9b21737f-3ee3-481e-b9da-4906dd1e08c2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9b21737f-3ee3-481e-b9da-4906dd1e08c2@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_8.png b/assets/bundles/Girls/10027/img/img_10027_8.png new file mode 100644 index 00000000..44333171 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_8.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_8.png.meta b/assets/bundles/Girls/10027/img/img_10027_8.png.meta new file mode 100644 index 00000000..e32719f5 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_8.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "aec8dae2-97b4-447d-aa0e-d2a6ad9d90e8", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "aec8dae2-97b4-447d-aa0e-d2a6ad9d90e8@6c48a", + "displayName": "img_10027_8", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "aec8dae2-97b4-447d-aa0e-d2a6ad9d90e8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "aec8dae2-97b4-447d-aa0e-d2a6ad9d90e8@f9941", + "displayName": "img_10027_8", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aec8dae2-97b4-447d-aa0e-d2a6ad9d90e8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "aec8dae2-97b4-447d-aa0e-d2a6ad9d90e8@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_8_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_8_thumbnail.jpg new file mode 100644 index 00000000..2a2485b5 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_8_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_8_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_8_thumbnail.jpg.meta new file mode 100644 index 00000000..08f3381f --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_8_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2f3dcb3e-7937-4e60-a6f8-b535c96a34cf", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2f3dcb3e-7937-4e60-a6f8-b535c96a34cf@6c48a", + "displayName": "img_10027_8_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2f3dcb3e-7937-4e60-a6f8-b535c96a34cf", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2f3dcb3e-7937-4e60-a6f8-b535c96a34cf@f9941", + "displayName": "img_10027_8_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2f3dcb3e-7937-4e60-a6f8-b535c96a34cf@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2f3dcb3e-7937-4e60-a6f8-b535c96a34cf@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_8_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_8_thumbnail_blur.jpg new file mode 100644 index 00000000..aacb857d Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c7520b46 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6e7a0bfd-9ed4-4f34-8003-2b06e91f6164", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6e7a0bfd-9ed4-4f34-8003-2b06e91f6164@6c48a", + "displayName": "img_10027_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6e7a0bfd-9ed4-4f34-8003-2b06e91f6164", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6e7a0bfd-9ed4-4f34-8003-2b06e91f6164@f9941", + "displayName": "img_10027_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6e7a0bfd-9ed4-4f34-8003-2b06e91f6164@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6e7a0bfd-9ed4-4f34-8003-2b06e91f6164@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_9.png b/assets/bundles/Girls/10027/img/img_10027_9.png new file mode 100644 index 00000000..d08b9b1d Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_9.png differ diff --git a/assets/bundles/Girls/10027/img/img_10027_9.png.meta b/assets/bundles/Girls/10027/img/img_10027_9.png.meta new file mode 100644 index 00000000..8c7dd549 --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "211929f3-30b1-4c09-85df-557e4a50d7bd", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "211929f3-30b1-4c09-85df-557e4a50d7bd@6c48a", + "displayName": "img_10027_9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "211929f3-30b1-4c09-85df-557e4a50d7bd", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "211929f3-30b1-4c09-85df-557e4a50d7bd@f9941", + "displayName": "img_10027_9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 896, + "height": 1152, + "rawWidth": 896, + "rawHeight": 1152, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -448, + -576, + 0, + 448, + -576, + 0, + -448, + 576, + 0, + 448, + 576, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1152, + 896, + 1152, + 0, + 0, + 896, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -448, + -576, + 0 + ], + "maxPos": [ + 448, + 576, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "211929f3-30b1-4c09-85df-557e4a50d7bd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "211929f3-30b1-4c09-85df-557e4a50d7bd@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_9_thumbnail.jpg b/assets/bundles/Girls/10027/img/img_10027_9_thumbnail.jpg new file mode 100644 index 00000000..576f0022 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_9_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_9_thumbnail.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_9_thumbnail.jpg.meta new file mode 100644 index 00000000..2b1225bc --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_9_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "86dafc68-3d69-4a48-806d-3fe099617216", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "86dafc68-3d69-4a48-806d-3fe099617216@6c48a", + "displayName": "img_10027_9_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "86dafc68-3d69-4a48-806d-3fe099617216", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "86dafc68-3d69-4a48-806d-3fe099617216@f9941", + "displayName": "img_10027_9_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "86dafc68-3d69-4a48-806d-3fe099617216@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "86dafc68-3d69-4a48-806d-3fe099617216@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/img/img_10027_9_thumbnail_blur.jpg b/assets/bundles/Girls/10027/img/img_10027_9_thumbnail_blur.jpg new file mode 100644 index 00000000..f3b6d5f6 Binary files /dev/null and b/assets/bundles/Girls/10027/img/img_10027_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/img/img_10027_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/img/img_10027_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..fe46226b --- /dev/null +++ b/assets/bundles/Girls/10027/img/img_10027_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a8957f7a-b295-4185-b26c-5c9c9aa590c1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a8957f7a-b295-4185-b26c-5c9c9aa590c1@6c48a", + "displayName": "img_10027_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a8957f7a-b295-4185-b26c-5c9c9aa590c1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a8957f7a-b295-4185-b26c-5c9c9aa590c1@f9941", + "displayName": "img_10027_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 115, + "rawWidth": 90, + "rawHeight": 115, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -57.5, + 0, + 45, + -57.5, + 0, + -45, + 57.5, + 0, + 45, + 57.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 115, + 90, + 115, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -57.5, + 0 + ], + "maxPos": [ + 45, + 57.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a8957f7a-b295-4185-b26c-5c9c9aa590c1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a8957f7a-b295-4185-b26c-5c9c9aa590c1@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/video.meta b/assets/bundles/Girls/10027/video.meta new file mode 100644 index 00000000..4d725053 --- /dev/null +++ b/assets/bundles/Girls/10027/video.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "b5a40dfe-328a-4d56-8804-d3faf5d9f14d", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10027/video/video_10027_1.mp4 b/assets/bundles/Girls/10027/video/video_10027_1.mp4 new file mode 100644 index 00000000..ab5fb86b Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_1.mp4 differ diff --git a/assets/bundles/Girls/10027/video/video_10027_1.mp4.meta b/assets/bundles/Girls/10027/video/video_10027_1.mp4.meta new file mode 100644 index 00000000..a72d7322 --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_1.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "b524b4d6-a506-4ac2-b1d0-ca0e8c1b2d99", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10027/video/video_10027_1_thumbnail.jpg b/assets/bundles/Girls/10027/video/video_10027_1_thumbnail.jpg new file mode 100644 index 00000000..74c2f859 Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_1_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/video/video_10027_1_thumbnail.jpg.meta b/assets/bundles/Girls/10027/video/video_10027_1_thumbnail.jpg.meta new file mode 100644 index 00000000..70edc867 --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_1_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5bd40007-0861-46cb-b11c-bbeacf2b052b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5bd40007-0861-46cb-b11c-bbeacf2b052b@6c48a", + "displayName": "video_10027_1_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5bd40007-0861-46cb-b11c-bbeacf2b052b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5bd40007-0861-46cb-b11c-bbeacf2b052b@f9941", + "displayName": "video_10027_1_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5bd40007-0861-46cb-b11c-bbeacf2b052b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5bd40007-0861-46cb-b11c-bbeacf2b052b@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/video/video_10027_1_thumbnail_blur.jpg b/assets/bundles/Girls/10027/video/video_10027_1_thumbnail_blur.jpg new file mode 100644 index 00000000..c3f30902 Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/video/video_10027_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/video/video_10027_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..fcd92ee7 --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "121543de-54d5-4746-b7d6-cee7386092b3", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "121543de-54d5-4746-b7d6-cee7386092b3@6c48a", + "displayName": "video_10027_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "121543de-54d5-4746-b7d6-cee7386092b3", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "121543de-54d5-4746-b7d6-cee7386092b3@f9941", + "displayName": "video_10027_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "121543de-54d5-4746-b7d6-cee7386092b3@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "121543de-54d5-4746-b7d6-cee7386092b3@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/video/video_10027_2.mp4 b/assets/bundles/Girls/10027/video/video_10027_2.mp4 new file mode 100644 index 00000000..7332c8d3 Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_2.mp4 differ diff --git a/assets/bundles/Girls/10027/video/video_10027_2.mp4.meta b/assets/bundles/Girls/10027/video/video_10027_2.mp4.meta new file mode 100644 index 00000000..a963aa76 --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_2.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "ec20a32f-051e-4504-ae37-92d90ded45bc", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10027/video/video_10027_2_thumbnail.jpg b/assets/bundles/Girls/10027/video/video_10027_2_thumbnail.jpg new file mode 100644 index 00000000..2e9616c5 Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_2_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/video/video_10027_2_thumbnail.jpg.meta b/assets/bundles/Girls/10027/video/video_10027_2_thumbnail.jpg.meta new file mode 100644 index 00000000..8c623b40 --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_2_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ee601015-e35a-4571-a1f8-038b761ff467", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ee601015-e35a-4571-a1f8-038b761ff467@6c48a", + "displayName": "video_10027_2_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ee601015-e35a-4571-a1f8-038b761ff467", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ee601015-e35a-4571-a1f8-038b761ff467@f9941", + "displayName": "video_10027_2_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ee601015-e35a-4571-a1f8-038b761ff467@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ee601015-e35a-4571-a1f8-038b761ff467@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/video/video_10027_2_thumbnail_blur.jpg b/assets/bundles/Girls/10027/video/video_10027_2_thumbnail_blur.jpg new file mode 100644 index 00000000..6975e3fc Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/video/video_10027_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/video/video_10027_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..401e073d --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6bd2435a-1f11-4b46-961d-7f0c6a97a1f2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6bd2435a-1f11-4b46-961d-7f0c6a97a1f2@6c48a", + "displayName": "video_10027_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6bd2435a-1f11-4b46-961d-7f0c6a97a1f2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6bd2435a-1f11-4b46-961d-7f0c6a97a1f2@f9941", + "displayName": "video_10027_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6bd2435a-1f11-4b46-961d-7f0c6a97a1f2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6bd2435a-1f11-4b46-961d-7f0c6a97a1f2@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/video/video_10027_3.mp4 b/assets/bundles/Girls/10027/video/video_10027_3.mp4 new file mode 100644 index 00000000..1ce5c196 Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_3.mp4 differ diff --git a/assets/bundles/Girls/10027/video/video_10027_3.mp4.meta b/assets/bundles/Girls/10027/video/video_10027_3.mp4.meta new file mode 100644 index 00000000..fb4a0ee3 --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_3.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "85be30ec-8723-474d-b7dd-63a2f5ef1827", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10027/video/video_10027_3_thumbnail.jpg b/assets/bundles/Girls/10027/video/video_10027_3_thumbnail.jpg new file mode 100644 index 00000000..f4350ff6 Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_3_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/video/video_10027_3_thumbnail.jpg.meta b/assets/bundles/Girls/10027/video/video_10027_3_thumbnail.jpg.meta new file mode 100644 index 00000000..263eda6b --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_3_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d77473fc-9e3e-4862-9f1e-fd2ec3dcdbef", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d77473fc-9e3e-4862-9f1e-fd2ec3dcdbef@6c48a", + "displayName": "video_10027_3_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d77473fc-9e3e-4862-9f1e-fd2ec3dcdbef", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d77473fc-9e3e-4862-9f1e-fd2ec3dcdbef@f9941", + "displayName": "video_10027_3_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d77473fc-9e3e-4862-9f1e-fd2ec3dcdbef@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d77473fc-9e3e-4862-9f1e-fd2ec3dcdbef@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/video/video_10027_3_thumbnail_blur.jpg b/assets/bundles/Girls/10027/video/video_10027_3_thumbnail_blur.jpg new file mode 100644 index 00000000..49a7bac6 Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/video/video_10027_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/video/video_10027_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..444d7154 --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "19ec511f-f70b-48e4-83af-9456180a61a9", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "19ec511f-f70b-48e4-83af-9456180a61a9@6c48a", + "displayName": "video_10027_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "19ec511f-f70b-48e4-83af-9456180a61a9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "19ec511f-f70b-48e4-83af-9456180a61a9@f9941", + "displayName": "video_10027_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "19ec511f-f70b-48e4-83af-9456180a61a9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "19ec511f-f70b-48e4-83af-9456180a61a9@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/video/video_10027_4.mp4 b/assets/bundles/Girls/10027/video/video_10027_4.mp4 new file mode 100644 index 00000000..00ab1f6f Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_4.mp4 differ diff --git a/assets/bundles/Girls/10027/video/video_10027_4.mp4.meta b/assets/bundles/Girls/10027/video/video_10027_4.mp4.meta new file mode 100644 index 00000000..4f77b8b3 --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_4.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "f69f43ec-31d4-4dc5-b701-d47802c13b25", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10027/video/video_10027_4_thumbnail.jpg b/assets/bundles/Girls/10027/video/video_10027_4_thumbnail.jpg new file mode 100644 index 00000000..8b09477b Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_4_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/video/video_10027_4_thumbnail.jpg.meta b/assets/bundles/Girls/10027/video/video_10027_4_thumbnail.jpg.meta new file mode 100644 index 00000000..05d281af --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_4_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "54276ba9-7792-4582-86ce-7d822a71b082", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "54276ba9-7792-4582-86ce-7d822a71b082@6c48a", + "displayName": "video_10027_4_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "54276ba9-7792-4582-86ce-7d822a71b082", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "54276ba9-7792-4582-86ce-7d822a71b082@f9941", + "displayName": "video_10027_4_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "54276ba9-7792-4582-86ce-7d822a71b082@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "54276ba9-7792-4582-86ce-7d822a71b082@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/video/video_10027_4_thumbnail_blur.jpg b/assets/bundles/Girls/10027/video/video_10027_4_thumbnail_blur.jpg new file mode 100644 index 00000000..bc11a03b Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/video/video_10027_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/video/video_10027_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ebc565f4 --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9b35c9d8-6b98-4d44-9650-256635285443", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9b35c9d8-6b98-4d44-9650-256635285443@6c48a", + "displayName": "video_10027_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9b35c9d8-6b98-4d44-9650-256635285443", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9b35c9d8-6b98-4d44-9650-256635285443@f9941", + "displayName": "video_10027_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9b35c9d8-6b98-4d44-9650-256635285443@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9b35c9d8-6b98-4d44-9650-256635285443@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/video/video_10027_5.mp4 b/assets/bundles/Girls/10027/video/video_10027_5.mp4 new file mode 100644 index 00000000..8453f585 Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_5.mp4 differ diff --git a/assets/bundles/Girls/10027/video/video_10027_5.mp4.meta b/assets/bundles/Girls/10027/video/video_10027_5.mp4.meta new file mode 100644 index 00000000..cd752c2b --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_5.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "39414db1-746b-4d49-8316-2398c8bd409a", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10027/video/video_10027_5_thumbnail.jpg b/assets/bundles/Girls/10027/video/video_10027_5_thumbnail.jpg new file mode 100644 index 00000000..468727fd Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_5_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/video/video_10027_5_thumbnail.jpg.meta b/assets/bundles/Girls/10027/video/video_10027_5_thumbnail.jpg.meta new file mode 100644 index 00000000..5430059a --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_5_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4bcb2387-ead3-4338-bc0d-180535bcf3f2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4bcb2387-ead3-4338-bc0d-180535bcf3f2@6c48a", + "displayName": "video_10027_5_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4bcb2387-ead3-4338-bc0d-180535bcf3f2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4bcb2387-ead3-4338-bc0d-180535bcf3f2@f9941", + "displayName": "video_10027_5_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4bcb2387-ead3-4338-bc0d-180535bcf3f2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4bcb2387-ead3-4338-bc0d-180535bcf3f2@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/video/video_10027_5_thumbnail_blur.jpg b/assets/bundles/Girls/10027/video/video_10027_5_thumbnail_blur.jpg new file mode 100644 index 00000000..3fc1ed0c Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/video/video_10027_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/video/video_10027_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..3afd47dc --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "31fecb97-4e21-461d-a63a-af0a56235ce2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "31fecb97-4e21-461d-a63a-af0a56235ce2@6c48a", + "displayName": "video_10027_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "31fecb97-4e21-461d-a63a-af0a56235ce2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "31fecb97-4e21-461d-a63a-af0a56235ce2@f9941", + "displayName": "video_10027_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "31fecb97-4e21-461d-a63a-af0a56235ce2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "31fecb97-4e21-461d-a63a-af0a56235ce2@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/video/video_10027_6.mp4 b/assets/bundles/Girls/10027/video/video_10027_6.mp4 new file mode 100644 index 00000000..c05deb3f Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_6.mp4 differ diff --git a/assets/bundles/Girls/10027/video/video_10027_6.mp4.meta b/assets/bundles/Girls/10027/video/video_10027_6.mp4.meta new file mode 100644 index 00000000..71c1dd78 --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_6.mp4.meta @@ -0,0 +1,12 @@ +{ + "ver": "1.0.0", + "importer": "video-clip", + "imported": true, + "uuid": "0180be51-7157-4dec-ac3e-7a7f9819fe0d", + "files": [ + ".json", + ".mp4" + ], + "subMetas": {}, + "userData": {} +} diff --git a/assets/bundles/Girls/10027/video/video_10027_6_thumbnail.jpg b/assets/bundles/Girls/10027/video/video_10027_6_thumbnail.jpg new file mode 100644 index 00000000..a529eb33 Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_6_thumbnail.jpg differ diff --git a/assets/bundles/Girls/10027/video/video_10027_6_thumbnail.jpg.meta b/assets/bundles/Girls/10027/video/video_10027_6_thumbnail.jpg.meta new file mode 100644 index 00000000..6f369aa3 --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_6_thumbnail.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "59f8211c-c108-4002-a0c8-b49c19259bf4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "59f8211c-c108-4002-a0c8-b49c19259bf4@6c48a", + "displayName": "video_10027_6_thumbnail", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "59f8211c-c108-4002-a0c8-b49c19259bf4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "59f8211c-c108-4002-a0c8-b49c19259bf4@f9941", + "displayName": "video_10027_6_thumbnail", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "59f8211c-c108-4002-a0c8-b49c19259bf4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "59f8211c-c108-4002-a0c8-b49c19259bf4@6c48a" + } +} diff --git a/assets/bundles/Girls/10027/video/video_10027_6_thumbnail_blur.jpg b/assets/bundles/Girls/10027/video/video_10027_6_thumbnail_blur.jpg new file mode 100644 index 00000000..cc4e51b6 Binary files /dev/null and b/assets/bundles/Girls/10027/video/video_10027_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10027/video/video_10027_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10027/video/video_10027_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..047d796e --- /dev/null +++ b/assets/bundles/Girls/10027/video/video_10027_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e10020b8-1e33-4019-9c2a-e8d14a44f001", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e10020b8-1e33-4019-9c2a-e8d14a44f001@6c48a", + "displayName": "video_10027_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e10020b8-1e33-4019-9c2a-e8d14a44f001", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e10020b8-1e33-4019-9c2a-e8d14a44f001@f9941", + "displayName": "video_10027_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 224, + "height": 288, + "rawWidth": 224, + "rawHeight": 288, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -112, + -144, + 0, + 112, + -144, + 0, + -112, + 144, + 0, + 112, + 144, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 288, + 224, + 288, + 0, + 0, + 224, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -112, + -144, + 0 + ], + "maxPos": [ + 112, + 144, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e10020b8-1e33-4019-9c2a-e8d14a44f001@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e10020b8-1e33-4019-9c2a-e8d14a44f001@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_10_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_10_thumbnail_blur.jpg new file mode 100644 index 00000000..a24b9c79 Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..2ebdd918 --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3f743e4d-b5a5-4267-a8af-f9036dad61d1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3f743e4d-b5a5-4267-a8af-f9036dad61d1@6c48a", + "displayName": "img_10028_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3f743e4d-b5a5-4267-a8af-f9036dad61d1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3f743e4d-b5a5-4267-a8af-f9036dad61d1@f9941", + "displayName": "img_10028_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3f743e4d-b5a5-4267-a8af-f9036dad61d1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3f743e4d-b5a5-4267-a8af-f9036dad61d1@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_11_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_11_thumbnail_blur.jpg new file mode 100644 index 00000000..c8f8c4ac Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8f6511f1 --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "76122ccd-5fc5-47a6-b7b7-0a28d83f2b31", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "76122ccd-5fc5-47a6-b7b7-0a28d83f2b31@6c48a", + "displayName": "img_10028_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "76122ccd-5fc5-47a6-b7b7-0a28d83f2b31", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "76122ccd-5fc5-47a6-b7b7-0a28d83f2b31@f9941", + "displayName": "img_10028_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "76122ccd-5fc5-47a6-b7b7-0a28d83f2b31@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "76122ccd-5fc5-47a6-b7b7-0a28d83f2b31@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_12_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_12_thumbnail_blur.jpg new file mode 100644 index 00000000..c9fcfd11 Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..43d720a5 --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "44d772ba-e5e5-4649-a37e-adc65ab423d0", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "44d772ba-e5e5-4649-a37e-adc65ab423d0@6c48a", + "displayName": "img_10028_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "44d772ba-e5e5-4649-a37e-adc65ab423d0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "44d772ba-e5e5-4649-a37e-adc65ab423d0@f9941", + "displayName": "img_10028_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "44d772ba-e5e5-4649-a37e-adc65ab423d0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "44d772ba-e5e5-4649-a37e-adc65ab423d0@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_13_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_13_thumbnail_blur.jpg new file mode 100644 index 00000000..10b01859 Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..21ef5e25 --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4ac892af-7897-46d0-a2b6-b3040ddcf18d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4ac892af-7897-46d0-a2b6-b3040ddcf18d@6c48a", + "displayName": "img_10028_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4ac892af-7897-46d0-a2b6-b3040ddcf18d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4ac892af-7897-46d0-a2b6-b3040ddcf18d@f9941", + "displayName": "img_10028_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4ac892af-7897-46d0-a2b6-b3040ddcf18d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4ac892af-7897-46d0-a2b6-b3040ddcf18d@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_14_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_14_thumbnail_blur.jpg new file mode 100644 index 00000000..33c9612b Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d06f57be --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b9790bf5-e72a-4d1c-b02a-3bd48cd6407e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b9790bf5-e72a-4d1c-b02a-3bd48cd6407e@6c48a", + "displayName": "img_10028_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b9790bf5-e72a-4d1c-b02a-3bd48cd6407e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b9790bf5-e72a-4d1c-b02a-3bd48cd6407e@f9941", + "displayName": "img_10028_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b9790bf5-e72a-4d1c-b02a-3bd48cd6407e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b9790bf5-e72a-4d1c-b02a-3bd48cd6407e@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_15_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_15_thumbnail_blur.jpg new file mode 100644 index 00000000..5f625779 Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..26d54fb0 --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c449a55c-e3b5-4f5f-b937-cfa8bf2faf69", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c449a55c-e3b5-4f5f-b937-cfa8bf2faf69@6c48a", + "displayName": "img_10028_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c449a55c-e3b5-4f5f-b937-cfa8bf2faf69", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c449a55c-e3b5-4f5f-b937-cfa8bf2faf69@f9941", + "displayName": "img_10028_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c449a55c-e3b5-4f5f-b937-cfa8bf2faf69@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c449a55c-e3b5-4f5f-b937-cfa8bf2faf69@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_16_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_16_thumbnail_blur.jpg new file mode 100644 index 00000000..f39472d7 Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..8ae9b3fd --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1287fb5a-8ee3-48c0-8f83-e52bc48071b2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1287fb5a-8ee3-48c0-8f83-e52bc48071b2@6c48a", + "displayName": "img_10028_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1287fb5a-8ee3-48c0-8f83-e52bc48071b2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1287fb5a-8ee3-48c0-8f83-e52bc48071b2@f9941", + "displayName": "img_10028_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1287fb5a-8ee3-48c0-8f83-e52bc48071b2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1287fb5a-8ee3-48c0-8f83-e52bc48071b2@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_17_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_17_thumbnail_blur.jpg new file mode 100644 index 00000000..4dd26508 Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..bd192183 --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "82be67b9-fd91-45d0-8b2e-e486196b77ab", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "82be67b9-fd91-45d0-8b2e-e486196b77ab@6c48a", + "displayName": "img_10028_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "82be67b9-fd91-45d0-8b2e-e486196b77ab", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "82be67b9-fd91-45d0-8b2e-e486196b77ab@f9941", + "displayName": "img_10028_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "82be67b9-fd91-45d0-8b2e-e486196b77ab@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "82be67b9-fd91-45d0-8b2e-e486196b77ab@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_1_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_1_thumbnail_blur.jpg new file mode 100644 index 00000000..d4df7186 Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..41712018 --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "97cc8ce0-4d27-4ffb-880f-4d4674054c67", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "97cc8ce0-4d27-4ffb-880f-4d4674054c67@6c48a", + "displayName": "img_10028_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "97cc8ce0-4d27-4ffb-880f-4d4674054c67", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "97cc8ce0-4d27-4ffb-880f-4d4674054c67@f9941", + "displayName": "img_10028_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "97cc8ce0-4d27-4ffb-880f-4d4674054c67@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "97cc8ce0-4d27-4ffb-880f-4d4674054c67@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_2_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_2_thumbnail_blur.jpg new file mode 100644 index 00000000..e3922925 Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7afc2dc9 --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "59ffe38b-9c15-4371-91f4-a48217a9be53", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "59ffe38b-9c15-4371-91f4-a48217a9be53@6c48a", + "displayName": "img_10028_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "59ffe38b-9c15-4371-91f4-a48217a9be53", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "59ffe38b-9c15-4371-91f4-a48217a9be53@f9941", + "displayName": "img_10028_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "59ffe38b-9c15-4371-91f4-a48217a9be53@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "59ffe38b-9c15-4371-91f4-a48217a9be53@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_3_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_3_thumbnail_blur.jpg new file mode 100644 index 00000000..3e81d726 Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..51a25ada --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "8667f75d-f050-4d03-8a66-2127e8a48431", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "8667f75d-f050-4d03-8a66-2127e8a48431@6c48a", + "displayName": "img_10028_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "8667f75d-f050-4d03-8a66-2127e8a48431", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "8667f75d-f050-4d03-8a66-2127e8a48431@f9941", + "displayName": "img_10028_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "8667f75d-f050-4d03-8a66-2127e8a48431@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "8667f75d-f050-4d03-8a66-2127e8a48431@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_4_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_4_thumbnail_blur.jpg new file mode 100644 index 00000000..a3ac6bcd Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..def9ab9e --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "29badf90-c620-4e53-81e8-c21efcb80d8e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "29badf90-c620-4e53-81e8-c21efcb80d8e@6c48a", + "displayName": "img_10028_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "29badf90-c620-4e53-81e8-c21efcb80d8e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "29badf90-c620-4e53-81e8-c21efcb80d8e@f9941", + "displayName": "img_10028_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "29badf90-c620-4e53-81e8-c21efcb80d8e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "29badf90-c620-4e53-81e8-c21efcb80d8e@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_5_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_5_thumbnail_blur.jpg new file mode 100644 index 00000000..f43f600f Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..b2747a04 --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ec98ab3f-b219-4e45-bd05-a1ec6f36fa6b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ec98ab3f-b219-4e45-bd05-a1ec6f36fa6b@6c48a", + "displayName": "img_10028_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ec98ab3f-b219-4e45-bd05-a1ec6f36fa6b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ec98ab3f-b219-4e45-bd05-a1ec6f36fa6b@f9941", + "displayName": "img_10028_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ec98ab3f-b219-4e45-bd05-a1ec6f36fa6b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ec98ab3f-b219-4e45-bd05-a1ec6f36fa6b@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_6_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_6_thumbnail_blur.jpg new file mode 100644 index 00000000..009ea53c Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..52dc7bf9 --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "934df8ba-0445-49f1-8c47-244d88416238", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "934df8ba-0445-49f1-8c47-244d88416238@6c48a", + "displayName": "img_10028_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "934df8ba-0445-49f1-8c47-244d88416238", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "934df8ba-0445-49f1-8c47-244d88416238@f9941", + "displayName": "img_10028_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 157, + "rawWidth": 90, + "rawHeight": 157, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -78.5, + 0, + 45, + -78.5, + 0, + -45, + 78.5, + 0, + 45, + 78.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 157, + 90, + 157, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -78.5, + 0 + ], + "maxPos": [ + 45, + 78.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "934df8ba-0445-49f1-8c47-244d88416238@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "934df8ba-0445-49f1-8c47-244d88416238@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_7_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_7_thumbnail_blur.jpg new file mode 100644 index 00000000..04b84e19 Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..aadab382 --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c26aac68-35d4-4d6e-a6f3-f1814aa04337", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c26aac68-35d4-4d6e-a6f3-f1814aa04337@6c48a", + "displayName": "img_10028_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c26aac68-35d4-4d6e-a6f3-f1814aa04337", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c26aac68-35d4-4d6e-a6f3-f1814aa04337@f9941", + "displayName": "img_10028_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c26aac68-35d4-4d6e-a6f3-f1814aa04337@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c26aac68-35d4-4d6e-a6f3-f1814aa04337@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_8_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_8_thumbnail_blur.jpg new file mode 100644 index 00000000..c34f1552 Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..59fcb333 --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9795ff38-7f4e-499b-9e99-274cb7e1631c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9795ff38-7f4e-499b-9e99-274cb7e1631c@6c48a", + "displayName": "img_10028_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9795ff38-7f4e-499b-9e99-274cb7e1631c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9795ff38-7f4e-499b-9e99-274cb7e1631c@f9941", + "displayName": "img_10028_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9795ff38-7f4e-499b-9e99-274cb7e1631c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9795ff38-7f4e-499b-9e99-274cb7e1631c@6c48a" + } +} diff --git a/assets/bundles/Girls/10028/img/img_10028_9_thumbnail_blur.jpg b/assets/bundles/Girls/10028/img/img_10028_9_thumbnail_blur.jpg new file mode 100644 index 00000000..14dee010 Binary files /dev/null and b/assets/bundles/Girls/10028/img/img_10028_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10028/img/img_10028_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10028/img/img_10028_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0d4e8af6 --- /dev/null +++ b/assets/bundles/Girls/10028/img/img_10028_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "386d8058-9179-4217-8dd3-c17643713654", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "386d8058-9179-4217-8dd3-c17643713654@6c48a", + "displayName": "img_10028_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "386d8058-9179-4217-8dd3-c17643713654", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "386d8058-9179-4217-8dd3-c17643713654@f9941", + "displayName": "img_10028_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "386d8058-9179-4217-8dd3-c17643713654@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "386d8058-9179-4217-8dd3-c17643713654@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_10_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_10_thumbnail_blur.jpg new file mode 100644 index 00000000..288d644f Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..cdc7c7ad --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b57d6b8b-82ec-4b7f-829d-cecb33d8fbf4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b57d6b8b-82ec-4b7f-829d-cecb33d8fbf4@6c48a", + "displayName": "img_10029_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b57d6b8b-82ec-4b7f-829d-cecb33d8fbf4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b57d6b8b-82ec-4b7f-829d-cecb33d8fbf4@f9941", + "displayName": "img_10029_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b57d6b8b-82ec-4b7f-829d-cecb33d8fbf4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b57d6b8b-82ec-4b7f-829d-cecb33d8fbf4@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_11_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_11_thumbnail_blur.jpg new file mode 100644 index 00000000..37353c81 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..75705ab3 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1d432a60-c6a4-4cc9-8907-69bd26aea27e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1d432a60-c6a4-4cc9-8907-69bd26aea27e@6c48a", + "displayName": "img_10029_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1d432a60-c6a4-4cc9-8907-69bd26aea27e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1d432a60-c6a4-4cc9-8907-69bd26aea27e@f9941", + "displayName": "img_10029_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1d432a60-c6a4-4cc9-8907-69bd26aea27e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1d432a60-c6a4-4cc9-8907-69bd26aea27e@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_12_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_12_thumbnail_blur.jpg new file mode 100644 index 00000000..1d265fff Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..be7b22e9 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "870f14a0-a2c7-406a-a205-7d6df6733487", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "870f14a0-a2c7-406a-a205-7d6df6733487@6c48a", + "displayName": "img_10029_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "870f14a0-a2c7-406a-a205-7d6df6733487", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "870f14a0-a2c7-406a-a205-7d6df6733487@f9941", + "displayName": "img_10029_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "870f14a0-a2c7-406a-a205-7d6df6733487@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "870f14a0-a2c7-406a-a205-7d6df6733487@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_13_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_13_thumbnail_blur.jpg new file mode 100644 index 00000000..7c1a445c Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9b2d936d --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6c3d857f-7a96-41e4-a726-40c3633999ba", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6c3d857f-7a96-41e4-a726-40c3633999ba@6c48a", + "displayName": "img_10029_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6c3d857f-7a96-41e4-a726-40c3633999ba", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6c3d857f-7a96-41e4-a726-40c3633999ba@f9941", + "displayName": "img_10029_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6c3d857f-7a96-41e4-a726-40c3633999ba@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6c3d857f-7a96-41e4-a726-40c3633999ba@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_14_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_14_thumbnail_blur.jpg new file mode 100644 index 00000000..b03d06fd Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d273f58d --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5243a564-339c-4149-bb45-318db92fd547", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5243a564-339c-4149-bb45-318db92fd547@6c48a", + "displayName": "img_10029_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5243a564-339c-4149-bb45-318db92fd547", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5243a564-339c-4149-bb45-318db92fd547@f9941", + "displayName": "img_10029_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5243a564-339c-4149-bb45-318db92fd547@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5243a564-339c-4149-bb45-318db92fd547@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_15_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_15_thumbnail_blur.jpg new file mode 100644 index 00000000..f5a874e0 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..5ffa95a9 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b3359831-d039-474c-82ce-32a59690ae0d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b3359831-d039-474c-82ce-32a59690ae0d@6c48a", + "displayName": "img_10029_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b3359831-d039-474c-82ce-32a59690ae0d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b3359831-d039-474c-82ce-32a59690ae0d@f9941", + "displayName": "img_10029_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3359831-d039-474c-82ce-32a59690ae0d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b3359831-d039-474c-82ce-32a59690ae0d@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_16_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_16_thumbnail_blur.jpg new file mode 100644 index 00000000..7c917553 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..289f9126 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c2e9efd2-b3be-4d41-91cb-11583e8290ef", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c2e9efd2-b3be-4d41-91cb-11583e8290ef@6c48a", + "displayName": "img_10029_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c2e9efd2-b3be-4d41-91cb-11583e8290ef", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c2e9efd2-b3be-4d41-91cb-11583e8290ef@f9941", + "displayName": "img_10029_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c2e9efd2-b3be-4d41-91cb-11583e8290ef@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c2e9efd2-b3be-4d41-91cb-11583e8290ef@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_17_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_17_thumbnail_blur.jpg new file mode 100644 index 00000000..ac58709b Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..ccf2df31 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bec787a6-d8cb-4e5a-9eda-c8507fbbfda2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bec787a6-d8cb-4e5a-9eda-c8507fbbfda2@6c48a", + "displayName": "img_10029_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bec787a6-d8cb-4e5a-9eda-c8507fbbfda2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "bec787a6-d8cb-4e5a-9eda-c8507fbbfda2@f9941", + "displayName": "img_10029_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bec787a6-d8cb-4e5a-9eda-c8507fbbfda2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bec787a6-d8cb-4e5a-9eda-c8507fbbfda2@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_18_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_18_thumbnail_blur.jpg new file mode 100644 index 00000000..74fa60fa Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_18_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_18_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_18_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c0049131 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_18_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4cf83bd3-48e1-4001-a982-eccbdf696f99", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4cf83bd3-48e1-4001-a982-eccbdf696f99@6c48a", + "displayName": "img_10029_18_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4cf83bd3-48e1-4001-a982-eccbdf696f99", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4cf83bd3-48e1-4001-a982-eccbdf696f99@f9941", + "displayName": "img_10029_18_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4cf83bd3-48e1-4001-a982-eccbdf696f99@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4cf83bd3-48e1-4001-a982-eccbdf696f99@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_19_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_19_thumbnail_blur.jpg new file mode 100644 index 00000000..e0a39b33 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_19_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_19_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_19_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..899262ee --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_19_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "cc033516-21e6-417d-8b11-1684321f46e8", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "cc033516-21e6-417d-8b11-1684321f46e8@6c48a", + "displayName": "img_10029_19_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "cc033516-21e6-417d-8b11-1684321f46e8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "cc033516-21e6-417d-8b11-1684321f46e8@f9941", + "displayName": "img_10029_19_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "cc033516-21e6-417d-8b11-1684321f46e8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "cc033516-21e6-417d-8b11-1684321f46e8@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_1_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_1_thumbnail_blur.jpg new file mode 100644 index 00000000..0b83270f Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f6d40c7e --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7b2cf75f-0fe8-4f80-8fb0-d1749ee5023f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7b2cf75f-0fe8-4f80-8fb0-d1749ee5023f@6c48a", + "displayName": "img_10029_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7b2cf75f-0fe8-4f80-8fb0-d1749ee5023f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7b2cf75f-0fe8-4f80-8fb0-d1749ee5023f@f9941", + "displayName": "img_10029_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7b2cf75f-0fe8-4f80-8fb0-d1749ee5023f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7b2cf75f-0fe8-4f80-8fb0-d1749ee5023f@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_20_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_20_thumbnail_blur.jpg new file mode 100644 index 00000000..5a42ffb4 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_20_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_20_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_20_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..dd0b3108 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_20_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c37aac35-21f3-4d13-8f85-2169379e6b9e", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c37aac35-21f3-4d13-8f85-2169379e6b9e@6c48a", + "displayName": "img_10029_20_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c37aac35-21f3-4d13-8f85-2169379e6b9e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c37aac35-21f3-4d13-8f85-2169379e6b9e@f9941", + "displayName": "img_10029_20_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c37aac35-21f3-4d13-8f85-2169379e6b9e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c37aac35-21f3-4d13-8f85-2169379e6b9e@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_21_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_21_thumbnail_blur.jpg new file mode 100644 index 00000000..c7f639d1 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_21_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_21_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_21_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9582fbe8 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_21_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "943f20b1-cf7a-4f78-8e34-7b51c20e1c07", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "943f20b1-cf7a-4f78-8e34-7b51c20e1c07@6c48a", + "displayName": "img_10029_21_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "943f20b1-cf7a-4f78-8e34-7b51c20e1c07", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "943f20b1-cf7a-4f78-8e34-7b51c20e1c07@f9941", + "displayName": "img_10029_21_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "943f20b1-cf7a-4f78-8e34-7b51c20e1c07@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "943f20b1-cf7a-4f78-8e34-7b51c20e1c07@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_22_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_22_thumbnail_blur.jpg new file mode 100644 index 00000000..8c66aeea Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_22_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_22_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_22_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7ecf6ea7 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_22_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2b51e3c9-eb34-4159-bd1c-6948caf8bf37", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2b51e3c9-eb34-4159-bd1c-6948caf8bf37@6c48a", + "displayName": "img_10029_22_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2b51e3c9-eb34-4159-bd1c-6948caf8bf37", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2b51e3c9-eb34-4159-bd1c-6948caf8bf37@f9941", + "displayName": "img_10029_22_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 157, + "rawWidth": 90, + "rawHeight": 157, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -78.5, + 0, + 45, + -78.5, + 0, + -45, + 78.5, + 0, + 45, + 78.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 157, + 90, + 157, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -78.5, + 0 + ], + "maxPos": [ + 45, + 78.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2b51e3c9-eb34-4159-bd1c-6948caf8bf37@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2b51e3c9-eb34-4159-bd1c-6948caf8bf37@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_23_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_23_thumbnail_blur.jpg new file mode 100644 index 00000000..96f79620 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_23_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_23_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_23_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..528e0a2d --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_23_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6479c685-42d3-46d6-8b4b-3de18c080f84", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6479c685-42d3-46d6-8b4b-3de18c080f84@6c48a", + "displayName": "img_10029_23_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6479c685-42d3-46d6-8b4b-3de18c080f84", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6479c685-42d3-46d6-8b4b-3de18c080f84@f9941", + "displayName": "img_10029_23_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 90, + "height": 157, + "rawWidth": 90, + "rawHeight": 157, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -45, + -78.5, + 0, + 45, + -78.5, + 0, + -45, + 78.5, + 0, + 45, + 78.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 157, + 90, + 157, + 0, + 0, + 90, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -45, + -78.5, + 0 + ], + "maxPos": [ + 45, + 78.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6479c685-42d3-46d6-8b4b-3de18c080f84@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6479c685-42d3-46d6-8b4b-3de18c080f84@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_24_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_24_thumbnail_blur.jpg new file mode 100644 index 00000000..0db74e31 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_24_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_24_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_24_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..49297a04 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_24_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "43e9d018-762e-4b39-9a73-662994b4b1d5", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "43e9d018-762e-4b39-9a73-662994b4b1d5@6c48a", + "displayName": "img_10029_24_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "43e9d018-762e-4b39-9a73-662994b4b1d5", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "43e9d018-762e-4b39-9a73-662994b4b1d5@f9941", + "displayName": "img_10029_24_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "43e9d018-762e-4b39-9a73-662994b4b1d5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "43e9d018-762e-4b39-9a73-662994b4b1d5@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_25_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_25_thumbnail_blur.jpg new file mode 100644 index 00000000..d8269669 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_25_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_25_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_25_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4a927492 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_25_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3f0d4c2e-0b08-4dbd-84c6-b0fcb6942961", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3f0d4c2e-0b08-4dbd-84c6-b0fcb6942961@6c48a", + "displayName": "img_10029_25_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3f0d4c2e-0b08-4dbd-84c6-b0fcb6942961", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3f0d4c2e-0b08-4dbd-84c6-b0fcb6942961@f9941", + "displayName": "img_10029_25_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3f0d4c2e-0b08-4dbd-84c6-b0fcb6942961@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3f0d4c2e-0b08-4dbd-84c6-b0fcb6942961@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_26_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_26_thumbnail_blur.jpg new file mode 100644 index 00000000..a29a19f0 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_26_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_26_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_26_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1dd64fd7 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_26_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "84f40cfa-ceb5-4175-b10a-219fb3a3f6e0", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "84f40cfa-ceb5-4175-b10a-219fb3a3f6e0@6c48a", + "displayName": "img_10029_26_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "84f40cfa-ceb5-4175-b10a-219fb3a3f6e0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "84f40cfa-ceb5-4175-b10a-219fb3a3f6e0@f9941", + "displayName": "img_10029_26_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "84f40cfa-ceb5-4175-b10a-219fb3a3f6e0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "84f40cfa-ceb5-4175-b10a-219fb3a3f6e0@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_27_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_27_thumbnail_blur.jpg new file mode 100644 index 00000000..216c8452 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_27_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_27_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_27_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..16486831 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_27_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4aa05038-7023-4a26-b228-f3f27fc9a9b8", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4aa05038-7023-4a26-b228-f3f27fc9a9b8@6c48a", + "displayName": "img_10029_27_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4aa05038-7023-4a26-b228-f3f27fc9a9b8", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4aa05038-7023-4a26-b228-f3f27fc9a9b8@f9941", + "displayName": "img_10029_27_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4aa05038-7023-4a26-b228-f3f27fc9a9b8@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4aa05038-7023-4a26-b228-f3f27fc9a9b8@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_28_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_28_thumbnail_blur.jpg new file mode 100644 index 00000000..1c9c7936 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_28_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_28_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_28_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..50f0a922 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_28_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "86c1c5d3-7d4c-4680-8c65-72fd6d6b23a2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "86c1c5d3-7d4c-4680-8c65-72fd6d6b23a2@6c48a", + "displayName": "img_10029_28_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "86c1c5d3-7d4c-4680-8c65-72fd6d6b23a2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "86c1c5d3-7d4c-4680-8c65-72fd6d6b23a2@f9941", + "displayName": "img_10029_28_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "86c1c5d3-7d4c-4680-8c65-72fd6d6b23a2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "86c1c5d3-7d4c-4680-8c65-72fd6d6b23a2@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_2_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_2_thumbnail_blur.jpg new file mode 100644 index 00000000..367dd5bb Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..41a4e07b --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "01e014ef-1f41-484b-9faf-f11cb93e296d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "01e014ef-1f41-484b-9faf-f11cb93e296d@6c48a", + "displayName": "img_10029_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "01e014ef-1f41-484b-9faf-f11cb93e296d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "01e014ef-1f41-484b-9faf-f11cb93e296d@f9941", + "displayName": "img_10029_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "01e014ef-1f41-484b-9faf-f11cb93e296d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "01e014ef-1f41-484b-9faf-f11cb93e296d@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_3_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_3_thumbnail_blur.jpg new file mode 100644 index 00000000..6ab2ccb3 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..bdf79442 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6539892b-bd86-4fef-8781-409fc3cf99d2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6539892b-bd86-4fef-8781-409fc3cf99d2@6c48a", + "displayName": "img_10029_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6539892b-bd86-4fef-8781-409fc3cf99d2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6539892b-bd86-4fef-8781-409fc3cf99d2@f9941", + "displayName": "img_10029_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6539892b-bd86-4fef-8781-409fc3cf99d2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6539892b-bd86-4fef-8781-409fc3cf99d2@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_4_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_4_thumbnail_blur.jpg new file mode 100644 index 00000000..b13270e3 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d578d0d8 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c4907973-1888-42d4-9895-0065a7d69c5b", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c4907973-1888-42d4-9895-0065a7d69c5b@6c48a", + "displayName": "img_10029_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c4907973-1888-42d4-9895-0065a7d69c5b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c4907973-1888-42d4-9895-0065a7d69c5b@f9941", + "displayName": "img_10029_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c4907973-1888-42d4-9895-0065a7d69c5b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c4907973-1888-42d4-9895-0065a7d69c5b@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_5_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_5_thumbnail_blur.jpg new file mode 100644 index 00000000..50b35af8 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1e711638 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6592be41-bdde-4cc1-ad25-a58440d0aa23", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6592be41-bdde-4cc1-ad25-a58440d0aa23@6c48a", + "displayName": "img_10029_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6592be41-bdde-4cc1-ad25-a58440d0aa23", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6592be41-bdde-4cc1-ad25-a58440d0aa23@f9941", + "displayName": "img_10029_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6592be41-bdde-4cc1-ad25-a58440d0aa23@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6592be41-bdde-4cc1-ad25-a58440d0aa23@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_6_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_6_thumbnail_blur.jpg new file mode 100644 index 00000000..ffa24922 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f114479c --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7727da34-27c9-42ee-8c98-e28dff83b056", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7727da34-27c9-42ee-8c98-e28dff83b056@6c48a", + "displayName": "img_10029_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7727da34-27c9-42ee-8c98-e28dff83b056", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7727da34-27c9-42ee-8c98-e28dff83b056@f9941", + "displayName": "img_10029_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7727da34-27c9-42ee-8c98-e28dff83b056@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7727da34-27c9-42ee-8c98-e28dff83b056@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_7_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_7_thumbnail_blur.jpg new file mode 100644 index 00000000..eadb6523 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..a13e17df --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f30d72bf-7908-45b3-b8b1-25f07cc664af", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f30d72bf-7908-45b3-b8b1-25f07cc664af@6c48a", + "displayName": "img_10029_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f30d72bf-7908-45b3-b8b1-25f07cc664af", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f30d72bf-7908-45b3-b8b1-25f07cc664af@f9941", + "displayName": "img_10029_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f30d72bf-7908-45b3-b8b1-25f07cc664af@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f30d72bf-7908-45b3-b8b1-25f07cc664af@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_8_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_8_thumbnail_blur.jpg new file mode 100644 index 00000000..7762c1da Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1d941384 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e84ccf5d-a002-46f8-84be-3a437a249e43", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e84ccf5d-a002-46f8-84be-3a437a249e43@6c48a", + "displayName": "img_10029_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e84ccf5d-a002-46f8-84be-3a437a249e43", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e84ccf5d-a002-46f8-84be-3a437a249e43@f9941", + "displayName": "img_10029_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e84ccf5d-a002-46f8-84be-3a437a249e43@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e84ccf5d-a002-46f8-84be-3a437a249e43@6c48a" + } +} diff --git a/assets/bundles/Girls/10029/img/img_10029_9_thumbnail_blur.jpg b/assets/bundles/Girls/10029/img/img_10029_9_thumbnail_blur.jpg new file mode 100644 index 00000000..f4241ae3 Binary files /dev/null and b/assets/bundles/Girls/10029/img/img_10029_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10029/img/img_10029_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10029/img/img_10029_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f50fffa8 --- /dev/null +++ b/assets/bundles/Girls/10029/img/img_10029_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "5172b926-7206-47e6-8d6e-1e51364a04de", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "5172b926-7206-47e6-8d6e-1e51364a04de@6c48a", + "displayName": "img_10029_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "5172b926-7206-47e6-8d6e-1e51364a04de", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "5172b926-7206-47e6-8d6e-1e51364a04de@f9941", + "displayName": "img_10029_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "5172b926-7206-47e6-8d6e-1e51364a04de@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "5172b926-7206-47e6-8d6e-1e51364a04de@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_10_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_10_thumbnail_blur.jpg new file mode 100644 index 00000000..6c5eb8bc Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_10_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_10_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_10_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e6c349ae --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_10_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a0bba9c0-540e-422e-89d3-516eefdcbc99", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a0bba9c0-540e-422e-89d3-516eefdcbc99@6c48a", + "displayName": "img_10030_10_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a0bba9c0-540e-422e-89d3-516eefdcbc99", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a0bba9c0-540e-422e-89d3-516eefdcbc99@f9941", + "displayName": "img_10030_10_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a0bba9c0-540e-422e-89d3-516eefdcbc99@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a0bba9c0-540e-422e-89d3-516eefdcbc99@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_11_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_11_thumbnail_blur.jpg new file mode 100644 index 00000000..b208fbec Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_11_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_11_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_11_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1dd10c6c --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_11_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d3cd9f46-d4a2-4812-9241-3a4751258584", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d3cd9f46-d4a2-4812-9241-3a4751258584@6c48a", + "displayName": "img_10030_11_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d3cd9f46-d4a2-4812-9241-3a4751258584", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d3cd9f46-d4a2-4812-9241-3a4751258584@f9941", + "displayName": "img_10030_11_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d3cd9f46-d4a2-4812-9241-3a4751258584@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d3cd9f46-d4a2-4812-9241-3a4751258584@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_12_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_12_thumbnail_blur.jpg new file mode 100644 index 00000000..50a4e4b1 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_12_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_12_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_12_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e96afd6c --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_12_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b71a3c4c-c348-4a06-b8cd-a8aedcce13fc", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b71a3c4c-c348-4a06-b8cd-a8aedcce13fc@6c48a", + "displayName": "img_10030_12_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b71a3c4c-c348-4a06-b8cd-a8aedcce13fc", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b71a3c4c-c348-4a06-b8cd-a8aedcce13fc@f9941", + "displayName": "img_10030_12_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b71a3c4c-c348-4a06-b8cd-a8aedcce13fc@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b71a3c4c-c348-4a06-b8cd-a8aedcce13fc@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_13_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_13_thumbnail_blur.jpg new file mode 100644 index 00000000..f0ccec02 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_13_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_13_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_13_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..873a05c5 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_13_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f2c50119-7073-49c7-88f5-252e506a8855", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f2c50119-7073-49c7-88f5-252e506a8855@6c48a", + "displayName": "img_10030_13_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f2c50119-7073-49c7-88f5-252e506a8855", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f2c50119-7073-49c7-88f5-252e506a8855@f9941", + "displayName": "img_10030_13_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f2c50119-7073-49c7-88f5-252e506a8855@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f2c50119-7073-49c7-88f5-252e506a8855@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_14_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_14_thumbnail_blur.jpg new file mode 100644 index 00000000..cbc1576a Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_14_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_14_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_14_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..99d22f04 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_14_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d1656706-fd66-4b70-85c8-70dc2a8081d9", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d1656706-fd66-4b70-85c8-70dc2a8081d9@6c48a", + "displayName": "img_10030_14_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d1656706-fd66-4b70-85c8-70dc2a8081d9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d1656706-fd66-4b70-85c8-70dc2a8081d9@f9941", + "displayName": "img_10030_14_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d1656706-fd66-4b70-85c8-70dc2a8081d9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d1656706-fd66-4b70-85c8-70dc2a8081d9@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_15_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_15_thumbnail_blur.jpg new file mode 100644 index 00000000..ab13a80a Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_15_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_15_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_15_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..86d8fcaf --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_15_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "eb135019-a1f0-43f4-8134-aec1614ee337", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "eb135019-a1f0-43f4-8134-aec1614ee337@6c48a", + "displayName": "img_10030_15_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "eb135019-a1f0-43f4-8134-aec1614ee337", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "eb135019-a1f0-43f4-8134-aec1614ee337@f9941", + "displayName": "img_10030_15_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "eb135019-a1f0-43f4-8134-aec1614ee337@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "eb135019-a1f0-43f4-8134-aec1614ee337@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_16_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_16_thumbnail_blur.jpg new file mode 100644 index 00000000..bd671a95 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_16_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_16_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_16_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..d66b1d93 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_16_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "bb7f0518-e6d2-4391-825b-9d3a9133a412", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "bb7f0518-e6d2-4391-825b-9d3a9133a412@6c48a", + "displayName": "img_10030_16_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "bb7f0518-e6d2-4391-825b-9d3a9133a412", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "bb7f0518-e6d2-4391-825b-9d3a9133a412@f9941", + "displayName": "img_10030_16_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "bb7f0518-e6d2-4391-825b-9d3a9133a412@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "bb7f0518-e6d2-4391-825b-9d3a9133a412@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_17_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_17_thumbnail_blur.jpg new file mode 100644 index 00000000..d6c0ff62 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_17_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_17_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_17_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..2f2a2df8 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_17_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6f67820b-821f-4807-b398-9e0795cad84a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6f67820b-821f-4807-b398-9e0795cad84a@6c48a", + "displayName": "img_10030_17_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6f67820b-821f-4807-b398-9e0795cad84a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6f67820b-821f-4807-b398-9e0795cad84a@f9941", + "displayName": "img_10030_17_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6f67820b-821f-4807-b398-9e0795cad84a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6f67820b-821f-4807-b398-9e0795cad84a@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_18_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_18_thumbnail_blur.jpg new file mode 100644 index 00000000..d94c14e0 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_18_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_18_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_18_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..1400ff33 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_18_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "37ba1aa9-786e-4c89-8e04-ad140c389385", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "37ba1aa9-786e-4c89-8e04-ad140c389385@6c48a", + "displayName": "img_10030_18_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "37ba1aa9-786e-4c89-8e04-ad140c389385", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "37ba1aa9-786e-4c89-8e04-ad140c389385@f9941", + "displayName": "img_10030_18_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "37ba1aa9-786e-4c89-8e04-ad140c389385@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "37ba1aa9-786e-4c89-8e04-ad140c389385@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_19_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_19_thumbnail_blur.jpg new file mode 100644 index 00000000..a0c553a4 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_19_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_19_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_19_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c3aefa60 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_19_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7990aac2-65d0-4299-98ef-c046bebcdf66", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7990aac2-65d0-4299-98ef-c046bebcdf66@6c48a", + "displayName": "img_10030_19_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7990aac2-65d0-4299-98ef-c046bebcdf66", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7990aac2-65d0-4299-98ef-c046bebcdf66@f9941", + "displayName": "img_10030_19_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7990aac2-65d0-4299-98ef-c046bebcdf66@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7990aac2-65d0-4299-98ef-c046bebcdf66@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_1_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_1_thumbnail_blur.jpg new file mode 100644 index 00000000..019f7063 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_1_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_1_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_1_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f2f590d7 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_1_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e5cbc0db-7531-499c-ab86-7fa113d898c2", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e5cbc0db-7531-499c-ab86-7fa113d898c2@6c48a", + "displayName": "img_10030_1_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e5cbc0db-7531-499c-ab86-7fa113d898c2", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e5cbc0db-7531-499c-ab86-7fa113d898c2@f9941", + "displayName": "img_10030_1_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e5cbc0db-7531-499c-ab86-7fa113d898c2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e5cbc0db-7531-499c-ab86-7fa113d898c2@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_20_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_20_thumbnail_blur.jpg new file mode 100644 index 00000000..01185c36 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_20_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_20_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_20_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6e42c799 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_20_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "9b4b53e4-e380-442e-9781-484d7b6060b4", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "9b4b53e4-e380-442e-9781-484d7b6060b4@6c48a", + "displayName": "img_10030_20_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "9b4b53e4-e380-442e-9781-484d7b6060b4", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "9b4b53e4-e380-442e-9781-484d7b6060b4@f9941", + "displayName": "img_10030_20_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "9b4b53e4-e380-442e-9781-484d7b6060b4@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "9b4b53e4-e380-442e-9781-484d7b6060b4@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_21_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_21_thumbnail_blur.jpg new file mode 100644 index 00000000..095253f8 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_21_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_21_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_21_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c2250fd8 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_21_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "ecb1f1c7-5df6-4f7e-8545-47a654907ebd", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "ecb1f1c7-5df6-4f7e-8545-47a654907ebd@6c48a", + "displayName": "img_10030_21_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "ecb1f1c7-5df6-4f7e-8545-47a654907ebd", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "ecb1f1c7-5df6-4f7e-8545-47a654907ebd@f9941", + "displayName": "img_10030_21_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "ecb1f1c7-5df6-4f7e-8545-47a654907ebd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "ecb1f1c7-5df6-4f7e-8545-47a654907ebd@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_22_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_22_thumbnail_blur.jpg new file mode 100644 index 00000000..0005c633 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_22_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_22_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_22_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..21346fad --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_22_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "665dc80e-45f8-4614-abd9-5a7ec27a537f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "665dc80e-45f8-4614-abd9-5a7ec27a537f@6c48a", + "displayName": "img_10030_22_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "665dc80e-45f8-4614-abd9-5a7ec27a537f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "665dc80e-45f8-4614-abd9-5a7ec27a537f@f9941", + "displayName": "img_10030_22_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "665dc80e-45f8-4614-abd9-5a7ec27a537f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "665dc80e-45f8-4614-abd9-5a7ec27a537f@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_23_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_23_thumbnail_blur.jpg new file mode 100644 index 00000000..7deaabd7 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_23_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_23_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_23_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..42087e27 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_23_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d8e382b5-a141-4979-929c-1fa3eef0983f", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d8e382b5-a141-4979-929c-1fa3eef0983f@6c48a", + "displayName": "img_10030_23_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d8e382b5-a141-4979-929c-1fa3eef0983f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d8e382b5-a141-4979-929c-1fa3eef0983f@f9941", + "displayName": "img_10030_23_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d8e382b5-a141-4979-929c-1fa3eef0983f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d8e382b5-a141-4979-929c-1fa3eef0983f@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_24_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_24_thumbnail_blur.jpg new file mode 100644 index 00000000..a5ea12df Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_24_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_24_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_24_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..2c124905 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_24_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "aed72904-b569-4320-bb4f-8d3ccd20756a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "aed72904-b569-4320-bb4f-8d3ccd20756a@6c48a", + "displayName": "img_10030_24_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "aed72904-b569-4320-bb4f-8d3ccd20756a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "aed72904-b569-4320-bb4f-8d3ccd20756a@f9941", + "displayName": "img_10030_24_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "aed72904-b569-4320-bb4f-8d3ccd20756a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "aed72904-b569-4320-bb4f-8d3ccd20756a@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_25_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_25_thumbnail_blur.jpg new file mode 100644 index 00000000..f6d2773c Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_25_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_25_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_25_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4e561463 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_25_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e18359f3-0f57-4d98-a80d-db0405455610", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e18359f3-0f57-4d98-a80d-db0405455610@6c48a", + "displayName": "img_10030_25_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e18359f3-0f57-4d98-a80d-db0405455610", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e18359f3-0f57-4d98-a80d-db0405455610@f9941", + "displayName": "img_10030_25_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e18359f3-0f57-4d98-a80d-db0405455610@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e18359f3-0f57-4d98-a80d-db0405455610@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_26_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_26_thumbnail_blur.jpg new file mode 100644 index 00000000..3fef19ea Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_26_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_26_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_26_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..7a2b9300 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_26_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6fe99d25-3974-42f6-b1cf-83ef15c67f51", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6fe99d25-3974-42f6-b1cf-83ef15c67f51@6c48a", + "displayName": "img_10030_26_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6fe99d25-3974-42f6-b1cf-83ef15c67f51", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6fe99d25-3974-42f6-b1cf-83ef15c67f51@f9941", + "displayName": "img_10030_26_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6fe99d25-3974-42f6-b1cf-83ef15c67f51@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6fe99d25-3974-42f6-b1cf-83ef15c67f51@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_27_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_27_thumbnail_blur.jpg new file mode 100644 index 00000000..728b643c Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_27_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_27_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_27_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9b56b518 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_27_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "18fe850c-58b4-48a0-916d-d7ad76032c52", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "18fe850c-58b4-48a0-916d-d7ad76032c52@6c48a", + "displayName": "img_10030_27_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "18fe850c-58b4-48a0-916d-d7ad76032c52", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "18fe850c-58b4-48a0-916d-d7ad76032c52@f9941", + "displayName": "img_10030_27_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "18fe850c-58b4-48a0-916d-d7ad76032c52@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "18fe850c-58b4-48a0-916d-d7ad76032c52@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_28_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_28_thumbnail_blur.jpg new file mode 100644 index 00000000..1c0a52cf Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_28_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_28_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_28_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f80c3a29 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_28_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "421dfd19-1ad5-4a71-a381-7771a15e995d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "421dfd19-1ad5-4a71-a381-7771a15e995d@6c48a", + "displayName": "img_10030_28_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "421dfd19-1ad5-4a71-a381-7771a15e995d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "421dfd19-1ad5-4a71-a381-7771a15e995d@f9941", + "displayName": "img_10030_28_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "421dfd19-1ad5-4a71-a381-7771a15e995d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "421dfd19-1ad5-4a71-a381-7771a15e995d@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_29_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_29_thumbnail_blur.jpg new file mode 100644 index 00000000..225db2f9 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_29_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_29_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_29_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..469510e3 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_29_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "94943b7c-9f0c-4b58-a2c3-f2545cadc8c1", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "94943b7c-9f0c-4b58-a2c3-f2545cadc8c1@6c48a", + "displayName": "img_10030_29_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "94943b7c-9f0c-4b58-a2c3-f2545cadc8c1", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "94943b7c-9f0c-4b58-a2c3-f2545cadc8c1@f9941", + "displayName": "img_10030_29_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "94943b7c-9f0c-4b58-a2c3-f2545cadc8c1@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "94943b7c-9f0c-4b58-a2c3-f2545cadc8c1@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_2_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_2_thumbnail_blur.jpg new file mode 100644 index 00000000..01b06ee2 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_2_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_2_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_2_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..35716a75 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_2_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f9e8b226-ebe2-4b94-8428-248a868c004d", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f9e8b226-ebe2-4b94-8428-248a868c004d@6c48a", + "displayName": "img_10030_2_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f9e8b226-ebe2-4b94-8428-248a868c004d", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f9e8b226-ebe2-4b94-8428-248a868c004d@f9941", + "displayName": "img_10030_2_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f9e8b226-ebe2-4b94-8428-248a868c004d@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f9e8b226-ebe2-4b94-8428-248a868c004d@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_30_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_30_thumbnail_blur.jpg new file mode 100644 index 00000000..a58d6080 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_30_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_30_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_30_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4c02eeb9 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_30_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "810935d4-cf7b-49f5-a674-fc3741c06e0a", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "810935d4-cf7b-49f5-a674-fc3741c06e0a@6c48a", + "displayName": "img_10030_30_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "810935d4-cf7b-49f5-a674-fc3741c06e0a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "810935d4-cf7b-49f5-a674-fc3741c06e0a@f9941", + "displayName": "img_10030_30_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "810935d4-cf7b-49f5-a674-fc3741c06e0a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "810935d4-cf7b-49f5-a674-fc3741c06e0a@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_31_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_31_thumbnail_blur.jpg new file mode 100644 index 00000000..e2130382 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_31_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_31_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_31_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..c0a09518 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_31_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "adec5b0d-bc9f-477c-b0a1-28235f9164a7", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "adec5b0d-bc9f-477c-b0a1-28235f9164a7@6c48a", + "displayName": "img_10030_31_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "adec5b0d-bc9f-477c-b0a1-28235f9164a7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "adec5b0d-bc9f-477c-b0a1-28235f9164a7@f9941", + "displayName": "img_10030_31_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "adec5b0d-bc9f-477c-b0a1-28235f9164a7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "adec5b0d-bc9f-477c-b0a1-28235f9164a7@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_32_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_32_thumbnail_blur.jpg new file mode 100644 index 00000000..85d4fda2 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_32_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_32_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_32_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..6248e5ca --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_32_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2a3710f0-4382-48a9-8957-da57748eca05", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2a3710f0-4382-48a9-8957-da57748eca05@6c48a", + "displayName": "img_10030_32_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2a3710f0-4382-48a9-8957-da57748eca05", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "2a3710f0-4382-48a9-8957-da57748eca05@f9941", + "displayName": "img_10030_32_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2a3710f0-4382-48a9-8957-da57748eca05@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2a3710f0-4382-48a9-8957-da57748eca05@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_33_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_33_thumbnail_blur.jpg new file mode 100644 index 00000000..e3141191 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_33_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_33_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_33_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..f2895014 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_33_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "588622cb-61b0-44bd-be35-4d18ad32113c", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "588622cb-61b0-44bd-be35-4d18ad32113c@6c48a", + "displayName": "img_10030_33_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "588622cb-61b0-44bd-be35-4d18ad32113c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "588622cb-61b0-44bd-be35-4d18ad32113c@f9941", + "displayName": "img_10030_33_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "588622cb-61b0-44bd-be35-4d18ad32113c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "588622cb-61b0-44bd-be35-4d18ad32113c@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_3_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_3_thumbnail_blur.jpg new file mode 100644 index 00000000..0d6c932f Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_3_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_3_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_3_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..0fc5cc6e --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_3_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "3f8fc48a-714b-4942-9897-dc3073c59f80", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "3f8fc48a-714b-4942-9897-dc3073c59f80@6c48a", + "displayName": "img_10030_3_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "3f8fc48a-714b-4942-9897-dc3073c59f80", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "3f8fc48a-714b-4942-9897-dc3073c59f80@f9941", + "displayName": "img_10030_3_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "3f8fc48a-714b-4942-9897-dc3073c59f80@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "3f8fc48a-714b-4942-9897-dc3073c59f80@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_4_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_4_thumbnail_blur.jpg new file mode 100644 index 00000000..f89a3e1d Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_4_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_4_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_4_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..af743d4e --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_4_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "799af2f8-2187-4211-93c0-1442373cde04", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "799af2f8-2187-4211-93c0-1442373cde04@6c48a", + "displayName": "img_10030_4_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "799af2f8-2187-4211-93c0-1442373cde04", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "799af2f8-2187-4211-93c0-1442373cde04@f9941", + "displayName": "img_10030_4_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "799af2f8-2187-4211-93c0-1442373cde04@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "799af2f8-2187-4211-93c0-1442373cde04@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_5_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_5_thumbnail_blur.jpg new file mode 100644 index 00000000..221dc049 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_5_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_5_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_5_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..e323e433 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_5_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "23030339-e09d-4117-973e-3decf1efcf75", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "23030339-e09d-4117-973e-3decf1efcf75@6c48a", + "displayName": "img_10030_5_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "23030339-e09d-4117-973e-3decf1efcf75", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "23030339-e09d-4117-973e-3decf1efcf75@f9941", + "displayName": "img_10030_5_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "23030339-e09d-4117-973e-3decf1efcf75@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "23030339-e09d-4117-973e-3decf1efcf75@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_6_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_6_thumbnail_blur.jpg new file mode 100644 index 00000000..9c2dc700 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_6_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_6_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_6_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..67febc63 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_6_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d7e12fc8-6e21-4d34-a773-355567fa46b0", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d7e12fc8-6e21-4d34-a773-355567fa46b0@6c48a", + "displayName": "img_10030_6_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d7e12fc8-6e21-4d34-a773-355567fa46b0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d7e12fc8-6e21-4d34-a773-355567fa46b0@f9941", + "displayName": "img_10030_6_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d7e12fc8-6e21-4d34-a773-355567fa46b0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d7e12fc8-6e21-4d34-a773-355567fa46b0@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_7_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_7_thumbnail_blur.jpg new file mode 100644 index 00000000..cf30182d Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_7_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_7_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_7_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..9236e982 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_7_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c9de8b11-9456-4ffd-9969-cb6386036308", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c9de8b11-9456-4ffd-9969-cb6386036308@6c48a", + "displayName": "img_10030_7_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c9de8b11-9456-4ffd-9969-cb6386036308", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c9de8b11-9456-4ffd-9969-cb6386036308@f9941", + "displayName": "img_10030_7_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c9de8b11-9456-4ffd-9969-cb6386036308@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c9de8b11-9456-4ffd-9969-cb6386036308@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_8_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_8_thumbnail_blur.jpg new file mode 100644 index 00000000..d77c5473 Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_8_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_8_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_8_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..4e22e599 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_8_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "851f2217-ab21-4de4-aba9-451e5428a413", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "851f2217-ab21-4de4-aba9-451e5428a413@6c48a", + "displayName": "img_10030_8_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "851f2217-ab21-4de4-aba9-451e5428a413", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "851f2217-ab21-4de4-aba9-451e5428a413@f9941", + "displayName": "img_10030_8_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "851f2217-ab21-4de4-aba9-451e5428a413@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "851f2217-ab21-4de4-aba9-451e5428a413@6c48a" + } +} diff --git a/assets/bundles/Girls/10030/img/img_10030_9_thumbnail_blur.jpg b/assets/bundles/Girls/10030/img/img_10030_9_thumbnail_blur.jpg new file mode 100644 index 00000000..29e557fc Binary files /dev/null and b/assets/bundles/Girls/10030/img/img_10030_9_thumbnail_blur.jpg differ diff --git a/assets/bundles/Girls/10030/img/img_10030_9_thumbnail_blur.jpg.meta b/assets/bundles/Girls/10030/img/img_10030_9_thumbnail_blur.jpg.meta new file mode 100644 index 00000000..85b5a3e6 --- /dev/null +++ b/assets/bundles/Girls/10030/img/img_10030_9_thumbnail_blur.jpg.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4219099b-085e-46f7-b3c1-d5955a0b5242", + "files": [ + ".jpg", + ".json" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4219099b-085e-46f7-b3c1-d5955a0b5242@6c48a", + "displayName": "img_10030_9_thumbnail_blur", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4219099b-085e-46f7-b3c1-d5955a0b5242", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4219099b-085e-46f7-b3c1-d5955a0b5242@f9941", + "displayName": "img_10030_9_thumbnail_blur", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 77, + "height": 134, + "rawWidth": 77, + "rawHeight": 134, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -38.5, + -67, + 0, + 38.5, + -67, + 0, + -38.5, + 67, + 0, + 38.5, + 67, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 134, + 77, + 134, + 0, + 0, + 77, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -38.5, + -67, + 0 + ], + "maxPos": [ + 38.5, + 67, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4219099b-085e-46f7-b3c1-d5955a0b5242@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4219099b-085e-46f7-b3c1-d5955a0b5242@6c48a" + } +} diff --git a/settings/v2/packages/builder.json b/settings/v2/packages/builder.json index 0a91c3eb..992aab4f 100644 --- a/settings/v2/packages/builder.json +++ b/settings/v2/packages/builder.json @@ -39,80 +39,6 @@ "configMode": "fallback" } } - }, - "auto_8fP9EjdmZOFLBi/nVYro3A": { - "displayName": "l10n", - "configs": { - "native": { - "preferredOptions": { - "compressionType": "merge_dep", - "isRemote": false - } - }, - "miniGame": { - "configMode": "overwrite", - "overwriteSettings": { - "alipay-mini-game": { - "compressionType": "merge_dep", - "isRemote": false - }, - "taobao-creative-app": { - "compressionType": "merge_dep", - "isRemote": false - }, - "taobao-mini-game": { - "compressionType": "merge_dep", - "isRemote": false - }, - "bytedance-mini-game": { - "compressionType": "merge_dep", - "isRemote": false - }, - "oppo-mini-game": { - "compressionType": "merge_dep", - "isRemote": false - }, - "huawei-quick-game": { - "compressionType": "merge_dep", - "isRemote": false - }, - "vivo-mini-game": { - "compressionType": "merge_dep", - "isRemote": false - }, - "xiaomi-quick-game": { - "compressionType": "merge_dep", - "isRemote": false - }, - "baidu-mini-game": { - "compressionType": "merge_dep", - "isRemote": false - }, - "wechatgame": { - "compressionType": "merge_dep", - "isRemote": false - }, - "link-sure": { - "compressionType": "merge_dep", - "isRemote": false - }, - "qtt": { - "compressionType": "merge_dep", - "isRemote": false - }, - "cocos-play": { - "compressionType": "merge_dep", - "isRemote": false - } - } - }, - "web": { - "preferredOptions": { - "compressionType": "merge_dep", - "isRemote": false - } - } - } } } }