diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dao/CityRepository.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dao/CityRepository.java index 8c0934b..8d577ab 100644 --- a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dao/CityRepository.java +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dao/CityRepository.java @@ -16,4 +16,6 @@ public interface CityRepository extends JpaRepository { //方法名称必须要遵循驼峰式命名规则,findBy(关键字)+属性名称(首字母大写)+查询条件(首字母大写) HefengCity findByLocationId(String location_ID); List findByAdm1NameEn(String provinceCode); + List findByAdm2NameEn(String cityCode); + List findByLocationNameEn(String locationNameEn); } diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dao/HefengFutureWeatherRepository.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dao/HefengFutureWeatherRepository.java new file mode 100644 index 0000000..052d01e --- /dev/null +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dao/HefengFutureWeatherRepository.java @@ -0,0 +1,15 @@ +package com.rehome.jpahefengweather.dao; + +import com.rehome.jpahefengweather.entity.HefengCity; +import com.rehome.jpahefengweather.entity.HefengFutureWeather; +import org.springframework.data.jpa.repository.JpaRepository; + +/** + * 参数一 T :当前需要映射的实体 + * 参数二 ID :当前映射的实体中的OID的类型 + * + */ +public interface HefengFutureWeatherRepository extends JpaRepository { + //方法名称必须要遵循驼峰式命名规则,findBy(关键字)+属性名称(首字母大写)+查询条件(首字母大写) + HefengFutureWeather findByLocationIdAndFxDate(String location_ID,String fxDate); +} diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dao/HefengRealtimeWeatherRepository.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dao/HefengRealtimeWeatherRepository.java new file mode 100644 index 0000000..adcd106 --- /dev/null +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dao/HefengRealtimeWeatherRepository.java @@ -0,0 +1,14 @@ +package com.rehome.jpahefengweather.dao; + +import com.rehome.jpahefengweather.entity.HefengCity; +import com.rehome.jpahefengweather.entity.HefengRealtimeWeather; +import org.springframework.data.jpa.repository.JpaRepository; + +/** + * 参数一 T :当前需要映射的实体 + * 参数二 ID :当前映射的实体中的OID的类型 + * + */ +public interface HefengRealtimeWeatherRepository extends JpaRepository { + +} diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dto/HefengFutureWeatherDto.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dto/HefengFutureWeatherDto.java new file mode 100644 index 0000000..5e79d53 --- /dev/null +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dto/HefengFutureWeatherDto.java @@ -0,0 +1,21 @@ +package com.rehome.jpahefengweather.dto; + +import com.rehome.jpahefengweather.entity.HefengFutureWeather; +import com.rehome.jpahefengweather.entity.HefengRealtimeWeather; +import lombok.Data; + +import java.util.List; + +@Data +public class HefengFutureWeatherDto { + //状态码 + private String code; + //当前API的最近更新时间 + private String updateTime; + //当前数据的响应式页面,便于嵌入网站或应用 + private String fxLink ; + //每日天气预报 + private List daily; + //数据来源,可能为空 + private HefengWeatherRefer refer; +} diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dto/HefengRealtimeWeatherDto.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dto/HefengRealtimeWeatherDto.java new file mode 100644 index 0000000..c2b3e22 --- /dev/null +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dto/HefengRealtimeWeatherDto.java @@ -0,0 +1,18 @@ +package com.rehome.jpahefengweather.dto; + +import com.rehome.jpahefengweather.entity.HefengRealtimeWeather; +import lombok.Data; + +@Data +public class HefengRealtimeWeatherDto { + //状态码 + private String code; + //当前API的最近更新时间 + private String updateTime; + //当前数据的响应式页面,便于嵌入网站或应用 + private String fxLink ; + //实时天气 + private HefengRealtimeWeather now; + //数据来源,可能为空 + private HefengWeatherRefer refer; +} diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dto/HefengWeatherRefer.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dto/HefengWeatherRefer.java new file mode 100644 index 0000000..6d8da88 --- /dev/null +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/dto/HefengWeatherRefer.java @@ -0,0 +1,14 @@ +package com.rehome.jpahefengweather.dto; + +import lombok.Data; +import java.util.List; + +@Data +public class HefengWeatherRefer { + + //原始数据来源,或数据源说明,可能为空 + private List sources; + + // 数据许可或版权声明,可能为空 + private List license; +} diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/entity/HefengCity.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/entity/HefengCity.java index c4549f1..dd9143d 100644 --- a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/entity/HefengCity.java +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/entity/HefengCity.java @@ -10,33 +10,34 @@ import java.util.Date; @Data @Entity public class HefengCity implements Serializable { + // 区、县位置id @Id private String locationId; - + //区、县位置 英文名称 private String locationNameEn; - + //区、县位置 中文名称 private String locationNameZh; - + //ISO_3166_1 国家编码 private String countryCode; - + //国家英文名称 private String countryNameEn ; - + //国家中文名称 private String countryNameZh ; - + //省份英文名称 private String adm1NameEn; - + //省份中文名称 private String adm1NameZh; - + //城市英文名称 private String adm2NameEn; - + //城市中文名称 private String adm2NameZh ; - + //时区 private String timezone ; - + //纬度 private String latitude; - + //经度 private String longitude; - + //区、县位置编码(仅限中国城市)) private String adcode; // @CreatedDate diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/entity/HefengFutureWeather.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/entity/HefengFutureWeather.java new file mode 100644 index 0000000..93c8bf0 --- /dev/null +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/entity/HefengFutureWeather.java @@ -0,0 +1,153 @@ +package com.rehome.jpahefengweather.entity; + +import javax.persistence.*; +import java.util.Date; +import lombok.Data; +import org.hibernate.annotations.Proxy; +import org.springframework.data.jpa.domain.support.AuditingEntityListener; + +@EntityListeners(AuditingEntityListener.class) +@Proxy(lazy = false) +@Data +@Entity +@Table(indexes = {@Index(name = "idx_location_id_future", columnList = "locationId")}) +public class HefengFutureWeather { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Long id; + + @Column(length=20) + private String locationId; + + @Column(length=20) + private String province; + + @Column(length=20) + private String city ; + + @Column(length=20) + private String locationNameZh; + + @Temporal(TemporalType.TIMESTAMP) + private Date createTime; + + @Temporal(TemporalType.TIMESTAMP) + private Date updateTime; + + //预报日期 + @Column(length=20) + private String fxDate ; + //日出时间,在高纬度地区可能为空 + @Column(length=20) + private String sunrise ; + //日落时间,在高纬度地区可能为空 + @Column(length=20) + private String sunset ; + @Column(length=20) + //当天月升时间,可能为空 + private String moonrise ; + @Column(length=20) + //当天月落时间,可能为空 + private String moonset ; + @Column(length=20) + // 月相名称 + private String moonPhase ; + @Column(length=20) + //月相图标代码,另请参考天气图标项目 + private String moonPhaseIcon ; + @Column(length=20) + //预报当天最高温度 + private double tempMax ; + //预报当天最低温度 + private double tempMin ; + @Column(length=20) + //预报白天天气状况的图标代码,另请参考天气图标项目 + private String iconDay ; + @Column(length=20) + //预报白天天气状况文字描述,包括阴晴雨雪等天气状态的描述 + private String textDay ; + @Column(length=20) + //预报夜间天气状况的图标代码,另请参考天气图标项目 + private String iconNight ; + @Column(length=20) + //预报晚间天气状况文字描述,包括阴晴雨雪等天气状态的描述 + private String textNight ; + @Column(length=20) + //预报白天风向360角度 + private String wind360Day ; + @Column(length=20) + //预报白天风向 + private String windDirDay ; + @Column(length=20) + //预报白天风力等级 + private String windScaleDay ; + @Column(length=20) + //预报白天风速,公里/小时 + private String windSpeedDay ; + @Column(length=20) + //预报夜间风向360角度 + private String wind360Night ; + @Column(length=20) + //预报夜间当天风向 + private String windDirNight ; + @Column(length=20) + //预报夜间风力等级 + private String windScaleNight ; + @Column(length=20) + //预报夜间风速,公里/小时 + private String windSpeedNight ; + @Column(length=20) + //相对湿度,百分比数值 + private double humidity ; + @Column(length=20) + //预报当天总降水量,默认单位:毫米 + private String precip ; + @Column(length=20) + //大气压强,默认单位:百帕 + private String pressure ; + @Column(length=20) + //能见度,默认单位:公里 + private String vis ; + @Column(length=20) + //云量,百分比数值。可能为空 + private String cloud ; + //紫外线强度指数 + @Column(length=20) + private String uvIndex ; + //当前数据的响应式页面,便于嵌入网站或应用 + @Column(length=100) + private String fxLink ; +} + +// code 请参考状态码 +// updateTime 当前API的最近更新时间 +// fxLink 当前数据的响应式页面,便于嵌入网站或应用 +// daily.fxDate 预报日期 +// daily.sunrise 日出时间,在高纬度地区可能为空 +// daily.sunset 日落时间,在高纬度地区可能为空 +// daily.moonrise 当天月升时间,可能为空 +// daily.moonset 当天月落时间,可能为空 +// daily.moonPhase 月相名称 +// daily.moonPhaseIcon 月相图标代码,另请参考天气图标项目 +// daily.tempMax 预报当天最高温度 +// daily.tempMin 预报当天最低温度 +// daily.iconDay 预报白天天气状况的图标代码,另请参考天气图标项目 +// daily.textDay 预报白天天气状况文字描述,包括阴晴雨雪等天气状态的描述 +// daily.iconNight 预报夜间天气状况的图标代码,另请参考天气图标项目 +// daily.textNight 预报晚间天气状况文字描述,包括阴晴雨雪等天气状态的描述 +// daily.wind360Day 预报白天风向360角度 +// daily.windDirDay 预报白天风向 +// daily.windScaleDay 预报白天风力等级 +// daily.windSpeedDay 预报白天风速,公里/小时 +// daily.wind360Night 预报夜间风向360角度 +// daily.windDirNight 预报夜间当天风向 +// daily.windScaleNight 预报夜间风力等级 +// daily.windSpeedNight 预报夜间风速,公里/小时 +// daily.precip 预报当天总降水量,默认单位:毫米 +// daily.uvIndex 紫外线强度指数 +// daily.humidity 相对湿度,百分比数值 +// daily.pressure 大气压强,默认单位:百帕 +// daily.vis 能见度,默认单位:公里 +// daily.cloud 云量,百分比数值。可能为空 +// refer.sources 原始数据来源,或数据源说明,可能为空 +// refer.license 数据许可或版权声明,可能为空 \ No newline at end of file diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/entity/HefengProvince.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/entity/HefengProvince.java index 4583011..9860327 100644 --- a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/entity/HefengProvince.java +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/entity/HefengProvince.java @@ -8,16 +8,17 @@ import java.util.Date; @Data @Entity public class HefengProvince implements Serializable{ + //省份编号 @Id private String code; - + //省份中文名称 private String name; - + //url private String url; - + //创建时间 @Temporal(TemporalType.TIMESTAMP) private Date createDate; - + //最后一次更新时间 @Temporal(TemporalType.TIMESTAMP) private Date lastUpdateDate; } \ No newline at end of file diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/entity/HefengRealtimeWeather.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/entity/HefengRealtimeWeather.java new file mode 100644 index 0000000..99cb4b0 --- /dev/null +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/entity/HefengRealtimeWeather.java @@ -0,0 +1,112 @@ +package com.rehome.jpahefengweather.entity; + +import lombok.Data; +import org.hibernate.annotations.Proxy; +import org.springframework.data.jpa.domain.support.AuditingEntityListener; +import javax.persistence.*; +import java.util.Date; + +@EntityListeners(AuditingEntityListener.class) +@Proxy(lazy = false) +@Data +@Entity +@Table(indexes = {@Index(name = "idx_location_id_realtime", columnList = "locationId"),@Index(name = "idx_year", columnList = "year"),@Index(name = "idx_year_month", columnList = "yearAndMonth"),@Index(name = "idx_date", columnList = "date")}) +public class HefengRealtimeWeather { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Long id; + @Column(length=20) + private String locationId; + + @Column(length=20) + private String province; + + @Column(length=20) + private String city ; + + @Column(length=20) + private String locationNameZh; + + @Temporal(TemporalType.TIMESTAMP) + private Date createTime; + + //数据观测时间、采集时间 + @Column(length=30) + private String obsTime ; + //温度,默认单位:摄氏度 + @Column(length=20) + private double temp ; + //体感温度,默认单位:摄氏度 + @Column(length=20) + private String feelsLike ; + //天气状况的图标代码,另请参考天气图标项目 + @Column(length=20) + private String icon ; + //天气状况的文字描述,包括阴晴雨雪等天气状态的描述 + @Column(length=20) + private String text ; + //风向360角度 + @Column(length=20) + private String wind360 ; + //风向 + @Column(length=20) + private String windDir ; + //风力等级 + @Column(length=20) + private String windScale ; + //风速,公里/小时 + @Column(length=20) + private String windSpeed ; + //相对湿度,百分比数值 + @Column(length=20) + private double humidity ; + //过去1小时降水量,默认单位:毫米 + @Column(length=20) + private String precip ; + //大气压强,默认单位:百帕 + @Column(length=20) + private String pressure ; + //能见度,默认单位:公里 + @Column(length=20) + private String vis ; + @Column(length=20) + //云量,百分比数值。可能为空 + private String cloud ; + //露点温度。可能为空 + @Column(length=20) + private String dew ; + //当前数据的响应式页面,便于嵌入网站或应用 + @Column(length=100) + private String fxLink ; + //当前数据的响应式页面,便于嵌入网站或应用 + @Column(length=20) + private String year ; + //当前数据的响应式页面,便于嵌入网站或应用 + @Column(length=20) + private String yearAndMonth ; + //当前数据的响应式页面,便于嵌入网站或应用 + @Column(length=20) + private String date ; +} + +// code 请参考状态码 +// updateTime 当前API的最近更新时间 +// fxLink 当前数据的响应式页面,便于嵌入网站或应用 +// now.obsTime 数据观测时间 +// now.temp 温度,默认单位:摄氏度 +// now.feelsLike 体感温度,默认单位:摄氏度 +// now.icon 天气状况的图标代码,另请参考天气图标项目 +// now.text 天气状况的文字描述,包括阴晴雨雪等天气状态的描述 +// now.wind360 风向360角度 +// now.windDir 风向 +// now.windScale 风力等级 +// now.windSpeed 风速,公里/小时 +// now.humidity 相对湿度,百分比数值 +// now.precip 过去1小时降水量,默认单位:毫米 +// now.pressure 大气压强,默认单位:百帕 +// now.vis 能见度,默认单位:公里 +// now.cloud 云量,百分比数值。可能为空 +// now.dew 露点温度。可能为空 +// refer.sources 原始数据来源,或数据源说明,可能为空 +// refer.license 数据许可或版权声明,可能为空 + diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/CityService.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/CityService.java index 51c2911..f9f42a8 100644 --- a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/CityService.java +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/CityService.java @@ -22,10 +22,20 @@ public interface CityService { */ List findAllCity(); /** - * 查询全国3000+个市县区 + * 省份编号查城市列表 * @return List */ List findCityByProvinceCode(String provinceCode); + /** + * 城市编号查区县和城市列表 + * @return List + */ + List findCityByCityCode(String cityCode); + /** + * 区、县位置 英文名称查区县和城市列表 + * @return List + */ + List findByLocationNameEn(String locationNameEn); /** * 查询全国3000+个市县区 * @return List diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/Impl/CityServiceImpl.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/Impl/CityServiceImpl.java index 1c1cf02..ff61d5c 100644 --- a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/Impl/CityServiceImpl.java +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/Impl/CityServiceImpl.java @@ -75,6 +75,16 @@ public class CityServiceImpl implements CityService { return this.cityRepository.findByAdm1NameEn(provinceCode); } + @Override + public List findCityByCityCode(String cityCode) { + return this.cityRepository.findByAdm2NameEn(cityCode); + } + + @Override + public List findByLocationNameEn(String locationNameEn) { + return this.cityRepository.findByLocationNameEn(locationNameEn); + } + @Override public List findAllProvince() { return this.provinceRepository.findAll(); diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/Impl/WeatherServiceImpl.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/Impl/WeatherServiceImpl.java index 1ff87c4..3650e23 100644 --- a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/Impl/WeatherServiceImpl.java +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/Impl/WeatherServiceImpl.java @@ -2,26 +2,44 @@ package com.rehome.jpahefengweather.service.Impl; import com.google.gson.Gson; import com.rehome.jpahefengweather.dao.ForecastWeatherRepository; +import com.rehome.jpahefengweather.dao.HefengFutureWeatherRepository; +import com.rehome.jpahefengweather.dao.HefengRealtimeWeatherRepository; import com.rehome.jpahefengweather.dao.NowWeatherRepository; import com.rehome.jpahefengweather.dto.ForecastWeatherDto; +import com.rehome.jpahefengweather.dto.HefengFutureWeatherDto; +import com.rehome.jpahefengweather.dto.HefengRealtimeWeatherDto; import com.rehome.jpahefengweather.dto.NowWeatherDto; -import com.rehome.jpahefengweather.entity.ForecastWeather; -import com.rehome.jpahefengweather.entity.NowWeather; +import com.rehome.jpahefengweather.entity.*; +import com.rehome.jpahefengweather.service.CityService; import com.rehome.jpahefengweather.service.WeatherService; +import com.rehome.jpahefengweather.utils.OkHttpUtil; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import org.springframework.stereotype.Service; +import org.springframework.util.ObjectUtils; import javax.annotation.Resource; import java.text.SimpleDateFormat; -import java.util.ArrayList; -import java.util.Date; -import java.util.List; +import java.util.*; + @Service public class WeatherServiceImpl implements WeatherService { + private Logger log = LoggerFactory.getLogger(this.getClass()); + @Resource private NowWeatherRepository nowWeatherRepository; @Resource private ForecastWeatherRepository forecastWeatherRepository; + @Resource + private HefengRealtimeWeatherRepository hefengRealtimeWeatherRepository; + @Resource + private HefengFutureWeatherRepository hefengFutureWeatherRepository; + + @Resource + private CityService cityService; + + @Override public List findNowWeatherByLocationIdAndDate(String locationId, String date) { return this.nowWeatherRepository.findByLocationIdAndWeatherDate(locationId,date); @@ -36,6 +54,149 @@ public class WeatherServiceImpl implements WeatherService { public void saveNowWeather(NowWeather nowWeather) { this.nowWeatherRepository.save(nowWeather); } + + @Override + public void saveHefengWeatherByLocationNameEn(String locationNameEn) { + List cityList = this.cityService.findByLocationNameEn(locationNameEn); + log.info(new Gson().toJson(cityList)); + log.info("查询实时天气总数:"+String.valueOf(cityList.size())); + if (cityList != null && cityList.size() > 0) { + Date now = new Date(); + log.info(String.valueOf(cityList.size())); + for (int i = 0; i < cityList.size(); i++) { + HefengCity city = cityList.get(i); + Map params = new HashMap<>(); + //我的帐号: c67db396fcdb416c959933d29e30db3d + //克金帐号: 3522d7d5736947d7a63e8d7d95316406 + //params.put("key", "c67db396fcdb416c959933d29e30db3d"); + params.put("location", city.getLocationId()); + String realtimeWeatherData = OkHttpUtil.get("https://m573jftdb9.re.qweatherapi.com/v7/weather/now", params); + log.info(realtimeWeatherData); + try { + Thread.sleep(200); + } catch (Exception e) { + e.printStackTrace(); + } + if (realtimeWeatherData!=null&&realtimeWeatherData.trim().length()>0) { + SimpleDateFormat sdfYear = new SimpleDateFormat("yyyy"); + SimpleDateFormat sdfYearMonth = new SimpleDateFormat("yyyy-MM"); + SimpleDateFormat sdfDate = new SimpleDateFormat("yyyy-MM-dd"); + NowWeather nowWeather = new NowWeather(); + nowWeather.setWeatherDate(sdfDate.format(now)); + nowWeather.setLocationId(city.getLocationId()); + nowWeather.setWeather(realtimeWeatherData); + nowWeather.setCreateDate(now); + nowWeather.setLastUpdateDate(now); + nowWeather.setProvince(city.getAdm1NameZh()); + nowWeather.setCity(city.getAdm2NameZh()); + nowWeather.setLocationNameZh(city.getLocationNameZh()); + this.saveNowWeather(nowWeather); + + Gson gson = new Gson(); + HefengRealtimeWeatherDto hefengRealtimeWeatherDto = gson.fromJson(realtimeWeatherData,HefengRealtimeWeatherDto.class); + if((!ObjectUtils.isEmpty(hefengRealtimeWeatherDto))&&"200".equals(hefengRealtimeWeatherDto.getCode())){ + log.info("----------"); + log.info(gson.toJson(hefengRealtimeWeatherDto)); + HefengRealtimeWeather realtimeWeather = hefengRealtimeWeatherDto.getNow(); + if(!ObjectUtils.isEmpty(realtimeWeather)){ + realtimeWeather.setLocationId(city.getLocationId()); + realtimeWeather.setProvince(city.getAdm1NameZh()); + realtimeWeather.setCity(city.getAdm2NameZh()); + realtimeWeather.setLocationNameZh(city.getLocationNameZh()); + realtimeWeather.setCreateTime(now); + + realtimeWeather.setFxLink(hefengRealtimeWeatherDto.getFxLink()); + realtimeWeather.setYear(sdfYear.format(now)); + realtimeWeather.setYearAndMonth(sdfYearMonth.format(now)); + realtimeWeather.setDate(sdfDate.format(now)); + hefengRealtimeWeatherRepository.save(realtimeWeather); + } + } + } else { + log.info("-->"); + } + } + } + } + + @Override + public void saveHefengFutureWeatherByLocationNameEn(String locationNameEn) { + List cityList = this.cityService.findByLocationNameEn(locationNameEn); + log.info(new Gson().toJson(cityList)); + log.info("查询天气预报总数:"+String.valueOf(cityList.size())); + if (cityList != null && cityList.size() > 0) { + Date now = new Date(); + log.info(String.valueOf(cityList.size())); + for (int i = 0; i < cityList.size(); i++) { + HefengCity city = cityList.get(i); + Map params = new HashMap<>(); + //c67db396fcdb416c959933d29e30db3d + //params.put("key", "c67db396fcdb416c959933d29e30db3d"); + params.put("location", city.getLocationId()); + String futureWeatherData = OkHttpUtil.get("https://m573jftdb9.re.qweatherapi.com/v7/weather/7d", params); + log.info(futureWeatherData); + try { + Thread.sleep(200); + } catch (Exception e) { + e.printStackTrace(); + } + if (futureWeatherData!=null&&futureWeatherData.trim().length()>0) { + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); + ForecastWeather forecastWeather = new ForecastWeather(); + forecastWeather.setWeatherDate(sdf.format(now)); + forecastWeather.setLocationId(city.getLocationId()); + forecastWeather.setWeather(futureWeatherData); + forecastWeather.setLastUpdateDate(now); + forecastWeather.setCreateDate(now); + forecastWeather.setProvince(city.getAdm1NameZh()); + forecastWeather.setCity(city.getAdm2NameZh()); + forecastWeather.setLocationNameZh(city.getLocationNameZh()); + this.saveForecastWeather(forecastWeather); + + Gson gson = new Gson(); + HefengFutureWeatherDto hefengFutureWeatherDto = gson.fromJson(futureWeatherData, HefengFutureWeatherDto.class); + if((!ObjectUtils.isEmpty(hefengFutureWeatherDto))&&"200".equals(hefengFutureWeatherDto.getCode())){ + log.info("----------"); + log.info(gson.toJson(hefengFutureWeatherDto)); + List dailyHefengFutureWeather = hefengFutureWeatherDto.getDaily(); + if(!ObjectUtils.isEmpty(dailyHefengFutureWeather)){ + for(HefengFutureWeather daily:dailyHefengFutureWeather){ + HefengFutureWeather dailyDB = this.hefengFutureWeatherRepository.findByLocationIdAndFxDate(city.getLocationId(),daily.getFxDate()); + if(dailyDB==null){ + daily.setLocationId(city.getLocationId()); + daily.setProvince(city.getAdm1NameZh()); + daily.setCity(city.getAdm2NameZh()); + daily.setLocationNameZh(city.getLocationNameZh()); + daily.setCreateTime(now); + + daily.setUpdateTime(now); + daily.setFxLink(hefengFutureWeatherDto.getFxLink()); + hefengFutureWeatherRepository.save(daily); + log.info("-----和风天气预报数据保存成功-----"); + log.info(gson.toJson(daily)); + }else{ + daily.setId(dailyDB.getId()); + daily.setLocationId(city.getLocationId()); + daily.setProvince(city.getAdm1NameZh()); + daily.setCity(city.getAdm2NameZh()); + daily.setLocationNameZh(city.getLocationNameZh()); + + daily.setUpdateTime(now); + daily.setFxLink(hefengFutureWeatherDto.getFxLink()); + hefengFutureWeatherRepository.save(daily); + log.info("-----和风天气预报数据更新成功-----"); + log.info(gson.toJson(daily)); + } + } + } + } + } else { + log.info("-->"); + } + } + } + } + @Override public List findForecastWeatherByLocationIdAndDate(String locationId, String date) { return this.forecastWeatherRepository.findByLocationIdAndWeatherDate(locationId,date); diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ScheduledService.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ScheduledHefengWeatherService.java similarity index 65% rename from jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ScheduledService.java rename to jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ScheduledHefengWeatherService.java index 8b120a5..d9dacdb 100644 --- a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ScheduledService.java +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ScheduledHefengWeatherService.java @@ -10,6 +10,8 @@ import com.rehome.jpahefengweather.service.excel.*; import com.rehome.jpahefengweather.utils.JwtUtils; import com.rehome.jpahefengweather.utils.OkHttpUtil; import okhttp3.*; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Value; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; @@ -27,11 +29,13 @@ import java.util.concurrent.TimeUnit; * @author huangwenfei * @version v1.0.0.0 * Created DateTime 2021-04-26 14:35 - * @description: 定时任务服务 + * @description: 和风天气平台定时任务服务 */ @Component -public class ScheduledService { +public class ScheduledHefengWeatherService { + private Logger log = LoggerFactory.getLogger(this.getClass()); + @Value("${rehome.resources-path}") private String resourcesPath; @@ -39,16 +43,6 @@ public class ScheduledService { private CityService cityService; @Resource private WeatherService weatherService; - @Resource - private NmcCityService nmcCityService; - @Resource - private NmcWeatherService nmcWeatherService; - @Resource - private NmcStormService nmcStormService; - @Resource - private ZjsltStormService zjsltStormService; - @Resource - private WztfStormService wztfStormService; /** @@ -56,18 +50,19 @@ public class ScheduledService { * @description: 定时任务, 调用 和风天气平台 天气预报-实时天气 获取城市列表接口 * 城市列表 下载地址:https://github.com/qwd/LocationList * 和风天气接口文档:https://dev.qweather.com/docs/start/ + * //天气图标用法: https://icons.qweather.com/usage/ * @Param: null */ - //@Scheduled(cron = "0 32 * * * *")//每个小时执行一次 + //@Scheduled(cron = "0 34 * * * *")//每个小时执行一次 public void scheduled() { - System.out.println("scheduled"); - System.out.println("=====>>>>>使用cron:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); + log.info("scheduled"); + log.info("=====>>>>>使用cron:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); if (this.resourcesPath != null) { - System.out.println(this.resourcesPath); + log.info(this.resourcesPath); try { File excelFile = new File(this.resourcesPath + File.separator + "China-City-List-latest.xlsx"); if (excelFile.exists()) { - System.out.println("文件存在"); + log.info("文件存在"); WriteExcel writeExcel = new WriteExcel(this.resourcesPath, "writeExcel.xlsx"); //writeExcel.testWriteExcel(); @@ -91,8 +86,8 @@ public class ScheduledService { for (HefengCity hefengCity :excelReadCityExcelXlsx) { provinceCodeMap.put(hefengCity.getAdm1NameEn(),hefengCity.getAdm1NameZh()); } - System.out.println(new Gson().toJson(provinceCodeMap)); - System.out.println(String.valueOf(provinceCodeMap.size())); + log.info(new Gson().toJson(provinceCodeMap)); + log.info(String.valueOf(provinceCodeMap.size())); List provinceList = new ArrayList<>(); for (String key : provinceCodeMap.keySet()) { String provinceName = provinceCodeMap.get(key); @@ -108,13 +103,13 @@ public class ScheduledService { this.cityService.saveProvinceList(provinceList); } List listCityByProvince = this.cityService.findCityByProvinceCode("Guangdong"); - System.out.println("----------"); - System.out.println(new Gson().toJson(listCityByProvince)); - System.out.println("广东省城市总数:"+String.valueOf(listCityByProvince.size())); - System.out.println("和风天气省份和城市数据同步成功"); + log.info("----------"); + log.info(new Gson().toJson(listCityByProvince)); + log.info("广东省城市总数:"+String.valueOf(listCityByProvince.size())); + log.info("和风天气省份和城市数据同步成功"); } } else { - System.out.println("文件不存在"); + log.info("文件不存在"); } } catch (Exception e) { e.printStackTrace(); @@ -125,7 +120,7 @@ public class ScheduledService { //@Scheduled(cron = "0/5 * * * * *")//每个小时执行一次 public void scheduledGetJwt() { String jwt = JwtUtils.getJwt(); - System.out.println(jwt); + log.info(jwt); } /** @@ -136,51 +131,13 @@ public class ScheduledService { //@Scheduled(cron = "0 0 10,14,18,20,22 * * *")//每天10,14,18,20,22点各执行一次,一天总共执行五次 //@Scheduled(cron = "0 0 0,8,12,16 * * *")//每天0,8,12,16点各执行一次,一天总共执行四次 @Scheduled(cron = "0 15 * * * *")//每个小时执行一次 - public void scheduledGetWeather() { - System.out.println("scheduledGetWeather"); - System.out.println("=====>>>>>使用cron:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); - - List cityList = this.cityService.findCityByProvinceCode("Guangdong"); - if (cityList != null && cityList.size() > 0) { - Date now = new Date(); - System.out.println(cityList.size()); - for (int i = 0; i < cityList.size(); i++) { - HefengCity city = cityList.get(i); - Map params = new HashMap<>(); - //我的帐号: c67db396fcdb416c959933d29e30db3d - //克金帐号: 3522d7d5736947d7a63e8d7d95316406 - params.put("key", "c67db396fcdb416c959933d29e30db3d"); - params.put("location", city.getLocationId()); - String weatherData = OkHttpUtil.get("https://m573jftdb9.re.qweatherapi.com/v7/weather/now", params); - System.out.println(weatherData); - try { - Thread.sleep(200); - } catch (Exception e) { - e.printStackTrace(); - } - if (!weatherData.equals("")) { - //System.out.println("有数据"); - SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); - String nowDate = sdf.format(new Date()); - //List nowWeatherDB = this.weatherService.findNowWeatherByLocationIdAndDate(city.getLocationId(),nowDate); - NowWeather nowWeather = new NowWeather(); - //if(nowWeatherDB==null){ - nowWeather.setWeatherDate(nowDate); - nowWeather.setLocationId(city.getLocationId()); - nowWeather.setWeather(weatherData); - nowWeather.setCreateDate(now); - nowWeather.setLastUpdateDate(now); + public void scheduledGetRealtimeWeather() { + log.info("scheduledGetRealtimeWeather"); + log.info("=====>>>>>使用cron:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); - nowWeather.setProvince(city.getAdm1NameZh()); - nowWeather.setCity(city.getAdm2NameZh()); - nowWeather.setLocationNameZh(city.getLocationNameZh()); - this.weatherService.saveNowWeather(nowWeather); - // } - } else { - System.out.println("-->"); - } - } - } + //广东省惠州市惠阳 + String locationNameEn_Huiyang = "Huiyang"; + this.weatherService.saveHefengWeatherByLocationNameEn(locationNameEn_Huiyang); } /** @@ -191,49 +148,12 @@ public class ScheduledService { //@Scheduled(cron = "0 0 9 * * *")//每天9点执行一次 @Scheduled(cron = "0 16 * * * *")//每个小时执行一次 public void scheduledGetForecastWeather() { - System.out.println("scheduledGetForecastWeather"); - System.out.println("=====>>>>>使用cron:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); - - List citys = this.cityService.findAllCity(); - if (citys != null && citys.size() > 0) { - Date now = new Date(); - System.out.println(citys.size()); - for (int i = 0; i < citys.size(); i++) { - HefengCity city = citys.get(i); - Map params = new HashMap<>(); - //c67db396fcdb416c959933d29e30db3d - params.put("key", "c67db396fcdb416c959933d29e30db3d"); - params.put("location", city.getLocationId()); - String weatherData = OkHttpUtil.get("https://m573jftdb9.re.qweatherapi.com/v7/weather/7d", params); - //System.out.println(weatherData); - try { - Thread.sleep(500); - } catch (Exception e) { - e.printStackTrace(); - } - if (!weatherData.equals("")) { - //System.out.println("有数据"); - SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); - String nowDate = sdf.format(new Date()); - //List forecastWeatherDB = this.weatherService.findForecastWeatherByLocationIdAndDate(city.getLocationId(), nowDate); - ForecastWeather forecastWeather = new ForecastWeather(); - //if (forecastWeatherDB == null) { - forecastWeather.setWeatherDate(nowDate); - forecastWeather.setLocationId(city.getLocationId()); - forecastWeather.setWeather(weatherData); - forecastWeather.setLastUpdateDate(now); - forecastWeather.setCreateDate(now); + log.info("scheduledGetForecastWeather"); + log.info("=====>>>>>使用cron:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); - forecastWeather.setProvince(city.getAdm1NameZh()); - forecastWeather.setCity(city.getAdm2NameZh()); - forecastWeather.setLocationNameZh(city.getLocationNameZh()); - this.weatherService.saveForecastWeather(forecastWeather); - //} - } else { - System.out.println("-->"); - } - } - } + //广东省惠州市惠阳 + String locationNameEn_Huiyang = "Huiyang"; + this.weatherService.saveHefengFutureWeatherByLocationNameEn(locationNameEn_Huiyang); } /** @@ -243,8 +163,8 @@ public class ScheduledService { */ //@Scheduled(cron = "*/5 * * * * *")//每天0,8,16点各执行一次,一天总共执行三次 public void getCityList() { - System.out.println("scheduledGetWeather"); - System.out.println("=====>>>>>使用cron:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); + log.info("scheduledGetWeather"); + log.info("=====>>>>>使用cron:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); try { String url = "http://192.168.1.18:8080/jpahefengweather/weather/getCityList"; // 初始化 OkHttpClient @@ -257,7 +177,7 @@ public class ScheduledService { // 得到返回Response Response response = client.newCall(request).execute(); String body = response.body().string(); - //System.out.println(body); + //log.info(body); } catch (IOException e) { e.printStackTrace(); } @@ -270,8 +190,8 @@ public class ScheduledService { */ //@Scheduled(cron = "*/10 * * * * *")//每天0,8,16点各执行一次,一天总共执行三次 public void getNowWeatherEntity() { - System.out.println("scheduledGetWeather"); - System.out.println("=====>>>>>使用cron:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); + log.info("scheduledGetWeather"); + log.info("=====>>>>>使用cron:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); try { String url = "http://192.168.1.18:8080/jpahefengweather/weather/getNowWeatherEntity"; // 初始化 OkHttpClient @@ -302,7 +222,7 @@ public class ScheduledService { // 得到返回Response Response response = client.newCall(request).execute(); String body = response.body().string(); - System.out.println(body); + log.info(body); } catch (IOException e) { e.printStackTrace(); } @@ -315,8 +235,8 @@ public class ScheduledService { */ //@Scheduled(cron = "*/10 * * * * *")//每天0,8,16点各执行一次,一天总共执行三次 public void getNowWeatherDto() { - System.out.println("scheduledGetWeather"); - System.out.println("=====>>>>>使用cron:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); + log.info("scheduledGetWeather"); + log.info("=====>>>>>使用cron:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); String url = "http://192.168.1.18:8080/jpahefengweather/weather/getNowWeatherDto"; // 初始化 OkHttpClient //OkHttpClient client = new OkHttpClient(); @@ -352,7 +272,7 @@ public class ScheduledService { @Override public void onResponse(Call call, Response response) throws IOException { String body = response.body().string(); - System.out.println(body); + log.info(body); } }); } @@ -364,8 +284,8 @@ public class ScheduledService { */ //@Scheduled(cron = "*/10 * * * * *")//每天0,8,16点各执行一次,一天总共执行三次 public void getNowWeatherDtoOne() { - System.out.println("scheduledGetWeather"); - System.out.println("=====>>>>>使用cron:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); + log.info("scheduledGetWeather"); + log.info("=====>>>>>使用cron:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); String url = "http://192.168.1.18:8080/jpahefengweather/weather/getNowWeatherDtoOne"; // 初始化 OkHttpClient OkHttpClient client = new OkHttpClient.Builder() @@ -404,7 +324,7 @@ public class ScheduledService { @Override public void onResponse(Call call, Response response) throws IOException { String body = response.body().string(); - System.out.println(body); + log.info(body); } }); } @@ -416,8 +336,8 @@ public class ScheduledService { */ //@Scheduled(cron = "*/10 * * * * *")//每天0,8,16点各执行一次,一天总共执行三次 public void getForecastWeatherDto() { - System.out.println("scheduledGetWeather"); - System.out.println("=====>>>>>使用cron:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); + log.info("scheduledGetWeather"); + log.info("=====>>>>>使用cron:" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())); String url = "http://192.168.1.18:8080/jpahefengweather/weather/getForecastWeatherDto"; // 初始化 OkHttpClient OkHttpClient client = new OkHttpClient.Builder() @@ -446,15 +366,8 @@ public class ScheduledService { @Override public void onResponse(Call call, Response response) throws IOException { String body = response.body().string(); - System.out.println(body); + log.info(body); } }); } - - - - - - - } \ No newline at end of file diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/NmcWeatherScheduledService.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ScheduledNmcWeatherService.java similarity index 99% rename from jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/NmcWeatherScheduledService.java rename to jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ScheduledNmcWeatherService.java index e3bcf01..2978536 100644 --- a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/NmcWeatherScheduledService.java +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ScheduledNmcWeatherService.java @@ -29,7 +29,7 @@ import java.util.concurrent.TimeUnit; * @description: 中央气象台天气服务,定时任务 */ //@Component -public class NmcWeatherScheduledService { +public class ScheduledNmcWeatherService { @Value("${rehome.resources-path}") private String resourcesPath; diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/WztfwScheduledService.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ScheduledWztfwStormService.java similarity index 99% rename from jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/WztfwScheduledService.java rename to jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ScheduledWztfwStormService.java index 2a21465..37790e8 100644 --- a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/WztfwScheduledService.java +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ScheduledWztfwStormService.java @@ -29,7 +29,7 @@ import java.util.concurrent.TimeUnit; * @description: 温州气象台 获取台风列表和对应的台风详情,定时任务 */ //@Component -public class WztfwScheduledService { +public class ScheduledWztfwStormService { @Resource private WztfStormService wztfStormService; diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ZjsltStormScheduledService.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ScheduledZjsltStormService.java similarity index 99% rename from jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ZjsltStormScheduledService.java rename to jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ScheduledZjsltStormService.java index 264df05..ce9b2e2 100644 --- a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ZjsltStormScheduledService.java +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/ScheduledZjsltStormService.java @@ -29,7 +29,7 @@ import java.util.concurrent.TimeUnit; * @description: 浙江省水利厅 台风列表数据和对应的台风详情,定时任务 */ //@Component -public class ZjsltStormScheduledService { +public class ScheduledZjsltStormService { @Resource private ZjsltStormService zjsltStormService; diff --git a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/WeatherService.java b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/WeatherService.java index 9764320..9cc0c01 100644 --- a/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/WeatherService.java +++ b/jpahefengweather/src/main/java/com/rehome/jpahefengweather/service/WeatherService.java @@ -22,6 +22,14 @@ public interface WeatherService { * 保存实时天气数据 */ void saveNowWeather(NowWeather nowWeather); + /** + * 从和风天气开放平台 获取区、县实时天气数据,然后保存到表 + */ + void saveHefengWeatherByLocationNameEn(String locationNameEn); + /** + * 从和风天气开放平台 获取区、县 每日天气预报数据,然后保存到表 + */ + void saveHefengFutureWeatherByLocationNameEn(String locationNameEn); /** * 查询全国3000+个市县区 * @return NowWeather diff --git a/jpahefengweather/src/main/resources/HefengFutureWeather.json b/jpahefengweather/src/main/resources/HefengFutureWeather.json new file mode 100644 index 0000000..400495b --- /dev/null +++ b/jpahefengweather/src/main/resources/HefengFutureWeather.json @@ -0,0 +1,104 @@ +{ + "code": "200", + "updateTime": "2021-11-15T16:35+08:00", + "fxLink": "http://hfx.link/2ax1", + "daily": [ + { + "fxDate": "2021-11-15", + "sunrise": "06:58", + "sunset": "16:59", + "moonrise": "15:16", + "moonset": "03:40", + "moonPhase": "盈凸月", + "moonPhaseIcon": "803", + "tempMax": "12", + "tempMin": "-1", + "iconDay": "101", + "textDay": "多云", + "iconNight": "150", + "textNight": "晴", + "wind360Day": "45", + "windDirDay": "东北风", + "windScaleDay": "1-2", + "windSpeedDay": "3", + "wind360Night": "0", + "windDirNight": "北风", + "windScaleNight": "1-2", + "windSpeedNight": "3", + "humidity": "65", + "precip": "0.0", + "pressure": "1020", + "vis": "25", + "cloud": "4", + "uvIndex": "3" + }, + { + "fxDate": "2021-11-16", + "sunrise": "07:00", + "sunset": "16:58", + "moonrise": "15:38", + "moonset": "04:40", + "moonPhase": "盈凸月", + "moonPhaseIcon": "803", + "tempMax": "13", + "tempMin": "0", + "iconDay": "100", + "textDay": "晴", + "iconNight": "101", + "textNight": "多云", + "wind360Day": "225", + "windDirDay": "西南风", + "windScaleDay": "1-2", + "windSpeedDay": "3", + "wind360Night": "225", + "windDirNight": "西南风", + "windScaleNight": "1-2", + "windSpeedNight": "3", + "humidity": "74", + "precip": "0.0", + "pressure": "1016", + "vis": "25", + "cloud": "1", + "uvIndex": "3" + }, + { + "fxDate": "2021-11-17", + "sunrise": "07:01", + "sunset": "16:57", + "moonrise": "16:01", + "moonset": "05:41", + "moonPhase": "盈凸月", + "moonPhaseIcon": "803", + "tempMax": "13", + "tempMin": "0", + "iconDay": "100", + "textDay": "晴", + "iconNight": "150", + "textNight": "晴", + "wind360Day": "225", + "windDirDay": "西南风", + "windScaleDay": "1-2", + "windSpeedDay": "3", + "wind360Night": "225", + "windDirNight": "西南风", + "windScaleNight": "1-2", + "windSpeedNight": "3", + "humidity": "56", + "precip": "0.0", + "pressure": "1009", + "vis": "25", + "cloud": "0", + "uvIndex": "3" + } + ], + "refer": { + "sources": [ + "QWeather", + "NMC", + "ECMWF" + ], + "license": [ + "QWeather Developers License" + ] + } +} \ No newline at end of file diff --git a/jpahefengweather/src/main/resources/HefengRealtimeWeather.json b/jpahefengweather/src/main/resources/HefengRealtimeWeather.json new file mode 100644 index 0000000..d117a32 --- /dev/null +++ b/jpahefengweather/src/main/resources/HefengRealtimeWeather.json @@ -0,0 +1,32 @@ +{ + "code": "200", + "updateTime": "2020-06-30T22:00+08:00", + "fxLink": "http://hfx.link/2ax1", + "now": { + "obsTime": "2020-06-30T21:40+08:00", + "temp": "24", + "feelsLike": "26", + "icon": "101", + "text": "多云", + "wind360": "123", + "windDir": "东南风", + "windScale": "1", + "windSpeed": "3", + "humidity": "72", + "precip": "0.0", + "pressure": "1003", + "vis": "16", + "cloud": "10", + "dew": "21" + }, + "refer": { + "sources": [ + "QWeather", + "NMC", + "ECMWF" + ], + "license": [ + "QWeather Developers License" + ] + } +} \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0.zip b/jpahefengweather/storage/QWeather-Icons-1.7.0.zip new file mode 100644 index 0000000..201c782 Binary files /dev/null and b/jpahefengweather/storage/QWeather-Icons-1.7.0.zip differ diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/LICENSE b/jpahefengweather/storage/QWeather-Icons-1.7.0/LICENSE new file mode 100644 index 0000000..aa2286b --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 QWeather 和风天气 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/README.md b/jpahefengweather/storage/QWeather-Icons-1.7.0/README.md new file mode 100644 index 0000000..ac8826e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/README.md @@ -0,0 +1,159 @@ +# 和风天气图标 QWeather Icons + +[English](#qweather-icons) + +和风天气图标是一个开源、漂亮的天气图标库,支持SVG和Web Font,兼容[和风天气API](https://dev.qweather.com),适用于任何需要天气图标的项目。 + +## 下载和安装 + +你可以通过多种方式下载和安装和风天气图标: + +**npm** + +```bash +npm i qweather-icons +``` + +**CDN** + +```bash + +``` + +或[下载.zip](https://github.com/qwd/Icons/releases) + +## 如何使用 + +- 在HTML中嵌入SVG +- 在`img`中使用 +- 通过web font加载 + +> 如果你是[和风天气开发者](https://dev.qweather.com/),图标和字体的命名与`icon`字段是一致的,因此你可以直接通过`icon`字段找到你需要的图标和字体。 + +具体使用方式请参考[使用文档](https://icons.qweather.com/usage/)。 + +## 设计文件 + +所有图标的设计资源可以[在Figma中查看](https://www.figma.com/community/file/1196353857920331062)。 + +## 开发 + +假设你已经拥有[Node.js](https://nodejs.org)环境。克隆本项目到本地,并安装依赖。 + +```bash +git clone https://github.com/qwd/Icons.git +cd Icons +npm install +``` + +### 运行文档 + +```bash +npm run docs +``` + +在浏览器打开`https://localhost:1313`即可。 + +### 创建图标 + +```bash +npm run icons +``` + +### 其他scripts + +请查看`package.json`。 + +## 自定义图标 + +参考[自定义文档](https://icons.qweather.com/customize/)。 + +## 灵感 + +灵感来自[Boogstrap Icons](https://icons.getbootstrap.com/) + +## 许可 + +版权所属 [QWeather](https://www.qweather.com/) + +代码 [MIT](https://github.com/qwd/Icons/blob/main/LICENSE) + +图标 [知识共享署名4.0](https://creativecommons.org/licenses/by/4.0/deed.zh) + +# QWeather Icons + +QWeather Icons is an open source, beautiful weather icon library that supports SVG and Web Font, compatible with [QWeather API](https://dev.qweather.com/en/), and also works in any project that needs weather icons. + +## Install + +**npm** + +```bash +npm i qweather-icons +``` + +**CDN** + +```bash + +``` + +Or [Download .zip](https://github.com/qwd/Icons/releases) + +## How to Use + +- Embedding SVG in HTML +- Use `img` element +- Loading via web font + +> For [QWeather developers](https://dev.qweather.com/en/), the icons and fonts are named the same as the `icon` field, so you can find the icons and fonts you need directly through the `icon` field. + +See [Usage](https://icons.qweather.com/en/usage/) for more. + +## Design resources + +All design resources for icons can be found in [Figma](https://www.figma.com/community/file/1196353857920331062). + +## Development + +Assume you already have a [Node.js](https://nodejs.org) environment. Clone this project locally and install the dependencies. + +```bash +git clone https://github.com/qwd/Icons.git +cd Icons +npm install +``` + +### Run docs server + +```bash +npm run docs +``` + +Open `https://localhost:1313` in your browser. + +### Build icons + +```bash +npm run icons +``` + +### Other scripts + +See `package.json` for more. + +## Customize + +See [Customize](https://icons.qweather.com/customize/) for more. + +## Inspiration + +Inspired by [Boogstrap Icons](https://icons.getbootstrap.com/) + +## License + +Copyright [QWeather](https://www.qweather.com/en/) + +Code for [MIT](https://github.com/qwd/Icons/blob/main/LICENSE) + +Icon for [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/font/demo.html b/jpahefengweather/storage/QWeather-Icons-1.7.0/font/demo.html new file mode 100644 index 0000000..046b0b3 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/font/demo.html @@ -0,0 +1,4010 @@ + + + + + qweather-icons + + + + + + + +

qweather-icons

+ +
+
+ +
100
+
+
+ +
101
+
+
+ +
102
+
+
+ +
103
+
+
+ +
104
+
+
+ +
150
+
+
+ +
151
+
+
+ +
152
+
+
+ +
153
+
+
+ +
300
+
+
+ +
301
+
+
+ +
302
+
+
+ +
303
+
+
+ +
304
+
+
+ +
305
+
+
+ +
306
+
+
+ +
307
+
+
+ +
308
+
+
+ +
309
+
+
+ +
310
+
+
+ +
311
+
+
+ +
312
+
+
+ +
313
+
+
+ +
314
+
+
+ +
315
+
+
+ +
316
+
+
+ +
317
+
+
+ +
318
+
+
+ +
350
+
+
+ +
351
+
+
+ +
399
+
+
+ +
400
+
+
+ +
401
+
+
+ +
402
+
+
+ +
403
+
+
+ +
404
+
+
+ +
405
+
+
+ +
406
+
+
+ +
407
+
+
+ +
408
+
+
+ +
409
+
+
+ +
410
+
+
+ +
456
+
+
+ +
457
+
+
+ +
499
+
+
+ +
500
+
+
+ +
501
+
+
+ +
502
+
+
+ +
503
+
+
+ +
504
+
+
+ +
507
+
+
+ +
508
+
+
+ +
509
+
+
+ +
510
+
+
+ +
511
+
+
+ +
512
+
+
+ +
513
+
+
+ +
514
+
+
+ +
515
+
+
+ +
800
+
+
+ +
801
+
+
+ +
802
+
+
+ +
803
+
+
+ +
804
+
+
+ +
805
+
+
+ +
806
+
+
+ +
807
+
+
+ +
900
+
+
+ +
901
+
+
+ +
999
+
+
+ +
1001
+
+
+ +
1002
+
+
+ +
1003
+
+
+ +
1004
+
+
+ +
1005
+
+
+ +
1006
+
+
+ +
1007
+
+
+ +
1008
+
+
+ +
1009
+
+
+ +
1010
+
+
+ +
1011
+
+
+ +
1012
+
+
+ +
1013
+
+
+ +
1014
+
+
+ +
1015
+
+
+ +
1016
+
+
+ +
1017
+
+
+ +
1018
+
+
+ +
1019
+
+
+ +
1020
+
+
+ +
1021
+
+
+ +
1022
+
+
+ +
1023
+
+
+ +
1024
+
+
+ +
1025
+
+
+ +
1026
+
+
+ +
1027
+
+
+ +
1028
+
+
+ +
1029
+
+
+ +
1030
+
+
+ +
1031
+
+
+ +
1032
+
+
+ +
1033
+
+
+ +
1034
+
+
+ +
1035
+
+
+ +
1036
+
+
+ +
1037
+
+
+ +
1038
+
+
+ +
1039
+
+
+ +
1040
+
+
+ +
1041
+
+
+ +
1042
+
+
+ +
1043
+
+
+ +
1044
+
+
+ +
1045
+
+
+ +
1046
+
+
+ +
1047
+
+
+ +
1048
+
+
+ +
1049
+
+
+ +
1050
+
+
+ +
1051
+
+
+ +
1052
+
+
+ +
1053
+
+
+ +
1054
+
+
+ +
1055
+
+
+ +
1056
+
+
+ +
1057
+
+
+ +
1058
+
+
+ +
1059
+
+
+ +
1060
+
+
+ +
1061
+
+
+ +
1062
+
+
+ +
1063
+
+
+ +
1064
+
+
+ +
1065
+
+
+ +
1066
+
+
+ +
1067
+
+
+ +
1068
+
+
+ +
1069
+
+
+ +
1071
+
+
+ +
1072
+
+
+ +
1073
+
+
+ +
1074
+
+
+ +
1075
+
+
+ +
1076
+
+
+ +
1077
+
+
+ +
1078
+
+
+ +
1079
+
+
+ +
1080
+
+
+ +
1081
+
+
+ +
1082
+
+
+ +
1084
+
+
+ +
1085
+
+
+ +
1086
+
+
+ +
1087
+
+
+ +
1088
+
+
+ +
1089
+
+
+ +
1201
+
+
+ +
1202
+
+
+ +
1203
+
+
+ +
1204
+
+
+ +
1205
+
+
+ +
1206
+
+
+ +
1207
+
+
+ +
1208
+
+
+ +
1209
+
+
+ +
1210
+
+
+ +
1211
+
+
+ +
1212
+
+
+ +
1213
+
+
+ +
1214
+
+
+ +
1215
+
+
+ +
1216
+
+
+ +
1217
+
+
+ +
1218
+
+
+ +
1219
+
+
+ +
1221
+
+
+ +
1241
+
+
+ +
1242
+
+
+ +
1243
+
+
+ +
1244
+
+
+ +
1245
+
+
+ +
1246
+
+
+ +
1247
+
+
+ +
1248
+
+
+ +
1249
+
+
+ +
1250
+
+
+ +
1251
+
+
+ +
1271
+
+
+ +
1272
+
+
+ +
1273
+
+
+ +
1274
+
+
+ +
1601
+
+
+ +
1602
+
+
+ +
1603
+
+
+ +
1604
+
+
+ +
1605
+
+
+ +
1606
+
+
+ +
1607
+
+
+ +
1608
+
+
+ +
1609
+
+
+ +
1610
+
+
+ +
1701
+
+
+ +
1702
+
+
+ +
1703
+
+
+ +
1801
+
+
+ +
1802
+
+
+ +
1803
+
+
+ +
1804
+
+
+ +
1805
+
+
+ +
2001
+
+
+ +
2002
+
+
+ +
2003
+
+
+ +
2004
+
+
+ +
2005
+
+
+ +
2006
+
+
+ +
2007
+
+
+ +
2029
+
+
+ +
2030
+
+
+ +
2031
+
+
+ +
2032
+
+
+ +
2033
+
+
+ +
2050
+
+
+ +
2051
+
+
+ +
2052
+
+
+ +
2053
+
+
+ +
2054
+
+
+ +
2070
+
+
+ +
2071
+
+
+ +
2072
+
+
+ +
2073
+
+
+ +
2074
+
+
+ +
2075
+
+
+ +
2076
+
+
+ +
2077
+
+
+ +
2078
+
+
+ +
2079
+
+
+ +
2080
+
+
+ +
2081
+
+
+ +
2082
+
+
+ +
2083
+
+
+ +
2084
+
+
+ +
2085
+
+
+ +
2100
+
+
+ +
2101
+
+
+ +
2102
+
+
+ +
2103
+
+
+ +
2104
+
+
+ +
2105
+
+
+ +
2106
+
+
+ +
2107
+
+
+ +
2108
+
+
+ +
2109
+
+
+ +
2111
+
+
+ +
2120
+
+
+ +
2121
+
+
+ +
2122
+
+
+ +
2123
+
+
+ +
2124
+
+
+ +
2125
+
+
+ +
2126
+
+
+ +
2127
+
+
+ +
2128
+
+
+ +
2129
+
+
+ +
2130
+
+
+ +
2131
+
+
+ +
2132
+
+
+ +
2133
+
+
+ +
2134
+
+
+ +
2135
+
+
+ +
2150
+
+
+ +
2151
+
+
+ +
2152
+
+
+ +
2153
+
+
+ +
2154
+
+
+ +
2155
+
+
+ +
2156
+
+
+ +
2157
+
+
+ +
2158
+
+
+ +
2159
+
+
+ +
2160
+
+
+ +
2161
+
+
+ +
2162
+
+
+ +
2163
+
+
+ +
2164
+
+
+ +
2165
+
+
+ +
2166
+
+
+ +
2190
+
+
+ +
2191
+
+
+ +
2192
+
+
+ +
2193
+
+
+ +
2200
+
+
+ +
2201
+
+
+ +
2202
+
+
+ +
2203
+
+
+ +
2204
+
+
+ +
2205
+
+
+ +
2207
+
+
+ +
2208
+
+
+ +
2209
+
+
+ +
2210
+
+
+ +
2211
+
+
+ +
2212
+
+
+ +
2213
+
+
+ +
2214
+
+
+ +
2215
+
+
+ +
2216
+
+
+ +
2217
+
+
+ +
2218
+
+
+ +
2300
+
+
+ +
2301
+
+
+ +
2302
+
+
+ +
2303
+
+
+ +
2304
+
+
+ +
2305
+
+
+ +
2306
+
+
+ +
2307
+
+
+ +
2308
+
+
+ +
2309
+
+
+ +
2311
+
+
+ +
2312
+
+
+ +
2313
+
+
+ +
2314
+
+
+ +
2315
+
+
+ +
2316
+
+
+ +
2317
+
+
+ +
2318
+
+
+ +
2319
+
+
+ +
2320
+
+
+ +
2321
+
+
+ +
2322
+
+
+ +
2323
+
+
+ +
2324
+
+
+ +
2325
+
+
+ +
2326
+
+
+ +
2327
+
+
+ +
2328
+
+
+ +
2330
+
+
+ +
2331
+
+
+ +
2332
+
+
+ +
2333
+
+
+ +
2341
+
+
+ +
2343
+
+
+ +
2345
+
+
+ +
2346
+
+
+ +
2348
+
+
+ +
2349
+
+
+ +
2350
+
+
+ +
2351
+
+
+ +
2352
+
+
+ +
2353
+
+
+ +
2354
+
+
+ +
2355
+
+
+ +
2356
+
+
+ +
2357
+
+
+ +
2358
+
+
+ +
2359
+
+
+ +
2360
+
+
+ +
2361
+
+
+ +
2362
+
+
+ +
2363
+
+
+ +
2364
+
+
+ +
2365
+
+
+ +
2366
+
+
+ +
2367
+
+
+ +
2368
+
+
+ +
2369
+
+
+ +
2370
+
+
+ +
2371
+
+
+ +
2372
+
+
+ +
2373
+
+
+ +
2374
+
+
+ +
2375
+
+
+ +
2376
+
+
+ +
2377
+
+
+ +
2378
+
+
+ +
2379
+
+
+ +
2380
+
+
+ +
2381
+
+
+ +
2382
+
+
+ +
2383
+
+
+ +
2384
+
+
+ +
2385
+
+
+ +
2386
+
+
+ +
2387
+
+
+ +
2388
+
+
+ +
2389
+
+
+ +
2390
+
+
+ +
2391
+
+
+ +
2392
+
+
+ +
2393
+
+
+ +
2394
+
+
+ +
2395
+
+
+ +
2396
+
+
+ +
2397
+
+
+ +
2398
+
+
+ +
2399
+
+
+ +
2400
+
+
+ +
2409
+
+
+ +
2411
+
+
+ +
2412
+
+
+ +
2413
+
+
+ +
2414
+
+
+ +
2415
+
+
+ +
2416
+
+
+ +
2417
+
+
+ +
2418
+
+
+ +
2419
+
+
+ +
2420
+
+
+ +
2421
+
+
+ +
2422
+
+
+ +
2423
+
+
+ +
2424
+
+
+ +
2425
+
+
+ +
2426
+
+
+ +
2501
+
+
+ +
2502
+
+
+ +
2521
+
+
+ +
2522
+
+
+ +
2523
+
+
+ +
2524
+
+
+ +
2525
+
+
+ +
2526
+
+
+ +
2527
+
+
+ +
2528
+
+
+ +
2529
+
+
+ +
2530
+
+
+ +
2531
+
+
+ +
2532
+
+
+ +
2550
+
+
+ +
2551
+
+
+ +
2552
+
+
+ +
2553
+
+
+ +
2554
+
+
+ +
9999
+
+
+ +
100-fill
+
+
+ +
101-fill
+
+
+ +
102-fill
+
+
+ +
103-fill
+
+
+ +
104-fill
+
+
+ +
150-fill
+
+
+ +
151-fill
+
+
+ +
152-fill
+
+
+ +
153-fill
+
+
+ +
300-fill
+
+
+ +
301-fill
+
+
+ +
302-fill
+
+
+ +
303-fill
+
+
+ +
304-fill
+
+
+ +
305-fill
+
+
+ +
306-fill
+
+
+ +
307-fill
+
+
+ +
308-fill
+
+
+ +
309-fill
+
+
+ +
310-fill
+
+
+ +
311-fill
+
+
+ +
312-fill
+
+
+ +
313-fill
+
+
+ +
314-fill
+
+
+ +
315-fill
+
+
+ +
316-fill
+
+
+ +
317-fill
+
+
+ +
318-fill
+
+
+ +
350-fill
+
+
+ +
351-fill
+
+
+ +
399-fill
+
+
+ +
400-fill
+
+
+ +
401-fill
+
+
+ +
402-fill
+
+
+ +
403-fill
+
+
+ +
404-fill
+
+
+ +
405-fill
+
+
+ +
406-fill
+
+
+ +
407-fill
+
+
+ +
408-fill
+
+
+ +
409-fill
+
+
+ +
410-fill
+
+
+ +
456-fill
+
+
+ +
457-fill
+
+
+ +
499-fill
+
+
+ +
500-fill
+
+
+ +
501-fill
+
+
+ +
502-fill
+
+
+ +
503-fill
+
+
+ +
504-fill
+
+
+ +
507-fill
+
+
+ +
508-fill
+
+
+ +
509-fill
+
+
+ +
510-fill
+
+
+ +
511-fill
+
+
+ +
512-fill
+
+
+ +
513-fill
+
+
+ +
514-fill
+
+
+ +
515-fill
+
+
+ +
900-fill
+
+
+ +
901-fill
+
+
+ +
999-fill
+
+
+ +
qweather-fill
+
+
+ +
qweather
+
+
+ +
sunny
+
+
+ +
cloudy
+
+
+ +
few-clouds
+
+
+ +
partly-cloudy
+
+
+ +
overcast
+
+
+ +
clear-night
+
+
+ +
cloudy-night
+
+
+ +
few-clouds-night
+
+
+ +
partly-cloudy-night
+
+
+ +
shower-rain
+
+
+ +
heavy-shower-rain
+
+
+ +
thundershower
+
+
+ +
heavy-thunderstorm
+
+
+ +
thundershower-with-hail
+
+
+ +
light-rain
+
+
+ +
moderate-rain
+
+
+ +
heavy-rain
+
+
+ +
extreme-rain
+
+
+ +
drizzle-rain
+
+
+ +
storm
+
+
+ +
heavy-storm
+
+
+ +
severe-storm
+
+
+ +
freezing-rain
+
+
+ +
light-to-moderate-rain
+
+
+ +
moderate-to-heavy-rain
+
+
+ +
heavy-rain-to-storm
+
+
+ +
storm-to-heavy-storm
+
+
+ +
heavy-to-severe-storm
+
+
+ +
shower-rain-night
+
+
+ +
heavy-shower-rain-night
+
+
+ +
rain
+
+
+ +
light-snow
+
+
+ +
moderate-snow
+
+
+ +
heavy-snow
+
+
+ +
snowstorm
+
+
+ +
sleet
+
+
+ +
rain-and-snow
+
+
+ +
shower-snow
+
+
+ +
snow-flurry
+
+
+ +
light-to-moderate-snow
+
+
+ +
moderate-to-heavy-snow
+
+
+ +
heavy-snow-to-snowstorm
+
+
+ +
shower-snow-night
+
+
+ +
snow-flurry-night
+
+
+ +
snow
+
+
+ +
mist
+
+
+ +
foggy
+
+
+ +
haze
+
+
+ +
sand
+
+
+ +
dust
+
+
+ +
duststorm
+
+
+ +
sandstorm
+
+
+ +
dense-fog
+
+
+ +
strong-fog
+
+
+ +
moderate-haze
+
+
+ +
heavy-haze
+
+
+ +
severe-haze
+
+
+ +
heavy-fog
+
+
+ +
extra-heavy-fog
+
+
+ +
new-moon
+
+
+ +
waxing-crescent
+
+
+ +
first-quarter
+
+
+ +
waxing-gibbous
+
+
+ +
full-moon
+
+
+ +
waning-gibbous
+
+
+ +
last-quarter
+
+
+ +
waning-crescent
+
+
+ +
hot
+
+
+ +
cold
+
+
+ +
unknown
+
+
+ +
typhoon
+
+
+ +
tornado
+
+
+ +
rainstorm
+
+
+ +
snow-storm
+
+
+ +
cold-wave
+
+
+ +
gale
+
+
+ +
sandstorm-warning
+
+
+ +
low-temperature-freeze
+
+
+ +
high-temperature
+
+
+ +
heat-wave
+
+
+ +
dry-hot-wind
+
+
+ +
downburst
+
+
+ +
avalanche
+
+
+ +
lightning
+
+
+ +
hail
+
+
+ +
frost
+
+
+ +
heavy-fog-warning
+
+
+ +
low-level-wind-shearl
+
+
+ +
haze-warning
+
+
+ +
thunder-gust
+
+
+ +
road-icing
+
+
+ +
drought
+
+
+ +
gale-at-sea
+
+
+ +
heat-stroke
+
+
+ +
wildfire
+
+
+ +
grassland-fire
+
+
+ +
freeze
+
+
+ +
space-weather
+
+
+ +
heavy-air-pollution
+
+
+ +
low-temperature-rain-and-snow
+
+
+ +
strong-convection
+
+
+ +
ozone
+
+
+ +
heavy-snow-warning
+
+
+ +
cold-warning
+
+
+ +
continuous-rain
+
+
+ +
waterlogging
+
+
+ +
geological-hazard
+
+
+ +
heavy-rainfall
+
+
+ +
severely-falling-temperature
+
+
+ +
snow-disaster
+
+
+ +
wildfire-grassland
+
+
+ +
medical-meteorology
+
+
+ +
thunderstorm
+
+
+ +
school-closure
+
+
+ +
factory-closure
+
+
+ +
maritime-risk
+
+
+ +
spring-dust
+
+
+ +
falling-temperature
+
+
+ +
typhoon-and-rainstorm
+
+
+ +
severe-cold
+
+
+ +
sand-dust
+
+
+ +
sea-thunderstorms
+
+
+ +
sea-fog
+
+
+ +
sea-thunder
+
+
+ +
sea-typhoon
+
+
+ +
low-temperature
+
+
+ +
road-ice-and-snow
+
+
+ +
thunderstorm-and-gale
+
+
+ +
continuous-low-temperature
+
+
+ +
low-visibility
+
+
+ +
strong-dust
+
+
+ +
gale-in-sea-area
+
+
+ +
short-duration-heavy-shower-rain
+
+
+ +
short-lived-heavy-shower-rain
+
+
+ +
sea-area-fog
+
+
+ +
heat-stroke-conditions
+
+
+ +
heavy-pollution-weather
+
+
+ +
co-poisoning-weather-conditions
+
+
+ +
respiratory-disease-weather-wonditions
+
+
+ +
intestinal-disease-weather-wonditions
+
+
+ +
cardiovascular-disease-weather-wonditions
+
+
+ +
flooding-weather-risk
+
+
+ +
heavy-pollution-weather-conditions
+
+
+ +
urban-flooding-weather-risk
+
+
+ +
flooding-weather-risk-2
+
+
+ +
wildfire-weather-risk
+
+
+ +
meteorological-drought
+
+
+ +
agricultural-weather-risk
+
+
+ +
strong-monsoon
+
+
+ +
ice-accretion-on-wire
+
+
+ +
stroke-weather-risk
+
+
+ +
wildfire-grassland-risk
+
+
+ +
thunderstorm-and-strong-winds
+
+
+ +
low-temperature-freeze2
+
+
+ +
low-temperature-damage
+
+
+ +
national-agricultural-meteorological-risk
+
+
+ +
dry-hot-wind-risk-for-winter-wheat
+
+
+ +
flood
+
+
+ +
urban-flooding
+
+
+ +
reservoir-danger
+
+
+ +
dike-danger
+
+
+ +
ice-flood
+
+
+ +
waterlogging2
+
+
+ +
flood-and-waterlogging
+
+
+ +
dry-water
+
+
+ +
flood-and-flash-flood-in-small-and-medium-rivers
+
+
+ +
difficulty-drinking-water-for-rural-people-and-animals
+
+
+ +
flood-in-small-and-medium-rivers
+
+
+ +
flood-and-drought-advisory
+
+
+ +
urban-flood-risk
+
+
+ +
flash-flood
+
+
+ +
agricultural-drought
+
+
+ +
urban-water-shortage
+
+
+ +
ecological-drought
+
+
+ +
disaster-risk-early-warning
+
+
+ +
flash-flood-weather-risk
+
+
+ +
water-conservancy-and-drought
+
+
+ +
landslide
+
+
+ +
debris-flows
+
+
+ +
landslide-event
+
+
+ +
ground-collapses
+
+
+ +
ground-fissure
+
+
+ +
land-subsidence
+
+
+ +
volcanic-eruption
+
+
+ +
geological-hazard-weather-risk
+
+
+ +
geological-hazard-weather
+
+
+ +
geological-hazard2
+
+
+ +
geological-hazard-risk
+
+
+ +
air-pollution-incident
+
+
+ +
heavy-air-pollution-2
+
+
+ +
air-pollution
+
+
+ +
heavy-pollution-weather-2
+
+
+ +
very-hot-weather
+
+
+ +
strong-monsoon-signal
+
+
+ +
landslip
+
+
+ +
tropical-cyclone
+
+
+ +
fire-danger
+
+
+ +
flooding-in-the-northern-new-territories
+
+
+ +
cold-weather
+
+
+ +
thunderstorm2
+
+
+ +
rainstorm2
+
+
+ +
frost2
+
+
+ +
cold-surge-advisory
+
+
+ +
strong-wind-advisory
+
+
+ +
rainfall-advisory
+
+
+ +
strong-monsoon-signal2
+
+
+ +
storm-surge2
+
+
+ +
tropical-cyclone2
+
+
+ +
rainstorm3
+
+
+ +
thunderstorm3
+
+
+ +
wind-warning
+
+
+ +
snow-ice
+
+
+ +
fog
+
+
+ +
coastal-event
+
+
+ +
forest-fire
+
+
+ +
rain-warning
+
+
+ +
rain-flood
+
+
+ +
thunderstorm4
+
+
+ +
high-temperature2
+
+
+ +
low-temperature2
+
+
+ +
avalanches
+
+
+ +
flooding
+
+
+ +
rain-warning2
+
+
+ +
wind
+
+
+ +
snow-warning
+
+
+ +
zonda-wind
+
+
+ +
storm-warning
+
+
+ +
dust-raising-winds2
+
+
+ +
strong-surface-winds2
+
+
+ +
hot-day2
+
+
+ +
warm-night2
+
+
+ +
cold-day2
+
+
+ +
thunderstorm-and-lightning2
+
+
+ +
hailstorm2
+
+
+ +
sea-area-warning2
+
+
+ +
fishermen-warning2
+
+
+ +
heavy-snow-warning2
+
+
+ +
dust-storm
+
+
+ +
heat-wave2
+
+
+ +
cold-wave2
+
+
+ +
fog2
+
+
+ +
heavy-rain-warning
+
+
+ +
ground-frost2
+
+
+ +
fog3
+
+
+ +
thunder-rain2
+
+
+ +
thunder-storm
+
+
+ +
light-rain-warning
+
+
+ +
heavy-rain-warning2
+
+
+ +
fresh-wind
+
+
+ +
thunderstorm-and-dust
+
+
+ +
dust-warning
+
+
+ +
high-wave
+
+
+ +
frost3
+
+
+ +
drop-in-visibility
+
+
+ +
low-humidity2
+
+
+ +
accumulated-rain2
+
+
+ +
cold-wave3
+
+
+ +
tornado2
+
+
+ +
thunderstorm5
+
+
+ +
hail2
+
+
+ +
heavy-rainfall2
+
+
+ +
gale2
+
+
+ +
heat-wave3
+
+
+ +
cold-warning2
+
+
+ +
frost4
+
+
+ +
drought2
+
+
+ +
forest-fire2
+
+
+ +
severely-falling-temperature2
+
+
+ +
rainstorm4
+
+
+ +
wind2
+
+
+ +
snow-ice2
+
+
+ +
freeze2
+
+
+ +
thunderstorms
+
+
+ +
fog4
+
+
+ +
high-temperature3
+
+
+ +
low-temperature3
+
+
+ +
coastal-event2
+
+
+ +
forest-fire3
+
+
+ +
avalanches2
+
+
+ +
flood2
+
+
+ +
rain-flood2
+
+
+ +
mudflow2
+
+
+ +
duststorm-warning
+
+
+ +
freezing-rain-and-icing
+
+
+ +
other-dangers
+
+
+ +
severe-thunderstorms
+
+
+ +
damaging-winds2
+
+
+ +
veld-fire-conditions2
+
+
+ +
weather-advisory2
+
+
+ +
thunderstorm6
+
+
+ +
squall
+
+
+ +
air-quality
+
+
+ +
rainfall
+
+
+ +
fog5
+
+
+ +
heat
+
+
+ +
wildfire2
+
+
+ +
wind3
+
+
+ +
freezing-rain-warning
+
+
+ +
tornado3
+
+
+ +
blizzard
+
+
+ +
weather-warning
+
+
+ +
winter-storm
+
+
+ +
freezing-drizzle
+
+
+ +
snowfall
+
+
+ +
blowing-snow
+
+
+ +
extreme-cold
+
+
+ +
frost5
+
+
+ +
hazardous-seas-warning
+
+
+ +
heavy-freezing-spray-warning
+
+
+ +
red-flag-warning
+
+
+ +
freeze-warning
+
+
+ +
hard-freeze-warning
+
+
+ +
extreme-cold-warning
+
+
+ +
wind-chill-warning
+
+
+ +
gale-warning
+
+
+ +
excessive-heat-warning
+
+
+ +
lake-effect-snow-warning
+
+
+ +
blowing-dust-warning
+
+
+ +
dust-storm-warning
+
+
+ +
storm-warning2
+
+
+ +
tropical-storm-warning
+
+
+ +
high-wind-warning
+
+
+ +
high-surf-warning
+
+
+ +
flood-warning
+
+
+ +
lakeshore-flood-warning
+
+
+ +
coastal-flood-warning
+
+
+ +
ashfall-warning
+
+
+ +
volcano-warning
+
+
+ +
earthquake-warning
+
+
+ +
avalanche-warning
+
+
+ +
winter-storm-warning
+
+
+ +
ice-storm-warning
+
+
+ +
snow-squall-warning
+
+
+ +
blizzard-warning
+
+
+ +
special-marine-warning
+
+
+ +
typhoon-warning
+
+
+ +
hurricane-warning
+
+
+ +
hurricane-force-wind-warning
+
+
+ +
storm-surge-warning
+
+
+ +
flash-flood-warning
+
+
+ +
severe-thunderstorm-warning
+
+
+ +
extreme-wind-warning
+
+
+ +
tornado-warning
+
+
+ +
tsunami-warning
+
+
+ +
fire-weather-watch
+
+
+ +
freeze-watch
+
+
+ +
hard-freeze-watch
+
+
+ +
wind-chill-watch
+
+
+ +
extreme-cold-watch
+
+
+ +
excessive-heat-watch
+
+
+ +
high-wind-watch
+
+
+ +
flood-watch
+
+
+ +
lakeshore-flood-watch
+
+
+ +
coastal-flood-watch
+
+
+ +
heavy-freezing-spray-watch
+
+
+ +
hazardous-seas-watch
+
+
+ +
winter-storm-watch
+
+
+ +
gale-watch
+
+
+ +
avalanche-watch
+
+
+ +
storm-watch
+
+
+ +
tropical-storm-watch
+
+
+ +
typhoon-watch
+
+
+ +
hurricane-force-wind-watch
+
+
+ +
hurricane-watch
+
+
+ +
storm-surge-watch
+
+
+ +
flash-flood-watch
+
+
+ +
severe-thunderstorm-watch
+
+
+ +
tornado-watch
+
+
+ +
tsunami-watch
+
+
+ +
air-stagnation-advisory
+
+
+ +
low-water-advisory
+
+
+ +
freezing-spray-advisory
+
+
+ +
freezing-fog-advisory
+
+
+ +
ashfall-advisory
+
+
+ +
frost-advisory
+
+
+ +
wind-advisory
+
+
+ +
lake-wind-advisory
+
+
+ +
blowing-dust-advisory
+
+
+ +
dust-advisory
+
+
+ +
brisk-wind-advisory
+
+
+ +
small-craft-advisory
+
+
+ +
small-craft-advisory-for-winds
+
+
+ +
small-craft-advisory-for-rough-bar
+
+
+ +
small-craft-advisory-for-hazardous-seas
+
+
+ +
dense-smoke-advisory
+
+
+ +
dense-fog-advisory
+
+
+ +
high-surf-advisory
+
+
+ +
coastal-flood-advisory
+
+
+ +
lakeshore-flood-advisory
+
+
+ +
hydrologic-advisory
+
+
+ +
flood-advisory
+
+
+ +
heat-advisory
+
+
+ +
wind-chill-advisory
+
+
+ +
winter-weather-advisory
+
+
+ +
avalanche-advisory
+
+
+ +
tsunami-advisory
+
+
+ +
flood-statement
+
+
+ +
hydrologic-outlook
+
+
+ +
hazardous-weather-outlook
+
+
+ +
air-quality-alert
+
+
+ +
extreme-fire-danger
+
+
+ +
marine-weather-statement
+
+
+ +
special-weather-statement
+
+
+ +
lakeshore-flood-statement
+
+
+ +
coastal-flood-statement
+
+
+ +
beach-hazards-statement
+
+
+ +
rip-current-statement
+
+
+ +
tropical-depression-local-statement
+
+
+ +
tropical-storm-local-statement
+
+
+ +
typhoon-local-statement
+
+
+ +
hurricane-local-statement
+
+
+ +
severe-weather-statement
+
+
+ +
flash-flood-statement
+
+
+ +
heavy-rain2
+
+
+ +
very-heavy-rain
+
+
+ +
moderate-rain2
+
+
+ +
light-rain2
+
+
+ +
heavy-rain3
+
+
+ +
light-mist
+
+
+ +
raised-dust
+
+
+ +
high-winds
+
+
+ +
dusty-plankton
+
+
+ +
active-winds
+
+
+ +
fog6
+
+
+ +
light-fog
+
+
+ +
heavy-rain4
+
+
+ +
strong-wind
+
+
+ +
heavy-snow2
+
+
+ +
road-snowfall
+
+
+ +
warning-default
+
+
+ +
sunny-fill
+
+
+ +
cloudy-fill
+
+
+ +
few-clouds-fill
+
+
+ +
partly-cloudy-fill
+
+
+ +
overcast-fill
+
+
+ +
clear-night-fill
+
+
+ +
cloudy-night-fill
+
+
+ +
few-clouds-night-fill
+
+
+ +
partly-cloudy-night-fill
+
+
+ +
shower-rain-fill
+
+
+ +
heavy-shower-rain-fill
+
+
+ +
thundershower-fill
+
+
+ +
heavy-thunderstorm-fill
+
+
+ +
thundershower-with-hail-fill
+
+
+ +
light-rain-fill
+
+
+ +
moderate-rain-fill
+
+
+ +
heavy-rain-fill
+
+
+ +
extreme-rain-fill
+
+
+ +
drizzle-rain-fill
+
+
+ +
storm-fill
+
+
+ +
heavy-storm-fill
+
+
+ +
severe-storm-fill
+
+
+ +
freezing-rain-fill
+
+
+ +
light-to-moderate-rain-fill
+
+
+ +
moderate-to-heavy-rain-fill
+
+
+ +
heavy-rain-to-storm-fill
+
+
+ +
storm-to-heavy-storm-fill
+
+
+ +
heavy-to-severe-storm-fill
+
+
+ +
shower-rain-night-fill
+
+
+ +
heavy-shower-rain-night-fill
+
+
+ +
rain-fill
+
+
+ +
light-snow-fill
+
+
+ +
moderate-snow-fill
+
+
+ +
heavy-snow-fill
+
+
+ +
snowstorm-fill
+
+
+ +
sleet-fill
+
+
+ +
rain-and-snow-fill
+
+
+ +
shower-snow-fill
+
+
+ +
snow-flurry-fill
+
+
+ +
light-to-moderate-snow-fill
+
+
+ +
moderate-to-heavy-snow-fill
+
+
+ +
heavy-snow-to-snowstorm-fill
+
+
+ +
shower-snow-night-fill
+
+
+ +
snow-flurry-night-fill
+
+
+ +
snow-fill
+
+
+ +
mist-fill
+
+
+ +
foggy-fill
+
+
+ +
haze-fill
+
+
+ +
sand-fill
+
+
+ +
dust-fill
+
+
+ +
duststorm-fill
+
+
+ +
sandstorm-fill
+
+
+ +
dense-fog-fill
+
+
+ +
strong-fog-fill
+
+
+ +
moderate-haze-fill
+
+
+ +
heavy-haze-fill
+
+
+ +
severe-haze-fill
+
+
+ +
heavy-fog-fill
+
+
+ +
extra-heavy-fog-fill
+
+
+ +
hot-fill
+
+
+ +
cold-fill
+
+
+ +
unknown-fill
+
+
+ + + diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/font/fonts/qweather-icons.ttf b/jpahefengweather/storage/QWeather-Icons-1.7.0/font/fonts/qweather-icons.ttf new file mode 100644 index 0000000..2ea387a Binary files /dev/null and b/jpahefengweather/storage/QWeather-Icons-1.7.0/font/fonts/qweather-icons.ttf differ diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/font/fonts/qweather-icons.woff b/jpahefengweather/storage/QWeather-Icons-1.7.0/font/fonts/qweather-icons.woff new file mode 100644 index 0000000..e4671a0 Binary files /dev/null and b/jpahefengweather/storage/QWeather-Icons-1.7.0/font/fonts/qweather-icons.woff differ diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/font/fonts/qweather-icons.woff2 b/jpahefengweather/storage/QWeather-Icons-1.7.0/font/fonts/qweather-icons.woff2 new file mode 100644 index 0000000..cac430b Binary files /dev/null and b/jpahefengweather/storage/QWeather-Icons-1.7.0/font/fonts/qweather-icons.woff2 differ diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/font/qweather-icons.css b/jpahefengweather/storage/QWeather-Icons-1.7.0/font/qweather-icons.css new file mode 100644 index 0000000..62b6ae6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/font/qweather-icons.css @@ -0,0 +1,1018 @@ +/*! +* QWeather Icons (https://icons.qweather.com) +* Copyright QWeather 和风天气 (https://www.qweather.com) +* License: Code for MIT, Icons for CC BY 4.0 +*/ + +@font-face { + font-family: "qweather-icons"; + src: url("./fonts/qweather-icons.woff2?683382eedec19edbc7e167b16847eb27") format("woff2"), +url("./fonts/qweather-icons.woff?683382eedec19edbc7e167b16847eb27") format("woff"), +url("./fonts/qweather-icons.ttf?683382eedec19edbc7e167b16847eb27") format("truetype"); +} + +[class^="qi-"]::before, +[class*=" qi-"]::before { + display: inline-block; + font-family: "qweather-icons" !important; + font-style: normal; + font-weight: normal !important; + font-variant: normal; + text-transform: none; + line-height: 1; + vertical-align: -.125em; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.qi-100::before { content: "\f101"; } +.qi-101::before { content: "\f102"; } +.qi-102::before { content: "\f103"; } +.qi-103::before { content: "\f104"; } +.qi-104::before { content: "\f105"; } +.qi-150::before { content: "\f106"; } +.qi-151::before { content: "\f107"; } +.qi-152::before { content: "\f108"; } +.qi-153::before { content: "\f109"; } +.qi-300::before { content: "\f10a"; } +.qi-301::before { content: "\f10b"; } +.qi-302::before { content: "\f10c"; } +.qi-303::before { content: "\f10d"; } +.qi-304::before { content: "\f10e"; } +.qi-305::before { content: "\f10f"; } +.qi-306::before { content: "\f110"; } +.qi-307::before { content: "\f111"; } +.qi-308::before { content: "\f112"; } +.qi-309::before { content: "\f113"; } +.qi-310::before { content: "\f114"; } +.qi-311::before { content: "\f115"; } +.qi-312::before { content: "\f116"; } +.qi-313::before { content: "\f117"; } +.qi-314::before { content: "\f118"; } +.qi-315::before { content: "\f119"; } +.qi-316::before { content: "\f11a"; } +.qi-317::before { content: "\f11b"; } +.qi-318::before { content: "\f11c"; } +.qi-350::before { content: "\f11d"; } +.qi-351::before { content: "\f11e"; } +.qi-399::before { content: "\f11f"; } +.qi-400::before { content: "\f120"; } +.qi-401::before { content: "\f121"; } +.qi-402::before { content: "\f122"; } +.qi-403::before { content: "\f123"; } +.qi-404::before { content: "\f124"; } +.qi-405::before { content: "\f125"; } +.qi-406::before { content: "\f126"; } +.qi-407::before { content: "\f127"; } +.qi-408::before { content: "\f128"; } +.qi-409::before { content: "\f129"; } +.qi-410::before { content: "\f12a"; } +.qi-456::before { content: "\f12b"; } +.qi-457::before { content: "\f12c"; } +.qi-499::before { content: "\f12d"; } +.qi-500::before { content: "\f12e"; } +.qi-501::before { content: "\f12f"; } +.qi-502::before { content: "\f130"; } +.qi-503::before { content: "\f131"; } +.qi-504::before { content: "\f132"; } +.qi-507::before { content: "\f133"; } +.qi-508::before { content: "\f134"; } +.qi-509::before { content: "\f135"; } +.qi-510::before { content: "\f136"; } +.qi-511::before { content: "\f137"; } +.qi-512::before { content: "\f138"; } +.qi-513::before { content: "\f139"; } +.qi-514::before { content: "\f13a"; } +.qi-515::before { content: "\f13b"; } +.qi-800::before { content: "\f13c"; } +.qi-801::before { content: "\f13d"; } +.qi-802::before { content: "\f13e"; } +.qi-803::before { content: "\f13f"; } +.qi-804::before { content: "\f140"; } +.qi-805::before { content: "\f141"; } +.qi-806::before { content: "\f142"; } +.qi-807::before { content: "\f143"; } +.qi-900::before { content: "\f144"; } +.qi-901::before { content: "\f145"; } +.qi-999::before { content: "\f146"; } +.qi-1001::before { content: "\f147"; } +.qi-1002::before { content: "\f148"; } +.qi-1003::before { content: "\f149"; } +.qi-1004::before { content: "\f14a"; } +.qi-1005::before { content: "\f14b"; } +.qi-1006::before { content: "\f14c"; } +.qi-1007::before { content: "\f14d"; } +.qi-1008::before { content: "\f14e"; } +.qi-1009::before { content: "\f14f"; } +.qi-1010::before { content: "\f150"; } +.qi-1011::before { content: "\f151"; } +.qi-1012::before { content: "\f152"; } +.qi-1013::before { content: "\f153"; } +.qi-1014::before { content: "\f154"; } +.qi-1015::before { content: "\f155"; } +.qi-1016::before { content: "\f156"; } +.qi-1017::before { content: "\f157"; } +.qi-1018::before { content: "\f158"; } +.qi-1019::before { content: "\f159"; } +.qi-1020::before { content: "\f15a"; } +.qi-1021::before { content: "\f15b"; } +.qi-1022::before { content: "\f15c"; } +.qi-1023::before { content: "\f15d"; } +.qi-1024::before { content: "\f15e"; } +.qi-1025::before { content: "\f15f"; } +.qi-1026::before { content: "\f160"; } +.qi-1027::before { content: "\f161"; } +.qi-1028::before { content: "\f162"; } +.qi-1029::before { content: "\f163"; } +.qi-1030::before { content: "\f164"; } +.qi-1031::before { content: "\f165"; } +.qi-1032::before { content: "\f166"; } +.qi-1033::before { content: "\f167"; } +.qi-1034::before { content: "\f168"; } +.qi-1035::before { content: "\f169"; } +.qi-1036::before { content: "\f16a"; } +.qi-1037::before { content: "\f16b"; } +.qi-1038::before { content: "\f16c"; } +.qi-1039::before { content: "\f16d"; } +.qi-1040::before { content: "\f16e"; } +.qi-1041::before { content: "\f16f"; } +.qi-1042::before { content: "\f170"; } +.qi-1043::before { content: "\f171"; } +.qi-1044::before { content: "\f172"; } +.qi-1045::before { content: "\f173"; } +.qi-1046::before { content: "\f174"; } +.qi-1047::before { content: "\f175"; } +.qi-1048::before { content: "\f176"; } +.qi-1049::before { content: "\f177"; } +.qi-1050::before { content: "\f178"; } +.qi-1051::before { content: "\f179"; } +.qi-1052::before { content: "\f17a"; } +.qi-1053::before { content: "\f17b"; } +.qi-1054::before { content: "\f17c"; } +.qi-1055::before { content: "\f17d"; } +.qi-1056::before { content: "\f17e"; } +.qi-1057::before { content: "\f17f"; } +.qi-1058::before { content: "\f180"; } +.qi-1059::before { content: "\f181"; } +.qi-1060::before { content: "\f182"; } +.qi-1061::before { content: "\f183"; } +.qi-1062::before { content: "\f184"; } +.qi-1063::before { content: "\f185"; } +.qi-1064::before { content: "\f186"; } +.qi-1065::before { content: "\f187"; } +.qi-1066::before { content: "\f188"; } +.qi-1067::before { content: "\f189"; } +.qi-1068::before { content: "\f18a"; } +.qi-1069::before { content: "\f18b"; } +.qi-1071::before { content: "\f18c"; } +.qi-1072::before { content: "\f18d"; } +.qi-1073::before { content: "\f18e"; } +.qi-1074::before { content: "\f18f"; } +.qi-1075::before { content: "\f190"; } +.qi-1076::before { content: "\f191"; } +.qi-1077::before { content: "\f192"; } +.qi-1078::before { content: "\f193"; } +.qi-1079::before { content: "\f194"; } +.qi-1080::before { content: "\f195"; } +.qi-1081::before { content: "\f196"; } +.qi-1082::before { content: "\f197"; } +.qi-1084::before { content: "\f198"; } +.qi-1085::before { content: "\f199"; } +.qi-1086::before { content: "\f19a"; } +.qi-1087::before { content: "\f19b"; } +.qi-1088::before { content: "\f19c"; } +.qi-1089::before { content: "\f19d"; } +.qi-1201::before { content: "\f2c5"; } +.qi-1202::before { content: "\f2c6"; } +.qi-1203::before { content: "\f2c7"; } +.qi-1204::before { content: "\f2c8"; } +.qi-1205::before { content: "\f2c9"; } +.qi-1206::before { content: "\f2ca"; } +.qi-1207::before { content: "\f2cb"; } +.qi-1208::before { content: "\f2cc"; } +.qi-1209::before { content: "\f2cd"; } +.qi-1210::before { content: "\f2ce"; } +.qi-1211::before { content: "\f2cf"; } +.qi-1212::before { content: "\f2d0"; } +.qi-1213::before { content: "\f2d1"; } +.qi-1214::before { content: "\f2d2"; } +.qi-1215::before { content: "\f2d3"; } +.qi-1216::before { content: "\f2d4"; } +.qi-1217::before { content: "\f2d5"; } +.qi-1218::before { content: "\f2d6"; } +.qi-1219::before { content: "\f2d7"; } +.qi-1221::before { content: "\f2d8"; } +.qi-1241::before { content: "\f2d9"; } +.qi-1242::before { content: "\f2da"; } +.qi-1243::before { content: "\f2db"; } +.qi-1244::before { content: "\f2dc"; } +.qi-1245::before { content: "\f2dd"; } +.qi-1246::before { content: "\f2de"; } +.qi-1247::before { content: "\f2df"; } +.qi-1248::before { content: "\f2e0"; } +.qi-1249::before { content: "\f2e1"; } +.qi-1250::before { content: "\f2e2"; } +.qi-1251::before { content: "\f2e3"; } +.qi-1271::before { content: "\f2f6"; } +.qi-1272::before { content: "\f2f7"; } +.qi-1273::before { content: "\f2f8"; } +.qi-1274::before { content: "\f2f9"; } +.qi-1601::before { content: "\f1a1"; } +.qi-1602::before { content: "\f1a2"; } +.qi-1603::before { content: "\f1a3"; } +.qi-1604::before { content: "\f1a4"; } +.qi-1605::before { content: "\f1a5"; } +.qi-1606::before { content: "\f1a6"; } +.qi-1607::before { content: "\f1a7"; } +.qi-1608::before { content: "\f20c"; } +.qi-1609::before { content: "\f20d"; } +.qi-1610::before { content: "\f20e"; } +.qi-1701::before { content: "\f1a8"; } +.qi-1702::before { content: "\f1a9"; } +.qi-1703::before { content: "\f1aa"; } +.qi-1801::before { content: "\f20f"; } +.qi-1802::before { content: "\f210"; } +.qi-1803::before { content: "\f211"; } +.qi-1804::before { content: "\f212"; } +.qi-1805::before { content: "\f213"; } +.qi-2001::before { content: "\f1ab"; } +.qi-2002::before { content: "\f1ac"; } +.qi-2003::before { content: "\f1ad"; } +.qi-2004::before { content: "\f1ae"; } +.qi-2005::before { content: "\f1af"; } +.qi-2006::before { content: "\f1b0"; } +.qi-2007::before { content: "\f1b1"; } +.qi-2029::before { content: "\f214"; } +.qi-2030::before { content: "\f215"; } +.qi-2031::before { content: "\f216"; } +.qi-2032::before { content: "\f217"; } +.qi-2033::before { content: "\f218"; } +.qi-2050::before { content: "\f219"; } +.qi-2051::before { content: "\f21a"; } +.qi-2052::before { content: "\f1c7"; } +.qi-2053::before { content: "\f1c8"; } +.qi-2054::before { content: "\f1c9"; } +.qi-2070::before { content: "\f21b"; } +.qi-2071::before { content: "\f21c"; } +.qi-2072::before { content: "\f21d"; } +.qi-2073::before { content: "\f21e"; } +.qi-2074::before { content: "\f21f"; } +.qi-2075::before { content: "\f220"; } +.qi-2076::before { content: "\f221"; } +.qi-2077::before { content: "\f222"; } +.qi-2078::before { content: "\f223"; } +.qi-2079::before { content: "\f224"; } +.qi-2080::before { content: "\f225"; } +.qi-2081::before { content: "\f226"; } +.qi-2082::before { content: "\f227"; } +.qi-2083::before { content: "\f228"; } +.qi-2084::before { content: "\f229"; } +.qi-2085::before { content: "\f22a"; } +.qi-2100::before { content: "\f22b"; } +.qi-2101::before { content: "\f22c"; } +.qi-2102::before { content: "\f22d"; } +.qi-2103::before { content: "\f22e"; } +.qi-2104::before { content: "\f22f"; } +.qi-2105::before { content: "\f230"; } +.qi-2106::before { content: "\f231"; } +.qi-2107::before { content: "\f232"; } +.qi-2108::before { content: "\f233"; } +.qi-2109::before { content: "\f234"; } +.qi-2111::before { content: "\f235"; } +.qi-2120::before { content: "\f236"; } +.qi-2121::before { content: "\f237"; } +.qi-2122::before { content: "\f238"; } +.qi-2123::before { content: "\f239"; } +.qi-2124::before { content: "\f23a"; } +.qi-2125::before { content: "\f23b"; } +.qi-2126::before { content: "\f23c"; } +.qi-2127::before { content: "\f23d"; } +.qi-2128::before { content: "\f23e"; } +.qi-2129::before { content: "\f23f"; } +.qi-2130::before { content: "\f240"; } +.qi-2131::before { content: "\f241"; } +.qi-2132::before { content: "\f242"; } +.qi-2133::before { content: "\f243"; } +.qi-2134::before { content: "\f244"; } +.qi-2135::before { content: "\f245"; } +.qi-2150::before { content: "\f246"; } +.qi-2151::before { content: "\f247"; } +.qi-2152::before { content: "\f248"; } +.qi-2153::before { content: "\f249"; } +.qi-2154::before { content: "\f24a"; } +.qi-2155::before { content: "\f24b"; } +.qi-2156::before { content: "\f24c"; } +.qi-2157::before { content: "\f24d"; } +.qi-2158::before { content: "\f24e"; } +.qi-2159::before { content: "\f24f"; } +.qi-2160::before { content: "\f250"; } +.qi-2161::before { content: "\f251"; } +.qi-2162::before { content: "\f252"; } +.qi-2163::before { content: "\f253"; } +.qi-2164::before { content: "\f254"; } +.qi-2165::before { content: "\f255"; } +.qi-2166::before { content: "\f256"; } +.qi-2190::before { content: "\f257"; } +.qi-2191::before { content: "\f258"; } +.qi-2192::before { content: "\f259"; } +.qi-2193::before { content: "\f25a"; } +.qi-2200::before { content: "\f2e4"; } +.qi-2201::before { content: "\f2e5"; } +.qi-2202::before { content: "\f2e6"; } +.qi-2203::before { content: "\f2e7"; } +.qi-2204::before { content: "\f2e8"; } +.qi-2205::before { content: "\f2e9"; } +.qi-2207::before { content: "\f2ea"; } +.qi-2208::before { content: "\f2eb"; } +.qi-2209::before { content: "\f2ec"; } +.qi-2210::before { content: "\f2ed"; } +.qi-2211::before { content: "\f2ee"; } +.qi-2212::before { content: "\f2ef"; } +.qi-2213::before { content: "\f2f0"; } +.qi-2214::before { content: "\f2f1"; } +.qi-2215::before { content: "\f2f2"; } +.qi-2216::before { content: "\f2f3"; } +.qi-2217::before { content: "\f2f4"; } +.qi-2218::before { content: "\f2f5"; } +.qi-2300::before { content: "\f25b"; } +.qi-2301::before { content: "\f25c"; } +.qi-2302::before { content: "\f25d"; } +.qi-2303::before { content: "\f25e"; } +.qi-2304::before { content: "\f25f"; } +.qi-2305::before { content: "\f260"; } +.qi-2306::before { content: "\f261"; } +.qi-2307::before { content: "\f262"; } +.qi-2308::before { content: "\f263"; } +.qi-2309::before { content: "\f264"; } +.qi-2311::before { content: "\f265"; } +.qi-2312::before { content: "\f266"; } +.qi-2313::before { content: "\f267"; } +.qi-2314::before { content: "\f268"; } +.qi-2315::before { content: "\f269"; } +.qi-2316::before { content: "\f26a"; } +.qi-2317::before { content: "\f26b"; } +.qi-2318::before { content: "\f26c"; } +.qi-2319::before { content: "\f26d"; } +.qi-2320::before { content: "\f26e"; } +.qi-2321::before { content: "\f26f"; } +.qi-2322::before { content: "\f270"; } +.qi-2323::before { content: "\f271"; } +.qi-2324::before { content: "\f272"; } +.qi-2325::before { content: "\f273"; } +.qi-2326::before { content: "\f274"; } +.qi-2327::before { content: "\f275"; } +.qi-2328::before { content: "\f276"; } +.qi-2330::before { content: "\f277"; } +.qi-2331::before { content: "\f278"; } +.qi-2332::before { content: "\f279"; } +.qi-2333::before { content: "\f27a"; } +.qi-2341::before { content: "\f27b"; } +.qi-2343::before { content: "\f27c"; } +.qi-2345::before { content: "\f27d"; } +.qi-2346::before { content: "\f27e"; } +.qi-2348::before { content: "\f27f"; } +.qi-2349::before { content: "\f280"; } +.qi-2350::before { content: "\f281"; } +.qi-2351::before { content: "\f282"; } +.qi-2352::before { content: "\f283"; } +.qi-2353::before { content: "\f284"; } +.qi-2354::before { content: "\f285"; } +.qi-2355::before { content: "\f286"; } +.qi-2356::before { content: "\f287"; } +.qi-2357::before { content: "\f288"; } +.qi-2358::before { content: "\f289"; } +.qi-2359::before { content: "\f28a"; } +.qi-2360::before { content: "\f28b"; } +.qi-2361::before { content: "\f28c"; } +.qi-2362::before { content: "\f28d"; } +.qi-2363::before { content: "\f28e"; } +.qi-2364::before { content: "\f28f"; } +.qi-2365::before { content: "\f290"; } +.qi-2366::before { content: "\f291"; } +.qi-2367::before { content: "\f292"; } +.qi-2368::before { content: "\f293"; } +.qi-2369::before { content: "\f294"; } +.qi-2370::before { content: "\f295"; } +.qi-2371::before { content: "\f296"; } +.qi-2372::before { content: "\f297"; } +.qi-2373::before { content: "\f298"; } +.qi-2374::before { content: "\f299"; } +.qi-2375::before { content: "\f29a"; } +.qi-2376::before { content: "\f29b"; } +.qi-2377::before { content: "\f29c"; } +.qi-2378::before { content: "\f29d"; } +.qi-2379::before { content: "\f29e"; } +.qi-2380::before { content: "\f29f"; } +.qi-2381::before { content: "\f2a0"; } +.qi-2382::before { content: "\f2a1"; } +.qi-2383::before { content: "\f2a2"; } +.qi-2384::before { content: "\f2a3"; } +.qi-2385::before { content: "\f2a4"; } +.qi-2386::before { content: "\f2a5"; } +.qi-2387::before { content: "\f2a6"; } +.qi-2388::before { content: "\f2a7"; } +.qi-2389::before { content: "\f2a8"; } +.qi-2390::before { content: "\f2a9"; } +.qi-2391::before { content: "\f2aa"; } +.qi-2392::before { content: "\f2ab"; } +.qi-2393::before { content: "\f2ac"; } +.qi-2394::before { content: "\f2ad"; } +.qi-2395::before { content: "\f2ae"; } +.qi-2396::before { content: "\f2af"; } +.qi-2397::before { content: "\f2b0"; } +.qi-2398::before { content: "\f2b1"; } +.qi-2399::before { content: "\f2b2"; } +.qi-2400::before { content: "\f2b3"; } +.qi-2409::before { content: "\f2b4"; } +.qi-2411::before { content: "\f2b5"; } +.qi-2412::before { content: "\f2b6"; } +.qi-2413::before { content: "\f2b7"; } +.qi-2414::before { content: "\f2b8"; } +.qi-2415::before { content: "\f2b9"; } +.qi-2416::before { content: "\f2ba"; } +.qi-2417::before { content: "\f2bb"; } +.qi-2418::before { content: "\f2bc"; } +.qi-2419::before { content: "\f2bd"; } +.qi-2420::before { content: "\f2be"; } +.qi-2421::before { content: "\f2bf"; } +.qi-2422::before { content: "\f2c0"; } +.qi-2423::before { content: "\f2c1"; } +.qi-2424::before { content: "\f2c2"; } +.qi-2425::before { content: "\f2c3"; } +.qi-2426::before { content: "\f2c4"; } +.qi-2501::before { content: "\f2fa"; } +.qi-2502::before { content: "\f2fb"; } +.qi-2521::before { content: "\f2fc"; } +.qi-2522::before { content: "\f2fd"; } +.qi-2523::before { content: "\f2fe"; } +.qi-2524::before { content: "\f2ff"; } +.qi-2525::before { content: "\f300"; } +.qi-2526::before { content: "\f301"; } +.qi-2527::before { content: "\f302"; } +.qi-2528::before { content: "\f303"; } +.qi-2529::before { content: "\f304"; } +.qi-2530::before { content: "\f305"; } +.qi-2531::before { content: "\f306"; } +.qi-2532::before { content: "\f307"; } +.qi-2550::before { content: "\f308"; } +.qi-2551::before { content: "\f309"; } +.qi-2552::before { content: "\f30a"; } +.qi-2553::before { content: "\f30b"; } +.qi-2554::before { content: "\f30c"; } +.qi-9999::before { content: "\f1cb"; } +.qi-100-fill::before { content: "\f1cc"; } +.qi-101-fill::before { content: "\f1cd"; } +.qi-102-fill::before { content: "\f1ce"; } +.qi-103-fill::before { content: "\f1cf"; } +.qi-104-fill::before { content: "\f1d0"; } +.qi-150-fill::before { content: "\f1d1"; } +.qi-151-fill::before { content: "\f1d2"; } +.qi-152-fill::before { content: "\f1d3"; } +.qi-153-fill::before { content: "\f1d4"; } +.qi-300-fill::before { content: "\f1d5"; } +.qi-301-fill::before { content: "\f1d6"; } +.qi-302-fill::before { content: "\f1d7"; } +.qi-303-fill::before { content: "\f1d8"; } +.qi-304-fill::before { content: "\f1d9"; } +.qi-305-fill::before { content: "\f1da"; } +.qi-306-fill::before { content: "\f1db"; } +.qi-307-fill::before { content: "\f1dc"; } +.qi-308-fill::before { content: "\f1dd"; } +.qi-309-fill::before { content: "\f1de"; } +.qi-310-fill::before { content: "\f1df"; } +.qi-311-fill::before { content: "\f1e0"; } +.qi-312-fill::before { content: "\f1e1"; } +.qi-313-fill::before { content: "\f1e2"; } +.qi-314-fill::before { content: "\f1e3"; } +.qi-315-fill::before { content: "\f1e4"; } +.qi-316-fill::before { content: "\f1e5"; } +.qi-317-fill::before { content: "\f1e6"; } +.qi-318-fill::before { content: "\f1e7"; } +.qi-350-fill::before { content: "\f1e8"; } +.qi-351-fill::before { content: "\f1e9"; } +.qi-399-fill::before { content: "\f1ea"; } +.qi-400-fill::before { content: "\f1eb"; } +.qi-401-fill::before { content: "\f1ec"; } +.qi-402-fill::before { content: "\f1ed"; } +.qi-403-fill::before { content: "\f1ee"; } +.qi-404-fill::before { content: "\f1ef"; } +.qi-405-fill::before { content: "\f1f0"; } +.qi-406-fill::before { content: "\f1f1"; } +.qi-407-fill::before { content: "\f1f2"; } +.qi-408-fill::before { content: "\f1f3"; } +.qi-409-fill::before { content: "\f1f4"; } +.qi-410-fill::before { content: "\f1f5"; } +.qi-456-fill::before { content: "\f1f6"; } +.qi-457-fill::before { content: "\f1f7"; } +.qi-499-fill::before { content: "\f1f8"; } +.qi-500-fill::before { content: "\f1f9"; } +.qi-501-fill::before { content: "\f1fa"; } +.qi-502-fill::before { content: "\f1fb"; } +.qi-503-fill::before { content: "\f1fc"; } +.qi-504-fill::before { content: "\f1fd"; } +.qi-507-fill::before { content: "\f1fe"; } +.qi-508-fill::before { content: "\f1ff"; } +.qi-509-fill::before { content: "\f200"; } +.qi-510-fill::before { content: "\f201"; } +.qi-511-fill::before { content: "\f202"; } +.qi-512-fill::before { content: "\f203"; } +.qi-513-fill::before { content: "\f204"; } +.qi-514-fill::before { content: "\f205"; } +.qi-515-fill::before { content: "\f206"; } +.qi-900-fill::before { content: "\f207"; } +.qi-901-fill::before { content: "\f208"; } +.qi-999-fill::before { content: "\f209"; } +.qi-qweather-fill::before { content: "\f20a"; } +.qi-qweather::before { content: "\f20b"; } +.qi-sunny::before { content: "\f101"; } +.qi-cloudy::before { content: "\f102"; } +.qi-few-clouds::before { content: "\f103"; } +.qi-partly-cloudy::before { content: "\f104"; } +.qi-overcast::before { content: "\f105"; } +.qi-clear-night::before { content: "\f106"; } +.qi-cloudy-night::before { content: "\f107"; } +.qi-few-clouds-night::before { content: "\f108"; } +.qi-partly-cloudy-night::before { content: "\f109"; } +.qi-shower-rain::before { content: "\f10a"; } +.qi-heavy-shower-rain::before { content: "\f10b"; } +.qi-thundershower::before { content: "\f10c"; } +.qi-heavy-thunderstorm::before { content: "\f10d"; } +.qi-thundershower-with-hail::before { content: "\f10e"; } +.qi-light-rain::before { content: "\f10f"; } +.qi-moderate-rain::before { content: "\f110"; } +.qi-heavy-rain::before { content: "\f111"; } +.qi-extreme-rain::before { content: "\f112"; } +.qi-drizzle-rain::before { content: "\f113"; } +.qi-storm::before { content: "\f114"; } +.qi-heavy-storm::before { content: "\f115"; } +.qi-severe-storm::before { content: "\f116"; } +.qi-freezing-rain::before { content: "\f117"; } +.qi-light-to-moderate-rain::before { content: "\f118"; } +.qi-moderate-to-heavy-rain::before { content: "\f119"; } +.qi-heavy-rain-to-storm::before { content: "\f11a"; } +.qi-storm-to-heavy-storm::before { content: "\f11b"; } +.qi-heavy-to-severe-storm::before { content: "\f11c"; } +.qi-shower-rain-night::before { content: "\f11d"; } +.qi-heavy-shower-rain-night::before { content: "\f11e"; } +.qi-rain::before { content: "\f11f"; } +.qi-light-snow::before { content: "\f120"; } +.qi-moderate-snow::before { content: "\f121"; } +.qi-heavy-snow::before { content: "\f122"; } +.qi-snowstorm::before { content: "\f123"; } +.qi-sleet::before { content: "\f124"; } +.qi-rain-and-snow::before { content: "\f125"; } +.qi-shower-snow::before { content: "\f126"; } +.qi-snow-flurry::before { content: "\f127"; } +.qi-light-to-moderate-snow::before { content: "\f128"; } +.qi-moderate-to-heavy-snow::before { content: "\f129"; } +.qi-heavy-snow-to-snowstorm::before { content: "\f12a"; } +.qi-shower-snow-night::before { content: "\f12b"; } +.qi-snow-flurry-night::before { content: "\f12c"; } +.qi-snow::before { content: "\f12d"; } +.qi-mist::before { content: "\f12e"; } +.qi-foggy::before { content: "\f12f"; } +.qi-haze::before { content: "\f130"; } +.qi-sand::before { content: "\f131"; } +.qi-dust::before { content: "\f132"; } +.qi-duststorm::before { content: "\f133"; } +.qi-sandstorm::before { content: "\f134"; } +.qi-dense-fog::before { content: "\f135"; } +.qi-strong-fog::before { content: "\f136"; } +.qi-moderate-haze::before { content: "\f137"; } +.qi-heavy-haze::before { content: "\f138"; } +.qi-severe-haze::before { content: "\f139"; } +.qi-heavy-fog::before { content: "\f13a"; } +.qi-extra-heavy-fog::before { content: "\f13b"; } +.qi-new-moon::before { content: "\f13c"; } +.qi-waxing-crescent::before { content: "\f13d"; } +.qi-first-quarter::before { content: "\f13e"; } +.qi-waxing-gibbous::before { content: "\f13f"; } +.qi-full-moon::before { content: "\f140"; } +.qi-waning-gibbous::before { content: "\f141"; } +.qi-last-quarter::before { content: "\f142"; } +.qi-waning-crescent::before { content: "\f143"; } +.qi-hot::before { content: "\f144"; } +.qi-cold::before { content: "\f145"; } +.qi-unknown::before { content: "\f146"; } +.qi-typhoon::before { content: "\f147"; } +.qi-tornado::before { content: "\f148"; } +.qi-rainstorm::before { content: "\f149"; } +.qi-snow-storm::before { content: "\f14a"; } +.qi-cold-wave::before { content: "\f14b"; } +.qi-gale::before { content: "\f14c"; } +.qi-sandstorm-warning::before { content: "\f14d"; } +.qi-low-temperature-freeze::before { content: "\f14e"; } +.qi-high-temperature::before { content: "\f14f"; } +.qi-heat-wave::before { content: "\f150"; } +.qi-dry-hot-wind::before { content: "\f151"; } +.qi-downburst::before { content: "\f152"; } +.qi-avalanche::before { content: "\f153"; } +.qi-lightning::before { content: "\f154"; } +.qi-hail::before { content: "\f155"; } +.qi-frost::before { content: "\f156"; } +.qi-heavy-fog-warning::before { content: "\f157"; } +.qi-low-level-wind-shearl::before { content: "\f158"; } +.qi-haze-warning::before { content: "\f159"; } +.qi-thunder-gust::before { content: "\f15a"; } +.qi-road-icing::before { content: "\f15b"; } +.qi-drought::before { content: "\f15c"; } +.qi-gale-at-sea::before { content: "\f15d"; } +.qi-heat-stroke::before { content: "\f15e"; } +.qi-wildfire::before { content: "\f15f"; } +.qi-grassland-fire::before { content: "\f160"; } +.qi-freeze::before { content: "\f161"; } +.qi-space-weather::before { content: "\f162"; } +.qi-heavy-air-pollution::before { content: "\f163"; } +.qi-low-temperature-rain-and-snow::before { content: "\f164"; } +.qi-strong-convection::before { content: "\f165"; } +.qi-ozone::before { content: "\f166"; } +.qi-heavy-snow-warning::before { content: "\f167"; } +.qi-cold-warning::before { content: "\f168"; } +.qi-continuous-rain::before { content: "\f169"; } +.qi-waterlogging::before { content: "\f16a"; } +.qi-geological-hazard::before { content: "\f16b"; } +.qi-heavy-rainfall::before { content: "\f16c"; } +.qi-severely-falling-temperature::before { content: "\f16d"; } +.qi-snow-disaster::before { content: "\f16e"; } +.qi-wildfire-grassland::before { content: "\f16f"; } +.qi-medical-meteorology::before { content: "\f170"; } +.qi-thunderstorm::before { content: "\f171"; } +.qi-school-closure::before { content: "\f172"; } +.qi-factory-closure::before { content: "\f173"; } +.qi-maritime-risk::before { content: "\f174"; } +.qi-spring-dust::before { content: "\f175"; } +.qi-falling-temperature::before { content: "\f176"; } +.qi-typhoon-and-rainstorm::before { content: "\f177"; } +.qi-severe-cold::before { content: "\f178"; } +.qi-sand-dust::before { content: "\f179"; } +.qi-sea-thunderstorms::before { content: "\f17a"; } +.qi-sea-fog::before { content: "\f17b"; } +.qi-sea-thunder::before { content: "\f17c"; } +.qi-sea-typhoon::before { content: "\f17d"; } +.qi-low-temperature::before { content: "\f17e"; } +.qi-road-ice-and-snow::before { content: "\f17f"; } +.qi-thunderstorm-and-gale::before { content: "\f180"; } +.qi-continuous-low-temperature::before { content: "\f181"; } +.qi-low-visibility::before { content: "\f182"; } +.qi-strong-dust::before { content: "\f183"; } +.qi-gale-in-sea-area::before { content: "\f184"; } +.qi-short-duration-heavy-shower-rain::before { content: "\f185"; } +.qi-short-lived-heavy-shower-rain::before { content: "\f186"; } +.qi-sea-area-fog::before { content: "\f187"; } +.qi-heat-stroke-conditions::before { content: "\f188"; } +.qi-heavy-pollution-weather::before { content: "\f189"; } +.qi-co-poisoning-weather-conditions::before { content: "\f18a"; } +.qi-respiratory-disease-weather-wonditions::before { content: "\f18b"; } +.qi-intestinal-disease-weather-wonditions::before { content: "\f18c"; } +.qi-cardiovascular-disease-weather-wonditions::before { content: "\f18d"; } +.qi-flooding-weather-risk::before { content: "\f18e"; } +.qi-heavy-pollution-weather-conditions::before { content: "\f18f"; } +.qi-urban-flooding-weather-risk::before { content: "\f190"; } +.qi-flooding-weather-risk-2::before { content: "\f191"; } +.qi-wildfire-weather-risk::before { content: "\f192"; } +.qi-meteorological-drought::before { content: "\f193"; } +.qi-agricultural-weather-risk::before { content: "\f194"; } +.qi-strong-monsoon::before { content: "\f195"; } +.qi-ice-accretion-on-wire::before { content: "\f196"; } +.qi-stroke-weather-risk::before { content: "\f197"; } +.qi-wildfire-grassland-risk::before { content: "\f198"; } +.qi-thunderstorm-and-strong-winds::before { content: "\f199"; } +.qi-low-temperature-freeze2::before { content: "\f19a"; } +.qi-low-temperature-damage::before { content: "\f19b"; } +.qi-national-agricultural-meteorological-risk::before { content: "\f19c"; } +.qi-dry-hot-wind-risk-for-winter-wheat::before { content: "\f19d"; } +.qi-flood::before { content: "\f2c5"; } +.qi-urban-flooding::before { content: "\f2c6"; } +.qi-reservoir-danger::before { content: "\f2c7"; } +.qi-dike-danger::before { content: "\f2c8"; } +.qi-ice-flood::before { content: "\f2c9"; } +.qi-waterlogging2::before { content: "\f2ca"; } +.qi-flood-and-waterlogging::before { content: "\f2cb"; } +.qi-dry-water::before { content: "\f2cc"; } +.qi-flood-and-flash-flood-in-small-and-medium-rivers::before { content: "\f2cd"; } +.qi-difficulty-drinking-water-for-rural-people-and-animals::before { content: "\f2ce"; } +.qi-flood-in-small-and-medium-rivers::before { content: "\f2cf"; } +.qi-flood-and-drought-advisory::before { content: "\f2d0"; } +.qi-urban-flood-risk::before { content: "\f2d1"; } +.qi-flash-flood::before { content: "\f2d2"; } +.qi-agricultural-drought::before { content: "\f2d3"; } +.qi-urban-water-shortage::before { content: "\f2d4"; } +.qi-ecological-drought::before { content: "\f2d5"; } +.qi-disaster-risk-early-warning::before { content: "\f2d6"; } +.qi-flash-flood-weather-risk::before { content: "\f2d7"; } +.qi-water-conservancy-and-drought::before { content: "\f2d8"; } +.qi-landslide::before { content: "\f2d9"; } +.qi-debris-flows::before { content: "\f2da"; } +.qi-landslide-event::before { content: "\f2db"; } +.qi-ground-collapses::before { content: "\f2dc"; } +.qi-ground-fissure::before { content: "\f2dd"; } +.qi-land-subsidence::before { content: "\f2de"; } +.qi-volcanic-eruption::before { content: "\f2df"; } +.qi-geological-hazard-weather-risk::before { content: "\f2e0"; } +.qi-geological-hazard-weather::before { content: "\f2e1"; } +.qi-geological-hazard2::before { content: "\f2e2"; } +.qi-geological-hazard-risk::before { content: "\f2e3"; } +.qi-air-pollution-incident::before { content: "\f2f6"; } +.qi-heavy-air-pollution-2::before { content: "\f2f7"; } +.qi-air-pollution::before { content: "\f2f8"; } +.qi-heavy-pollution-weather-2::before { content: "\f2f9"; } +.qi-very-hot-weather::before { content: "\f1a1"; } +.qi-strong-monsoon-signal::before { content: "\f1a2"; } +.qi-landslip::before { content: "\f1a3"; } +.qi-tropical-cyclone::before { content: "\f1a4"; } +.qi-fire-danger::before { content: "\f1a5"; } +.qi-flooding-in-the-northern-new-territories::before { content: "\f1a6"; } +.qi-cold-weather::before { content: "\f1a7"; } +.qi-thunderstorm2::before { content: "\f20c"; } +.qi-rainstorm2::before { content: "\f20d"; } +.qi-frost2::before { content: "\f20e"; } +.qi-cold-surge-advisory::before { content: "\f1a8"; } +.qi-strong-wind-advisory::before { content: "\f1a9"; } +.qi-rainfall-advisory::before { content: "\f1aa"; } +.qi-strong-monsoon-signal2::before { content: "\f20f"; } +.qi-storm-surge2::before { content: "\f210"; } +.qi-tropical-cyclone2::before { content: "\f211"; } +.qi-rainstorm3::before { content: "\f212"; } +.qi-thunderstorm3::before { content: "\f213"; } +.qi-wind-warning::before { content: "\f1ab"; } +.qi-snow-ice::before { content: "\f1ac"; } +.qi-fog::before { content: "\f1ad"; } +.qi-coastal-event::before { content: "\f1ae"; } +.qi-forest-fire::before { content: "\f1af"; } +.qi-rain-warning::before { content: "\f1b0"; } +.qi-rain-flood::before { content: "\f1b1"; } +.qi-thunderstorm4::before { content: "\f214"; } +.qi-high-temperature2::before { content: "\f215"; } +.qi-low-temperature2::before { content: "\f216"; } +.qi-avalanches::before { content: "\f217"; } +.qi-flooding::before { content: "\f218"; } +.qi-rain-warning2::before { content: "\f250"; } +.qi-wind::before { content: "\f21a"; } +.qi-snow-warning::before { content: "\f1c7"; } +.qi-zonda-wind::before { content: "\f1c8"; } +.qi-storm-warning::before { content: "\f1c9"; } +.qi-dust-raising-winds2::before { content: "\f21b"; } +.qi-strong-surface-winds2::before { content: "\f21c"; } +.qi-hot-day2::before { content: "\f21d"; } +.qi-warm-night2::before { content: "\f21e"; } +.qi-cold-day2::before { content: "\f21f"; } +.qi-thunderstorm-and-lightning2::before { content: "\f220"; } +.qi-hailstorm2::before { content: "\f221"; } +.qi-sea-area-warning2::before { content: "\f222"; } +.qi-fishermen-warning2::before { content: "\f223"; } +.qi-heavy-snow-warning2::before { content: "\f243"; } +.qi-dust-storm::before { content: "\f225"; } +.qi-heat-wave2::before { content: "\f304"; } +.qi-cold-wave2::before { content: "\f305"; } +.qi-fog2::before { content: "\f228"; } +.qi-heavy-rain-warning::before { content: "\f229"; } +.qi-ground-frost2::before { content: "\f22a"; } +.qi-fog3::before { content: "\f22b"; } +.qi-thunder-rain2::before { content: "\f22c"; } +.qi-thunder-storm::before { content: "\f22d"; } +.qi-light-rain-warning::before { content: "\f22e"; } +.qi-heavy-rain-warning2::before { content: "\f22f"; } +.qi-fresh-wind::before { content: "\f230"; } +.qi-thunderstorm-and-dust::before { content: "\f231"; } +.qi-dust-warning::before { content: "\f232"; } +.qi-high-wave::before { content: "\f233"; } +.qi-frost3::before { content: "\f234"; } +.qi-drop-in-visibility::before { content: "\f235"; } +.qi-low-humidity2::before { content: "\f236"; } +.qi-accumulated-rain2::before { content: "\f237"; } +.qi-cold-wave3::before { content: "\f238"; } +.qi-tornado2::before { content: "\f239"; } +.qi-thunderstorm5::before { content: "\f23a"; } +.qi-hail2::before { content: "\f23b"; } +.qi-heavy-rainfall2::before { content: "\f23c"; } +.qi-gale2::before { content: "\f23d"; } +.qi-heat-wave3::before { content: "\f23e"; } +.qi-cold-warning2::before { content: "\f23f"; } +.qi-frost4::before { content: "\f240"; } +.qi-drought2::before { content: "\f241"; } +.qi-forest-fire2::before { content: "\f242"; } +.qi-severely-falling-temperature2::before { content: "\f244"; } +.qi-rainstorm4::before { content: "\f245"; } +.qi-wind2::before { content: "\f246"; } +.qi-snow-ice2::before { content: "\f247"; } +.qi-freeze2::before { content: "\f248"; } +.qi-thunderstorms::before { content: "\f30b"; } +.qi-fog4::before { content: "\f24a"; } +.qi-high-temperature3::before { content: "\f24b"; } +.qi-low-temperature3::before { content: "\f24c"; } +.qi-coastal-event2::before { content: "\f24d"; } +.qi-forest-fire3::before { content: "\f24e"; } +.qi-avalanches2::before { content: "\f24f"; } +.qi-flood2::before { content: "\f251"; } +.qi-rain-flood2::before { content: "\f252"; } +.qi-mudflow2::before { content: "\f253"; } +.qi-duststorm-warning::before { content: "\f254"; } +.qi-freezing-rain-and-icing::before { content: "\f255"; } +.qi-other-dangers::before { content: "\f256"; } +.qi-severe-thunderstorms::before { content: "\f257"; } +.qi-damaging-winds2::before { content: "\f258"; } +.qi-veld-fire-conditions2::before { content: "\f259"; } +.qi-weather-advisory2::before { content: "\f25a"; } +.qi-thunderstorm6::before { content: "\f2e4"; } +.qi-squall::before { content: "\f2e5"; } +.qi-air-quality::before { content: "\f2e6"; } +.qi-rainfall::before { content: "\f2e7"; } +.qi-fog5::before { content: "\f2e8"; } +.qi-heat::before { content: "\f2e9"; } +.qi-wildfire2::before { content: "\f2ea"; } +.qi-wind3::before { content: "\f2eb"; } +.qi-freezing-rain-warning::before { content: "\f2ec"; } +.qi-tornado3::before { content: "\f2ed"; } +.qi-blizzard::before { content: "\f2ee"; } +.qi-weather-warning::before { content: "\f2ef"; } +.qi-winter-storm::before { content: "\f2f0"; } +.qi-freezing-drizzle::before { content: "\f2f1"; } +.qi-snowfall::before { content: "\f2f2"; } +.qi-blowing-snow::before { content: "\f2f3"; } +.qi-extreme-cold::before { content: "\f2f4"; } +.qi-frost5::before { content: "\f2f5"; } +.qi-hazardous-seas-warning::before { content: "\f25b"; } +.qi-heavy-freezing-spray-warning::before { content: "\f25c"; } +.qi-red-flag-warning::before { content: "\f25d"; } +.qi-freeze-warning::before { content: "\f25e"; } +.qi-hard-freeze-warning::before { content: "\f25f"; } +.qi-extreme-cold-warning::before { content: "\f260"; } +.qi-wind-chill-warning::before { content: "\f261"; } +.qi-gale-warning::before { content: "\f262"; } +.qi-excessive-heat-warning::before { content: "\f263"; } +.qi-lake-effect-snow-warning::before { content: "\f264"; } +.qi-blowing-dust-warning::before { content: "\f265"; } +.qi-dust-storm-warning::before { content: "\f266"; } +.qi-storm-warning2::before { content: "\f267"; } +.qi-tropical-storm-warning::before { content: "\f268"; } +.qi-high-wind-warning::before { content: "\f269"; } +.qi-high-surf-warning::before { content: "\f26a"; } +.qi-flood-warning::before { content: "\f26b"; } +.qi-lakeshore-flood-warning::before { content: "\f26c"; } +.qi-coastal-flood-warning::before { content: "\f26d"; } +.qi-ashfall-warning::before { content: "\f26e"; } +.qi-volcano-warning::before { content: "\f26f"; } +.qi-earthquake-warning::before { content: "\f270"; } +.qi-avalanche-warning::before { content: "\f271"; } +.qi-winter-storm-warning::before { content: "\f272"; } +.qi-ice-storm-warning::before { content: "\f273"; } +.qi-snow-squall-warning::before { content: "\f274"; } +.qi-blizzard-warning::before { content: "\f275"; } +.qi-special-marine-warning::before { content: "\f276"; } +.qi-typhoon-warning::before { content: "\f277"; } +.qi-hurricane-warning::before { content: "\f278"; } +.qi-hurricane-force-wind-warning::before { content: "\f279"; } +.qi-storm-surge-warning::before { content: "\f27a"; } +.qi-flash-flood-warning::before { content: "\f27b"; } +.qi-severe-thunderstorm-warning::before { content: "\f27c"; } +.qi-extreme-wind-warning::before { content: "\f27d"; } +.qi-tornado-warning::before { content: "\f27e"; } +.qi-tsunami-warning::before { content: "\f27f"; } +.qi-fire-weather-watch::before { content: "\f280"; } +.qi-freeze-watch::before { content: "\f281"; } +.qi-hard-freeze-watch::before { content: "\f282"; } +.qi-wind-chill-watch::before { content: "\f283"; } +.qi-extreme-cold-watch::before { content: "\f284"; } +.qi-excessive-heat-watch::before { content: "\f285"; } +.qi-high-wind-watch::before { content: "\f286"; } +.qi-flood-watch::before { content: "\f287"; } +.qi-lakeshore-flood-watch::before { content: "\f288"; } +.qi-coastal-flood-watch::before { content: "\f289"; } +.qi-heavy-freezing-spray-watch::before { content: "\f28a"; } +.qi-hazardous-seas-watch::before { content: "\f28b"; } +.qi-winter-storm-watch::before { content: "\f28c"; } +.qi-gale-watch::before { content: "\f28d"; } +.qi-avalanche-watch::before { content: "\f28e"; } +.qi-storm-watch::before { content: "\f28f"; } +.qi-tropical-storm-watch::before { content: "\f290"; } +.qi-typhoon-watch::before { content: "\f291"; } +.qi-hurricane-force-wind-watch::before { content: "\f292"; } +.qi-hurricane-watch::before { content: "\f293"; } +.qi-storm-surge-watch::before { content: "\f294"; } +.qi-flash-flood-watch::before { content: "\f295"; } +.qi-severe-thunderstorm-watch::before { content: "\f296"; } +.qi-tornado-watch::before { content: "\f297"; } +.qi-tsunami-watch::before { content: "\f298"; } +.qi-air-stagnation-advisory::before { content: "\f299"; } +.qi-low-water-advisory::before { content: "\f29a"; } +.qi-freezing-spray-advisory::before { content: "\f29b"; } +.qi-freezing-fog-advisory::before { content: "\f29c"; } +.qi-ashfall-advisory::before { content: "\f29d"; } +.qi-frost-advisory::before { content: "\f29e"; } +.qi-wind-advisory::before { content: "\f29f"; } +.qi-lake-wind-advisory::before { content: "\f2a0"; } +.qi-blowing-dust-advisory::before { content: "\f2a1"; } +.qi-dust-advisory::before { content: "\f2a2"; } +.qi-brisk-wind-advisory::before { content: "\f2a3"; } +.qi-small-craft-advisory::before { content: "\f2a4"; } +.qi-small-craft-advisory-for-winds::before { content: "\f2a5"; } +.qi-small-craft-advisory-for-rough-bar::before { content: "\f2a6"; } +.qi-small-craft-advisory-for-hazardous-seas::before { content: "\f2a7"; } +.qi-dense-smoke-advisory::before { content: "\f2a8"; } +.qi-dense-fog-advisory::before { content: "\f2a9"; } +.qi-high-surf-advisory::before { content: "\f2aa"; } +.qi-coastal-flood-advisory::before { content: "\f2ab"; } +.qi-lakeshore-flood-advisory::before { content: "\f2ac"; } +.qi-hydrologic-advisory::before { content: "\f2ad"; } +.qi-flood-advisory::before { content: "\f2ae"; } +.qi-heat-advisory::before { content: "\f2af"; } +.qi-wind-chill-advisory::before { content: "\f2b0"; } +.qi-winter-weather-advisory::before { content: "\f2b1"; } +.qi-avalanche-advisory::before { content: "\f2b2"; } +.qi-tsunami-advisory::before { content: "\f2b3"; } +.qi-flood-statement::before { content: "\f2b4"; } +.qi-hydrologic-outlook::before { content: "\f2b5"; } +.qi-hazardous-weather-outlook::before { content: "\f2b6"; } +.qi-air-quality-alert::before { content: "\f2b7"; } +.qi-extreme-fire-danger::before { content: "\f2b8"; } +.qi-marine-weather-statement::before { content: "\f2b9"; } +.qi-special-weather-statement::before { content: "\f2ba"; } +.qi-lakeshore-flood-statement::before { content: "\f2bb"; } +.qi-coastal-flood-statement::before { content: "\f2bc"; } +.qi-beach-hazards-statement::before { content: "\f2bd"; } +.qi-rip-current-statement::before { content: "\f2be"; } +.qi-tropical-depression-local-statement::before { content: "\f2bf"; } +.qi-tropical-storm-local-statement::before { content: "\f2c0"; } +.qi-typhoon-local-statement::before { content: "\f2c1"; } +.qi-hurricane-local-statement::before { content: "\f2c2"; } +.qi-severe-weather-statement::before { content: "\f2c3"; } +.qi-flash-flood-statement::before { content: "\f2c4"; } +.qi-heavy-rain2::before { content: "\f2fa"; } +.qi-very-heavy-rain::before { content: "\f2fb"; } +.qi-moderate-rain2::before { content: "\f2fc"; } +.qi-light-rain2::before { content: "\f2fd"; } +.qi-heavy-rain3::before { content: "\f2fe"; } +.qi-light-mist::before { content: "\f2ff"; } +.qi-raised-dust::before { content: "\f300"; } +.qi-high-winds::before { content: "\f301"; } +.qi-dusty-plankton::before { content: "\f302"; } +.qi-active-winds::before { content: "\f303"; } +.qi-fog6::before { content: "\f306"; } +.qi-light-fog::before { content: "\f307"; } +.qi-heavy-rain4::before { content: "\f308"; } +.qi-strong-wind::before { content: "\f309"; } +.qi-heavy-snow2::before { content: "\f30a"; } +.qi-road-snowfall::before { content: "\f30c"; } +.qi-warning-default::before { content: "\f1cb"; } +.qi-sunny-fill::before { content: "\f1cc"; } +.qi-cloudy-fill::before { content: "\f1cd"; } +.qi-few-clouds-fill::before { content: "\f1ce"; } +.qi-partly-cloudy-fill::before { content: "\f1cf"; } +.qi-overcast-fill::before { content: "\f1d0"; } +.qi-clear-night-fill::before { content: "\f1d1"; } +.qi-cloudy-night-fill::before { content: "\f1d2"; } +.qi-few-clouds-night-fill::before { content: "\f1d3"; } +.qi-partly-cloudy-night-fill::before { content: "\f1d4"; } +.qi-shower-rain-fill::before { content: "\f1d5"; } +.qi-heavy-shower-rain-fill::before { content: "\f1d6"; } +.qi-thundershower-fill::before { content: "\f1d7"; } +.qi-heavy-thunderstorm-fill::before { content: "\f1d8"; } +.qi-thundershower-with-hail-fill::before { content: "\f1d9"; } +.qi-light-rain-fill::before { content: "\f1da"; } +.qi-moderate-rain-fill::before { content: "\f1db"; } +.qi-heavy-rain-fill::before { content: "\f1dc"; } +.qi-extreme-rain-fill::before { content: "\f1dd"; } +.qi-drizzle-rain-fill::before { content: "\f1de"; } +.qi-storm-fill::before { content: "\f1df"; } +.qi-heavy-storm-fill::before { content: "\f1e0"; } +.qi-severe-storm-fill::before { content: "\f1e1"; } +.qi-freezing-rain-fill::before { content: "\f1e2"; } +.qi-light-to-moderate-rain-fill::before { content: "\f1e3"; } +.qi-moderate-to-heavy-rain-fill::before { content: "\f1e4"; } +.qi-heavy-rain-to-storm-fill::before { content: "\f1e5"; } +.qi-storm-to-heavy-storm-fill::before { content: "\f1e6"; } +.qi-heavy-to-severe-storm-fill::before { content: "\f1e7"; } +.qi-shower-rain-night-fill::before { content: "\f1e8"; } +.qi-heavy-shower-rain-night-fill::before { content: "\f1e9"; } +.qi-rain-fill::before { content: "\f1ea"; } +.qi-light-snow-fill::before { content: "\f1eb"; } +.qi-moderate-snow-fill::before { content: "\f1ec"; } +.qi-heavy-snow-fill::before { content: "\f1ed"; } +.qi-snowstorm-fill::before { content: "\f1ee"; } +.qi-sleet-fill::before { content: "\f1ef"; } +.qi-rain-and-snow-fill::before { content: "\f1f0"; } +.qi-shower-snow-fill::before { content: "\f1f1"; } +.qi-snow-flurry-fill::before { content: "\f1f2"; } +.qi-light-to-moderate-snow-fill::before { content: "\f1f3"; } +.qi-moderate-to-heavy-snow-fill::before { content: "\f1f4"; } +.qi-heavy-snow-to-snowstorm-fill::before { content: "\f1f5"; } +.qi-shower-snow-night-fill::before { content: "\f1f6"; } +.qi-snow-flurry-night-fill::before { content: "\f1f7"; } +.qi-snow-fill::before { content: "\f1f8"; } +.qi-mist-fill::before { content: "\f1f9"; } +.qi-foggy-fill::before { content: "\f1fa"; } +.qi-haze-fill::before { content: "\f1fb"; } +.qi-sand-fill::before { content: "\f1fc"; } +.qi-dust-fill::before { content: "\f1fd"; } +.qi-duststorm-fill::before { content: "\f1fe"; } +.qi-sandstorm-fill::before { content: "\f1ff"; } +.qi-dense-fog-fill::before { content: "\f200"; } +.qi-strong-fog-fill::before { content: "\f201"; } +.qi-moderate-haze-fill::before { content: "\f202"; } +.qi-heavy-haze-fill::before { content: "\f203"; } +.qi-severe-haze-fill::before { content: "\f204"; } +.qi-heavy-fog-fill::before { content: "\f205"; } +.qi-extra-heavy-fog-fill::before { content: "\f206"; } +.qi-hot-fill::before { content: "\f207"; } +.qi-cold-fill::before { content: "\f208"; } +.qi-unknown-fill::before { content: "\f209"; } diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/font/qweather-icons.json b/jpahefengweather/storage/QWeather-Icons-1.7.0/font/qweather-icons.json new file mode 100644 index 0000000..d9ea750 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/font/qweather-icons.json @@ -0,0 +1,993 @@ +{ + "100": 61697, + "101": 61698, + "102": 61699, + "103": 61700, + "104": 61701, + "150": 61702, + "151": 61703, + "152": 61704, + "153": 61705, + "300": 61706, + "301": 61707, + "302": 61708, + "303": 61709, + "304": 61710, + "305": 61711, + "306": 61712, + "307": 61713, + "308": 61714, + "309": 61715, + "310": 61716, + "311": 61717, + "312": 61718, + "313": 61719, + "314": 61720, + "315": 61721, + "316": 61722, + "317": 61723, + "318": 61724, + "350": 61725, + "351": 61726, + "399": 61727, + "400": 61728, + "401": 61729, + "402": 61730, + "403": 61731, + "404": 61732, + "405": 61733, + "406": 61734, + "407": 61735, + "408": 61736, + "409": 61737, + "410": 61738, + "456": 61739, + "457": 61740, + "499": 61741, + "500": 61742, + "501": 61743, + "502": 61744, + "503": 61745, + "504": 61746, + "507": 61747, + "508": 61748, + "509": 61749, + "510": 61750, + "511": 61751, + "512": 61752, + "513": 61753, + "514": 61754, + "515": 61755, + "800": 61756, + "801": 61757, + "802": 61758, + "803": 61759, + "804": 61760, + "805": 61761, + "806": 61762, + "807": 61763, + "900": 61764, + "901": 61765, + "999": 61766, + "1001": 61767, + "1002": 61768, + "1003": 61769, + "1004": 61770, + "1005": 61771, + "1006": 61772, + "1007": 61773, + "1008": 61774, + "1009": 61775, + "1010": 61776, + "1011": 61777, + "1012": 61778, + "1013": 61779, + "1014": 61780, + "1015": 61781, + "1016": 61782, + "1017": 61783, + "1018": 61784, + "1019": 61785, + "1020": 61786, + "1021": 61787, + "1022": 61788, + "1023": 61789, + "1024": 61790, + "1025": 61791, + "1026": 61792, + "1027": 61793, + "1028": 61794, + "1029": 61795, + "1030": 61796, + "1031": 61797, + "1032": 61798, + "1033": 61799, + "1034": 61800, + "1035": 61801, + "1036": 61802, + "1037": 61803, + "1038": 61804, + "1039": 61805, + "1040": 61806, + "1041": 61807, + "1042": 61808, + "1043": 61809, + "1044": 61810, + "1045": 61811, + "1046": 61812, + "1047": 61813, + "1048": 61814, + "1049": 61815, + "1050": 61816, + "1051": 61817, + "1052": 61818, + "1053": 61819, + "1054": 61820, + "1055": 61821, + "1056": 61822, + "1057": 61823, + "1058": 61824, + "1059": 61825, + "1060": 61826, + "1061": 61827, + "1062": 61828, + "1063": 61829, + "1064": 61830, + "1065": 61831, + "1066": 61832, + "1067": 61833, + "1068": 61834, + "1069": 61835, + "1071": 61836, + "1072": 61837, + "1073": 61838, + "1074": 61839, + "1075": 61840, + "1076": 61841, + "1077": 61842, + "1078": 61843, + "1079": 61844, + "1080": 61845, + "1081": 61846, + "1082": 61847, + "1084": 61848, + "1085": 61849, + "1086": 61850, + "1087": 61851, + "1088": 61852, + "1089": 61853, + "1201": 62149, + "1202": 62150, + "1203": 62151, + "1204": 62152, + "1205": 62153, + "1206": 62154, + "1207": 62155, + "1208": 62156, + "1209": 62157, + "1210": 62158, + "1211": 62159, + "1212": 62160, + "1213": 62161, + "1214": 62162, + "1215": 62163, + "1216": 62164, + "1217": 62165, + "1218": 62166, + "1219": 62167, + "1221": 62168, + "1241": 62169, + "1242": 62170, + "1243": 62171, + "1244": 62172, + "1245": 62173, + "1246": 62174, + "1247": 62175, + "1248": 62176, + "1249": 62177, + "1250": 62178, + "1251": 62179, + "1271": 62198, + "1272": 62199, + "1273": 62200, + "1274": 62201, + "1601": 61857, + "1602": 61858, + "1603": 61859, + "1604": 61860, + "1605": 61861, + "1606": 61862, + "1607": 61863, + "1608": 61964, + "1609": 61965, + "1610": 61966, + "1701": 61864, + "1702": 61865, + "1703": 61866, + "1801": 61967, + "1802": 61968, + "1803": 61969, + "1804": 61970, + "1805": 61971, + "2001": 61867, + "2002": 61868, + "2003": 61869, + "2004": 61870, + "2005": 61871, + "2006": 61872, + "2007": 61873, + "2029": 61972, + "2030": 61973, + "2031": 61974, + "2032": 61975, + "2033": 61976, + "2050": 61977, + "2051": 61978, + "2052": 61895, + "2053": 61896, + "2054": 61897, + "2070": 61979, + "2071": 61980, + "2072": 61981, + "2073": 61982, + "2074": 61983, + "2075": 61984, + "2076": 61985, + "2077": 61986, + "2078": 61987, + "2079": 61988, + "2080": 61989, + "2081": 61990, + "2082": 61991, + "2083": 61992, + "2084": 61993, + "2085": 61994, + "2100": 61995, + "2101": 61996, + "2102": 61997, + "2103": 61998, + "2104": 61999, + "2105": 62000, + "2106": 62001, + "2107": 62002, + "2108": 62003, + "2109": 62004, + "2111": 62005, + "2120": 62006, + "2121": 62007, + "2122": 62008, + "2123": 62009, + "2124": 62010, + "2125": 62011, + "2126": 62012, + "2127": 62013, + "2128": 62014, + "2129": 62015, + "2130": 62016, + "2131": 62017, + "2132": 62018, + "2133": 62019, + "2134": 62020, + "2135": 62021, + "2150": 62022, + "2151": 62023, + "2152": 62024, + "2153": 62025, + "2154": 62026, + "2155": 62027, + "2156": 62028, + "2157": 62029, + "2158": 62030, + "2159": 62031, + "2160": 62032, + "2161": 62033, + "2162": 62034, + "2163": 62035, + "2164": 62036, + "2165": 62037, + "2166": 62038, + "2190": 62039, + "2191": 62040, + "2192": 62041, + "2193": 62042, + "2200": 62180, + "2201": 62181, + "2202": 62182, + "2203": 62183, + "2204": 62184, + "2205": 62185, + "2207": 62186, + "2208": 62187, + "2209": 62188, + "2210": 62189, + "2211": 62190, + "2212": 62191, + "2213": 62192, + "2214": 62193, + "2215": 62194, + "2216": 62195, + "2217": 62196, + "2218": 62197, + "2300": 62043, + "2301": 62044, + "2302": 62045, + "2303": 62046, + "2304": 62047, + "2305": 62048, + "2306": 62049, + "2307": 62050, + "2308": 62051, + "2309": 62052, + "2311": 62053, + "2312": 62054, + "2313": 62055, + "2314": 62056, + "2315": 62057, + "2316": 62058, + "2317": 62059, + "2318": 62060, + "2319": 62061, + "2320": 62062, + "2321": 62063, + "2322": 62064, + "2323": 62065, + "2324": 62066, + "2325": 62067, + "2326": 62068, + "2327": 62069, + "2328": 62070, + "2330": 62071, + "2331": 62072, + "2332": 62073, + "2333": 62074, + "2341": 62075, + "2343": 62076, + "2345": 62077, + "2346": 62078, + "2348": 62079, + "2349": 62080, + "2350": 62081, + "2351": 62082, + "2352": 62083, + "2353": 62084, + "2354": 62085, + "2355": 62086, + "2356": 62087, + "2357": 62088, + "2358": 62089, + "2359": 62090, + "2360": 62091, + "2361": 62092, + "2362": 62093, + "2363": 62094, + "2364": 62095, + "2365": 62096, + "2366": 62097, + "2367": 62098, + "2368": 62099, + "2369": 62100, + "2370": 62101, + "2371": 62102, + "2372": 62103, + "2373": 62104, + "2374": 62105, + "2375": 62106, + "2376": 62107, + "2377": 62108, + "2378": 62109, + "2379": 62110, + "2380": 62111, + "2381": 62112, + "2382": 62113, + "2383": 62114, + "2384": 62115, + "2385": 62116, + "2386": 62117, + "2387": 62118, + "2388": 62119, + "2389": 62120, + "2390": 62121, + "2391": 62122, + "2392": 62123, + "2393": 62124, + "2394": 62125, + "2395": 62126, + "2396": 62127, + "2397": 62128, + "2398": 62129, + "2399": 62130, + "2400": 62131, + "2409": 62132, + "2411": 62133, + "2412": 62134, + "2413": 62135, + "2414": 62136, + "2415": 62137, + "2416": 62138, + "2417": 62139, + "2418": 62140, + "2419": 62141, + "2420": 62142, + "2421": 62143, + "2422": 62144, + "2423": 62145, + "2424": 62146, + "2425": 62147, + "2426": 62148, + "2501": 62202, + "2502": 62203, + "2521": 62204, + "2522": 62205, + "2523": 62206, + "2524": 62207, + "2525": 62208, + "2526": 62209, + "2527": 62210, + "2528": 62211, + "2529": 62212, + "2530": 62213, + "2531": 62214, + "2532": 62215, + "2550": 62216, + "2551": 62217, + "2552": 62218, + "2553": 62219, + "2554": 62220, + "9999": 61899, + "100-fill": 61900, + "101-fill": 61901, + "102-fill": 61902, + "103-fill": 61903, + "104-fill": 61904, + "150-fill": 61905, + "151-fill": 61906, + "152-fill": 61907, + "153-fill": 61908, + "300-fill": 61909, + "301-fill": 61910, + "302-fill": 61911, + "303-fill": 61912, + "304-fill": 61913, + "305-fill": 61914, + "306-fill": 61915, + "307-fill": 61916, + "308-fill": 61917, + "309-fill": 61918, + "310-fill": 61919, + "311-fill": 61920, + "312-fill": 61921, + "313-fill": 61922, + "314-fill": 61923, + "315-fill": 61924, + "316-fill": 61925, + "317-fill": 61926, + "318-fill": 61927, + "350-fill": 61928, + "351-fill": 61929, + "399-fill": 61930, + "400-fill": 61931, + "401-fill": 61932, + "402-fill": 61933, + "403-fill": 61934, + "404-fill": 61935, + "405-fill": 61936, + "406-fill": 61937, + "407-fill": 61938, + "408-fill": 61939, + "409-fill": 61940, + "410-fill": 61941, + "456-fill": 61942, + "457-fill": 61943, + "499-fill": 61944, + "500-fill": 61945, + "501-fill": 61946, + "502-fill": 61947, + "503-fill": 61948, + "504-fill": 61949, + "507-fill": 61950, + "508-fill": 61951, + "509-fill": 61952, + "510-fill": 61953, + "511-fill": 61954, + "512-fill": 61955, + "513-fill": 61956, + "514-fill": 61957, + "515-fill": 61958, + "900-fill": 61959, + "901-fill": 61960, + "999-fill": 61961, + "qweather-fill": 61962, + "qweather": 61963, + "sunny": 61697, + "cloudy": 61698, + "few-clouds": 61699, + "partly-cloudy": 61700, + "overcast": 61701, + "clear-night": 61702, + "cloudy-night": 61703, + "few-clouds-night": 61704, + "partly-cloudy-night": 61705, + "shower-rain": 61706, + "heavy-shower-rain": 61707, + "thundershower": 61708, + "heavy-thunderstorm": 61709, + "thundershower-with-hail": 61710, + "light-rain": 61711, + "moderate-rain": 61712, + "heavy-rain": 61713, + "extreme-rain": 61714, + "drizzle-rain": 61715, + "storm": 61716, + "heavy-storm": 61717, + "severe-storm": 61718, + "freezing-rain": 61719, + "light-to-moderate-rain": 61720, + "moderate-to-heavy-rain": 61721, + "heavy-rain-to-storm": 61722, + "storm-to-heavy-storm": 61723, + "heavy-to-severe-storm": 61724, + "shower-rain-night": 61725, + "heavy-shower-rain-night": 61726, + "rain": 61727, + "light-snow": 61728, + "moderate-snow": 61729, + "heavy-snow": 61730, + "snowstorm": 61731, + "sleet": 61732, + "rain-and-snow": 61733, + "shower-snow": 61734, + "snow-flurry": 61735, + "light-to-moderate-snow": 61736, + "moderate-to-heavy-snow": 61737, + "heavy-snow-to-snowstorm": 61738, + "shower-snow-night": 61739, + "snow-flurry-night": 61740, + "snow": 61741, + "mist": 61742, + "foggy": 61743, + "haze": 61744, + "sand": 61745, + "dust": 61746, + "duststorm": 61747, + "sandstorm": 61748, + "dense-fog": 61749, + "strong-fog": 61750, + "moderate-haze": 61751, + "heavy-haze": 61752, + "severe-haze": 61753, + "heavy-fog": 61754, + "extra-heavy-fog": 61755, + "new-moon": 61756, + "waxing-crescent": 61757, + "first-quarter": 61758, + "waxing-gibbous": 61759, + "full-moon": 61760, + "waning-gibbous": 61761, + "last-quarter": 61762, + "waning-crescent": 61763, + "hot": 61764, + "cold": 61765, + "unknown": 61766, + "typhoon": 61767, + "tornado": 61768, + "rainstorm": 61769, + "snow-storm": 61770, + "cold-wave": 61771, + "gale": 61772, + "sandstorm-warning": 61773, + "low-temperature-freeze": 61774, + "high-temperature": 61775, + "heat-wave": 61776, + "dry-hot-wind": 61777, + "downburst": 61778, + "avalanche": 61779, + "lightning": 61780, + "hail": 61781, + "frost": 61782, + "heavy-fog-warning": 61783, + "low-level-wind-shearl": 61784, + "haze-warning": 61785, + "thunder-gust": 61786, + "road-icing": 61787, + "drought": 61788, + "gale-at-sea": 61789, + "heat-stroke": 61790, + "wildfire": 61791, + "grassland-fire": 61792, + "freeze": 61793, + "space-weather": 61794, + "heavy-air-pollution": 61795, + "low-temperature-rain-and-snow": 61796, + "strong-convection": 61797, + "ozone": 61798, + "heavy-snow-warning": 61799, + "cold-warning": 61800, + "continuous-rain": 61801, + "waterlogging": 61802, + "geological-hazard": 61803, + "heavy-rainfall": 61804, + "severely-falling-temperature": 61805, + "snow-disaster": 61806, + "wildfire-grassland": 61807, + "medical-meteorology": 61808, + "thunderstorm": 61809, + "school-closure": 61810, + "factory-closure": 61811, + "maritime-risk": 61812, + "spring-dust": 61813, + "falling-temperature": 61814, + "typhoon-and-rainstorm": 61815, + "severe-cold": 61816, + "sand-dust": 61817, + "sea-thunderstorms": 61818, + "sea-fog": 61819, + "sea-thunder": 61820, + "sea-typhoon": 61821, + "low-temperature": 61822, + "road-ice-and-snow": 61823, + "thunderstorm-and-gale": 61824, + "continuous-low-temperature": 61825, + "low-visibility": 61826, + "strong-dust": 61827, + "gale-in-sea-area": 61828, + "short-duration-heavy-shower-rain": 61829, + "short-lived-heavy-shower-rain": 61830, + "sea-area-fog": 61831, + "heat-stroke-conditions": 61832, + "heavy-pollution-weather": 61833, + "co-poisoning-weather-conditions": 61834, + "respiratory-disease-weather-wonditions": 61835, + "intestinal-disease-weather-wonditions": 61836, + "cardiovascular-disease-weather-wonditions": 61837, + "flooding-weather-risk": 61838, + "heavy-pollution-weather-conditions": 61839, + "urban-flooding-weather-risk": 61840, + "flooding-weather-risk-2": 61841, + "wildfire-weather-risk": 61842, + "meteorological-drought": 61843, + "agricultural-weather-risk": 61844, + "strong-monsoon": 61845, + "ice-accretion-on-wire": 61846, + "stroke-weather-risk": 61847, + "wildfire-grassland-risk": 61848, + "thunderstorm-and-strong-winds": 61849, + "low-temperature-freeze2": 61850, + "low-temperature-damage": 61851, + "national-agricultural-meteorological-risk": 61852, + "dry-hot-wind-risk-for-winter-wheat": 61853, + "flood": 62149, + "urban-flooding": 62150, + "reservoir-danger": 62151, + "dike-danger": 62152, + "ice-flood": 62153, + "waterlogging2": 62154, + "flood-and-waterlogging": 62155, + "dry-water": 62156, + "flood-and-flash-flood-in-small-and-medium-rivers": 62157, + "difficulty-drinking-water-for-rural-people-and-animals": 62158, + "flood-in-small-and-medium-rivers": 62159, + "flood-and-drought-advisory": 62160, + "urban-flood-risk": 62161, + "flash-flood": 62162, + "agricultural-drought": 62163, + "urban-water-shortage": 62164, + "ecological-drought": 62165, + "disaster-risk-early-warning": 62166, + "flash-flood-weather-risk": 62167, + "water-conservancy-and-drought": 62168, + "landslide": 62169, + "debris-flows": 62170, + "landslide-event": 62171, + "ground-collapses": 62172, + "ground-fissure": 62173, + "land-subsidence": 62174, + "volcanic-eruption": 62175, + "geological-hazard-weather-risk": 62176, + "geological-hazard-weather": 62177, + "geological-hazard2": 62178, + "geological-hazard-risk": 62179, + "air-pollution-incident": 62198, + "heavy-air-pollution-2": 62199, + "air-pollution": 62200, + "heavy-pollution-weather-2": 62201, + "very-hot-weather": 61857, + "strong-monsoon-signal": 61858, + "landslip": 61859, + "tropical-cyclone": 61860, + "fire-danger": 61861, + "flooding-in-the-northern-new-territories": 61862, + "cold-weather": 61863, + "thunderstorm2": 61964, + "rainstorm2": 61965, + "frost2": 61966, + "cold-surge-advisory": 61864, + "strong-wind-advisory": 61865, + "rainfall-advisory": 61866, + "strong-monsoon-signal2": 61967, + "storm-surge2": 61968, + "tropical-cyclone2": 61969, + "rainstorm3": 61970, + "thunderstorm3": 61971, + "wind-warning": 61867, + "snow-ice": 61868, + "fog": 61869, + "coastal-event": 61870, + "forest-fire": 61871, + "rain-warning": 61872, + "rain-flood": 61873, + "thunderstorm4": 61972, + "high-temperature2": 61973, + "low-temperature2": 61974, + "avalanches": 61975, + "flooding": 61976, + "rain-warning2": 62032, + "wind": 61978, + "snow-warning": 61895, + "zonda-wind": 61896, + "storm-warning": 61897, + "dust-raising-winds2": 61979, + "strong-surface-winds2": 61980, + "hot-day2": 61981, + "warm-night2": 61982, + "cold-day2": 61983, + "thunderstorm-and-lightning2": 61984, + "hailstorm2": 61985, + "sea-area-warning2": 61986, + "fishermen-warning2": 61987, + "heavy-snow-warning2": 62019, + "dust-storm": 61989, + "heat-wave2": 62212, + "cold-wave2": 62213, + "fog2": 61992, + "heavy-rain-warning": 61993, + "ground-frost2": 61994, + "fog3": 61995, + "thunder-rain2": 61996, + "thunder-storm": 61997, + "light-rain-warning": 61998, + "heavy-rain-warning2": 61999, + "fresh-wind": 62000, + "thunderstorm-and-dust": 62001, + "dust-warning": 62002, + "high-wave": 62003, + "frost3": 62004, + "drop-in-visibility": 62005, + "low-humidity2": 62006, + "accumulated-rain2": 62007, + "cold-wave3": 62008, + "tornado2": 62009, + "thunderstorm5": 62010, + "hail2": 62011, + "heavy-rainfall2": 62012, + "gale2": 62013, + "heat-wave3": 62014, + "cold-warning2": 62015, + "frost4": 62016, + "drought2": 62017, + "forest-fire2": 62018, + "severely-falling-temperature2": 62020, + "rainstorm4": 62021, + "wind2": 62022, + "snow-ice2": 62023, + "freeze2": 62024, + "thunderstorms": 62219, + "fog4": 62026, + "high-temperature3": 62027, + "low-temperature3": 62028, + "coastal-event2": 62029, + "forest-fire3": 62030, + "avalanches2": 62031, + "flood2": 62033, + "rain-flood2": 62034, + "mudflow2": 62035, + "duststorm-warning": 62036, + "freezing-rain-and-icing": 62037, + "other-dangers": 62038, + "severe-thunderstorms": 62039, + "damaging-winds2": 62040, + "veld-fire-conditions2": 62041, + "weather-advisory2": 62042, + "thunderstorm6": 62180, + "squall": 62181, + "air-quality": 62182, + "rainfall": 62183, + "fog5": 62184, + "heat": 62185, + "wildfire2": 62186, + "wind3": 62187, + "freezing-rain-warning": 62188, + "tornado3": 62189, + "blizzard": 62190, + "weather-warning": 62191, + "winter-storm": 62192, + "freezing-drizzle": 62193, + "snowfall": 62194, + "blowing-snow": 62195, + "extreme-cold": 62196, + "frost5": 62197, + "hazardous-seas-warning": 62043, + "heavy-freezing-spray-warning": 62044, + "red-flag-warning": 62045, + "freeze-warning": 62046, + "hard-freeze-warning": 62047, + "extreme-cold-warning": 62048, + "wind-chill-warning": 62049, + "gale-warning": 62050, + "excessive-heat-warning": 62051, + "lake-effect-snow-warning": 62052, + "blowing-dust-warning": 62053, + "dust-storm-warning": 62054, + "storm-warning2": 62055, + "tropical-storm-warning": 62056, + "high-wind-warning": 62057, + "high-surf-warning": 62058, + "flood-warning": 62059, + "lakeshore-flood-warning": 62060, + "coastal-flood-warning": 62061, + "ashfall-warning": 62062, + "volcano-warning": 62063, + "earthquake-warning": 62064, + "avalanche-warning": 62065, + "winter-storm-warning": 62066, + "ice-storm-warning": 62067, + "snow-squall-warning": 62068, + "blizzard-warning": 62069, + "special-marine-warning": 62070, + "typhoon-warning": 62071, + "hurricane-warning": 62072, + "hurricane-force-wind-warning": 62073, + "storm-surge-warning": 62074, + "flash-flood-warning": 62075, + "severe-thunderstorm-warning": 62076, + "extreme-wind-warning": 62077, + "tornado-warning": 62078, + "tsunami-warning": 62079, + "fire-weather-watch": 62080, + "freeze-watch": 62081, + "hard-freeze-watch": 62082, + "wind-chill-watch": 62083, + "extreme-cold-watch": 62084, + "excessive-heat-watch": 62085, + "high-wind-watch": 62086, + "flood-watch": 62087, + "lakeshore-flood-watch": 62088, + "coastal-flood-watch": 62089, + "heavy-freezing-spray-watch": 62090, + "hazardous-seas-watch": 62091, + "winter-storm-watch": 62092, + "gale-watch": 62093, + "avalanche-watch": 62094, + "storm-watch": 62095, + "tropical-storm-watch": 62096, + "typhoon-watch": 62097, + "hurricane-force-wind-watch": 62098, + "hurricane-watch": 62099, + "storm-surge-watch": 62100, + "flash-flood-watch": 62101, + "severe-thunderstorm-watch": 62102, + "tornado-watch": 62103, + "tsunami-watch": 62104, + "air-stagnation-advisory": 62105, + "low-water-advisory": 62106, + "freezing-spray-advisory": 62107, + "freezing-fog-advisory": 62108, + "ashfall-advisory": 62109, + "frost-advisory": 62110, + "wind-advisory": 62111, + "lake-wind-advisory": 62112, + "blowing-dust-advisory": 62113, + "dust-advisory": 62114, + "brisk-wind-advisory": 62115, + "small-craft-advisory": 62116, + "small-craft-advisory-for-winds": 62117, + "small-craft-advisory-for-rough-bar": 62118, + "small-craft-advisory-for-hazardous-seas": 62119, + "dense-smoke-advisory": 62120, + "dense-fog-advisory": 62121, + "high-surf-advisory": 62122, + "coastal-flood-advisory": 62123, + "lakeshore-flood-advisory": 62124, + "hydrologic-advisory": 62125, + "flood-advisory": 62126, + "heat-advisory": 62127, + "wind-chill-advisory": 62128, + "winter-weather-advisory": 62129, + "avalanche-advisory": 62130, + "tsunami-advisory": 62131, + "flood-statement": 62132, + "hydrologic-outlook": 62133, + "hazardous-weather-outlook": 62134, + "air-quality-alert": 62135, + "extreme-fire-danger": 62136, + "marine-weather-statement": 62137, + "special-weather-statement": 62138, + "lakeshore-flood-statement": 62139, + "coastal-flood-statement": 62140, + "beach-hazards-statement": 62141, + "rip-current-statement": 62142, + "tropical-depression-local-statement": 62143, + "tropical-storm-local-statement": 62144, + "typhoon-local-statement": 62145, + "hurricane-local-statement": 62146, + "severe-weather-statement": 62147, + "flash-flood-statement": 62148, + "heavy-rain2": 62202, + "very-heavy-rain": 62203, + "moderate-rain2": 62204, + "light-rain2": 62205, + "heavy-rain3": 62206, + "light-mist": 62207, + "raised-dust": 62208, + "high-winds": 62209, + "dusty-plankton": 62210, + "active-winds": 62211, + "fog6": 62214, + "light-fog": 62215, + "heavy-rain4": 62216, + "strong-wind": 62217, + "heavy-snow2": 62218, + "road-snowfall": 62220, + "warning-default": 61899, + "sunny-fill": 61900, + "cloudy-fill": 61901, + "few-clouds-fill": 61902, + "partly-cloudy-fill": 61903, + "overcast-fill": 61904, + "clear-night-fill": 61905, + "cloudy-night-fill": 61906, + "few-clouds-night-fill": 61907, + "partly-cloudy-night-fill": 61908, + "shower-rain-fill": 61909, + "heavy-shower-rain-fill": 61910, + "thundershower-fill": 61911, + "heavy-thunderstorm-fill": 61912, + "thundershower-with-hail-fill": 61913, + "light-rain-fill": 61914, + "moderate-rain-fill": 61915, + "heavy-rain-fill": 61916, + "extreme-rain-fill": 61917, + "drizzle-rain-fill": 61918, + "storm-fill": 61919, + "heavy-storm-fill": 61920, + "severe-storm-fill": 61921, + "freezing-rain-fill": 61922, + "light-to-moderate-rain-fill": 61923, + "moderate-to-heavy-rain-fill": 61924, + "heavy-rain-to-storm-fill": 61925, + "storm-to-heavy-storm-fill": 61926, + "heavy-to-severe-storm-fill": 61927, + "shower-rain-night-fill": 61928, + "heavy-shower-rain-night-fill": 61929, + "rain-fill": 61930, + "light-snow-fill": 61931, + "moderate-snow-fill": 61932, + "heavy-snow-fill": 61933, + "snowstorm-fill": 61934, + "sleet-fill": 61935, + "rain-and-snow-fill": 61936, + "shower-snow-fill": 61937, + "snow-flurry-fill": 61938, + "light-to-moderate-snow-fill": 61939, + "moderate-to-heavy-snow-fill": 61940, + "heavy-snow-to-snowstorm-fill": 61941, + "shower-snow-night-fill": 61942, + "snow-flurry-night-fill": 61943, + "snow-fill": 61944, + "mist-fill": 61945, + "foggy-fill": 61946, + "haze-fill": 61947, + "sand-fill": 61948, + "dust-fill": 61949, + "duststorm-fill": 61950, + "sandstorm-fill": 61951, + "dense-fog-fill": 61952, + "strong-fog-fill": 61953, + "moderate-haze-fill": 61954, + "heavy-haze-fill": 61955, + "severe-haze-fill": 61956, + "heavy-fog-fill": 61957, + "extra-heavy-fog-fill": 61958, + "hot-fill": 61959, + "cold-fill": 61960, + "unknown-fill": 61961 +} \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/100-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/100-fill.svg new file mode 100644 index 0000000..8eb998a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/100-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/100.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/100.svg new file mode 100644 index 0000000..c09c805 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/100.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1001.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1001.svg new file mode 100644 index 0000000..94a63dc --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1001.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1002.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1002.svg new file mode 100644 index 0000000..40812fa --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1002.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1003.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1003.svg new file mode 100644 index 0000000..62f2797 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1003.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1004.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1004.svg new file mode 100644 index 0000000..436bba6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1004.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1005.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1005.svg new file mode 100644 index 0000000..e20a99b --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1005.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1006.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1006.svg new file mode 100644 index 0000000..4c7c42c --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1006.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1007.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1007.svg new file mode 100644 index 0000000..4e0cca2 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1007.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1008.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1008.svg new file mode 100644 index 0000000..329f6c7 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1008.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1009.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1009.svg new file mode 100644 index 0000000..e066c19 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1009.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/101-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/101-fill.svg new file mode 100644 index 0000000..dae24c3 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/101-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/101.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/101.svg new file mode 100644 index 0000000..690c923 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/101.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1010.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1010.svg new file mode 100644 index 0000000..ce17e9b --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1010.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1011.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1011.svg new file mode 100644 index 0000000..791c2a9 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1011.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1012.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1012.svg new file mode 100644 index 0000000..0ca6ee6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1012.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1013.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1013.svg new file mode 100644 index 0000000..b1f0cdf --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1013.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1014.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1014.svg new file mode 100644 index 0000000..4800932 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1014.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1015.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1015.svg new file mode 100644 index 0000000..9876330 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1015.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1016.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1016.svg new file mode 100644 index 0000000..903efef --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1016.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1017.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1017.svg new file mode 100644 index 0000000..d8ef224 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1017.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1018.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1018.svg new file mode 100644 index 0000000..4a06063 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1018.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1019.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1019.svg new file mode 100644 index 0000000..7d81f72 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1019.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/102-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/102-fill.svg new file mode 100644 index 0000000..2add978 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/102-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/102.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/102.svg new file mode 100644 index 0000000..a37a503 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/102.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1020.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1020.svg new file mode 100644 index 0000000..adcca8e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1020.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1021.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1021.svg new file mode 100644 index 0000000..24eb564 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1021.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1022.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1022.svg new file mode 100644 index 0000000..af2a3af --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1022.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1023.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1023.svg new file mode 100644 index 0000000..8d07633 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1023.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1024.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1024.svg new file mode 100644 index 0000000..0dd41ac --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1024.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1025.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1025.svg new file mode 100644 index 0000000..469aede --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1025.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1026.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1026.svg new file mode 100644 index 0000000..5ebad73 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1026.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1027.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1027.svg new file mode 100644 index 0000000..434aa1e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1027.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1028.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1028.svg new file mode 100644 index 0000000..6369a48 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1028.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1029.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1029.svg new file mode 100644 index 0000000..178c3d0 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1029.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/103-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/103-fill.svg new file mode 100644 index 0000000..d629442 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/103-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/103.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/103.svg new file mode 100644 index 0000000..bbc124f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/103.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1030.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1030.svg new file mode 100644 index 0000000..e9b8501 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1030.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1031.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1031.svg new file mode 100644 index 0000000..43f8d44 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1031.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1032.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1032.svg new file mode 100644 index 0000000..da53958 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1032.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1033.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1033.svg new file mode 100644 index 0000000..bb7787b --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1033.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1034.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1034.svg new file mode 100644 index 0000000..c277460 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1034.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1035.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1035.svg new file mode 100644 index 0000000..a168b4c --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1035.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1036.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1036.svg new file mode 100644 index 0000000..6437f27 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1036.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1037.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1037.svg new file mode 100644 index 0000000..db7dcef --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1037.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1038.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1038.svg new file mode 100644 index 0000000..5bc07b1 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1038.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1039.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1039.svg new file mode 100644 index 0000000..3822b50 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1039.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/104-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/104-fill.svg new file mode 100644 index 0000000..02d8ee1 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/104-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/104.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/104.svg new file mode 100644 index 0000000..4c6fec8 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/104.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1040.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1040.svg new file mode 100644 index 0000000..e4c9118 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1040.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1041.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1041.svg new file mode 100644 index 0000000..4746bee --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1041.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1042.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1042.svg new file mode 100644 index 0000000..54015f7 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1042.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1043.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1043.svg new file mode 100644 index 0000000..4f04d54 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1043.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1044.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1044.svg new file mode 100644 index 0000000..0dad496 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1044.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1045.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1045.svg new file mode 100644 index 0000000..e3c7f50 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1045.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1046.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1046.svg new file mode 100644 index 0000000..53a56aa --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1046.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1047.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1047.svg new file mode 100644 index 0000000..34cbaf0 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1047.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1048.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1048.svg new file mode 100644 index 0000000..a58beb9 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1048.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1049.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1049.svg new file mode 100644 index 0000000..5ffaa6a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1049.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1050.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1050.svg new file mode 100644 index 0000000..037e525 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1050.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1051.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1051.svg new file mode 100644 index 0000000..f0fd308 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1051.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1052.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1052.svg new file mode 100644 index 0000000..39d4662 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1052.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1053.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1053.svg new file mode 100644 index 0000000..d79c9f6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1053.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1054.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1054.svg new file mode 100644 index 0000000..464c044 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1054.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1055.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1055.svg new file mode 100644 index 0000000..9d8315c --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1055.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1056.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1056.svg new file mode 100644 index 0000000..b106fed --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1056.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1057.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1057.svg new file mode 100644 index 0000000..b0a541e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1057.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1058.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1058.svg new file mode 100644 index 0000000..aea2b8f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1058.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1059.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1059.svg new file mode 100644 index 0000000..d17130e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1059.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1060.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1060.svg new file mode 100644 index 0000000..1133fd3 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1060.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1061.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1061.svg new file mode 100644 index 0000000..4c4adf2 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1061.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1062.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1062.svg new file mode 100644 index 0000000..34161da --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1062.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1063.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1063.svg new file mode 100644 index 0000000..ec0e1b6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1063.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1064.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1064.svg new file mode 100644 index 0000000..ae669d9 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1064.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1065.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1065.svg new file mode 100644 index 0000000..98f95e5 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1065.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1066.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1066.svg new file mode 100644 index 0000000..1883b60 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1066.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1067.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1067.svg new file mode 100644 index 0000000..d2fde3e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1067.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1068.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1068.svg new file mode 100644 index 0000000..3feab39 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1068.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1069.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1069.svg new file mode 100644 index 0000000..a4680fa --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1069.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1071.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1071.svg new file mode 100644 index 0000000..c27ced5 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1071.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1072.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1072.svg new file mode 100644 index 0000000..5a382fe --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1072.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1073.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1073.svg new file mode 100644 index 0000000..415717d --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1073.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1074.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1074.svg new file mode 100644 index 0000000..daa1694 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1074.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1075.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1075.svg new file mode 100644 index 0000000..423056b --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1075.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1076.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1076.svg new file mode 100644 index 0000000..3cfd9ba --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1076.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1077.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1077.svg new file mode 100644 index 0000000..0c69bd8 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1077.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1078.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1078.svg new file mode 100644 index 0000000..0f1a9e0 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1078.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1079.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1079.svg new file mode 100644 index 0000000..55b72f8 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1079.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1080.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1080.svg new file mode 100644 index 0000000..72f8233 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1080.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1081.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1081.svg new file mode 100644 index 0000000..a9a9a8f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1081.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1082.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1082.svg new file mode 100644 index 0000000..ad1de1a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1082.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1084.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1084.svg new file mode 100644 index 0000000..3335919 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1084.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1085.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1085.svg new file mode 100644 index 0000000..70e0797 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1085.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1086.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1086.svg new file mode 100644 index 0000000..7848e85 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1086.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1087.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1087.svg new file mode 100644 index 0000000..f54d9f8 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1087.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1088.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1088.svg new file mode 100644 index 0000000..dcdb94f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1088.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1089.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1089.svg new file mode 100644 index 0000000..073fcc6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1089.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1201.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1201.svg new file mode 100644 index 0000000..a354837 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1201.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1202.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1202.svg new file mode 100644 index 0000000..eccdcef --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1202.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1203.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1203.svg new file mode 100644 index 0000000..39db56e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1203.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1204.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1204.svg new file mode 100644 index 0000000..d895006 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1204.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1205.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1205.svg new file mode 100644 index 0000000..77c8f22 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1205.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1206.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1206.svg new file mode 100644 index 0000000..890a97f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1206.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1207.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1207.svg new file mode 100644 index 0000000..51a2e30 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1207.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1208.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1208.svg new file mode 100644 index 0000000..a8c10e0 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1208.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1209.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1209.svg new file mode 100644 index 0000000..095caf5 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1209.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1210.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1210.svg new file mode 100644 index 0000000..2d9ceea --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1210.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1211.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1211.svg new file mode 100644 index 0000000..2a1b965 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1211.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1212.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1212.svg new file mode 100644 index 0000000..781c77e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1212.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1213.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1213.svg new file mode 100644 index 0000000..943fdbe --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1213.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1214.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1214.svg new file mode 100644 index 0000000..6193798 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1214.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1215.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1215.svg new file mode 100644 index 0000000..9cc0964 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1215.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1216.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1216.svg new file mode 100644 index 0000000..7d92e74 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1216.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1217.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1217.svg new file mode 100644 index 0000000..275a382 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1217.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1218.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1218.svg new file mode 100644 index 0000000..3b5fb1e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1218.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1219.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1219.svg new file mode 100644 index 0000000..6467fd9 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1219.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1221.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1221.svg new file mode 100644 index 0000000..a4532ad --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1221.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1241.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1241.svg new file mode 100644 index 0000000..354ff65 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1241.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1242.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1242.svg new file mode 100644 index 0000000..d9d61bd --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1242.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1243.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1243.svg new file mode 100644 index 0000000..19c10b5 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1243.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1244.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1244.svg new file mode 100644 index 0000000..cd74ff5 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1244.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1245.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1245.svg new file mode 100644 index 0000000..e39e90b --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1245.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1246.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1246.svg new file mode 100644 index 0000000..a56c005 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1246.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1247.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1247.svg new file mode 100644 index 0000000..a064864 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1247.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1248.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1248.svg new file mode 100644 index 0000000..e89ad75 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1248.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1249.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1249.svg new file mode 100644 index 0000000..506e4bd --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1249.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1250.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1250.svg new file mode 100644 index 0000000..886d7a6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1250.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1251.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1251.svg new file mode 100644 index 0000000..46acf7d --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1251.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1271.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1271.svg new file mode 100644 index 0000000..91e62d9 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1271.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1272.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1272.svg new file mode 100644 index 0000000..2a7bca4 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1272.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1273.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1273.svg new file mode 100644 index 0000000..aff1cc8 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1273.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1274.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1274.svg new file mode 100644 index 0000000..cf9db92 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1274.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/150-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/150-fill.svg new file mode 100644 index 0000000..18b4fc0 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/150-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/150.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/150.svg new file mode 100644 index 0000000..3b78903 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/150.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/151-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/151-fill.svg new file mode 100644 index 0000000..f0ac138 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/151-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/151.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/151.svg new file mode 100644 index 0000000..48b4502 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/151.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/152-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/152-fill.svg new file mode 100644 index 0000000..d26dada --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/152-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/152.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/152.svg new file mode 100644 index 0000000..091390d --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/152.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/153-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/153-fill.svg new file mode 100644 index 0000000..daa1a1e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/153-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/153.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/153.svg new file mode 100644 index 0000000..052f33f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/153.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1601.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1601.svg new file mode 100644 index 0000000..7fe3c0e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1601.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1602.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1602.svg new file mode 100644 index 0000000..2761af8 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1602.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1603.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1603.svg new file mode 100644 index 0000000..890ed8f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1603.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1604.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1604.svg new file mode 100644 index 0000000..18d5ecb --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1604.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1605.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1605.svg new file mode 100644 index 0000000..a1158fd --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1605.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1606.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1606.svg new file mode 100644 index 0000000..8441735 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1606.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1607.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1607.svg new file mode 100644 index 0000000..45662d8 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1607.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1608.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1608.svg new file mode 100644 index 0000000..ca87c16 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1608.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1609.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1609.svg new file mode 100644 index 0000000..235ab40 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1609.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1610.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1610.svg new file mode 100644 index 0000000..cd61c4a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1610.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1701.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1701.svg new file mode 100644 index 0000000..44a5c13 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1701.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1702.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1702.svg new file mode 100644 index 0000000..a372af1 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1702.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1703.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1703.svg new file mode 100644 index 0000000..8cb4bbf --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1703.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1801.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1801.svg new file mode 100644 index 0000000..16d1e6c --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1801.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1802.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1802.svg new file mode 100644 index 0000000..55c9185 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1802.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1803.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1803.svg new file mode 100644 index 0000000..f363401 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1803.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1804.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1804.svg new file mode 100644 index 0000000..392f65c --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1804.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1805.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1805.svg new file mode 100644 index 0000000..8452bed --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/1805.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2001.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2001.svg new file mode 100644 index 0000000..1c074ca --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2001.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2002.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2002.svg new file mode 100644 index 0000000..fa41f55 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2002.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2003.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2003.svg new file mode 100644 index 0000000..0db57c9 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2003.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2004.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2004.svg new file mode 100644 index 0000000..6ec30d6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2004.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2005.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2005.svg new file mode 100644 index 0000000..234edda --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2005.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2006.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2006.svg new file mode 100644 index 0000000..aa7ad0a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2006.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2007.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2007.svg new file mode 100644 index 0000000..449a3c4 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2007.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2029.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2029.svg new file mode 100644 index 0000000..7e0c67c --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2029.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2030.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2030.svg new file mode 100644 index 0000000..59d6e5a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2030.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2031.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2031.svg new file mode 100644 index 0000000..a517e94 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2031.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2032.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2032.svg new file mode 100644 index 0000000..05848d8 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2032.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2033.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2033.svg new file mode 100644 index 0000000..815c98c --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2033.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2050.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2050.svg new file mode 100644 index 0000000..393e8b2 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2050.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2051.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2051.svg new file mode 100644 index 0000000..b8e6133 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2051.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2052.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2052.svg new file mode 100644 index 0000000..6a68373 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2052.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2053.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2053.svg new file mode 100644 index 0000000..85417c2 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2053.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2054.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2054.svg new file mode 100644 index 0000000..040dbc3 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2054.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2070.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2070.svg new file mode 100644 index 0000000..8ff2960 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2070.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2071.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2071.svg new file mode 100644 index 0000000..090b0aa --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2071.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2072.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2072.svg new file mode 100644 index 0000000..8fd9e7c --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2072.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2073.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2073.svg new file mode 100644 index 0000000..0f1cc40 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2073.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2074.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2074.svg new file mode 100644 index 0000000..87ffaa3 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2074.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2075.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2075.svg new file mode 100644 index 0000000..243f0e1 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2075.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2076.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2076.svg new file mode 100644 index 0000000..2cde19f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2076.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2077.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2077.svg new file mode 100644 index 0000000..7587cf9 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2077.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2078.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2078.svg new file mode 100644 index 0000000..993893d --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2078.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2079.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2079.svg new file mode 100644 index 0000000..9f60056 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2079.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2080.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2080.svg new file mode 100644 index 0000000..19d181d --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2080.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2081.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2081.svg new file mode 100644 index 0000000..dc016b3 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2081.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2082.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2082.svg new file mode 100644 index 0000000..b46b251 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2082.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2083.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2083.svg new file mode 100644 index 0000000..dd730aa --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2083.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2084.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2084.svg new file mode 100644 index 0000000..fe9aaf4 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2084.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2085.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2085.svg new file mode 100644 index 0000000..5ad4117 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2085.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2100.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2100.svg new file mode 100644 index 0000000..06a3379 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2100.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2101.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2101.svg new file mode 100644 index 0000000..dc1e4f7 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2101.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2102.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2102.svg new file mode 100644 index 0000000..c669238 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2102.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2103.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2103.svg new file mode 100644 index 0000000..69142bb --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2103.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2104.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2104.svg new file mode 100644 index 0000000..c17aaf3 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2104.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2105.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2105.svg new file mode 100644 index 0000000..4bd7f83 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2105.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2106.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2106.svg new file mode 100644 index 0000000..6d2b09f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2106.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2107.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2107.svg new file mode 100644 index 0000000..ee9602b --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2107.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2108.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2108.svg new file mode 100644 index 0000000..1bc2bd6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2108.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2109.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2109.svg new file mode 100644 index 0000000..0fc99a2 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2109.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2111.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2111.svg new file mode 100644 index 0000000..73e82ae --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2111.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2120.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2120.svg new file mode 100644 index 0000000..d3b8b5d --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2120.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2121.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2121.svg new file mode 100644 index 0000000..d282d3d --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2121.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2122.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2122.svg new file mode 100644 index 0000000..80c4740 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2122.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2123.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2123.svg new file mode 100644 index 0000000..39b692e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2123.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2124.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2124.svg new file mode 100644 index 0000000..edba0a2 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2124.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2125.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2125.svg new file mode 100644 index 0000000..8eece54 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2125.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2126.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2126.svg new file mode 100644 index 0000000..abbf223 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2126.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2127.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2127.svg new file mode 100644 index 0000000..298108f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2127.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2128.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2128.svg new file mode 100644 index 0000000..843a5eb --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2128.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2129.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2129.svg new file mode 100644 index 0000000..addaf56 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2129.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2130.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2130.svg new file mode 100644 index 0000000..df294f1 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2130.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2131.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2131.svg new file mode 100644 index 0000000..265c5f6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2131.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2132.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2132.svg new file mode 100644 index 0000000..f0e5344 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2132.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2133.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2133.svg new file mode 100644 index 0000000..dd1aec0 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2133.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2134.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2134.svg new file mode 100644 index 0000000..24d8846 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2134.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2135.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2135.svg new file mode 100644 index 0000000..9bd2ae5 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2135.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2150.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2150.svg new file mode 100644 index 0000000..2f62269 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2150.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2151.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2151.svg new file mode 100644 index 0000000..78a04a9 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2151.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2152.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2152.svg new file mode 100644 index 0000000..be19f65 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2152.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2153.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2153.svg new file mode 100644 index 0000000..c2a0f29 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2153.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2154.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2154.svg new file mode 100644 index 0000000..5dd08ee --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2154.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2155.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2155.svg new file mode 100644 index 0000000..ea4bf54 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2155.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2156.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2156.svg new file mode 100644 index 0000000..7e8a21f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2156.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2157.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2157.svg new file mode 100644 index 0000000..d9cba84 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2157.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2158.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2158.svg new file mode 100644 index 0000000..78649a9 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2158.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2159.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2159.svg new file mode 100644 index 0000000..cdc4d82 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2159.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2160.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2160.svg new file mode 100644 index 0000000..50af78c --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2160.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2161.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2161.svg new file mode 100644 index 0000000..10d94a6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2161.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2162.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2162.svg new file mode 100644 index 0000000..bee6977 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2162.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2163.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2163.svg new file mode 100644 index 0000000..3917621 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2163.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2164.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2164.svg new file mode 100644 index 0000000..37cab87 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2164.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2165.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2165.svg new file mode 100644 index 0000000..c9d3df8 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2165.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2166.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2166.svg new file mode 100644 index 0000000..da8ad78 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2166.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2190.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2190.svg new file mode 100644 index 0000000..80584de --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2190.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2191.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2191.svg new file mode 100644 index 0000000..eea7488 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2191.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2192.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2192.svg new file mode 100644 index 0000000..6b43507 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2192.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2193.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2193.svg new file mode 100644 index 0000000..5c4a9d0 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2193.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2200.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2200.svg new file mode 100644 index 0000000..4670433 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2200.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2201.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2201.svg new file mode 100644 index 0000000..6efab12 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2201.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2202.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2202.svg new file mode 100644 index 0000000..e58a023 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2202.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2203.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2203.svg new file mode 100644 index 0000000..ef22be7 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2203.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2204.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2204.svg new file mode 100644 index 0000000..633600d --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2204.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2205.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2205.svg new file mode 100644 index 0000000..487da31 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2205.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2207.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2207.svg new file mode 100644 index 0000000..e633e5b --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2207.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2208.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2208.svg new file mode 100644 index 0000000..03da20d --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2208.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2209.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2209.svg new file mode 100644 index 0000000..1b77a50 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2209.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2210.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2210.svg new file mode 100644 index 0000000..23aec9b --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2210.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2211.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2211.svg new file mode 100644 index 0000000..2c05724 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2211.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2212.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2212.svg new file mode 100644 index 0000000..0bc1621 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2212.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2213.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2213.svg new file mode 100644 index 0000000..d4ff0e3 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2213.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2214.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2214.svg new file mode 100644 index 0000000..ce6daa6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2214.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2215.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2215.svg new file mode 100644 index 0000000..3b00639 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2215.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2216.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2216.svg new file mode 100644 index 0000000..88c40d7 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2216.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2217.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2217.svg new file mode 100644 index 0000000..98dc35b --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2217.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2218.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2218.svg new file mode 100644 index 0000000..833ab49 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2218.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2300.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2300.svg new file mode 100644 index 0000000..dbf3bec --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2300.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2301.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2301.svg new file mode 100644 index 0000000..1bd72fa --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2301.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2302.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2302.svg new file mode 100644 index 0000000..87df1b4 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2302.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2303.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2303.svg new file mode 100644 index 0000000..a0a5dab --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2303.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2304.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2304.svg new file mode 100644 index 0000000..4a3f01e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2304.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2305.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2305.svg new file mode 100644 index 0000000..73a797f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2305.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2306.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2306.svg new file mode 100644 index 0000000..31631aa --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2306.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2307.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2307.svg new file mode 100644 index 0000000..1ec69e7 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2307.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2308.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2308.svg new file mode 100644 index 0000000..32d9db1 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2308.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2309.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2309.svg new file mode 100644 index 0000000..21640bb --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2309.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2311.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2311.svg new file mode 100644 index 0000000..ae172f5 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2311.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2312.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2312.svg new file mode 100644 index 0000000..c5e5320 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2312.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2313.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2313.svg new file mode 100644 index 0000000..ac90056 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2313.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2314.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2314.svg new file mode 100644 index 0000000..10e7fb6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2314.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2315.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2315.svg new file mode 100644 index 0000000..32f99f6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2315.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2316.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2316.svg new file mode 100644 index 0000000..4841bdd --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2316.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2317.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2317.svg new file mode 100644 index 0000000..903299a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2317.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2318.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2318.svg new file mode 100644 index 0000000..eb3667a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2318.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2319.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2319.svg new file mode 100644 index 0000000..c3e387e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2319.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2320.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2320.svg new file mode 100644 index 0000000..685bebf --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2320.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2321.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2321.svg new file mode 100644 index 0000000..91ee16c --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2321.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2322.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2322.svg new file mode 100644 index 0000000..bee58cd --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2322.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2323.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2323.svg new file mode 100644 index 0000000..0480365 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2323.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2324.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2324.svg new file mode 100644 index 0000000..7d9db6d --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2324.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2325.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2325.svg new file mode 100644 index 0000000..57c8084 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2325.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2326.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2326.svg new file mode 100644 index 0000000..9d99f04 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2326.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2327.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2327.svg new file mode 100644 index 0000000..8e68119 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2327.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2328.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2328.svg new file mode 100644 index 0000000..252677e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2328.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2330.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2330.svg new file mode 100644 index 0000000..474c74d --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2330.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2331.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2331.svg new file mode 100644 index 0000000..f00559b --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2331.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2332.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2332.svg new file mode 100644 index 0000000..5d95372 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2332.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2333.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2333.svg new file mode 100644 index 0000000..58ed7da --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2333.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2341.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2341.svg new file mode 100644 index 0000000..185eef0 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2341.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2343.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2343.svg new file mode 100644 index 0000000..d44a28a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2343.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2345.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2345.svg new file mode 100644 index 0000000..8d3ada2 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2345.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2346.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2346.svg new file mode 100644 index 0000000..4607eb1 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2346.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2348.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2348.svg new file mode 100644 index 0000000..1b6944e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2348.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2349.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2349.svg new file mode 100644 index 0000000..386a3e8 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2349.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2350.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2350.svg new file mode 100644 index 0000000..7c05490 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2350.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2351.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2351.svg new file mode 100644 index 0000000..74b5eb8 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2351.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2352.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2352.svg new file mode 100644 index 0000000..9924426 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2352.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2353.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2353.svg new file mode 100644 index 0000000..fb480b4 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2353.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2354.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2354.svg new file mode 100644 index 0000000..1c92250 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2354.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2355.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2355.svg new file mode 100644 index 0000000..92b8540 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2355.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2356.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2356.svg new file mode 100644 index 0000000..3a2ffb0 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2356.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2357.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2357.svg new file mode 100644 index 0000000..57cb5d7 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2357.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2358.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2358.svg new file mode 100644 index 0000000..55c509b --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2358.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2359.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2359.svg new file mode 100644 index 0000000..b8ce8d4 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2359.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2360.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2360.svg new file mode 100644 index 0000000..91e4e3e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2360.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2361.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2361.svg new file mode 100644 index 0000000..f731066 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2361.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2362.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2362.svg new file mode 100644 index 0000000..e141b7f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2362.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2363.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2363.svg new file mode 100644 index 0000000..f69a147 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2363.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2364.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2364.svg new file mode 100644 index 0000000..dba246d --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2364.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2365.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2365.svg new file mode 100644 index 0000000..b22301e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2365.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2366.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2366.svg new file mode 100644 index 0000000..07e3d4a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2366.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2367.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2367.svg new file mode 100644 index 0000000..79bbbff --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2367.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2368.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2368.svg new file mode 100644 index 0000000..09a5345 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2368.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2369.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2369.svg new file mode 100644 index 0000000..fb5e7b5 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2369.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2370.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2370.svg new file mode 100644 index 0000000..6a6c308 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2370.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2371.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2371.svg new file mode 100644 index 0000000..b548764 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2371.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2372.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2372.svg new file mode 100644 index 0000000..1f2084f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2372.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2373.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2373.svg new file mode 100644 index 0000000..ca1c0b6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2373.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2374.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2374.svg new file mode 100644 index 0000000..341d923 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2374.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2375.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2375.svg new file mode 100644 index 0000000..16e6d50 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2375.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2376.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2376.svg new file mode 100644 index 0000000..8b27291 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2376.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2377.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2377.svg new file mode 100644 index 0000000..fe09b42 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2377.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2378.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2378.svg new file mode 100644 index 0000000..db5587b --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2378.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2379.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2379.svg new file mode 100644 index 0000000..ea7cfbe --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2379.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2380.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2380.svg new file mode 100644 index 0000000..2638ba5 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2380.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2381.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2381.svg new file mode 100644 index 0000000..4043048 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2381.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2382.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2382.svg new file mode 100644 index 0000000..768764a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2382.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2383.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2383.svg new file mode 100644 index 0000000..b54aec8 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2383.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2384.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2384.svg new file mode 100644 index 0000000..0fe5430 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2384.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2385.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2385.svg new file mode 100644 index 0000000..845881c --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2385.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2386.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2386.svg new file mode 100644 index 0000000..21583a6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2386.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2387.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2387.svg new file mode 100644 index 0000000..0e1055a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2387.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2388.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2388.svg new file mode 100644 index 0000000..7424b52 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2388.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2389.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2389.svg new file mode 100644 index 0000000..ecf82d3 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2389.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2390.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2390.svg new file mode 100644 index 0000000..85194ed --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2390.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2391.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2391.svg new file mode 100644 index 0000000..75cb711 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2391.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2392.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2392.svg new file mode 100644 index 0000000..b0f2e10 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2392.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2393.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2393.svg new file mode 100644 index 0000000..c5f8160 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2393.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2394.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2394.svg new file mode 100644 index 0000000..70b2078 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2394.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2395.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2395.svg new file mode 100644 index 0000000..4b0e634 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2395.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2396.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2396.svg new file mode 100644 index 0000000..246cfe9 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2396.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2397.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2397.svg new file mode 100644 index 0000000..5d11876 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2397.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2398.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2398.svg new file mode 100644 index 0000000..7b9888f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2398.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2399.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2399.svg new file mode 100644 index 0000000..3eb4246 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2399.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2400.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2400.svg new file mode 100644 index 0000000..5d98903 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2400.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2409.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2409.svg new file mode 100644 index 0000000..d4de888 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2409.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2411.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2411.svg new file mode 100644 index 0000000..c73b9be --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2411.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2412.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2412.svg new file mode 100644 index 0000000..40405d9 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2412.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2413.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2413.svg new file mode 100644 index 0000000..55f8e73 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2413.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2414.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2414.svg new file mode 100644 index 0000000..dda86d6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2414.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2415.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2415.svg new file mode 100644 index 0000000..ba163d7 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2415.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2416.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2416.svg new file mode 100644 index 0000000..7a34c89 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2416.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2417.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2417.svg new file mode 100644 index 0000000..22f8f22 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2417.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2418.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2418.svg new file mode 100644 index 0000000..f0b2ea1 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2418.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2419.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2419.svg new file mode 100644 index 0000000..64f7f3e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2419.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2420.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2420.svg new file mode 100644 index 0000000..9928b68 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2420.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2421.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2421.svg new file mode 100644 index 0000000..c36b000 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2421.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2422.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2422.svg new file mode 100644 index 0000000..a688a1f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2422.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2423.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2423.svg new file mode 100644 index 0000000..8fdd950 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2423.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2424.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2424.svg new file mode 100644 index 0000000..d618b99 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2424.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2425.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2425.svg new file mode 100644 index 0000000..b970315 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2425.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2426.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2426.svg new file mode 100644 index 0000000..1ea0713 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2426.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2501.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2501.svg new file mode 100644 index 0000000..edef801 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2501.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2502.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2502.svg new file mode 100644 index 0000000..166cbff --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2502.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2521.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2521.svg new file mode 100644 index 0000000..6654758 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2521.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2522.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2522.svg new file mode 100644 index 0000000..5263d49 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2522.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2523.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2523.svg new file mode 100644 index 0000000..2b82ccc --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2523.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2524.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2524.svg new file mode 100644 index 0000000..a02594d --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2524.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2525.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2525.svg new file mode 100644 index 0000000..dac5f63 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2525.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2526.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2526.svg new file mode 100644 index 0000000..5608b4e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2526.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2527.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2527.svg new file mode 100644 index 0000000..244e04f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2527.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2528.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2528.svg new file mode 100644 index 0000000..3ba2067 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2528.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2529.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2529.svg new file mode 100644 index 0000000..c76a339 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2529.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2530.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2530.svg new file mode 100644 index 0000000..8e76e76 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2530.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2531.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2531.svg new file mode 100644 index 0000000..f2aa91a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2531.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2532.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2532.svg new file mode 100644 index 0000000..1039ed1 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2532.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2550.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2550.svg new file mode 100644 index 0000000..23c3a03 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2550.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2551.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2551.svg new file mode 100644 index 0000000..bf180c0 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2551.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2552.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2552.svg new file mode 100644 index 0000000..deba591 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2552.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2553.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2553.svg new file mode 100644 index 0000000..d483ed4 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2553.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2554.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2554.svg new file mode 100644 index 0000000..47da238 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/2554.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/300-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/300-fill.svg new file mode 100644 index 0000000..1ee4a8b --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/300-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/300.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/300.svg new file mode 100644 index 0000000..4a70d96 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/300.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/301-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/301-fill.svg new file mode 100644 index 0000000..b0b043f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/301-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/301.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/301.svg new file mode 100644 index 0000000..50c116f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/301.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/302-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/302-fill.svg new file mode 100644 index 0000000..2a2f2e5 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/302-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/302.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/302.svg new file mode 100644 index 0000000..51c6536 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/302.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/303-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/303-fill.svg new file mode 100644 index 0000000..d92a701 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/303-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/303.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/303.svg new file mode 100644 index 0000000..64b5cf9 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/303.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/304-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/304-fill.svg new file mode 100644 index 0000000..bb4a8b4 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/304-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/304.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/304.svg new file mode 100644 index 0000000..167ed4f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/304.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/305-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/305-fill.svg new file mode 100644 index 0000000..788d595 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/305-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/305.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/305.svg new file mode 100644 index 0000000..5190dcd --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/305.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/306-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/306-fill.svg new file mode 100644 index 0000000..9eb78ac --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/306-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/306.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/306.svg new file mode 100644 index 0000000..e2fedd5 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/306.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/307-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/307-fill.svg new file mode 100644 index 0000000..a672532 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/307-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/307.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/307.svg new file mode 100644 index 0000000..73e3025 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/307.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/308-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/308-fill.svg new file mode 100644 index 0000000..22aba0f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/308-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/308.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/308.svg new file mode 100644 index 0000000..950f6e4 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/308.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/309-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/309-fill.svg new file mode 100644 index 0000000..dd03e77 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/309-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/309.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/309.svg new file mode 100644 index 0000000..5268dd1 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/309.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/310-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/310-fill.svg new file mode 100644 index 0000000..6d438c1 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/310-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/310.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/310.svg new file mode 100644 index 0000000..b1a16f4 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/310.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/311-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/311-fill.svg new file mode 100644 index 0000000..c1f4cd2 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/311-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/311.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/311.svg new file mode 100644 index 0000000..211cf25 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/311.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/312-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/312-fill.svg new file mode 100644 index 0000000..8f12212 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/312-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/312.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/312.svg new file mode 100644 index 0000000..d98270a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/312.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/313-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/313-fill.svg new file mode 100644 index 0000000..b2a5830 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/313-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/313.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/313.svg new file mode 100644 index 0000000..c32f953 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/313.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/314-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/314-fill.svg new file mode 100644 index 0000000..2c2ea76 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/314-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/314.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/314.svg new file mode 100644 index 0000000..a384dee --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/314.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/315-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/315-fill.svg new file mode 100644 index 0000000..e4bc831 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/315-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/315.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/315.svg new file mode 100644 index 0000000..68fba7d --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/315.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/316-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/316-fill.svg new file mode 100644 index 0000000..74a63b7 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/316-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/316.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/316.svg new file mode 100644 index 0000000..32119ec --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/316.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/317-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/317-fill.svg new file mode 100644 index 0000000..a7db999 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/317-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/317.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/317.svg new file mode 100644 index 0000000..c1b1d9e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/317.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/318-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/318-fill.svg new file mode 100644 index 0000000..1198ceb --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/318-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/318.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/318.svg new file mode 100644 index 0000000..8349d00 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/318.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/350-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/350-fill.svg new file mode 100644 index 0000000..bc33bc1 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/350-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/350.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/350.svg new file mode 100644 index 0000000..3639e45 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/350.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/351-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/351-fill.svg new file mode 100644 index 0000000..f497a28 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/351-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/351.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/351.svg new file mode 100644 index 0000000..35811eb --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/351.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/399-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/399-fill.svg new file mode 100644 index 0000000..6165118 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/399-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/399.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/399.svg new file mode 100644 index 0000000..01946d3 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/399.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/400-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/400-fill.svg new file mode 100644 index 0000000..8b2855e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/400-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/400.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/400.svg new file mode 100644 index 0000000..7e726e5 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/400.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/401-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/401-fill.svg new file mode 100644 index 0000000..9fccde0 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/401-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/401.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/401.svg new file mode 100644 index 0000000..8fe4027 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/401.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/402-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/402-fill.svg new file mode 100644 index 0000000..c3446d7 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/402-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/402.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/402.svg new file mode 100644 index 0000000..9ae768e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/402.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/403-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/403-fill.svg new file mode 100644 index 0000000..e801c0b --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/403-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/403.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/403.svg new file mode 100644 index 0000000..4707249 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/403.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/404-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/404-fill.svg new file mode 100644 index 0000000..fd74359 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/404-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/404.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/404.svg new file mode 100644 index 0000000..38e6570 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/404.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/405-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/405-fill.svg new file mode 100644 index 0000000..e9a5ef1 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/405-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/405.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/405.svg new file mode 100644 index 0000000..5b9f849 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/405.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/406-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/406-fill.svg new file mode 100644 index 0000000..d995ccb --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/406-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/406.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/406.svg new file mode 100644 index 0000000..4b83f04 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/406.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/407-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/407-fill.svg new file mode 100644 index 0000000..7e839fb --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/407-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/407.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/407.svg new file mode 100644 index 0000000..8a85a5f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/407.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/408-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/408-fill.svg new file mode 100644 index 0000000..ef30073 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/408-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/408.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/408.svg new file mode 100644 index 0000000..e40c728 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/408.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/409-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/409-fill.svg new file mode 100644 index 0000000..7810ae4 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/409-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/409.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/409.svg new file mode 100644 index 0000000..f03f720 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/409.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/410-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/410-fill.svg new file mode 100644 index 0000000..408854e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/410-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/410.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/410.svg new file mode 100644 index 0000000..a0d3f10 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/410.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/456-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/456-fill.svg new file mode 100644 index 0000000..edd6df4 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/456-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/456.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/456.svg new file mode 100644 index 0000000..c85ae19 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/456.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/457-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/457-fill.svg new file mode 100644 index 0000000..946990e --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/457-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/457.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/457.svg new file mode 100644 index 0000000..b5fdf64 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/457.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/499-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/499-fill.svg new file mode 100644 index 0000000..412acfe --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/499-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/499.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/499.svg new file mode 100644 index 0000000..c6c1111 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/499.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/500-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/500-fill.svg new file mode 100644 index 0000000..7f23e70 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/500-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/500.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/500.svg new file mode 100644 index 0000000..0fed18c --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/500.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/501-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/501-fill.svg new file mode 100644 index 0000000..4293cb4 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/501-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/501.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/501.svg new file mode 100644 index 0000000..4ff02b6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/501.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/502-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/502-fill.svg new file mode 100644 index 0000000..c77fc0a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/502-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/502.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/502.svg new file mode 100644 index 0000000..f0f0afb --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/502.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/503-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/503-fill.svg new file mode 100644 index 0000000..46775e3 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/503-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/503.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/503.svg new file mode 100644 index 0000000..c866876 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/503.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/504-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/504-fill.svg new file mode 100644 index 0000000..51b1f72 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/504-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/504.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/504.svg new file mode 100644 index 0000000..d65b694 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/504.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/507-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/507-fill.svg new file mode 100644 index 0000000..56d21bf --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/507-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/507.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/507.svg new file mode 100644 index 0000000..5c566db --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/507.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/508-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/508-fill.svg new file mode 100644 index 0000000..40e1d12 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/508-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/508.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/508.svg new file mode 100644 index 0000000..9794844 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/508.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/509-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/509-fill.svg new file mode 100644 index 0000000..f23ab92 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/509-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/509.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/509.svg new file mode 100644 index 0000000..15c4552 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/509.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/510-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/510-fill.svg new file mode 100644 index 0000000..98f8fe4 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/510-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/510.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/510.svg new file mode 100644 index 0000000..3eb2d13 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/510.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/511-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/511-fill.svg new file mode 100644 index 0000000..ada9420 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/511-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/511.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/511.svg new file mode 100644 index 0000000..44c91b3 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/511.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/512-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/512-fill.svg new file mode 100644 index 0000000..aaa7215 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/512-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/512.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/512.svg new file mode 100644 index 0000000..af48401 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/512.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/513-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/513-fill.svg new file mode 100644 index 0000000..95646d8 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/513-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/513.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/513.svg new file mode 100644 index 0000000..30e9382 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/513.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/514-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/514-fill.svg new file mode 100644 index 0000000..47af727 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/514-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/514.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/514.svg new file mode 100644 index 0000000..9167a40 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/514.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/515-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/515-fill.svg new file mode 100644 index 0000000..6ff6c6a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/515-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/515.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/515.svg new file mode 100644 index 0000000..36f0cc3 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/515.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/800.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/800.svg new file mode 100644 index 0000000..7a5f34d --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/800.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/801.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/801.svg new file mode 100644 index 0000000..87ad4b6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/801.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/802.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/802.svg new file mode 100644 index 0000000..2f02424 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/802.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/803.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/803.svg new file mode 100644 index 0000000..c713455 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/803.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/804.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/804.svg new file mode 100644 index 0000000..baab6b4 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/804.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/805.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/805.svg new file mode 100644 index 0000000..7601207 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/805.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/806.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/806.svg new file mode 100644 index 0000000..a0b70b6 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/806.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/807.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/807.svg new file mode 100644 index 0000000..3853402 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/807.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/900-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/900-fill.svg new file mode 100644 index 0000000..193c0b8 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/900-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/900.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/900.svg new file mode 100644 index 0000000..4991e01 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/900.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/901-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/901-fill.svg new file mode 100644 index 0000000..be28bd8 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/901-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/901.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/901.svg new file mode 100644 index 0000000..7f1fe14 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/901.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/999-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/999-fill.svg new file mode 100644 index 0000000..91d9d4f --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/999-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/999.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/999.svg new file mode 100644 index 0000000..865cc87 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/999.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/9999.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/9999.svg new file mode 100644 index 0000000..51a7425 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/9999.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/qweather-fill.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/qweather-fill.svg new file mode 100644 index 0000000..819aa6a --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/qweather-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/qweather.svg b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/qweather.svg new file mode 100644 index 0000000..6a7cd02 --- /dev/null +++ b/jpahefengweather/storage/QWeather-Icons-1.7.0/icons/qweather.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/jpahefengweather/storage/天气图标用法 b/jpahefengweather/storage/天气图标用法 new file mode 100644 index 0000000..f7efe9a --- /dev/null +++ b/jpahefengweather/storage/天气图标用法 @@ -0,0 +1,45 @@ +使用 +和风天气图标使用SVG格式,因此你可以通过多种方式进行使用,包括使用图标字体、以标签嵌入网页或当作图片处理,当然你也可以下载到本地进行再创作。 +对于和风天气的开发者来说,图标的文件名与天气数据中的icon或预警数据中的warning.type字段的返回值是一样的,因此你可以非常简单的将天气状况与图标进行匹配。 + +例如: now.icon = 301对应301.svg 或,warning.type = 1010对应1010.svg 或。关于和风天气开发服务中使用的图标代码和名称,请参考图标信息。 + +嵌入# +使用标签将图标嵌入到你的网站中。 + + +使用图片# +SVG格式的图标也可以被视为一张普通图片,就像平时一样在网页中使用标签插入图片。 + +QWeather Icons +图标字体# +和风天气图标提供了图标字体,像使用其他图标字体一样,你可以使用CDN或在本地导入字体样式。 + + + + + + + +
+ + It's raining and cold +
+ + +CSS# +你可以将SVG加入到你的CSS中,请注意SVG的颜色需要用%23代替# + +.someClass::after { + content: ""; + background-image: url("data:image/svg+xml,"); + background-repeat: no-repeat; +} +如果你已经引用了和风天气图标字体,你还可以这样使用: + +.someClass::before { + font-family: "qweather-icons" !important; + content: "\f110"; + } +自定义# +SVG是一种矢量图形,因此你可以自由的编辑它的样式,或者当你完成新的设计后,可以通过和风天气图标项目将这些图标进行压缩和创建字体文件。关于更多自定义的说明,请参考自定义文档。 \ No newline at end of file