SELECT 
  v.product_id, 
  v.feature_id, 
  v.value, 
  v.value_int, 
  v.variant_id, 
  f.feature_type, 
  fd.description, 
  fd.prefix, 
  fd.suffix, 
  vd.variant, 
  f.parent_id, 
  f.position, 
  gf.position as gposition 
FROM 
  cscart_product_features as f 
  LEFT JOIN cscart_product_features_values as v ON v.feature_id = f.feature_id 
  LEFT JOIN cscart_product_features_descriptions as fd ON fd.feature_id = v.feature_id 
  AND fd.lang_code = 'en' 
  LEFT JOIN cscart_product_feature_variants fv ON fv.variant_id = v.variant_id 
  LEFT JOIN cscart_product_feature_variant_descriptions as vd ON vd.variant_id = fv.variant_id 
  AND vd.lang_code = 'en' 
  LEFT JOIN cscart_product_features as gf ON gf.feature_id = f.parent_id 
  AND gf.feature_type = 'G' 
WHERE 
  f.status IN ('A') 
  AND v.product_id in (
    4013, 4067, 4219, 4215, 4170, 4172, 4166, 
    4085, 4198, 4173, 4222, 4217, 4174, 
    3988, 4084, 4089, 4083, 4168, 4201, 
    4162, 4223, 4090, 4078, 4202, 4216, 
    4221, 4011, 4171, 4169, 4175, 4220, 
    4199, 4082, 4200, 4214
  ) 
  AND f.display_on_catalog = 'Y' 
  AND (
    f.categories_path = '' 
    OR FIND_IN_SET(166, f.categories_path) 
    OR FIND_IN_SET(167, f.categories_path) 
    OR FIND_IN_SET(353, f.categories_path)
  ) 
  AND IF(
    f.parent_id, 
    (
      SELECT 
        status 
      FROM 
        cscart_product_features as df 
      WHERE 
        df.feature_id = f.parent_id
    ), 
    'A'
  ) IN ('A') 
  AND (
    v.variant_id != 0 
    OR (
      f.feature_type != 'C' 
      AND v.value != ''
    ) 
    OR (f.feature_type = 'C') 
    OR v.value_int != ''
  ) 
  AND v.lang_code = 'en' 
ORDER BY 
  fd.description, 
  fv.position

