protected override void SetShipInfos(ShipModel_BattleResult model)
 {
     this.SetShipName(model.Name);
     this.SetShipBannerTexture(ShipUtils.LoadBannerTextureInVeteransReport(model), model.DamagedFlgEnd, model.DmgStateEnd, model.IsEscape());
     base.SetShipIcons(model.DmgStateEnd, model.IsGroundFacility(), model.IsEscape());
     this.SetHPSliderValue(model.HpStart, model.MaxHp);
     this._uiLv.textInt = (this._nDrawNowLv = model.Level);
     if (!this.isFriend)
     {
         this._uiLv.SetActive(false);
         this._uiLvLabel.SetActive(false);
         this._uiShipName.SetActive(true);
     }
     else
     {
         this._uiEXPSlider.value = Mathe.Rate(0f, 100f, (float)model.ExpInfo.ExpRateBefore);
         this._uiEXPSlider.foregroundWidget.color = KCVColor.WarVateransEXPGaugeGreen;
         this._uiShipName.SetActive(false);
     }
     this._uiEXPSlider.alpha = 0f;
     this._uiHPSlider.alpha  = 1f;
 }