Query time 0.01472

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "886.13"
    },
    "ordering_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "nested_loop": [
        {
          "table": {
            "table_name": "v",
            "access_type": "range",
            "possible_keys": [
              "PRIMARY",
              "fl",
              "variant_id",
              "lang_code",
              "product_id",
              "fpl",
              "idx_product_feature_variant_id"
            ],
            "key": "idx_product_feature_variant_id",
            "used_key_parts": [
              "product_id"
            ],
            "key_length": "3",
            "rows_examined_per_scan": 1445,
            "rows_produced_per_join": 469,
            "filtered": "32.52",
            "index_condition": "(((`softwarepirmam_hewadelivard_cscart_4`.`v`.`product_id` in (4013,4067,4219,4215,4170,4172,4166,4085,4198,4173,4222,4217,4174,3988,4084,4089,4083,4168,4201,4162,4223,4090,4078,4202,4216,4221,4011,4171,4169,4175,4220,4199,4082,4200,4214)) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`lang_code` = 'en')) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`feature_id` is not null))",
            "cost_info": {
              "read_cost": "612.02",
              "eval_cost": "46.99",
              "prefix_cost": "659.01",
              "data_read_per_join": "363K"
            },
            "used_columns": [
              "feature_id",
              "product_id",
              "variant_id",
              "value",
              "value_int",
              "lang_code"
            ]
          }
        },
        {
          "table": {
            "table_name": "f",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY",
              "status"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "feature_id"
            ],
            "key_length": "3",
            "ref": [
              "softwarepirmam_hewadelivard_cscart_4.v.feature_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 44,
            "filtered": "9.53",
            "cost_info": {
              "read_cost": "117.46",
              "eval_cost": "4.48",
              "prefix_cost": "823.46",
              "data_read_per_join": "19K"
            },
            "used_columns": [
              "feature_id",
              "feature_type",
              "categories_path",
              "parent_id",
              "display_on_catalog",
              "status",
              "position"
            ],
            "attached_condition": "((`softwarepirmam_hewadelivard_cscart_4`.`f`.`status` = 'A') and (`softwarepirmam_hewadelivard_cscart_4`.`f`.`display_on_catalog` = 'Y') and ((`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path` = '') or (0 <> find_in_set(166,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(167,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(353,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`))) and (if(`softwarepirmam_hewadelivard_cscart_4`.`f`.`parent_id`,(/* select#2 */ select `softwarepirmam_hewadelivard_cscart_4`.`df`.`status` from `softwarepirmam_hewadelivard_cscart_4`.`cscart_product_features` `df` where (`softwarepirmam_hewadelivard_cscart_4`.`df`.`feature_id` = `softwarepirmam_hewadelivard_cscart_4`.`f`.`parent_id`)),'A') = 'A') and ((`softwarepirmam_hewadelivard_cscart_4`.`v`.`variant_id` <> 0) or ((`softwarepirmam_hewadelivard_cscart_4`.`f`.`feature_type` <> 'C') and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`value` <> '')) or (`softwarepirmam_hewadelivard_cscart_4`.`f`.`feature_type` = 'C') or (`softwarepirmam_hewadelivard_cscart_4`.`v`.`value_int` <> 0)))",
            "attached_subqueries": [
              {
                "dependent": true,
                "cacheable": false,
                "query_block": {
                  "select_id": 2,
                  "cost_info": {
                    "query_cost": "0.35"
                  },
                  "table": {
                    "table_name": "df",
                    "access_type": "eq_ref",
                    "possible_keys": [
                      "PRIMARY"
                    ],
                    "key": "PRIMARY",
                    "used_key_parts": [
                      "feature_id"
                    ],
                    "key_length": "3",
                    "ref": [
                      "softwarepirmam_hewadelivard_cscart_4.f.parent_id"
                    ],
                    "rows_examined_per_scan": 1,
                    "rows_produced_per_join": 1,
                    "filtered": "100.00",
                    "cost_info": {
                      "read_cost": "0.25",
                      "eval_cost": "0.10",
                      "prefix_cost": "0.35",
                      "data_read_per_join": "440"
                    },
                    "used_columns": [
                      "feature_id",
                      "status"
                    ]
                  }
                }
              }
            ]
          }
        },
        {
          "table": {
            "table_name": "fd",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "feature_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "softwarepirmam_hewadelivard_cscart_4.v.feature_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 44,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "11.19",
              "eval_cost": "4.48",
              "prefix_cost": "839.13",
              "data_read_per_join": "101K"
            },
            "used_columns": [
              "feature_id",
              "description",
              "prefix",
              "suffix",
              "lang_code"
            ]
          }
        },
        {
          "table": {
            "table_name": "fv",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "variant_id"
            ],
            "key_length": "3",
            "ref": [
              "softwarepirmam_hewadelivard_cscart_4.v.variant_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 44,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "11.19",
              "eval_cost": "4.48",
              "prefix_cost": "854.79",
              "data_read_per_join": "51K"
            },
            "used_columns": [
              "variant_id",
              "position"
            ]
          }
        },
        {
          "table": {
            "table_name": "vd",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "variant_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "softwarepirmam_hewadelivard_cscart_4.fv.variant_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 44,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "11.19",
              "eval_cost": "4.48",
              "prefix_cost": "870.46",
              "data_read_per_join": "135K"
            },
            "used_columns": [
              "variant_id",
              "variant",
              "lang_code"
            ]
          }
        },
        {
          "table": {
            "table_name": "gf",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "feature_id"
            ],
            "key_length": "3",
            "ref": [
              "softwarepirmam_hewadelivard_cscart_4.f.parent_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 44,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "11.19",
              "eval_cost": "4.48",
              "prefix_cost": "886.13",
              "data_read_per_join": "19K"
            },
            "used_columns": [
              "feature_id",
              "feature_type",
              "position"
            ],
            "attached_condition": "<if>(is_not_null_compl(gf), (`softwarepirmam_hewadelivard_cscart_4`.`gf`.`feature_type` = 'G'), true)"
          }
        }
      ]
    }
  }
}

Result

product_id feature_id value value_int variant_id feature_type description prefix suffix variant parent_id position gposition
4223 641 1655 S Aspect Ratio 3:2 0 30
4220 641 1647 S Aspect Ratio 16:9 0 30
4221 641 1655 S Aspect Ratio 3:2 0 30
4222 641 2070 S Aspect Ratio 16:10 0 30
4219 641 2070 S Aspect Ratio 16:10 0 30
3988 641 2070 S Aspect Ratio 16:10 0 30
4011 641 4968 S Aspect Ratio 16:9. 0 30
4013 641 4968 S Aspect Ratio 16:9. 0 30
4067 641 2070 S Aspect Ratio 16:10 0 30
4078 641 5049 S Aspect Ratio 16:10. 0 30
4082 641 5049 S Aspect Ratio 16:10. 0 30
4083 641 1647 S Aspect Ratio 16:9 0 30
4084 641 4968 S Aspect Ratio 16:9. 0 30
4085 641 1647 S Aspect Ratio 16:9 0 30
4089 641 1647 S Aspect Ratio 16:9 0 30
4090 641 1647 S Aspect Ratio 16:9 0 30
4162 641 5217 S Aspect Ratio 16 : 10 0 30
4166 641 1647 S Aspect Ratio 16:9 0 30
4168 641 2070 S Aspect Ratio 16:10 0 30
4169 641 1647 S Aspect Ratio 16:9 0 30
4170 641 2070 S Aspect Ratio 16:10 0 30
4171 641 2070 S Aspect Ratio 16:10 0 30
4172 641 2070 S Aspect Ratio 16:10 0 30
4173 641 2070 S Aspect Ratio 16:10 0 30
4174 641 2070 S Aspect Ratio 16:10 0 30
4175 641 2070 S Aspect Ratio 16:10 0 30
4198 641 5217 S Aspect Ratio 16 : 10 0 30
4199 641 2070 S Aspect Ratio 16:10 0 30
4200 641 2070 S Aspect Ratio 16:10 0 30
4201 641 2070 S Aspect Ratio 16:10 0 30
4202 641 2070 S Aspect Ratio 16:10 0 30
4214 641 2070 S Aspect Ratio 16:10 0 30
4215 641 2070 S Aspect Ratio 16:10 0 30
4216 641 2070 S Aspect Ratio 16:10 0 30
4217 641 2070 S Aspect Ratio 16:10 0 30
3988 653 4964 S Battery 41Wh to 53Wh, Up to 11 hours 0 100
4011 653 5040 S Battery Up to 8 hours. 0 100
4013 653 5040 S Battery Up to 8 hours. 0 100
4067 653 5054 S Battery 41Wh to 53Wh, Up to 11 hours. 0 100
4078 653 5054 S Battery 41Wh to 53Wh, Up to 11 hours. 0 100
4082 653 5054 S Battery 41Wh to 53Wh, Up to 11 hours. 0 100
4083 653 5155 S Battery 3 cell, 41 Wh, Up to 8 hours, fast charge support 0 100
4084 653 5160 S Battery 41 Wh, Up to 8–10 hours (depending on usage) 0 100
4085 653 5164 S Battery 41 Wh, Up to 8-10 hours (varies by usage) 0 100
4089 653 5164 S Battery 41 Wh, Up to 8-10 hours (varies by usage) 0 100
4090 653 4964 S Battery 41Wh to 53Wh, Up to 11 hours 0 100
4162 653 5221 S Battery 48 Wh (~13,043 mAh) 0 100
4166 653 5232 S Battery 11,081 mAh. 0 100
4168 653 5392 S Battery 6,140mAh 0 100
4169 653 5241 S Battery 41 Wh, up to 7 hours 0 100
4170 653 4964 S Battery 41Wh to 53Wh, Up to 11 hours 0 100
4171 653 5247 S Battery 41Wh, Up to 11 hours 0 100
4172 653 5249 S Battery 41Wh, Up to 10 hours 0 100
4173 653 5253 S Battery 43Wh, Up to 10 hours 0 100
4174 653 5253 S Battery 43Wh, Up to 10 hours 0 100
4175 653 5253 S Battery 43Wh, Up to 10 hours 0 100
4198 653 5309 S Battery 59 Wh 0 100
4199 653 5314 S Battery 55Wh, Up to 10 hours 0 100
4200 653 5247 S Battery 41Wh, Up to 11 hours 0 100
4201 653 5247 S Battery 41Wh, Up to 11 hours 0 100
4202 653 5314 S Battery 55Wh, Up to 10 hours 0 100
4214 653 5247 S Battery 41Wh, Up to 11 hours 0 100
4215 653 5351 S Battery 41Wh, Up to 16 hours 30 minutes (mixed usage), Up to 22 hours 45 minutes (video playback) 0 100
4216 653 5247 S Battery 41Wh, Up to 11 hours 0 100
4219 653 5247 S Battery 41Wh, Up to 11 hours 0 100
4223 653 5374 S Battery 4.27 Ah, Up to 12 hours 0 100
4220 653 5362 S Battery 56Wh, Up to 10 hours 0 100
4222 653 5371 S Battery 4.91 Ah, up to 11 hours 0 100
4217 653 5247 S Battery 41Wh, Up to 11 hours 0 100
4221 653 5368 S Battery 56Wh, Up to 12 hours 0 100
4223 657 4960 E Brand HP 0 0
4219 657 4960 E Brand HP 0 0
4220 657 4960 E Brand HP 0 0
4221 657 4960 E Brand HP 0 0
4217 657 4960 E Brand HP 0 0
4222 657 4960 E Brand HP 0 0
3988 657 4960 E Brand HP 0 0
4011 657 4960 E Brand HP 0 0
4013 657 4960 E Brand HP 0 0
4067 657 4960 E Brand HP 0 0
4078 657 4960 E Brand HP 0 0
4082 657 4960 E Brand HP 0 0
4083 657 4960 E Brand HP 0 0
4084 657 4960 E Brand HP 0 0
4085 657 4960 E Brand HP 0 0
4089 657 4960 E Brand HP 0 0
4090 657 4960 E Brand HP 0 0
4162 657 4960 E Brand HP 0 0
4166 657 4960 E Brand HP 0 0
4168 657 4960 E Brand HP 0 0
4169 657 4960 E Brand HP 0 0
4170 657 4960 E Brand HP 0 0
4171 657 4960 E Brand HP 0 0
4172 657 4960 E Brand HP 0 0
4173 657 4960 E Brand HP 0 0
4174 657 4960 E Brand HP 0 0
4175 657 4960 E Brand HP 0 0
4198 657 4960 E Brand HP 0 0
4199 657 4960 E Brand HP 0 0
4200 657 4960 E Brand HP 0 0
4201 657 4960 E Brand HP 0 0
4202 657 4960 E Brand HP 0 0
4214 657 4960 E Brand HP 0 0
4215 657 4960 E Brand HP 0 0
4216 657 4960 E Brand HP 0 0
3988 656 2077 S Color Grey 0 160
4011 656 1607 S Color silver 0 160
4013 656 1560 S Color Black 0 160
4067 656 2758 S Color Gold 0 160
4078 656 2077 S Color Grey 0 160
4082 656 2077 S Color Grey 0 160
4083 656 1607 S Color silver 0 160
4084 656 1607 S Color silver 0 160
4085 656 2758 S Color Gold 0 160
4089 656 1607 S Color silver 0 160
4090 656 2077 S Color Grey 0 160
4162 656 2077 S Color Grey 0 160
4166 656 1607 S Color silver 0 160
4168 656 1783 S Color Dark blue 0 160
4169 656 1783 S Color Dark blue 0 160
4170 656 1607 S Color silver 0 160
4171 656 1607 S Color silver 0 160
4172 656 1607 S Color silver 0 160
4173 656 1607 S Color silver 0 160
4174 656 1607 S Color silver 0 160
4175 656 1607 S Color silver 0 160
4198 656 1607 S Color silver 0 160
4199 656 1607 S Color silver 0 160
4200 656 1607 S Color silver 0 160
4201 656 1607 S Color silver 0 160
4202 656 1607 S Color silver 0 160
4214 656 2077 S Color Grey 0 160
4215 656 1783 S Color Dark blue 0 160
4216 656 2077 S Color Grey 0 160
4221 656 1889 S Color Dark Gray 0 160
4217 656 2077 S Color Grey 0 160
4222 656 1607 S Color silver 0 160
4220 656 1607 S Color silver 0 160
4223 656 1889 S Color Dark Gray 0 160
4219 656 2077 S Color Grey 0 160
4221 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
4220 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
4222 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
4223 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
4219 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
4217 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
3988 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
4011 659 5043 S Connectivity Wi-Fi 6, Bluetooth 5.3. 0 152
4013 659 5043 S Connectivity Wi-Fi 6, Bluetooth 5.3. 0 152
4067 659 5057 S Connectivity Wi-Fi 6E, Bluetooth 5.2. 0 152
4078 659 5057 S Connectivity Wi-Fi 6E, Bluetooth 5.2. 0 152
4082 659 5057 S Connectivity Wi-Fi 6E, Bluetooth 5.2. 0 152
4083 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4084 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4085 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4089 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4090 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
4162 659 5057 S Connectivity Wi-Fi 6E, Bluetooth 5.2. 0 152
4166 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4168 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
4169 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
4170 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
4171 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
4172 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4173 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4174 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4175 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4198 659 5311 S Connectivity Wi-Fi 6E (2×2) and Bluetooth 5.3 0 152
4199 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4200 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4201 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
4202 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
4214 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
4215 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
4216 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
4011 649 2250 S Display 15.6" 0 20
4013 649 2250 S Display 15.6" 0 20
4083 649 2250 S Display 15.6" 0 20
4084 649 2250 S Display 15.6" 0 20
4085 649 2250 S Display 15.6" 0 20
4089 649 2250 S Display 15.6" 0 20
4169 649 5237 S Display 16.1" 0 20
4221 649 2555 S Display 13.5" 0 20
4220 649 17.30 8929 S Display 17.3" 0 20
4223 649 2555 S Display 13.5" 0 20
4222 649 2136 S Display 14" 0 20
4217 649 2136 S Display 14" 0 20
4219 649 2136 S Display 14" 0 20
4090 649 2136 S Display 14" 0 20
4166 649 2136 S Display 14" 0 20
4172 649 2136 S Display 14" 0 20
4173 649 2136 S Display 14" 0 20
4174 649 2136 S Display 14" 0 20
4198 649 2136 S Display 14" 0 20
4199 649 2136 S Display 14" 0 20
4215 649 2136 S Display 14" 0 20
3988 649 2137 S Display 16" 0 20
4067 649 2137 S Display 16" 0 20
4078 649 2137 S Display 16" 0 20
4082 649 2137 S Display 16" 0 20
4162 649 2137 S Display 16" 0 20
4168 649 2137 S Display 16" 0 20
4170 649 2137 S Display 16" 0 20
4171 649 2137 S Display 16" 0 20
4175 649 2137 S Display 16" 0 20
4200 649 2137 S Display 16" 0 20
4201 649 2137 S Display 16" 0 20
4202 649 2137 S Display 16" 0 20
4214 649 2137 S Display 16" 0 20
4216 649 2137 S Display 16" 0 20
3988 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4011 647 5042 S Front Camera 720p HD webcam. 0 150
4013 647 5042 S Front Camera 720p HD webcam. 0 150
4067 647 5056 S Front Camera 1080p FHD webcam with privacy shutter. 0 150
4078 647 5056 S Front Camera 1080p FHD webcam with privacy shutter. 0 150
4082 647 5056 S Front Camera 1080p FHD webcam with privacy shutter. 0 150
4083 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
4084 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
4085 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
4089 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
4090 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4162 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4166 647 2254 S Front Camera 720p HD webcam 0 150
4168 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4169 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4170 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4171 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4172 647 2254 S Front Camera 720p HD webcam 0 150
4173 647 2254 S Front Camera 720p HD webcam 0 150
4174 647 2254 S Front Camera 720p HD webcam 0 150
4175 647 2254 S Front Camera 720p HD webcam 0 150
4199 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4200 647 5317 S Front Camera 1080p FHD webcam 0 150
4201 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4202 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4214 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4215 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4216 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4220 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4221 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4219 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4222 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4217 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
4223 647 5376 S Front Camera 2 × USB-C Thunderbolt 4, 1 × USB-A 3.2 Gen 1, 1 × Headphone/mic combo, 1 × microSD card reader, 1 × Power connector 0 150
4217 652 2253 S GPU Intel® Iris® Xe Graphics 0 80
4222 652 2253 S GPU Intel® Iris® Xe Graphics 0 80
4220 652 5361 S GPU NVIDIA RTX 3050 4GB 0 80
4219 652 2253 S GPU Intel® Iris® Xe Graphics 0 80
4223 652 2253 S GPU Intel® Iris® Xe Graphics 0 80
4221 652 2253 S GPU Intel® Iris® Xe Graphics 0 80
3988 652 2253 S GPU Intel® Iris® Xe Graphics 0 80
4011 652 5039 S GPU Intel® UHD Graphics (Shared). 0 80
4013 652 5039 S GPU Intel® UHD Graphics (Shared). 0 80
4067 652 5053 S GPU Intel® Iris® Xe Graphics. 0 80
4078 652 5053 S GPU Intel® Iris® Xe Graphics. 0 80
4082 652 5053 S GPU Intel® Iris® Xe Graphics. 0 80
4083 652 5154 S GPU NVIDIA® GeForce® MX570 2GB GDDR6 0 80
4084 652 5159 S GPU Intel® Iris® Xe Graphics (integrated) 0 80
4085 652 5159 S GPU Intel® Iris® Xe Graphics (integrated) 0 80
4089 652 5159 S GPU Intel® Iris® Xe Graphics (integrated) 0 80
4090 652 2253 S GPU Intel® Iris® Xe Graphics 0 80
4162 652 5220 S GPU Intel® Iris® Xe Graphics (integrated) – referred to as Intel® Graphics 0 80
4166 652 3051 S GPU Intel® Integrated Graphics 0 80
4168 652 3051 S GPU Intel® Integrated Graphics 0 80
4169 652 5240 S GPU NVIDIA® GeForce RTX™ 0 80
4170 652 5240 S GPU NVIDIA® GeForce RTX™ 0 80
4171 652 2253 S GPU Intel® Iris® Xe Graphics 0 80
4172 652 2253 S GPU Intel® Iris® Xe Graphics 0 80
4173 652 5252 S GPU AMD Radeon™ Graphics 0 80
4174 652 5252 S GPU AMD Radeon™ Graphics 0 80
4175 652 2253 S GPU Intel® Iris® Xe Graphics 0 80
4198 652 5308 S GPU AMD Radeon™ Graphics (integrated) 0 80
4199 652 5313 S GPU Shared Graphics 0 80
4200 652 2253 S GPU Intel® Iris® Xe Graphics 0 80
4201 652 2253 S GPU Intel® Iris® Xe Graphics 0 80
4202 652 2285 S GPU Integrated Intel® Iris® Xe Graphics 0 80
4214 652 5345 S GPU NVIDIA GeForce MX570 4GB 0 80
4215 652 5350 S GPU Intel® Arc™ 140V Graphics 0 80
4216 652 2253 S GPU Intel® Iris® Xe Graphics 0 80
3988 640 4049 S Operating System Windows 11 Pro K 0 10
4011 640 5033 S Operating System Windows 11 Pro K. 0 10
4013 640 5033 S Operating System Windows 11 Pro K. 0 10
4067 640 4049 S Operating System Windows 11 Pro K 0 10
4078 640 5033 S Operating System Windows 11 Pro K. 0 10
4082 640 5033 S Operating System Windows 11 Pro K. 0 10
4083 640 1794 S Operating System Android 14 0 10
4084 640 4049 S Operating System Windows 11 Pro K 0 10
4085 640 5162 S Operating System Windows 10 Pro K (upgradeable to Windows 11 Pro K) 0 10
4089 640 4049 S Operating System Windows 11 Pro K 0 10
4090 640 4049 S Operating System Windows 11 Pro K 0 10
4162 640 5215 S Operating System Windows 11 Pro (HP recommends Windows 11 Pro for business) 0 10
4166 640 4403 S Operating System Windows 11 Home 0 10
4168 640 4049 S Operating System Windows 11 Pro K 0 10
4169 640 4049 S Operating System Windows 11 Pro K 0 10
4170 640 4049 S Operating System Windows 11 Pro K 0 10
4171 640 4049 S Operating System Windows 11 Pro K 0 10
4172 640 2257 S Operating System Windows 11 0 10
4173 640 2257 S Operating System Windows 11 0 10
4174 640 2257 S Operating System Windows 11 0 10
4175 640 2257 S Operating System Windows 11 0 10
4198 640 2257 S Operating System Windows 11 0 10
4199 640 2257 S Operating System Windows 11 0 10
4200 640 2257 S Operating System Windows 11 0 10
4201 640 2257 S Operating System Windows 11 0 10
4202 640 2257 S Operating System Windows 11 0 10
4214 640 4049 S Operating System Windows 11 Pro K 0 10
4215 640 4403 S Operating System Windows 11 Home 0 10
4216 640 2274 S Operating System Windows 11 Pro 0 10
4217 640 4049 S Operating System Windows 11 Pro K 0 10
4223 640 2274 S Operating System Windows 11 Pro 0 10
4222 640 2274 S Operating System Windows 11 Pro 0 10
4219 640 2274 S Operating System Windows 11 Pro 0 10
4220 640 4403 S Operating System Windows 11 Home 0 10
4221 640 2274 S Operating System Windows 11 Pro 0 10
4217 645 5354 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (1 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4219 645 5236 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 3 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (2.5 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4220 645 5363 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz), 1 × RJ-45 Ethernet port, 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4221 645 5369 S Ports 2 × Thunderbolt 4 / USB4 Type-C (with Power Delivery), 1 × USB-A 3.2 Gen 2, 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4223 645 5375 S Ports 2 × USB-C Thunderbolt 4, 1 × USB-A 3.2 Gen 1, 1 × Headphone/mic combo, 1 × microSD card reader, 1 × Power connector 0 110
4222 645 5372 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1, 1 × RJ-45 Ethernet port, 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
3988 645 4965 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 3 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (2.5 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4011 645 5041 S Ports 2 × USB-A 3.2 Gen 1, 1 × USB-C, 1 × HDMI 1.4b, 1 × RJ-45 Ethernet port, 1 × 3.5 mm combo audio jack, 1 × Power connector. 0 110
4013 645 5041 S Ports 2 × USB-A 3.2 Gen 1, 1 × USB-C, 1 × HDMI 1.4b, 1 × RJ-45 Ethernet port, 1 × 3.5 mm combo audio jack, 1 × Power connector. 0 110
4067 645 5055 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 3 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (2.5 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector. 0 110
4078 645 5149 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 3 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (2.5 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector. 0 110
4082 645 5055 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 3 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (2.5 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector. 0 110
4083 645 5156 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (2.5 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4084 645 5161 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.0b, 1 × RJ-45 Ethernet port (1 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4085 645 5161 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.0b, 1 × RJ-45 Ethernet port (1 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4089 645 5166 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.0, 1 × RJ-45 Ethernet port (1 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4090 645 5170 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (2.5 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4162 645 5390 S Ports 2 × USB‑C (USB 3.2 Gen 2×2), 1 x USB Power Delivery, 1 x DisplayPort 1.4 support, 1 x HP Sleep and Charge capability 0 110
4166 645 5233 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI, 1 × 3.5 mm combo audio jack 0 110
4168 645 5236 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 3 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (2.5 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4169 645 5236 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 3 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (2.5 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4170 645 5236 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 3 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (2.5 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4171 645 5236 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 3 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (2.5 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4172 645 5250 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.0, 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4173 645 5250 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.0, 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4174 645 5250 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.0, 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4175 645 5250 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.0, 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4198 645 5310 S Ports 1 × USB-C (10 Gbps; Power Delivery, DisplayPort 1.4, HP Sleep & Charge), 2 × USB-A 5 Gbps, 1 × HDMI 2.1, 1 × headphone/microphone combo, 1 × AC smart pin (power connector), 1 × micro-SD card reader 0 110
4199 645 5315 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort & Power Delivery), 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1, 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4200 645 5316 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1, 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4201 645 5318 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4202 645 5323 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 60 Hz), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4214 645 5236 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 3 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (2.5 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4215 645 5149 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 3 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (2.5 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector. 0 110
4216 645 5236 S Ports 1 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 1 × USB-C 3.2 Gen 1, 3 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 4K @ 120 Hz / 8K @ 60 Hz), 1 × RJ-45 Ethernet port (2.5 GbE), 1 × 3.5 mm combo audio jack, 1 × Power connector 0 110
4011 651 4140 S Processor Intel® Core™ i3 0 60
4013 651 2251 S Processor Intel® Core™ i5 0 60
4083 651 2251 S Processor Intel® Core™ i5 0 60
4089 651 2251 S Processor Intel® Core™ i5 0 60
4166 651 2251 S Processor Intel® Core™ i5 0 60
4169 651 2251 S Processor Intel® Core™ i5 0 60
4084 651 2854 S Processor Intel® Core™ i7 0 60
4085 651 2854 S Processor Intel® Core™ i7 0 60
4221 651 2854 S Processor Intel® Core™ i7 0 60
4223 651 2854 S Processor Intel® Core™ i7 0 60
3988 651 5911 S Processor Intel® Core™ Ultra 5 0 60
4067 651 5911 S Processor Intel® Core™ Ultra 5 0 60
4078 651 5911 S Processor Intel® Core™ Ultra 5 0 60
4082 651 5911 S Processor Intel® Core™ Ultra 5 0 60
4090 651 5911 S Processor Intel® Core™ Ultra 5 0 60
4162 651 5911 S Processor Intel® Core™ Ultra 5 0 60
4168 651 5911 S Processor Intel® Core™ Ultra 5 0 60
4172 651 5911 S Processor Intel® Core™ Ultra 5 0 60
4175 651 5911 S Processor Intel® Core™ Ultra 5 0 60
4200 651 5911 S Processor Intel® Core™ Ultra 5 0 60
4201 651 5911 S Processor Intel® Core™ Ultra 5 0 60
4202 651 5911 S Processor Intel® Core™ Ultra 5 0 60
4170 651 2276 S Processor Intel® Core™ Ultra 7 0 60
4171 651 2276 S Processor Intel® Core™ Ultra 7 0 60
4214 651 2276 S Processor Intel® Core™ Ultra 7 0 60
4215 651 2276 S Processor Intel® Core™ Ultra 7 0 60
4216 651 2276 S Processor Intel® Core™ Ultra 7 0 60
4219 651 2276 S Processor Intel® Core™ Ultra 7 0 60
4220 651 2276 S Processor Intel® Core™ Ultra 7 0 60
4217 651 2276 S Processor Intel® Core™ Ultra 7 0 60
4222 651 2276 S Processor Intel® Core™ Ultra 7 0 60
4173 651 4354 S Processor AMD Ryzen 5 0 60
4174 651 4354 S Processor AMD Ryzen 5 0 60
4198 651 5700 S Processor AMD Ryzen 7 0 60
4199 651 5700 S Processor AMD Ryzen 7 0 60
4011 643 1526 S Ram 8GB 0 70
4013 643 1526 S Ram 8GB 0 70
4083 643 1526 S Ram 8GB 0 70
4084 643 1526 S Ram 8GB 0 70
4085 643 1526 S Ram 8GB 0 70
4090 643 1526 S Ram 8GB 0 70
4166 643 1526 S Ram 8GB 0 70
4170 643 1526 S Ram 8GB 0 70
4175 643 1526 S Ram 8GB 0 70
4200 643 1526 S Ram 8GB 0 70
4201 643 1526 S Ram 8GB 0 70
4202 643 1526 S Ram 8GB 0 70
3988 643 1592 S Ram 16GB 0 70
4067 643 1592 S Ram 16GB 0 70
4078 643 1592 S Ram 16GB 0 70
4082 643 1592 S Ram 16GB 0 70
4089 643 1592 S Ram 16GB 0 70
4162 643 1592 S Ram 16GB 0 70
4168 643 1592 S Ram 16GB 0 70
4169 643 1592 S Ram 16GB 0 70
4171 643 1592 S Ram 16GB 0 70
4172 643 1592 S Ram 16GB 0 70
4173 643 1592 S Ram 16GB 0 70
4174 643 1592 S Ram 16GB 0 70
4198 643 1592 S Ram 16GB 0 70
4199 643 1592 S Ram 16GB 0 70
4215 643 1592 S Ram 16GB 0 70
4216 643 1592 S Ram 16GB 0 70
4217 643 1592 S Ram 16GB 0 70
4222 643 1592 S Ram 16GB 0 70
4223 643 1592 S Ram 16GB 0 70
4221 643 1592 S Ram 16GB 0 70
4220 643 2117 S Ram 32GB 0 70
4219 643 2117 S Ram 32GB 0 70
4214 643 2117 S Ram 32GB 0 70
3988 650 1539 S Refresh Rate 60Hz 0 40
4011 650 5035 S Refresh Rate 60Hz. 0 40
4013 650 5035 S Refresh Rate 60Hz. 0 40
4067 650 5035 S Refresh Rate 60Hz. 0 40
4078 650 5035 S Refresh Rate 60Hz. 0 40
4082 650 5035 S Refresh Rate 60Hz. 0 40
4083 650 1539 S Refresh Rate 60Hz 0 40
4084 650 1539 S Refresh Rate 60Hz 0 40
4085 650 1539 S Refresh Rate 60Hz 0 40
4089 650 1539 S Refresh Rate 60Hz 0 40
4090 650 1539 S Refresh Rate 60Hz 0 40
4162 650 5218 S Refresh Rate 60 Hz 0 40
4166 650 1539 S Refresh Rate 60Hz 0 40
4168 650 1539 S Refresh Rate 60Hz 0 40
4169 650 1541 S Refresh Rate 144Hz 0 40
4170 650 1539 S Refresh Rate 60Hz 0 40
4171 650 1539 S Refresh Rate 60Hz 0 40
4172 650 1539 S Refresh Rate 60Hz 0 40
4173 650 1539 S Refresh Rate 60Hz 0 40
4174 650 1539 S Refresh Rate 60Hz 0 40
4175 650 1539 S Refresh Rate 60Hz 0 40
4198 650 5218 S Refresh Rate 60 Hz 0 40
4199 650 1539 S Refresh Rate 60Hz 0 40
4200 650 1539 S Refresh Rate 60Hz 0 40
4201 650 1539 S Refresh Rate 60Hz 0 40
4202 650 5320 S Refresh Rate 16:10 0 40
4214 650 1539 S Refresh Rate 60Hz 0 40
4215 650 5347 S Refresh Rate 60 Hz 0 40
4216 650 1539 S Refresh Rate 60Hz 0 40
4222 650 1539 S Refresh Rate 60Hz 0 40
4219 650 1539 S Refresh Rate 60Hz 0 40
4221 650 1539 S Refresh Rate 60Hz 0 40
4217 650 1539 S Refresh Rate 60Hz 0 40
4220 650 1539 S Refresh Rate 60Hz 0 40
4223 650 1539 S Refresh Rate 60Hz 0 40
4217 642 2275 S Resolution 1920 x 1200 0 50
4220 642 4211 S Resolution 1920 x 1080 0 50
4219 642 2275 S Resolution 1920 x 1200 0 50
4223 642 5373 S Resolution 2256 × 1504 0 50
4221 642 5365 S Resolution 2256 x 1504 0 50
4222 642 2275 S Resolution 1920 x 1200 0 50
3988 642 2275 S Resolution 1920 x 1200 0 50
4011 642 5036 S Resolution 1920 × 1080. 0 50
4013 642 5036 S Resolution 1920 × 1080. 0 50
4067 642 5141 S Resolution 1920 x 1200. 0 50
4078 642 5141 S Resolution 1920 x 1200. 0 50
4082 642 5141 S Resolution 1920 x 1200. 0 50
4083 642 4211 S Resolution 1920 x 1080 0 50
4084 642 4211 S Resolution 1920 x 1080 0 50
4085 642 4211 S Resolution 1920 x 1080 0 50
4089 642 4211 S Resolution 1920 x 1080 0 50
4090 642 4211 S Resolution 1920 x 1080 0 50
4162 642 5219 S Resolution 1920 × 1200 0 50
4166 642 4211 S Resolution 1920 x 1080 0 50
4168 642 2275 S Resolution 1920 x 1200 0 50
4169 642 4211 S Resolution 1920 x 1080 0 50
4170 642 2275 S Resolution 1920 x 1200 0 50
4171 642 2275 S Resolution 1920 x 1200 0 50
4172 642 2275 S Resolution 1920 x 1200 0 50
4173 642 2275 S Resolution 1920 x 1200 0 50
4174 642 2275 S Resolution 1920 x 1200 0 50
4175 642 2275 S Resolution 1920 x 1200 0 50
4198 642 5219 S Resolution 1920 × 1200 0 50
4199 642 2275 S Resolution 1920 x 1200 0 50
4200 642 2275 S Resolution 1920 x 1200 0 50
4201 642 2275 S Resolution 1920 x 1200 0 50
4202 642 5321 S Resolution 2880 x 1800 0 50
4214 642 2275 S Resolution 1920 x 1200 0 50
4215 642 5321 S Resolution 2880 x 1800 0 50
4216 642 2275 S Resolution 1920 x 1200 0 50
3988 648 1563 S Storage 512GB 0 170
4011 648 1563 S Storage 512GB 0 170
4013 648 1563 S Storage 512GB 0 170
4067 648 1563 S Storage 512GB 0 170
4078 648 1563 S Storage 512GB 0 170
4082 648 1563 S Storage 512GB 0 170
4083 648 1563 S Storage 512GB 0 170
4084 648 1563 S Storage 512GB 0 170
4085 648 1563 S Storage 512GB 0 170
4089 648 1563 S Storage 512GB 0 170
4090 648 1563 S Storage 512GB 0 170
4162 648 1563 S Storage 512GB 0 170
4166 648 1563 S Storage 512GB 0 170
4168 648 1563 S Storage 512GB 0 170
4169 648 1563 S Storage 512GB 0 170
4170 648 1563 S Storage 512GB 0 170
4171 648 1563 S Storage 512GB 0 170
4172 648 1563 S Storage 512GB 0 170
4174 648 1563 S Storage 512GB 0 170
4175 648 1563 S Storage 512GB 0 170
4216 648 1563 S Storage 512GB 0 170
4217 648 1563 S Storage 512GB 0 170
4221 648 1563 S Storage 512GB 0 170
4222 648 1563 S Storage 512GB 0 170
4223 648 1564 S Storage 1TB 0 170
4220 648 1564 S Storage 1TB 0 170
4219 648 1564 S Storage 1TB 0 170
4173 648 1564 S Storage 1TB 0 170
4198 648 1564 S Storage 1TB 0 170
4199 648 1564 S Storage 1TB 0 170
4200 648 1564 S Storage 1TB 0 170
4201 648 1564 S Storage 1TB 0 170
4202 648 1564 S Storage 1TB 0 170
4214 648 1564 S Storage 1TB 0 170
4215 648 1564 S Storage 1TB 0 170