وِکیٖپیٖڈیا kswiki https://ks.wikipedia.org/wiki/%D8%A7%D9%8E%DB%81%D9%8E%D9%85_%D8%B5%D9%8E%D9%81%DB%81%D9%95 MediaWiki 1.47.0-wmf.17 first-letter میڈیا خاص کَتھ رُکُن رُکُن کَتھ وِکیٖپیٖڈیا وِکیٖپیٖڈیا کَتھ فَیِل فَیِل کَتھ میٖڈیاوِکی میٖڈیاوِکی کَتھ فرما فرما کَتھ مَدَتھ مَدَتھ کَتھ زٲژ زٲژ کَتھ TimedText TimedText talk Module Module talk Event Event talk Module:Convert 828 7135 150719 37291 2026-08-29T09:10:54Z آیات محراج 11062 Updated 150719 Scribunto text/plain -- Convert a value from one unit of measurement to another. -- Example: {{convert|123|lb|kg}} --> 123 pounds (56 kg) -- See [[:en:Template:Convert/Transwiki guide]] if copying to another wiki. local MINUS = '−' -- Unicode U+2212 MINUS SIGN (UTF-8: e2 88 92) local abs = math.abs local floor = math.floor local format = string.format local log10 = math.log10 local ustring = mw.ustring local ulen = ustring.len local usub = ustring.sub -- Configuration options to keep magic values in one location. -- Conversion data and message text are defined in separate modules. local config, maxsigfig local numdot -- must be '.' or ',' or a character which works in a regex local numsep, numsep_remove, numsep_remove2 local data_code, all_units local text_code local varname -- can be a code to use variable names that depend on value local from_en_table -- to translate an output string of en digits to local language local to_en_table -- to translate an input string of digits in local language to en -- Use translation_table in convert/text to change the following. local en_default -- true uses lang=en unless convert has lang=local or local digits local group_method = 3 -- code for how many digits are in a group local per_word = 'per' -- for units like "liters per kilometer" local plural_suffix = 's' -- only other useful value is probably '' to disable plural unit names local omitsep -- true to omit separator before local symbol/name -- All units should be defined in the data module. However, to cater for quick changes -- and experiments, any unknown unit is looked up in an extra data module, if it exists. -- That module would be transcluded in only a small number of pages, so there should be -- little server overhead from making changes, and changes should propagate quickly. local extra_module -- name of module with extra units local extra_units -- nil or table of extra units from extra_module -- Some options in the invoking template can set variables used later in the module. local currency_text -- for a user-defined currency symbol: {{convert|12|$/ha|$=€}} (euro replaces dollar) local function from_en(text) -- Input is a string representing a number in en digits with '.' decimal mark, -- without digit grouping (which is done just after calling this). -- Return the translation of the string with numdot and digits in local language. if numdot ~= '.' then text = text:gsub('%.', numdot) end if from_en_table then text = text:gsub('%d', from_en_table) end return text end local function to_en(text) -- Input is a string representing a number in the local language with -- an optional numdot decimal mark and numsep digit grouping. -- Return the translation of the string with '.' mark and en digits, -- and no separators (they have to be removed here to handle cases like -- numsep = '.' and numdot = ',' with input "1.234.567,8"). if to_en_table then text = ustring.gsub(text, '%d', to_en_table) end if numsep_remove then text = text:gsub(numsep_remove, '') end if numsep_remove2 then text = text:gsub(numsep_remove2, '') end if numdot ~= '.' then text = text:gsub(numdot, '.') end return text end local function decimal_mark(text) -- Return ',' if text probably is using comma for decimal mark, or has no decimal mark. -- Return '.' if text probably is using dot for decimal mark. -- Otherwise return nothing (decimal mark not known). if not text:find('[.,]') then return ',' end text = text:gsub('^%-', ''):gsub('%+%d+/%d+$', ''):gsub('[Ee]%-?%d+$', '') local decimal = text:match('^0?([.,])%d+$') or text:match('%d([.,])%d?%d?$') or text:match('%d([.,])%d%d%d%d+$') if decimal then return decimal end if text:match('%.%d+%.') then return ',' end if text:match('%,%d+,') then return '.' end end local add_warning, with_separator -- forward declarations local function to_en_with_check(text, parms) -- Version of to_en() for a wiki using numdot = ',' and numsep = '.' to check -- text (an input number as a string) which might have been copied from enwiki. -- For example, in '1.234' the '.' could be a decimal mark or a group separator. -- From viwiki. if to_en_table then text = ustring.gsub(text, '%d', to_en_table) end if decimal_mark(text) == '.' then local original = text text = text:gsub(',', '') -- for example, interpret "1,234.5" as an enwiki value if parms then add_warning(parms, 0, 'cvt_enwiki_num', original, with_separator({}, text)) end else if numsep_remove then text = text:gsub(numsep_remove, '') end if numsep_remove2 then text = text:gsub(numsep_remove2, '') end if numdot ~= '.' then text = text:gsub(numdot, '.') end end return text end local function omit_separator(id) -- Return true if there should be no separator before id (a unit symbol or name). -- For zhwiki, there should be no separator if id uses local characters. -- The following kludge should be a sufficient test. if omitsep then if id:sub(1, 2) == '-{' then -- for "-{...}-" content language variant return true end if id:byte() > 127 then local first = usub(id, 1, 1) if first ~= 'Å' and first ~= '°' and first ~= 'µ' then return true end end end return id:sub(1, 1) == '/' -- no separator before units like "/ha" end local spell_module -- name of module that can spell numbers local speller -- function from that module to handle spelling (set if needed) local wikidata_module, wikidata_data_module -- names of Wikidata modules local wikidata_code, wikidata_data -- exported tables from those modules (set if needed) local function set_config(args) -- Set configuration options from template #invoke or defaults. config = args maxsigfig = config.maxsigfig or 14 -- maximum number of significant figures local data_module, text_module local sandbox = config.sandbox and ('/' .. config.sandbox) or '' data_module = "Module:Convert/data" .. sandbox text_module = "Module:Convert/text" .. sandbox extra_module = "Module:Convert/extra" .. sandbox wikidata_module = "Module:Convert/wikidata" .. sandbox wikidata_data_module = "Module:Convert/wikidata/data" .. sandbox spell_module = "Module:ConvertNumeric" data_code = mw.loadData(data_module) text_code = mw.loadData(text_module) all_units = data_code.all_units local translation = text_code.translation_table if translation then numdot = translation.numdot numsep = translation.numsep if numdot == ',' and numsep == '.' then if text_code.all_messages.cvt_enwiki_num then to_en = to_en_with_check end end if translation.group then group_method = translation.group end if translation.per_word then per_word = translation.per_word end if translation.plural_suffix then plural_suffix = translation.plural_suffix end varname = translation.varname from_en_table = translation.from_en local use_workaround = true if use_workaround then -- 2013-07-05 workaround bug by making a copy of the required table. -- mw.ustring.gsub fails with a table (to_en_table) as the replacement, -- if the table is accessed via mw.loadData. local source = translation.to_en if source then to_en_table = {} for k, v in pairs(source) do to_en_table[k] = v end end else to_en_table = translation.to_en end if translation.lang == 'en default' then en_default = true -- for hiwiki end omitsep = translation.omitsep -- for zhwiki end numdot = config.numdot or numdot or '.' -- decimal mark before fractional digits numsep = config.numsep or numsep or ',' -- group separator for numbers -- numsep should be ',' or '.' or '' or '&nbsp;' or a Unicode character. -- numsep_remove must work in a regex to identify separators to be removed. if numsep ~= '' then numsep_remove = (numsep == '.') and '%.' or numsep end if numsep ~= ',' and numdot ~= ',' then numsep_remove2 = ',' -- so numbers copied from enwiki will work end end local function collection() -- Return a table to hold items. return { n = 0, add = function (self, item) self.n = self.n + 1 self[self.n] = item end, } end local function divide(numerator, denominator) -- Return integers quotient, remainder resulting from dividing the two -- given numbers, which should be unsigned integers. local quotient, remainder = floor(numerator / denominator), numerator % denominator if not (0 <= remainder and remainder < denominator) then -- Floating point limits may need this, as in {{convert|160.02|Ym|ydftin}}. remainder = 0 end return quotient, remainder end local function split(text, delimiter) -- Return a numbered table with fields from splitting text. -- The delimiter is used in a regex without escaping (for example, '.' would fail). -- Each field has any leading/trailing whitespace removed. local t = {} text = text .. delimiter -- to get last item for item in text:gmatch('%s*(.-)%s*' .. delimiter) do table.insert(t, item) end return t end local function strip(text) -- If text is a string, return its content with no leading/trailing -- whitespace. Otherwise return nil (a nil argument gives a nil result). if type(text) == 'string' then return text:match("^%s*(.-)%s*$") end end local function table_len(t) -- Return length (<100) of a numbered table to replace #t which is -- documented to not work if t is accessed via mw.loadData(). for i = 1, 100 do if t[i] == nil then return i - 1 end end end local function wanted_category(catkey, catsort, want_warning) -- Return message category if it is wanted in current namespace, -- otherwise return ''. local cat local title = mw.title.getCurrentTitle() if title then local nsdefault = '0' -- default namespace: '0' = article; '0,10' = article and template local namespace = title.namespace for _, v in ipairs(split(config.nscat or nsdefault, ',')) do if namespace == tonumber(v) then cat = text_code.all_categories[want_warning and 'warning' or catkey] if catsort and catsort ~= '' and cat:sub(-2) == ']]' then cat = cat:sub(1, -3) .. '|' .. mw.text.nowiki(usub(catsort, 1, 20)) .. ']]' end break end end end return cat or '' end local function message(parms, mcode, is_warning) -- Return wikitext for an error message, including category if specified -- for the message type. -- mcode = numbered table specifying the message: -- mcode[1] = 'cvt_xxx' (string used as a key to get message info) -- mcode[2] = 'parm1' (string to replace '$1' if any in message) -- mcode[3] = 'parm2' (string to replace '$2' if any in message) -- mcode[4] = 'parm3' (string to replace '$3' if any in message) local msg if type(mcode) == 'table' then if mcode[1] == 'cvt_no_output' then -- Some errors should cause convert to output an empty string, -- for example, for an optional field in an infobox. return '' end msg = text_code.all_messages[mcode[1]] end parms.have_problem = true local function subparm(fmt, ...) local rep = {} for i, v in ipairs({...}) do rep['$' .. i] = v end return (fmt:gsub('$%d+', rep)) end if msg then local parts = {} local regex, replace = msg.regex, msg.replace for i = 1, 3 do local limit = 40 local s = mcode[i + 1] if s then if regex and replace then s = s:gsub(regex, replace) limit = nil -- allow long "should be" messages end -- Escape user input so it does not break the message. -- To avoid tags (like {{convert|1<math>23</math>|m}}) breaking -- the mouseover title, any strip marker starting with char(127) is -- replaced with '...' (text not needing i18n). local append local pos = s:find(string.char(127), 1, true) if pos then append = '...' s = s:sub(1, pos - 1) end if limit and ulen(s) > limit then s = usub(s, 1, limit) append = '...' end s = mw.text.nowiki(s) .. (append or '') else s = '?' end parts['$' .. i] = s end local function ispreview() -- Return true if a prominent message should be shown. if parms.test == 'preview' or parms.test == 'nopreview' then -- For testing, can preview a real message or simulate a preview -- when running automated tests. return parms.test == 'preview' end local success, revid = pcall(function () return (parms.frame):preprocess('{{REVISIONID}}') end) return success and (revid == '') end local want_warning = is_warning and not config.warnings and -- show unobtrusive warnings if config.warnings not configured not msg.nowarn -- but use msg settings, not standard warning, if specified local title = string.gsub(msg[1] or 'Missing message', '$%d+', parts) local text = want_warning and '*' or msg[2] or 'Missing message' local cat = wanted_category(msg[3], mcode[2], want_warning) local anchor = msg[4] or '' local fmtkey = ispreview() and 'cvt_format_preview' or (want_warning and 'cvt_format2' or msg.format or 'cvt_format') local fmt = text_code.all_messages[fmtkey] or 'convert: bug' return subparm(fmt, title:gsub('"', '&quot;'), text, cat, anchor) end return 'Convert internal error: unknown message' end function add_warning(parms, level, key, text1, text2) -- for forward declaration above -- If enabled, add a warning that will be displayed after the convert result. -- A higher level is more verbose: more kinds of warnings are displayed. -- To reduce output noise, only the first warning is displayed. if level <= (tonumber(config.warnings) or 1) then if parms.warnings == nil then parms.warnings = message(parms, { key, text1, text2 }, true) end end end local function spell_number(parms, inout, number, numerator, denominator) -- Return result of spelling (number, numerator, denominator), or -- return nil if spelling is not available or not supported for given text. -- Examples (each value must be a string or nil): -- number numerator denominator output -- ------ --------- ----------- ------------------- -- "1.23" nil nil one point two three -- "1" "2" "3" one and two thirds -- nil "2" "3" two thirds if not speller then local function get_speller(module) return require(module).spell_number end local success success, speller = pcall(get_speller, spell_module) if not success or type(speller) ~= 'function' then add_warning(parms, 1, 'cvt_no_spell', 'spell') return nil end end local case if parms.spell_upper == inout then case = true parms.spell_upper = nil -- only uppercase first word in a multiple unit end local sp = not parms.opt_sp_us local adj = parms.opt_adjectival return speller(number, numerator, denominator, case, sp, adj) end ------------------------------------------------------------------------ -- BEGIN: Code required only for built-in units. -- LATER: If need much more code, move to another module to simplify this module. local function speed_of_sound(altitude) -- This is for the Mach built-in unit of speed. -- Return speed of sound in metres per second at given altitude in feet. -- If no altitude given, use default (zero altitude = sea level). -- Table gives speed of sound in miles per hour at various altitudes: -- altitude = -17,499 to 402,499 feet -- mach_table[a + 4] = s where -- a = (altitude / 5000) rounded to nearest integer (-3 to 80) -- s = speed of sound (mph) at that altitude -- From: http://www.aerospaceweb.org/question/atmosphere/q0112.shtml local mach_table = { -- a = 799.5, 787.0, 774.2, 761.207051, -- -3 to 0 748.0, 734.6, 721.0, 707.0, 692.8, 678.3, 663.5, 660.1, 660.1, 660.1, -- 1 to 10 660.1, 660.1, 660.1, 662.0, 664.3, 666.5, 668.9, 671.1, 673.4, 675.6, -- 11 to 20 677.9, 683.7, 689.9, 696.0, 702.1, 708.1, 714.0, 719.9, 725.8, 731.6, -- 21 to 30 737.3, 737.7, 737.7, 736.2, 730.5, 724.6, 718.8, 712.9, 707.0, 701.0, -- 31 to 40 695.0, 688.9, 682.8, 676.6, 670.4, 664.1, 657.8, 652.9, 648.3, 643.7, -- 41 to 50 639.1, 634.4, 629.6, 624.8, 620.0, 615.2, 613.2, 613.2, 613.2, 613.5, -- 51 to 60 614.4, 615.3, 616.7, 619.8, 623.4, 629.7, 635.0, 641.1, 650.6, 660.0, -- 61 to 70 672.5, 674.3, 676.1, 677.9, 679.7, 681.5, 683.3, 685.1, 686.8, 688.6, -- 71 to 80 } local function lerp(t, v0, v1) return t * v1 + (1 - t) * v0 end altitude = (altitude or 0) / 5000 if altitude < -3 then altitude = -3 elseif altitude > 80 then altitude = 80 end local mach_mph local a = math.floor(altitude) if a == altitude then mach_mph = mach_table[a + 4] else mach_mph = lerp(altitude - a, mach_table[a + 4], mach_table[a + 5]) end return mach_mph * 0.44704 -- mph converted to m/s end -- END: Code required only for built-in units. ------------------------------------------------------------------------ local function add_style(parms, class) -- Add selected template style to parms if not already present. parms.templatestyles = parms.templatestyles or {} if not parms.templatestyles[class] then parms.templatestyles[class] = parms.frame:extensionTag({ name = 'templatestyles', args = { src = text_code.titles[class] } }) end end local function get_styles(parms) -- Return string of required template styles, empty if none. if parms.templatestyles then local t = {} for _, v in pairs(parms.templatestyles) do table.insert(t, v) end return table.concat(t) end return '' end local function get_range(word) -- Return a range (string or table) corresponding to word (like "to"), -- or return nil if not a range word. local ranges = text_code.ranges return ranges.types[word] or ranges.types[ranges.aliases[word]] end local function check_mismatch(unit1, unit2) -- If unit1 cannot be converted to unit2, return an error message table. -- This allows conversion between units of the same type, and between -- Nm (normally torque) and ftlb (energy), as in gun-related articles. -- This works because Nm is the base unit (scale = 1) for both the -- primary type (torque), and the alternate type (energy, where Nm = J). -- A match occurs if the primary types are the same, or if unit1 matches -- the alternate type of unit2, and vice versa. That provides a whitelist -- of which conversions are permitted between normally incompatible types. if unit1.utype == unit2.utype or (unit1.utype == unit2.alttype and unit1.alttype == unit2.utype) then return nil end return { 'cvt_mismatch', unit1.utype, unit2.utype } end local function override_from(out_table, in_table, fields) -- Copy the specified fields from in_table to out_table, but do not -- copy nil fields (keep any corresponding field in out_table). for _, field in ipairs(fields) do if in_table[field] then out_table[field] = in_table[field] end end end local function shallow_copy(t) -- Return a shallow copy of table t. -- Do not need the features and overhead of the Scribunto mw.clone(). local result = {} for k, v in pairs(t) do result[k] = v end return result end local unit_mt = { -- Metatable to get missing values for a unit that does not accept SI prefixes. -- Warning: The boolean value 'false' is returned for any missing field -- so __index is not called twice for the same field in a given unit. __index = function (self, key) local value if key == 'name1' or key == 'sym_us' then value = self.symbol elseif key == 'name2' then value = self.name1 .. plural_suffix elseif key == 'name1_us' then value = self.name1 if not rawget(self, 'name2_us') then -- If name1_us is 'foot', do not make name2_us by appending plural_suffix. self.name2_us = self.name2 end elseif key == 'name2_us' then local raw1_us = rawget(self, 'name1_us') if raw1_us then value = raw1_us .. plural_suffix else value = self.name2 end elseif key == 'link' then value = self.name1 else value = false end rawset(self, key, value) return value end } local function prefixed_name(unit, name, index) -- Return unit name with SI prefix inserted at correct position. -- index = 1 (name1), 2 (name2), 3 (name1_us), 4 (name2_us). -- The position is a byte (not character) index, so use Lua's sub(). local pos = rawget(unit, 'prefix_position') if type(pos) == 'string' then pos = tonumber(split(pos, ',')[index]) end if pos then return name:sub(1, pos - 1) .. unit.si_name .. name:sub(pos) end return unit.si_name .. name end local unit_prefixed_mt = { -- Metatable to get missing values for a unit that accepts SI prefixes. -- Before use, fields si_name, si_prefix must be defined. -- The unit must define _symbol, _name1 and -- may define _sym_us, _name1_us, _name2_us -- (_sym_us, _name2_us may be defined for a language using sp=us -- to refer to a variant unrelated to U.S. units). __index = function (self, key) local value if key == 'symbol' then value = self.si_prefix .. self._symbol if value == 'l' then value = 'L' end elseif key == 'sym_us' then value = rawget(self, '_sym_us') if value then value = self.si_prefix .. value else value = self.symbol end elseif key == 'name1' then value = prefixed_name(self, self._name1, 1) elseif key == 'name2' then value = rawget(self, '_name2') if value then value = prefixed_name(self, value, 2) else value = self.name1 .. plural_suffix end elseif key == 'name1_us' then value = rawget(self, '_name1_us') if value then value = prefixed_name(self, value, 3) else value = self.name1 end elseif key == 'name2_us' then value = rawget(self, '_name2_us') if value then value = prefixed_name(self, value, 4) elseif rawget(self, '_name1_us') then value = self.name1_us .. plural_suffix else value = self.name2 end elseif key == 'link' then value = self.name1 else value = false end rawset(self, key, value) return value end } local unit_per_mt = { -- Metatable to get values for a per unit of form "x/y". -- This is never called to determine a unit name or link because per units -- are handled as a special case. -- Similarly, the default output is handled elsewhere, and for a symbol -- this is only called from get_default() for default_exceptions. __index = function (self, key) local value if key == 'symbol' then local per = self.per local unit1, unit2 = per[1], per[2] if unit1 then value = unit1[key] .. '/' .. unit2[key] else value = '/' .. unit2[key] end elseif key == 'sym_us' then value = self.symbol elseif key == 'scale' then local per = self.per local unit1, unit2 = per[1], per[2] value = (unit1 and unit1.scale or 1) * self.scalemultiplier / unit2.scale else value = false end rawset(self, key, value) return value end } local function make_per(unitcode, unit_table, ulookup) -- Return true, t where t is a per unit with unit codes expanded to unit tables, -- or return false, t where t is an error message table. local result = { unitcode = unitcode, utype = unit_table.utype, per = {} } override_from(result, unit_table, { 'invert', 'iscomplex', 'default', 'link', 'symbol', 'symlink' }) result.symbol_raw = (result.symbol or false) -- to distinguish between a defined exception and a metatable calculation local prefix for i, v in ipairs(unit_table.per) do if i == 1 and v == '' then -- First unit symbol can be empty; that gives a nil first unit table. elseif i == 1 and text_code.currency[v] then prefix = currency_text or v else local success, t = ulookup(v) if not success then return false, t end result.per[i] = t end end local multiplier = unit_table.multiplier if not result.utype then -- Creating an automatic per unit. local unit1 = result.per[1] local utype = (unit1 and unit1.utype or prefix or '') .. '/' .. result.per[2].utype local t = data_code.per_unit_fixups[utype] if t then if type(t) == 'table' then utype = t.utype or utype result.link = result.link or t.link multiplier = multiplier or t.multiplier else utype = t end end result.utype = utype end result.scalemultiplier = multiplier or 1 result.vprefix = prefix or false -- set to non-nil to avoid calling __index return true, setmetatable(result, unit_per_mt) end local function lookup(parms, unitcode, what, utable, fails, depth) -- Return true, t where t is a copy of the unit's converter table, -- or return false, t where t is an error message table. -- Parameter 'what' determines whether combination units are accepted: -- 'no_combination' : single unit only -- 'any_combination' : single unit or combination or output multiple -- 'only_multiple' : single unit or output multiple only -- Parameter unitcode is a symbol (like 'g'), with an optional SI prefix (like 'kg'). -- If, for example, 'kg' is in this table, that entry is used; -- otherwise the prefix ('k') is applied to the base unit ('g'). -- If unitcode is a known combination code (and if allowed by what), -- a table of output multiple unit tables is included in the result. -- For compatibility with the old template, an underscore in a unitcode is -- replaced with a space so usage like {{convert|350|board_feet}} works. -- Wikignomes may also put two spaces or "&nbsp;" in combinations, so -- replace underscore, "&nbsp;", and multiple spaces with a single space. utable = utable or parms.unittable or all_units fails = fails or {} depth = depth and depth + 1 or 1 if depth > 9 then -- There are ways to mistakenly define units which result in infinite -- recursion when lookup() is called. That gives a long delay and very -- confusing error messages, so the depth parameter is used as a guard. return false, { 'cvt_lookup', unitcode } end if unitcode == nil or unitcode == '' then return false, { 'cvt_no_unit' } end unitcode = unitcode:gsub('_', ' '):gsub('&nbsp;', ' '):gsub(' +', ' ') local function call_make_per(t) return make_per(unitcode, t, function (ucode) return lookup(parms, ucode, 'no_combination', utable, fails, depth) end ) end local t = utable[unitcode] if t then if t.shouldbe then return false, { 'cvt_should_be', t.shouldbe } end if t.sp_us then parms.opt_sp_us = true end local target = t.target -- nil, or unitcode is an alias for this target if target then local success, result = lookup(parms, target, what, utable, fails, depth) if not success then return false, result end override_from(result, t, { 'customary', 'default', 'link', 'symbol', 'symlink', 'usename' }) if t.default then result.defkey = unitcode -- so default_exceptions uses the alias code, not the target symbol end local multiplier = t.multiplier if multiplier then result.multiplier = tostring(multiplier) result.scale = result.scale * multiplier end return true, result end if t.per then return call_make_per(t) end local combo = t.combination -- nil or a table of unitcodes if combo then local multiple = t.multiple if what == 'no_combination' or (what == 'only_multiple' and not multiple) then return false, { 'cvt_bad_unit', unitcode } end -- Recursively create a combination table containing the -- converter table of each unitcode. local result = { utype = t.utype, multiple = multiple, combination = {} } local cvt = result.combination for i, v in ipairs(combo) do local success, t = lookup(parms, v, multiple and 'no_combination' or 'only_multiple', utable, fails, depth) if not success then return false, t end cvt[i] = t end return true, result end local result = shallow_copy(t) result.unitcode = unitcode if result.prefixes then result.si_name = '' result.si_prefix = '' return true, setmetatable(result, unit_prefixed_mt) end return true, setmetatable(result, unit_mt) end local SIprefixes = text_code.SIprefixes for plen = SIprefixes[1] or 2, 1, -1 do -- Look for an SI prefix; should never occur with an alias. -- Check for longer prefix first ('dam' is decametre). -- SIprefixes[1] = prefix maximum #characters (as seen by mw.ustring.sub). local prefix = usub(unitcode, 1, plen) local si = SIprefixes[prefix] if si then local t = utable[usub(unitcode, plen+1)] if t and t.prefixes then local result = shallow_copy(t) result.unitcode = unitcode result.si_name = parms.opt_sp_us and si.name_us or si.name result.si_prefix = si.prefix or prefix result.scale = t.scale * 10 ^ (si.exponent * t.prefixes) return true, setmetatable(result, unit_prefixed_mt) end end end -- Accept user-defined combinations like "acre+m2+ha" or "acre m2 ha" for output. -- If '+' is used, each unit code can include a space, and any error is fatal. -- If ' ' is used and if each space-separated word is a unit code, it is a combo, -- but errors are not fatal so the unit code can be looked up as an extra unit. local err_is_fatal local combo = collection() if unitcode:find('+', 1, true) then err_is_fatal = true for item in (unitcode .. '+'):gmatch('%s*(.-)%s*%+') do if item ~= '' then combo:add(item) end end elseif unitcode:find('%s') then for item in unitcode:gmatch('%S+') do combo:add(item) end end if combo.n > 1 then local function lookup_combo() if what == 'no_combination' or what == 'only_multiple' then return false, { 'cvt_bad_unit', unitcode } end local result = { combination = {} } local cvt = result.combination for i, v in ipairs(combo) do local success, t = lookup(parms, v, 'only_multiple', utable, fails, depth) if not success then return false, t end if i == 1 then result.utype = t.utype else local mismatch = check_mismatch(result, t) if mismatch then return false, mismatch end end cvt[i] = t end return true, result end local success, result = lookup_combo() if success or err_is_fatal then return success, result end end -- Accept any unit with an engineering notation prefix like "e6cuft" -- (million cubic feet), but not chained prefixes like "e3e6cuft", -- and not if the unit is a combination or multiple, -- and not if the unit has an offset or is a built-in. -- Only en digits are accepted. local e, exponent, baseunit = unitcode:match('^([Ee])(%d+)(.*)') if exponent then local engscale = text_code.eng_scales[exponent] if engscale then local success, result = lookup(parms, baseunit, 'no_combination', utable, fails, depth) if success and not (result.offset or result.builtin or result.engscale) then if e == 'E' then result.this_number_word = true unitcode = 'e' .. unitcode:sub(2) end result.unitcode = unitcode -- 'e6cuft' not 'cuft' result.defkey = unitcode -- key to lookup default exception result.engscale = engscale result.scale = result.scale * 10 ^ tonumber(exponent) return true, result end end end -- Look for x/y; split on right-most slash to get scale correct (x/y/z is x/y per z). local top, bottom = unitcode:match('^(.-)/([^/]+)$') if top and not unitcode:find('e%d') then -- If valid, create an automatic per unit for an "x/y" unit code. -- The unitcode must not include extraneous spaces. -- Engineering notation (apart from at start and which has been stripped before here), -- is not supported so do not make a per unit if find text like 'e3' in unitcode. local success, result = call_make_per({ per = {top, bottom} }) if success then return true, result end end if not parms.opt_no_extra and not get_range(unitcode) then -- Want the "what links here" list for the extra_module to show only cases -- where an extra unit is used, so do not require it when not needed -- or if looking up a range word which cannot be a unit. if not extra_units then local success, extra = pcall(function () return require(extra_module).extra_units end) if success and type(extra) == 'table' then extra_units = extra end end if extra_units then -- A unit in one data table might refer to a unit in the other table, so -- switch between them, relying on fails or depth to terminate loops. if not fails[unitcode] then fails[unitcode] = true local other = (utable == all_units) and extra_units or all_units local success, result = lookup(parms, unitcode, what, other, fails, depth) if success then return true, result end end end end if to_en_table then -- At fawiki it is common to translate all digits so a unit like "km2" becomes "km۲". local en_code = ustring.gsub(unitcode, '%d', to_en_table) if en_code ~= unitcode then return lookup(parms, en_code, what, utable, fails, depth) end end return false, { 'cvt_unknown', unitcode } end local function valid_number(num) -- Return true if num is a valid number. -- In Scribunto (different from some standard Lua), when expressed as a string, -- overflow or other problems are indicated with text like "inf" or "nan" -- which are regarded as invalid here (each contains "n"). if type(num) == 'number' and tostring(num):find('n', 1, true) == nil then return true end end local function hyphenated(name, parts) -- Return a hyphenated form of given name (for adjectival usage). -- The name may be linked and the target of the link must not be changed. -- Hypothetical examples: -- [[long ton|ton]] → [[long ton|ton]] (no change) -- [[tonne|long ton]] → [[tonne|long-ton]] -- [[metric ton|long ton]] → [[metric ton|long-ton]] -- [[long ton]] → [[long ton|long-ton]] -- Input can also have multiple links in a single name like: -- [[United States customary units|U.S.]] [[US gallon|gallon]] -- [[mile]]s per [[United States customary units|U.S.]] [[quart]] -- [[long ton]]s per [[short ton]] -- Assume that links cannot be nested (never like "[[abc[[def]]ghi]]"). -- This uses a simple and efficient procedure that works for most cases. -- Some units (if used) would require more, and can later think about -- adding a method to handle exceptions. -- The procedure is to replace each space with a hyphen, but -- not a space after ')' [for "(pre-1954&nbsp;US) nautical mile"], and -- not spaces immediately before '(' or in '(...)' [for cases like -- "British thermal unit (ISO)" and "Calorie (International Steam Table)"]. if name:find(' ', 1, true) then if parts then local pos if name:sub(1, 1) == '(' then pos = name:find(')', 1, true) if pos then return name:sub(1, pos+1) .. name:sub(pos+2):gsub(' ', '-') end elseif name:sub(-1) == ')' then pos = name:find('(', 1, true) if pos then return name:sub(1, pos-2):gsub(' ', '-') .. name:sub(pos-1) end end return name:gsub(' ', '-') end parts = collection() for before, item, after in name:gmatch('([^[]*)(%[%[[^[]*%]%])([^[]*)') do if item:find(' ', 1, true) then local prefix local plen = item:find('|', 1, true) if plen then prefix = item:sub(1, plen) item = item:sub(plen + 1, -3) else prefix = item:sub(1, -3) .. '|' item = item:sub(3, -3) end item = prefix .. hyphenated(item, parts) .. ']]' end parts:add(before:gsub(' ', '-') .. item .. after:gsub(' ', '-')) end if parts.n == 0 then -- No link like "[[...]]" was found in the original name. parts:add(hyphenated(name, parts)) end return table.concat(parts) end return name end local function hyphenated_maybe(parms, want_name, sep, id, inout) -- Return s, f where -- s = id, possibly modified -- f = true if hyphenated -- Possible modifications: hyphenate; prepend '-'; append mid text. if id == nil or id == '' then return '' end local mid = (inout == (parms.opt_flip and 'out' or 'in')) and parms.mid or '' if want_name then if parms.opt_adjectival then return '-' .. hyphenated(id) .. mid, true end if parms.opt_add_s and id:sub(-1) ~= 's' then id = id .. 's' -- for nowiki end end return sep .. id .. mid end local function use_minus(text) -- Return text with Unicode minus instead of '-', if present. if text:sub(1, 1) == '-' then return MINUS .. text:sub(2) end return text end local function digit_groups(parms, text, method) -- Return a numbered table of groups of digits (left-to-right, in local language). -- Parameter method is a number or nil: -- 3 for 3-digit grouping (default), or -- 2 for 3-then-2 grouping (only for digits before decimal mark). local len_right local len_left = text:find('.', 1, true) if len_left then len_right = #text - len_left len_left = len_left - 1 else len_left = #text end local twos = method == 2 and len_left > 5 local groups = collection() local run = len_left local n if run < 4 or (run == 4 and parms.opt_comma5) then if parms.opt_gaps then n = run else n = #text end elseif twos then n = run % 2 == 0 and 1 or 2 else n = run % 3 == 0 and 3 or run % 3 end while run > 0 do groups:add(n) run = run - n n = (twos and run > 3) and 2 or 3 end if len_right then if groups.n == 0 then groups:add(0) end if parms.opt_gaps and len_right > 3 then local want4 = not parms.opt_gaps3 -- true gives no gap before trailing single digit local isfirst = true run = len_right while run > 0 do n = (want4 and run == 4) and 4 or (run > 3 and 3 or run) if isfirst then isfirst = false groups[groups.n] = groups[groups.n] + 1 + n else groups:add(n) end run = run - n end else groups[groups.n] = groups[groups.n] + 1 + len_right end end local pos = 1 for i, length in ipairs(groups) do groups[i] = from_en(text:sub(pos, pos + length - 1)) pos = pos + length end return groups end function with_separator(parms, text) -- for forward declaration above -- Input text is a number in en digits with optional '.' decimal mark. -- Return an equivalent, formatted for display: -- with a custom decimal mark instead of '.', if wanted -- with thousand separators inserted, if wanted -- digits in local language -- The given text is like '123' or '123.' or '12345.6789'. -- The text has no sign (caller inserts that later, if necessary). -- When using gaps, they are inserted before and after the decimal mark. -- Separators are inserted only before the decimal mark. -- A trailing dot (as in '123.') is removed because their use appears to -- be accidental, and such a number should be shown as '123' or '123.0'. -- It is useful for convert to suppress the dot so, for example, '4000.' -- is a simple way of indicating that all the digits are significant. if text:sub(-1) == '.' then text = text:sub(1, -2) end if #text < 4 or parms.opt_nocomma or numsep == '' then return from_en(text) end local groups = digit_groups(parms, text, group_method) if parms.opt_gaps then if groups.n <= 1 then return groups[1] or '' end local nowrap = '<span style="white-space: nowrap">' local gap = '<span style="margin-left: 0.25em">' local close = '</span>' return nowrap .. groups[1] .. gap .. table.concat(groups, close .. gap, 2, groups.n) .. close .. close end return table.concat(groups, numsep) end -- An input value like 1.23e12 is displayed using scientific notation (1.23×10¹²). -- That also makes the output use scientific notation, except for small values. -- In addition, very small or very large output values use scientific notation. -- Use format(fmtpower, significand, '10', exponent) where each argument is a string. local fmtpower = '%s<span style="margin:0 .15em 0 .25em">×</span>%s<sup>%s</sup>' local function with_exponent(parms, show, exponent) -- Return wikitext to display the implied value in scientific notation. -- Input uses en digits; output uses digits in local language. return format(fmtpower, with_separator(parms, show), from_en('10'), use_minus(from_en(tostring(exponent)))) end local function make_sigfig(value, sigfig) -- Return show, exponent that are equivalent to the result of -- converting the number 'value' (where value >= 0) to a string, -- rounded to 'sigfig' significant figures. -- The returned items are: -- show: a string of digits; no sign and no dot; -- there is an implied dot before show. -- exponent: a number (an integer) to shift the implied dot. -- Resulting value = tonumber('.' .. show) * 10^exponent. -- Examples: -- make_sigfig(23.456, 3) returns '235', 2 (.235 * 10^2). -- make_sigfig(0.0023456, 3) returns '235', -2 (.235 * 10^-2). -- make_sigfig(0, 3) returns '000', 1 (.000 * 10^1). if sigfig <= 0 then sigfig = 1 elseif sigfig > maxsigfig then sigfig = maxsigfig end if value == 0 then return string.rep('0', sigfig), 1 end local exp, fracpart = math.modf(log10(value)) if fracpart >= 0 then fracpart = fracpart - 1 exp = exp + 1 end local digits = format('%.0f', 10^(fracpart + sigfig)) if #digits > sigfig then -- Overflow (for sigfig=3: like 0.9999 rounding to "1000"; need "100"). digits = digits:sub(1, sigfig) exp = exp + 1 end assert(#digits == sigfig, 'Bug: rounded number has wrong length') return digits, exp end -- Fraction output format. local fracfmt = { { -- Like {{frac}} (fraction slash). '<span class="frac">{SIGN}<span class="num">{NUM}</span>&frasl;<span class="den">{DEN}</span></span>', -- 1/2 '<span class="frac">{SIGN}{WHOLE}<span class="sr-only">+</span><span class="num">{NUM}</span>&frasl;<span class="den">{DEN}</span></span>', -- 1+2/3 style = 'frac', }, { -- Like {{sfrac}} (stacked fraction, that is, horizontal bar). '<span class="sfrac tion">{SIGN}<span class="num">{NUM}</span><span class="sr-only">/</span><span class="den">{DEN}</span></span>', -- 1//2 '<span class="sfrac">{SIGN}{WHOLE}<span class="sr-only">+</span><span class="tion"><span class="num">{NUM}</span><span class="sr-only">/</span><span class="den">{DEN}</span></span></span>', -- 1+2//3 style = 'sfrac', }, } local function format_fraction(parms, inout, negative, wholestr, numstr, denstr, do_spell, style) -- Return wikitext for a fraction, possibly spelled. -- Inputs use en digits and have no sign; output uses digits in local language. local wikitext if not style then style = parms.opt_fraction_horizontal and 2 or 1 end if wholestr == '' then wholestr = nil end local substitute = { SIGN = negative and MINUS or '', WHOLE = wholestr and with_separator(parms, wholestr), NUM = from_en(numstr), DEN = from_en(denstr), } wikitext = fracfmt[style][wholestr and 2 or 1]:gsub('{(%u+)}', substitute) if do_spell then if negative then if wholestr then wholestr = '-' .. wholestr else numstr = '-' .. numstr end end local s = spell_number(parms, inout, wholestr, numstr, denstr) if s then return s end end add_style(parms, fracfmt[style].style) return wikitext end local function format_number(parms, show, exponent, isnegative) -- Parameter show is a string or a table containing strings. -- Each string is a formatted number in en digits and optional '.' decimal mark. -- A table represents a fraction: integer, numerator, denominator; -- if a table is given, exponent must be nil. -- Return t where t is a table with fields: -- show = wikitext formatted to display implied value -- (digits in local language) -- is_scientific = true if show uses scientific notation -- clean = unformatted show (possibly adjusted and with inserted '.') -- (en digits) -- sign = '' or MINUS -- exponent = exponent (possibly adjusted) -- The clean and exponent fields can be used to calculate the -- rounded absolute value, if needed. -- -- The value implied by the arguments is found from: -- exponent is nil; and -- show is a string of digits (no sign), with an optional dot; -- show = '123.4' is value 123.4, '1234' is value 1234.0; -- or: -- exponent is an integer indicating where dot should be; -- show is a string of digits (no sign and no dot); -- there is an implied dot before show; -- show does not start with '0'; -- show = '1234', exponent = 3 is value 0.1234*10^3 = 123.4. -- -- The formatted result: -- * Is for an output value and is spelled if wanted and possible. -- * Includes a Unicode minus if isnegative and not spelled. -- * Uses a custom decimal mark, if wanted. -- * Has digits grouped where necessary, if wanted. -- * Uses scientific notation if requested, or for very small or large values -- (which forces result to not be spelled). -- * Has no more than maxsigfig significant digits -- (same as old template and {{#expr}}). local xhi, xlo -- these control when scientific notation (exponent) is used if parms.opt_scientific then xhi, xlo = 4, 2 -- default for output if input uses e-notation elseif parms.opt_scientific_always then xhi, xlo = 0, 0 -- always use scientific notation (experimental) else xhi, xlo = 10, 4 -- default end local sign = isnegative and MINUS or '' local maxlen = maxsigfig local tfrac if type(show) == 'table' then tfrac = show show = tfrac.wholestr assert(exponent == nil, 'Bug: exponent given with fraction') end if not tfrac and not exponent then local integer, dot, decimals = show:match('^(%d*)(%.?)(.*)') if integer == '0' or integer == '' then local zeros, figs = decimals:match('^(0*)([^0]?.*)') if #figs == 0 then if #zeros > maxlen then show = '0.' .. zeros:sub(1, maxlen) end elseif #zeros >= xlo then show = figs exponent = -#zeros elseif #figs > maxlen then show = '0.' .. zeros .. figs:sub(1, maxlen) end elseif #integer >= xhi then show = integer .. decimals exponent = #integer else maxlen = maxlen + #dot if #show > maxlen then show = show:sub(1, maxlen) end end end if exponent then local function zeros(n) return string.rep('0', n) end if #show > maxlen then show = show:sub(1, maxlen) end if exponent > xhi or exponent <= -xlo or (exponent == xhi and show ~= '1' .. zeros(xhi - 1)) then -- When xhi, xlo = 10, 4 (the default), scientific notation is used if the -- rounded value satisfies: value >= 1e9 or value < 1e-4 (1e9 = 0.1e10), -- except if show is '1000000000' (1e9), for example: -- {{convert|1000000000|m|m|sigfig=10}} → 1,000,000,000 metres (1,000,000,000 m) local significand if #show > 1 then significand = show:sub(1, 1) .. '.' .. show:sub(2) else significand = show end return { clean = '.' .. show, exponent = exponent, sign = sign, show = sign .. with_exponent(parms, significand, exponent-1), is_scientific = true, } end if exponent >= #show then show = show .. zeros(exponent - #show) -- result has no dot elseif exponent <= 0 then show = '0.' .. zeros(-exponent) .. show else show = show:sub(1, exponent) .. '.' .. show:sub(exponent+1) end end local formatted_show if tfrac then show = tostring(tfrac.value) -- to set clean in returned table formatted_show = format_fraction(parms, 'out', isnegative, tfrac.wholestr, tfrac.numstr, tfrac.denstr, parms.opt_spell_out) else if isnegative and show:match('^0.?0*$') then sign = '' -- don't show minus if result is negative but rounds to zero end formatted_show = sign .. with_separator(parms, show) if parms.opt_spell_out then formatted_show = spell_number(parms, 'out', sign .. show) or formatted_show end end return { clean = show, sign = sign, show = formatted_show, is_scientific = false, -- to avoid calling __index } end local function extract_fraction(parms, text, negative) -- If text represents a fraction, return -- value, altvalue, show, denominator -- where -- value is a number (value of the fraction in argument text) -- altvalue is an alternate interpretation of any fraction for the hands -- unit where "12.1+3/4" means 12 hands 1.75 inches -- show is a string (formatted text for display of an input value, -- and is spelled if wanted and possible) -- denominator is value of the denominator in the fraction -- Otherwise, return nil. -- Input uses en digits and '.' decimal mark (input has been translated). -- Output uses digits in local language and local decimal mark, if any. ------------------------------------------------------------------------ -- Originally this function accepted x+y/z where x, y, z were any valid -- numbers, possibly with a sign. For example '1.23e+2+1.2/2.4' = 123.5, -- and '2-3/8' = 1.625. However, such usages were found to be errors or -- misunderstandings, so since August 2014 the following restrictions apply: -- x (if present) is an integer or has a single digit after decimal mark -- y and z are unsigned integers -- e-notation is not accepted -- The overall number can start with '+' or '-' (so '12+3/4' and '+12+3/4' -- and '-12-3/4' are valid). -- Any leading negative sign is removed by the caller, so only inputs -- like the following are accepted here (may have whitespace): -- negative = false false true (there was a leading '-') -- text = '2/3' '+2/3' '2/3' -- text = '1+2/3' '+1+2/3' '1-2/3' -- text = '12.3+1/2' '+12.3+1/2' '12.3-1/2' -- Values like '12.3+1/2' are accepted, but are intended only for use -- with the hands unit (not worth adding code to enforce that). ------------------------------------------------------------------------ local leading_plus, prefix, numstr, slashes, denstr = text:match('^%s*(%+?)%s*(.-)%s*(%d+)%s*(/+)%s*(%d+)%s*$') if not leading_plus then -- Accept a single U+2044 fraction slash because that may be pasted. leading_plus, prefix, numstr, denstr = text:match('^%s*(%+?)%s*(.-)%s*(%d+)%s*⁄%s*(%d+)%s*$') slashes = '/' end local numerator = tonumber(numstr) local denominator = tonumber(denstr) if numerator == nil or denominator == nil or (negative and leading_plus ~= '') then return nil end local whole, wholestr if prefix == '' then wholestr = '' whole = 0 else -- Any prefix must be like '12+' or '12-' (whole number and fraction sign); -- '12.3+' and '12.3-' are also accepted (single digit after decimal point) -- because '12.3+1/2 hands' is valid (12 hands 3½ inches). local num1, num2, frac_sign = prefix:match('^(%d+)(%.?%d?)%s*([+%-])$') if num1 == nil then return nil end if num2 == '' then -- num2 must be '' or like '.1' but not '.' or '.12' wholestr = num1 else if #num2 ~= 2 then return nil end wholestr = num1 .. num2 end if frac_sign ~= (negative and '-' or '+') then return nil end whole = tonumber(wholestr) if whole == nil then return nil end end local value = whole + numerator / denominator if not valid_number(value) then return nil end local altvalue = whole + numerator / (denominator * 10) local style = #slashes -- kludge: 1 or 2 slashes can be used to select style if style > 2 then style = 2 end local wikitext = format_fraction(parms, 'in', negative, leading_plus .. wholestr, numstr, denstr, parms.opt_spell_in, style) return value, altvalue, wikitext, denominator end local function extract_number(parms, text, another, no_fraction) -- Return true, info if can extract a number from text, -- where info is a table with the result, -- or return false, t where t is an error message table. -- Input can use en digits or digits in local language and can -- have references at the end. Accepting references is intended -- for use in infoboxes with a field for a value passed to convert. -- Parameter another = true if the expected value is not the first. -- Before processing, the input text is cleaned: -- * Any thousand separators (valid or not) are removed. -- * Any sign is replaced with '-' (if negative) or '' (otherwise). -- That replaces Unicode minus with '-'. -- If successful, the returned info table contains named fields: -- value = a valid number -- altvalue = a valid number, usually same as value but different -- if fraction used (for hands unit) -- singular = true if value is 1 or -1 (to use singular form of units) -- clean = cleaned text with any separators and sign removed -- (en digits and '.' decimal mark) -- show = text formatted for output, possibly with ref strip markers -- (digits in local language and custom decimal mark) -- The resulting show: -- * Is for an input value and is spelled if wanted and possible. -- * Has a rounded value, if wanted. -- * Has digits grouped where necessary, if wanted. -- * If negative, a Unicode minus is used; otherwise the sign is -- '+' (if the input text used '+'), or is '' (if no sign in input). text = strip(text or '') local reference local pos = text:find('\127', 1, true) if pos then local before = text:sub(1, pos - 1) local remainder = text:sub(pos) local refs = {} while #remainder > 0 do local ref, spaces ref, spaces, remainder = remainder:match('^(\127[^\127]*UNIQ[^\127]*%-ref[^\127]*\127)(%s*)(.*)') if ref then table.insert(refs, ref) else refs = {} break end end if #refs > 0 then text = strip(before) reference = table.concat(refs) end end local clean = to_en(text, parms) if clean == '' then return false, { another and 'cvt_no_num2' or 'cvt_no_num' } end local isnegative, propersign = false, '' -- most common case local singular, show, denominator local value = tonumber(clean) local altvalue if value then local sign = clean:sub(1, 1) if sign == '+' or sign == '-' then propersign = (sign == '+') and '+' or MINUS clean = clean:sub(2) end if value < 0 then isnegative = true value = -value end else local valstr for _, prefix in ipairs({ '-', MINUS, '&minus;' }) do -- Including '-' sets isnegative in case input is a fraction like '-2-3/4'. local plen = #prefix if clean:sub(1, plen) == prefix then valstr = clean:sub(plen + 1) if valstr:match('^%s') then -- "- 1" is invalid but "-1 - 1/2" is ok return false, { 'cvt_bad_num', text } end break end end if valstr then isnegative = true propersign = MINUS clean = valstr value = tonumber(clean) end if value == nil then if not no_fraction then value, altvalue, show, denominator = extract_fraction(parms, clean, isnegative) end if value == nil then return false, { 'cvt_bad_num', text } end if value <= 1 then singular = true -- for example, "½ mile" or "one half mile" (singular unit) end end end if not valid_number(value) then -- for example, "1e310" may overflow return false, { 'cvt_invalid_num' } end if show == nil then -- clean is a non-empty string with no spaces, and does not represent a fraction, -- and value = tonumber(clean) is a number >= 0. -- If the input uses e-notation, show will be displayed using a power of ten, but -- we use the number as given so it might not be normalized scientific notation. -- The input value is spelled if specified so any e-notation is ignored; -- that allows input like 2e6 to be spelled as "two million" which works -- because the spell module converts '2e6' to '2000000' before spelling. local function rounded(value, default, exponent) local precision = parms.opt_ri if precision then local fmt = '%.' .. format('%d', precision) .. 'f' local result = fmt:format(tonumber(value) + 2e-14) -- fudge for some common cases of bad rounding if not exponent then singular = (tonumber(result) == 1) end return result end return default end singular = (value == 1) local scientific local significand, exponent = clean:match('^([%d.]+)[Ee]([+%-]?%d+)') if significand then show = with_exponent(parms, rounded(significand, significand, exponent), exponent) scientific = true else show = with_separator(parms, rounded(value, clean)) end show = propersign .. show if parms.opt_spell_in then show = spell_number(parms, 'in', propersign .. rounded(value, clean)) or show scientific = false end if scientific then parms.opt_scientific = true end end if isnegative and (value ~= 0) then value = -value altvalue = -(altvalue or value) end return true, { value = value, altvalue = altvalue or value, singular = singular, clean = clean, show = show .. (reference or ''), denominator = denominator, } end local function get_number(text) -- Return v, f where: -- v = nil (text is not a number) -- or -- v = value of text (text is a number) -- f = true if value is an integer -- Input can use en digits or digits in local language or separators, -- but no Unicode minus, and no fraction. if text then local number = tonumber(to_en(text)) if number then local _, fracpart = math.modf(number) return number, (fracpart == 0) end end end local function gcd(a, b) -- Return the greatest common denominator for the given values, -- which are known to be positive integers. if a > b then a, b = b, a end if a <= 0 then return b end local r = b % a if r <= 0 then return a end if r == 1 then return 1 end return gcd(r, a) end local function fraction_table(value, denominator) -- Return value as a string or a table: -- * If result is a string, there is no fraction, and the result -- is value formatted as a string of en digits. -- * If result is a table, it represents a fraction with named fields: -- wholestr, numstr, denstr (strings of en digits for integer, numerator, denominator). -- The result is rounded to the nearest multiple of (1/denominator). -- If the multiple is zero, no fraction is included. -- No fraction is included if value is very large as the fraction would -- be unhelpful, particularly if scientific notation is required. -- Input value is a non-negative number. -- Input denominator is a positive integer for the desired fraction. if value <= 0 then return '0' end if denominator <= 0 or value > 1e8 then return format('%.2f', value) end local integer, decimals = math.modf(value) local numerator = floor((decimals * denominator) + 0.5 + 2e-14) -- add fudge for some common cases of bad rounding if numerator >= denominator then integer = integer + 1 numerator = 0 end local wholestr = tostring(integer) if numerator > 0 then local div = gcd(numerator, denominator) if div > 1 then numerator = numerator / div denominator = denominator / div end return { wholestr = (integer > 0) and wholestr or '', numstr = tostring(numerator), denstr = tostring(denominator), value = value, } end return wholestr end local function preunits(count, preunit1, preunit2) -- If count is 1: -- ignore preunit2 -- return p1 -- else: -- preunit1 is used for preunit2 if the latter is empty -- return p1, p2 -- where: -- p1 is text to insert before the input unit -- p2 is text to insert before the output unit -- p1 or p2 may be nil to mean "no preunit" -- Using '+' gives output like "5+ feet" (no space before, but space after). local function withspace(text, wantboth) -- Return text with space before and, if wantboth, after. -- However, no space is added if there is a space or '&nbsp;' or '-' -- at that position ('-' is for adjectival text). -- There is also no space if text starts with '&' -- (e.g. '&deg;' would display a degree symbol with no preceding space). local char = text:sub(1, 1) if char == '&' then return text -- an html entity can be used to specify the exact display end if not (char == ' ' or char == '-' or char == '+') then text = ' ' .. text end if wantboth then char = text:sub(-1, -1) if not (char == ' ' or char == '-' or text:sub(-6, -1) == '&nbsp;') then text = text .. ' ' end end return text end local PLUS = '+ ' preunit1 = preunit1 or '' local trim1 = strip(preunit1) if count == 1 then if trim1 == '' then return nil end if trim1 == '+' then return PLUS end return withspace(preunit1, true) end preunit1 = withspace(preunit1) preunit2 = preunit2 or '' local trim2 = strip(preunit2) if trim1 == '+' then if trim2 == '' or trim2 == '+' then return PLUS, PLUS end preunit1 = PLUS end if trim2 == '' then if trim1 == '' then return nil, nil end preunit2 = preunit1 elseif trim2 == '+' then preunit2 = PLUS elseif trim2 == '&#32;' then -- trick to make preunit2 empty preunit2 = nil else preunit2 = withspace(preunit2) end return preunit1, preunit2 end local function range_text(range, want_name, parms, before, after, inout, options) -- Return before .. rtext .. after -- where rtext is the text that separates two values in a range. local rtext, adj_text, exception options = options or {} if type(range) == 'table' then -- Table must specify range text for ('off' and 'on') or ('input' and 'output'), -- and may specify range text for 'adj=on', -- and may specify exception = true. rtext = range[want_name and 'off' or 'on'] or range[((inout == 'in') == (parms.opt_flip == true)) and 'output' or 'input'] adj_text = range['adj'] exception = range['exception'] else rtext = range end if parms.opt_adjectival then if want_name or (exception and parms.abbr_org == 'on') then rtext = adj_text or rtext:gsub(' ', '-'):gsub('&nbsp;', '-') end end if rtext == '–' and (options.spaced or after:sub(1, #MINUS) == MINUS) then rtext = '&nbsp;– ' end return before .. rtext .. after end local function get_composite(parms, iparm, in_unit_table) -- Look for a composite input unit. For example, {{convert|1|yd|2|ft|3|in}} -- would result in a call to this function with -- iparm = 3 (parms[iparm] = "2", just after the first unit) -- in_unit_table = (unit table for "yd"; contains value 1 for number of yards) -- Return true, iparm, unit where -- iparm = index just after the composite units (7 in above example) -- unit = composite unit table holding all input units, -- or return true if no composite unit is present in parms, -- or return false, t where t is an error message table. local default, subinfo local composite_units, count = { in_unit_table }, 1 local fixups = {} local total = in_unit_table.valinfo[1].value local subunit = in_unit_table while subunit.subdivs do -- subdivs is nil or a table of allowed subdivisions local subcode = strip(parms[iparm+1]) local subdiv = subunit.subdivs[subcode] or subunit.subdivs[(all_units[subcode] or {}).target] if not subdiv then break end local success success, subunit = lookup(parms, subcode, 'no_combination') if not success then return false, subunit end -- should never occur success, subinfo = extract_number(parms, parms[iparm]) if not success then return false, subinfo end iparm = iparm + 2 subunit.inout = 'in' subunit.valinfo = { subinfo } -- Recalculate total as a number of subdivisions. -- subdiv[1] = number of subdivisions per previous unit (integer > 1). total = total * subdiv[1] + subinfo.value if not default then -- set by the first subdiv with a default defined default = subdiv.default end count = count + 1 composite_units[count] = subunit if subdiv.unit or subdiv.name then fixups[count] = { unit = subdiv.unit, name = subdiv.name, valinfo = subunit.valinfo } end end if count == 1 then return true -- no error and no composite unit end for i, fixup in pairs(fixups) do local unit = fixup.unit local name = fixup.name if not unit or (count > 2 and name) then composite_units[i].fixed_name = name else local success, alternate = lookup(parms, unit, 'no_combination') if not success then return false, alternate end -- should never occur alternate.inout = 'in' alternate.valinfo = fixup.valinfo composite_units[i] = alternate end end return true, iparm, { utype = in_unit_table.utype, scale = subunit.scale, -- scale of last (least significant) unit valinfo = { { value = total, clean = subinfo.clean, denominator = subinfo.denominator } }, composite = composite_units, default = default or in_unit_table.default } end local function translate_parms(parms, kv_pairs) -- Update fields in parms by translating each key:value in kv_pairs to terms -- used by this module (may involve translating from local language to English). -- Also, checks are performed which may display warnings, if enabled. -- Return true if successful or return false, t where t is an error message table. currency_text = nil -- local testing can hold module in memory; must clear globals if kv_pairs.adj and kv_pairs.sing then -- For enwiki (before translation), warn if attempt to use adj and sing -- as the latter is a deprecated alias for the former. if kv_pairs.adj ~= kv_pairs.sing and kv_pairs.sing ~= '' then add_warning(parms, 1, 'cvt_unknown_option', 'sing=' .. kv_pairs.sing) end kv_pairs.sing = nil end kv_pairs.comma = kv_pairs.comma or config.comma -- for plwiki who want default comma=5 for loc_name, loc_value in pairs(kv_pairs) do local en_name = text_code.en_option_name[loc_name] if en_name then local en_value = text_code.en_option_value[en_name] if en_value == 'INTEGER' then -- altitude_ft, altitude_m, frac, sigfig en_value = nil if loc_value == '' then add_warning(parms, 2, 'cvt_empty_option', loc_name) else local minimum local number, is_integer = get_number(loc_value) if en_name == 'sigfig' then minimum = 1 elseif en_name == 'frac' then minimum = 2 if number and number < 0 then parms.opt_fraction_horizontal = true number = -number end else minimum = -1e6 end if number and is_integer and number >= minimum then en_value = number else local m if en_name == 'frac' then m = 'cvt_bad_frac' elseif en_name == 'sigfig' then m = 'cvt_bad_sigfig' else m = 'cvt_bad_altitude' end add_warning(parms, 1, m, loc_name .. '=' .. loc_value) end end elseif en_value == 'TEXT' then -- $, input, qid, qual, stylein, styleout, tracking en_value = loc_value ~= '' and loc_value or nil -- accept non-empty user text with no validation if not en_value and (en_name == '$' or en_name == 'qid' or en_name == 'qual') then add_warning(parms, 2, 'cvt_empty_option', loc_name) elseif en_name == '$' then -- Value should be a single character like "€" for the euro currency symbol, but anything is accepted. currency_text = (loc_value == 'euro') and '€' or loc_value elseif en_name == 'error' then -- May have something like {{convert|...|error=x}} which will return the -- conversion result if successful, or x if not (no error return). parms.error_text = loc_value -- keep value because parms.error is nil if loc_value == '' parms.opt_no_extra = true elseif en_name == 'input' then -- May have something like {{convert|input=}} (empty input) if source is an infobox -- with optional fields. In that case, want to output nothing rather than an error. parms.input_text = loc_value -- keep value because parms.input is nil if loc_value == '' end else en_value = en_value[loc_value] if en_value and en_value:sub(-1) == '?' then en_value = en_value:sub(1, -2) add_warning(parms, -1, 'cvt_deprecated', loc_name .. '=' .. loc_value) end if en_value == nil then if loc_value == '' then add_warning(parms, 2, 'cvt_empty_option', loc_name) else add_warning(parms, 1, 'cvt_unknown_option', loc_name .. '=' .. loc_value) end elseif en_value == '' then en_value = nil -- an ignored option like adj=off elseif type(en_value) == 'string' and en_value:sub(1, 4) == 'opt_' then for _, v in ipairs(split(en_value, ',')) do local lhs, rhs = v:match('^(.-)=(.+)$') if rhs then parms[lhs] = tonumber(rhs) or rhs else parms[v] = true end end en_value = nil end end parms[en_name] = en_value else add_warning(parms, 1, 'cvt_unknown_option', loc_name .. '=' .. loc_value) end end local abbr_entered = parms.abbr local cfg_abbr = config.abbr if cfg_abbr then -- Don't warn if invalid because every convert would show that warning. if cfg_abbr == 'on always' then parms.abbr = 'on' elseif cfg_abbr == 'off always' then parms.abbr = 'off' elseif parms.abbr == nil then if cfg_abbr == 'on default' then parms.abbr = 'on' elseif cfg_abbr == 'off default' then parms.abbr = 'off' end end end if parms.abbr then if parms.abbr == 'unit' then parms.abbr = 'on' parms.number_word = true end parms.abbr_org = parms.abbr -- original abbr, before any flip elseif parms.opt_hand_hh then parms.abbr_org = 'on' parms.abbr = 'on' else parms.abbr = 'out' -- default is to abbreviate output only (use symbol, not name) end if parms.opt_order_out then -- Disable options that do not work in a useful way with order=out. parms.opt_flip = nil -- override adj=flip parms.opt_spell_in = nil parms.opt_spell_out = nil parms.opt_spell_upper = nil end if parms.opt_spell_out and not abbr_entered then parms.abbr = 'off' -- should show unit name when spelling the output value end if parms.opt_flip then local function swap_in_out(option) local value = parms[option] if value == 'in' then parms[option] = 'out' elseif value == 'out' then parms[option] = 'in' end end swap_in_out('abbr') swap_in_out('lk') if parms.opt_spell_in and not parms.opt_spell_out then -- For simplicity, and because it does not appear to be needed, -- user cannot set an option to spell the output only. parms.opt_spell_in = nil parms.opt_spell_out = true end end if parms.opt_spell_upper then parms.spell_upper = parms.opt_flip and 'out' or 'in' end if parms.opt_table or parms.opt_tablecen then if abbr_entered == nil and parms.lk == nil then parms.opt_values = true end parms.table_align = parms.opt_table and 'right' or 'center' end if parms.table_align or parms.opt_sortable_on then parms.need_table_or_sort = true end local disp_joins = text_code.disp_joins local default_joins = disp_joins['b'] parms.join_between = default_joins[3] or '; ' local disp = parms.disp if disp == nil then -- special case for the most common setting parms.joins = default_joins elseif disp == 'x' then -- Later, parms.joins is set from the input parameters. else -- Old template does this. local abbr = parms.abbr if disp == 'slash' then if abbr_entered == nil then disp = 'slash-nbsp' elseif abbr == 'in' or abbr == 'out' then disp = 'slash-sp' else disp = 'slash-nosp' end elseif disp == 'sqbr' then if abbr == 'on' then disp = 'sqbr-nbsp' else disp = 'sqbr-sp' end end parms.joins = disp_joins[disp] or default_joins parms.join_between = parms.joins[3] or parms.join_between parms.wantname = parms.joins.wantname end if (en_default and not parms.opt_lang_local and (parms[1] or ''):find('%d')) or parms.opt_lang_en then from_en_table = nil end if en_default and from_en_table then -- For hiwiki: localized symbol/name is defined with the US symbol/name field, -- and is used if output uses localized numbers. parms.opt_sp_us = true end return true end local function get_values(parms) -- If successful, update parms and return true, v, i where -- v = table of input values -- i = index to next entry in parms after those processed here -- or return false, t where t is an error message table. local valinfo = collection() -- numbered table of input values local range = collection() -- numbered table of range items (having, for example, 2 range items requires 3 input values) local had_nocomma -- true if removed "nocomma" kludge from second parameter (like "tonocomma") local parm2 = strip(parms[2]) if parm2 and parm2:sub(-7, -1) == 'nocomma' then parms[2] = strip(parm2:sub(1, -8)) parms.opt_nocomma = true had_nocomma = true end local function extractor(i) -- If the parameter is not a value, try unpacking it as a range ("1-23" for "1 to 23"). -- However, "-1-2/3" is a negative fraction (-1⅔), so it must be extracted first. -- Do not unpack a parameter if it is like "3-1/2" which is sometimes incorrectly -- used instead of "3+1/2" (and which should not be interpreted as "3 to ½"). -- Unpacked items are inserted into the parms table. -- The tail recursion allows combinations like "1x2 to 3x4". local valstr = strip(parms[i]) -- trim so any '-' as a negative sign will be at start local success, result = extract_number(parms, valstr, i > 1) if not success and valstr and i < 20 then -- check i to limit abuse local lhs, sep, rhs = valstr:match('^(%S+)%s+(%S+)%s+(%S.*)') if lhs and not (sep == '-' and rhs:match('/')) then if sep:find('%d') then return success, result -- to reject {{convert|1 234 567|m}} with a decent message (en only) end parms[i] = rhs table.insert(parms, i, sep) table.insert(parms, i, lhs) return extractor(i) end if not valstr:match('%-.*/') then for _, sep in ipairs(text_code.ranges.words) do local start, stop = valstr:find(sep, 2, true) -- start at 2 to skip any negative sign for range '-' if start then parms[i] = valstr:sub(stop + 1) table.insert(parms, i, sep) table.insert(parms, i, valstr:sub(1, start - 1)) return extractor(i) end end end end return success, result end local i = 1 local is_change while true do local success, info = extractor(i) -- need to set parms.opt_nocomma before calling this if not success then return false, info end i = i + 1 if is_change then info.is_change = true -- value is after "±" and so is a change (significant for range like {{convert|5|±|5|°C}}) is_change = nil end valinfo:add(info) local range_item = get_range(strip(parms[i])) if not range_item then break end i = i + 1 range:add(range_item) if type(range_item) == 'table' then -- For range "x", if append unit to some values, append it to all. parms.in_range_x = parms.in_range_x or range_item.in_range_x parms.out_range_x = parms.out_range_x or range_item.out_range_x parms.abbr_range_x = parms.abbr_range_x or range_item.abbr_range_x is_change = range_item.is_range_change end end if range.n > 0 then if range.n > 30 then -- limit abuse, although 4 is a more likely upper limit return false, { 'cvt_invalid_num' } -- misleading message but it will do end parms.range = range elseif had_nocomma then return false, { 'cvt_unknown', parm2 } end return true, valinfo, i end local function simple_get_values(parms) -- If input is like "{{convert|valid_value|valid_unit|...}}", -- return true, i, in_unit, in_unit_table -- i = index in parms of what follows valid_unit, if anything. -- The valid_value is not negative and does not use a fraction, and -- no options requiring further processing of the input are used. -- Otherwise, return nothing or return false, parm1 for caller to interpret. -- Testing shows this function is successful for 96% of converts in articles, -- and that on average it speeds up converts by 8%. local clean = to_en(strip(parms[1] or ''), parms) if parms.opt_ri or parms.opt_spell_in or #clean > 10 or not clean:match('^[0-9.]+$') then return false, clean end local value = tonumber(clean) if not value then return end local info = { value = value, altvalue = value, singular = (value == 1), clean = clean, show = with_separator(parms, clean), } local in_unit = strip(parms[2]) local success, in_unit_table = lookup(parms, in_unit, 'no_combination') if not success then return end in_unit_table.valinfo = { info } return true, 3, in_unit, in_unit_table end local function wikidata_call(parms, operation, ...) -- Return true, s where s is the result of a Wikidata operation, -- or return false, t where t is an error message table. local function worker(...) wikidata_code = wikidata_code or require(wikidata_module) wikidata_data = wikidata_data or mw.loadData(wikidata_data_module) return wikidata_code[operation](wikidata_data, ...) end local success, status, result = pcall(worker, ...) if success then return status, result end if parms.opt_sortable_debug then -- Use debug=yes to crash if an error while accessing Wikidata. error('Error accessing Wikidata: ' .. status, 0) end return false, { 'cvt_wd_fail' } end local function get_parms(parms, args) -- If successful, update parms and return true, unit where -- parms is a table of all arguments passed to the template -- converted to named arguments, and -- unit is the input unit table; -- or return false, t where t is an error message table. -- For special processing (not a convert), can also return -- true, wikitext where wikitext is the final result. -- The returned input unit table may be for a fake unit using the specified -- unit code as the symbol and name, and with bad_mcode = message code table. -- MediaWiki removes leading and trailing whitespace from the values of -- named arguments. However, the values of numbered arguments include any -- whitespace entered in the template, and whitespace is used by some -- parameters (example: the numbered parameters associated with "disp=x"). local kv_pairs = {} -- table of input key:value pairs where key is a name; needed because cannot iterate parms and add new fields to it for k, v in pairs(args) do if type(k) == 'number' or k == 'test' then -- parameter "test" is reserved for testing and is not translated parms[k] = v else kv_pairs[k] = v end end if parms.test == 'wikidata' then local ulookup = function (ucode) -- Use empty table for parms so it does not accumulate results when used repeatedly. return lookup({}, ucode, 'no_combination') end return wikidata_call(parms, '_listunits', ulookup) end local success, msg = translate_parms(parms, kv_pairs) if not success then return false, msg end if parms.input then success, msg = wikidata_call(parms, '_adjustparameters', parms, 1) if not success then return false, msg end end local success, i, in_unit, in_unit_table = simple_get_values(parms) if not success then if type(i) == 'string' and i:match('^NNN+$') then -- Some infoboxes have examples like {{convert|NNN|m}} (3 or more "N"). -- Output an empty string for these. return false, { 'cvt_no_output' } end local valinfo success, valinfo, i = get_values(parms) if not success then return false, valinfo end in_unit = strip(parms[i]) i = i + 1 success, in_unit_table = lookup(parms, in_unit, 'no_combination') if not success then in_unit = in_unit or '' if parms.opt_ignore_error then -- display given unit code with no error (for use with {{val}}) in_unit_table = '' -- suppress error message and prevent processing of output unit end in_unit_table = setmetatable({ symbol = in_unit, name2 = in_unit, utype = in_unit, scale = 1, default = '', defkey = '', linkey = '', bad_mcode = in_unit_table }, unit_mt) end in_unit_table.valinfo = valinfo end if parms.test == 'msg' then -- Am testing the messages produced when no output unit is specified, and -- the input unit has a missing or invalid default. -- Set two units for testing that. -- LATER: Remove this code. if in_unit == 'chain' then in_unit_table.default = nil -- no default elseif in_unit == 'rd' then in_unit_table.default = "ft!X!m" -- an invalid expression end end in_unit_table.inout = 'in' -- this is an input unit if not parms.range then local success, inext, composite_unit = get_composite(parms, i, in_unit_table) if not success then return false, inext end if composite_unit then in_unit_table = composite_unit i = inext end end if in_unit_table.builtin == 'mach' then -- As with old template, a number following Mach as the input unit is the altitude. -- That is deprecated: should use altitude_ft=NUMBER or altitude_m=NUMBER. local success, info success = tonumber(parms[i]) -- this will often work and will give correct result for values like 2e4 without forcing output scientific notation if success then info = { value = success } else success, info = extract_number(parms, parms[i], false, true) end if success then i = i + 1 in_unit_table.altitude = info.value end end local word = strip(parms[i]) i = i + 1 local precision, is_bad_precision local function set_precision(text) local number, is_integer = get_number(text) if number then if is_integer then precision = number else precision = text is_bad_precision = true end return true -- text was used for precision, good or bad end end if word and not set_precision(word) then parms.out_unit = parms.out_unit or word if set_precision(strip(parms[i])) then i = i + 1 end end if parms.opt_adj_mid then word = parms[i] i = i + 1 if word then -- mid-text words if word:sub(1, 1) == '-' then parms.mid = word else parms.mid = ' ' .. word end end end if parms.opt_one_preunit then parms[parms.opt_flip and 'preunit2' or 'preunit1'] = preunits(1, parms[i]) i = i + 1 end if parms.disp == 'x' then -- Following is reasonably compatible with the old template. local first = parms[i] or '' local second = parms[i+1] or '' i = i + 2 if strip(first) == '' then -- user can enter '&#32;' rather than ' ' to avoid the default first = ' [&nbsp;' .. first second = '&nbsp;]' .. second end parms.joins = { first, second } elseif parms.opt_two_preunits then local p1, p2 = preunits(2, parms[i], parms[i+1]) i = i + 2 if parms.preunit1 then -- To simplify documentation, allow unlikely use of adj=pre with disp=preunit -- (however, an output unit must be specified with adj=pre and with disp=preunit). parms.preunit1 = parms.preunit1 .. p1 parms.preunit2 = p2 else parms.preunit1, parms.preunit2 = p1, p2 end end if precision == nil then if set_precision(strip(parms[i])) then i = i + 1 end end if is_bad_precision then add_warning(parms, 1, 'cvt_bad_prec', precision) else parms.precision = precision end for j = i, i + 3 do local parm = parms[j] -- warn if find a non-empty extraneous parameter if parm and parm:match('%S') then add_warning(parms, 1, 'cvt_unknown_option', parm) break end end return true, in_unit_table end local function record_default_precision(parms, out_current, precision) -- If necessary, adjust parameters and return a possibly adjusted precision. -- When converting a range of values where a default precision is required, -- that default is calculated for each value because the result sometimes -- depends on the precise input and output values. This function may cause -- the entire convert process to be repeated in order to ensure that the -- same default precision is used for each individual convert. -- If that were not done, a range like 1000 to 1000.4 may give poor results -- because the first output could be heavily rounded, while the second is not. -- For range 1000.4 to 1000, this function can give the second convert the -- same default precision that was used for the first. if not parms.opt_round_each then local maxdef = out_current.max_default_precision if maxdef then if maxdef < precision then parms.do_convert_again = true out_current.max_default_precision = precision else precision = out_current.max_default_precision end else out_current.max_default_precision = precision end end return precision end local function default_precision(parms, invalue, inclean, denominator, outvalue, in_current, out_current, extra) -- Return a default value for precision (an integer like 2, 0, -2). -- If denominator is not nil, it is the value of the denominator in inclean. -- Code follows procedures used in old template. local fudge = 1e-14 -- {{Order of magnitude}} adds this, so we do too local prec, minprec, adjust local subunit_ignore_trailing_zero local subunit_more_precision -- kludge for "in" used in input like "|2|ft|6|in" local composite = in_current.composite if composite then subunit_ignore_trailing_zero = true -- input "|2|st|10|lb" has precision 0, not -1 if composite[#composite].exception == 'subunit_more_precision' then subunit_more_precision = true -- do not use standard precision with input like "|2|ft|6|in" end end if denominator and denominator > 0 then prec = math.max(log10(denominator), 1) else -- Count digits after decimal mark, handling cases like '12.345e6'. local exponent local integer, dot, decimals, expstr = inclean:match('^(%d*)(%.?)(%d*)(.*)') local e = expstr:sub(1, 1) if e == 'e' or e == 'E' then exponent = tonumber(expstr:sub(2)) end if dot == '' then prec = subunit_ignore_trailing_zero and 0 or -integer:match('0*$'):len() else prec = #decimals end if exponent then -- So '1230' and '1.23e3' both give prec = -1, and '0.00123' and '1.23e-3' give 5. prec = prec - exponent end end if in_current.istemperature and out_current.istemperature then -- Converting between common temperatures (°C, °F, °R, K); not keVT. -- Kelvin value can be almost zero, or small but negative due to precision problems. -- Also, an input value like -300 C (below absolute zero) gives negative kelvins. -- Calculate minimum precision from absolute value. adjust = 0 local kelvin = abs((invalue - in_current.offset) * in_current.scale) if kelvin < 1e-8 then -- assume nonzero due to input or calculation precision problem minprec = 2 else minprec = 2 - floor(log10(kelvin) + fudge) -- 3 sigfigs in kelvin end else if invalue == 0 or outvalue <= 0 then -- We are never called with a negative outvalue, but it might be zero. -- This is special-cased to avoid calculation exceptions. return record_default_precision(parms, out_current, 0) end if out_current.exception == 'integer_more_precision' and floor(invalue) == invalue then -- With certain output units that sometimes give poor results -- with default rounding, use more precision when the input -- value is equal to an integer. An example of a poor result -- is when input 50 gives a smaller output than input 49.5. -- Experiment shows this helps, but it does not eliminate all -- surprises because it is not clear whether "50" should be -- interpreted as "from 45 to 55" or "from 49.5 to 50.5". adjust = -log10(in_current.scale) elseif subunit_more_precision then -- Conversion like "{{convert|6|ft|1|in|cm}}" (where subunit is "in") -- has a non-standard adjust value, to give more output precision. adjust = log10(out_current.scale) + 2 else adjust = log10(abs(invalue / outvalue)) end adjust = adjust + log10(2) -- Ensure that the output has at least two significant figures. minprec = 1 - floor(log10(outvalue) + fudge) end if extra then adjust = extra.adjust or adjust minprec = extra.minprec or minprec end return record_default_precision(parms, out_current, math.max(floor(prec + adjust), minprec)) end local function convert(parms, invalue, info, in_current, out_current) -- Convert given input value from one unit to another. -- Return output_value (a number) if a simple convert, or -- return f, t where -- f = true, t = table of information with results, or -- f = false, t = error message table. local inscale = in_current.scale local outscale = out_current.scale if not in_current.iscomplex and not out_current.iscomplex then return invalue * (inscale / outscale) -- minimize overhead for most common case end if in_current.invert or out_current.invert then -- Inverted units, such as inverse length, inverse time, or -- fuel efficiency. Built-in units do not have invert set. if (in_current.invert or 1) * (out_current.invert or 1) < 0 then return 1 / (invalue * inscale * outscale) end return invalue * (inscale / outscale) elseif in_current.offset then -- Temperature (there are no built-ins for this type of unit). if info.is_change then return invalue * (inscale / outscale) end return (invalue - in_current.offset) * (inscale / outscale) + out_current.offset else -- Built-in unit. local in_builtin = in_current.builtin local out_builtin = out_current.builtin if in_builtin and out_builtin then if in_builtin == out_builtin then return invalue end -- There are no cases (yet) where need to convert from one -- built-in unit to another, so this should never occur. return false, { 'cvt_bug_convert' } end if in_builtin == 'mach' or out_builtin == 'mach' then -- Should check that only one altitude is given but am planning to remove -- in_current.altitude (which can only occur when Mach is the input unit), -- and out_current.altitude cannot occur. local alt = parms.altitude_ft or in_current.altitude if not alt and parms.altitude_m then alt = parms.altitude_m / 0.3048 -- 1 ft = 0.3048 m end local spd = speed_of_sound(alt) if in_builtin == 'mach' then inscale = spd return invalue * (inscale / outscale) end outscale = spd local adjust = 0.1 / inscale return true, { outvalue = invalue * (inscale / outscale), adjust = log10(adjust) + log10(2), } elseif in_builtin == 'hand' then -- 1 hand = 4 inches; 1.2 hands = 6 inches. -- Decimals of a hand are only defined for the first digit, and -- the first fractional digit should be a number of inches (1, 2 or 3). -- However, this code interprets the entire fractional part as the number -- of inches / 10 (so 1.75 inches would be 0.175 hands). -- A value like 12.3 hands is exactly 12*4 + 3 inches; base default precision on that. local integer, fracpart = math.modf(invalue) local inch_value = 4 * integer + 10 * fracpart -- equivalent number of inches local factor = inscale / outscale if factor == 4 then -- Am converting to inches: show exact result, and use "inches" not "in" by default. if parms.abbr_org == nil then out_current.usename = true end local show = format('%g', abs(inch_value)) -- show and clean are unsigned if not show:find('e', 1, true) then return true, { invalue = inch_value, outvalue = inch_value, clean = show, show = show, } end end local outvalue = (integer + 2.5 * fracpart) * factor local fracstr = info.clean:match('%.(.*)') or '' local fmt if fracstr == '' then fmt = '%.0f' else fmt = '%.' .. format('%d', #fracstr - 1) .. 'f' end return true, { invalue = inch_value, clean = format(fmt, inch_value), outvalue = outvalue, minprec = 0, } end end return false, { 'cvt_bug_convert' } -- should never occur end local function user_style(parms, i) -- Return text for a user-specified style for a table cell, or '' if none, -- given i = 1 (input style) or 2 (output style). local style = parms[(i == 1) and 'stylein' or 'styleout'] if style then style = style:gsub('"', '') if style ~= '' then if style:sub(-1) ~= ';' then style = style .. ';' end return style end end return '' end local function make_table_or_sort(parms, invalue, info, in_current, scaled_top) -- Set options to handle output for a table or a sort key, or both. -- The text sort key is based on the value resulting from converting -- the input to a fake base unit with scale = 1, and other properties -- required for a conversion derived from the input unit. -- For other modules, return the sort key in a hidden span element, and -- the scaled value used to generate the sort key. -- If scaled_top is set, it is the scaled value of the numerator of a per unit -- to be combined with this unit (the denominator) to make the sort key. -- Scaling only works with units that convert with a factor (not temperature). local sortkey, scaled_value if parms.opt_sortable_on then local base = { -- a fake unit with enough fields for a valid convert scale = 1, invert = in_current.invert and 1, iscomplex = in_current.iscomplex, offset = in_current.offset and 0, } local outvalue, extra = convert(parms, invalue, info, in_current, base) if extra then outvalue = extra.outvalue end if in_current.istemperature then -- Have converted to kelvin; assume numbers close to zero have a -- rounding error and should be zero. if abs(outvalue) < 1e-12 then outvalue = 0 end end if scaled_top and outvalue ~= 0 then outvalue = scaled_top / outvalue end scaled_value = outvalue if not valid_number(outvalue) then if outvalue < 0 then sortkey = '1000000000000000000' else sortkey = '9000000000000000000' end elseif outvalue == 0 then sortkey = '5000000000000000000' else local mag = floor(log10(abs(outvalue)) + 1e-14) local prefix if outvalue > 0 then prefix = 7000 + mag else prefix = 2999 - mag outvalue = outvalue + 10^(mag+1) end sortkey = format('%d', prefix) .. format('%015.0f', floor(outvalue * 10^(14-mag))) end end local sortspan if sortkey and not parms.table_align then sortspan = parms.opt_sortable_debug and '<span data-sort-value="' .. sortkey .. '♠"><span style="border:1px solid">' .. sortkey .. '♠</span></span>' or '<span data-sort-value="' .. sortkey .. '♠"></span>' parms.join_before = sortspan end if parms.table_align then local sort if sortkey then sort = ' data-sort-value="' .. sortkey .. '"' if parms.opt_sortable_debug then parms.join_before = '<span style="border:1px solid">' .. sortkey .. '</span>' end else sort = '' end local style = 'style="text-align:' .. parms.table_align .. ';' local joins = {} for i = 1, 2 do joins[i] = (i == 1 and '' or '\n|') .. style .. user_style(parms, i) .. '"' .. sort .. '|' end parms.table_joins = joins end return sortspan, scaled_value end local cvt_to_hand local function cvtround(parms, info, in_current, out_current) -- Return true, t where t is a table with the conversion results; fields: -- show = rounded, formatted string with the result of converting value in info, -- using the rounding specified in parms. -- singular = true if result (after rounding and ignoring any negative sign) -- is "1", or like "1.00", or is a fraction with value < 1; -- (and more fields shown below, and a calculated 'absvalue' field). -- or return false, t where t is an error message table. -- Input info.clean uses en digits (it has been translated, if necessary). -- Output show uses en or non-en digits as appropriate, or can be spelled. if out_current.builtin == 'hand' then return cvt_to_hand(parms, info, in_current, out_current) end local invalue = in_current.builtin == 'hand' and info.altvalue or info.value local outvalue, extra = convert(parms, invalue, info, in_current, out_current) if parms.need_table_or_sort then parms.need_table_or_sort = nil -- process using first input value only make_table_or_sort(parms, invalue, info, in_current) end if extra then if not outvalue then return false, extra end invalue = extra.invalue or invalue outvalue = extra.outvalue end if not valid_number(outvalue) then return false, { 'cvt_invalid_num' } end local isnegative if outvalue < 0 then isnegative = true outvalue = -outvalue end local precision, show, exponent local denominator = out_current.frac if denominator then show = fraction_table(outvalue, denominator) else precision = parms.precision if not precision then if parms.sigfig then show, exponent = make_sigfig(outvalue, parms.sigfig) elseif parms.opt_round then local n = parms.opt_round if n == 0.5 then local integer, fracpart = math.modf(floor(2 * outvalue + 0.5) / 2) if fracpart == 0 then show = format('%.0f', integer) else show = format('%.1f', integer + fracpart) end else show = format('%.0f', floor((outvalue / n) + 0.5) * n) end elseif in_current.builtin == 'mach' then local sigfig = info.clean:gsub('^[0.]+', ''):gsub('%.', ''):len() + 1 show, exponent = make_sigfig(outvalue, sigfig) else local inclean = info.clean if extra then inclean = extra.clean or inclean show = extra.show end if not show then precision = default_precision(parms, invalue, inclean, info.denominator, outvalue, in_current, out_current, extra) end end end end if precision then if precision >= 0 then local fudge if precision <= 8 then -- Add a fudge to handle common cases of bad rounding due to inability -- to precisely represent some values. This makes the following work: -- {{convert|-100.1|C|K}} and {{convert|5555000|um|m|2}}. -- Old template uses #expr round, which invokes PHP round(). -- LATER: Investigate how PHP round() works. fudge = 2e-14 else fudge = 0 end local fmt = '%.' .. format('%d', precision) .. 'f' local success success, show = pcall(format, fmt, outvalue + fudge) if not success then return false, { 'cvt_big_prec', tostring(precision) } end else precision = -precision -- #digits to zero (in addition to any digits after dot) local shift = 10 ^ precision show = format('%.0f', outvalue/shift) if show ~= '0' then exponent = #show + precision end end end local t = format_number(parms, show, exponent, isnegative) if type(show) == 'string' then -- Set singular using match because on some systems 0.99999999999999999 is 1.0. if exponent then t.singular = (exponent == 1 and show:match('^10*$')) else t.singular = (show == '1' or show:match('^1%.0*$')) end else t.fraction_table = show t.singular = (outvalue <= 1) -- cannot have 'fraction == 1', but if it were possible it would be singular end t.raw_absvalue = outvalue -- absolute value before rounding return true, setmetatable(t, { __index = function (self, key) if key == 'absvalue' then -- Calculate absolute value after rounding, if needed. local clean, exponent = rawget(self, 'clean'), rawget(self, 'exponent') local value = tonumber(clean) -- absolute value (any negative sign has been ignored) if exponent then value = value * 10^exponent end rawset(self, key, value) return value end end }) end function cvt_to_hand(parms, info, in_current, out_current) -- Convert input to hands, inches. -- Return true, t where t is a table with the conversion results; -- or return false, t where t is an error message table. if parms.abbr_org == nil then out_current.usename = true -- default is to show name not symbol end local precision = parms.precision local frac = out_current.frac if not frac and precision and precision > 1 then frac = (precision == 2) and 2 or 4 end local out_next = out_current.out_next if out_next then -- Use magic knowledge to determine whether the next unit is inches without requiring i18n. -- The following ensures that when the output combination "hand in" is used, the inches -- value is rounded to match the hands value. Also, displaying say "61½" instead of 61.5 -- is better as 61.5 implies the value is not 61.4. if out_next.exception == 'subunit_more_precision' then out_next.frac = frac end end -- Convert to inches; calculate hands from that. local dummy_unit_table = { scale = out_current.scale / 4, frac = frac } local success, outinfo = cvtround(parms, info, in_current, dummy_unit_table) if not success then return false, outinfo end local tfrac = outinfo.fraction_table local inches = outinfo.raw_absvalue if tfrac then inches = floor(inches) -- integer part only; fraction added later else inches = floor(inches + 0.5) -- a hands measurement never shows decimals of an inch end local hands, inches = divide(inches, 4) outinfo.absvalue = hands + inches/4 -- supposed to be the absolute rounded value, but this is close enough local inchstr = tostring(inches) -- '0', '1', '2' or '3' if precision and precision <= 0 then -- using negative or 0 for precision rounds to nearest hand hands = floor(outinfo.raw_absvalue/4 + 0.5) inchstr = '' elseif tfrac then -- Always show an integer before fraction (like "15.0½") because "15½" means 15-and-a-half hands. inchstr = numdot .. format_fraction(parms, 'out', false, inchstr, tfrac.numstr, tfrac.denstr) else inchstr = numdot .. from_en(inchstr) end outinfo.show = outinfo.sign .. with_separator(parms, format('%.0f', hands)) .. inchstr return true, outinfo end local function evaluate_condition(value, condition) -- Return true or false from applying a conditional expression to value, -- or throw an error if invalid. -- A very limited set of expressions is supported: -- v < 9 -- v * 9 < 9 -- where -- 'v' is replaced with value -- 9 is any number (as defined by Lua tonumber) -- only en digits are accepted -- '<' can also be '<=' or '>' or '>=' -- In addition, the following form is supported: -- LHS and RHS -- where -- LHS, RHS = any of above expressions. local function compare(value, text) local arithop, factor, compop, limit = text:match('^%s*v%s*([*]?)(.-)([<>]=?)(.*)$') if arithop == nil then error('Invalid default expression', 0) elseif arithop == '*' then factor = tonumber(factor) if factor == nil then error('Invalid default expression', 0) end value = value * factor end limit = tonumber(limit) if limit == nil then error('Invalid default expression', 0) end if compop == '<' then return value < limit elseif compop == '<=' then return value <= limit elseif compop == '>' then return value > limit elseif compop == '>=' then return value >= limit end error('Invalid default expression', 0) -- should not occur end local lhs, rhs = condition:match('^(.-%W)and(%W.*)') if lhs == nil then return compare(value, condition) end return compare(value, lhs) and compare(value, rhs) end local function get_default(value, unit_table) -- Return true, s where s = name of unit's default output unit, -- or return false, t where t is an error message table. -- Some units have a default that depends on the input value -- (the first value if a range of values is used). -- If '!' is in the default, the first bang-delimited field is an -- expression that uses 'v' to represent the input value. -- Example: 'v < 120 ! small ! big ! suffix' (suffix is optional) -- evaluates 'v < 120' as a boolean with result -- 'smallsuffix' if (value < 120), or 'bigsuffix' otherwise. -- Input must use en digits and '.' decimal mark. local default = data_code.default_exceptions[unit_table.defkey or unit_table.symbol] or unit_table.default if not default then local per = unit_table.per if per then local function a_default(v, u) local success, ucode = get_default(v, u) if not success then return '?' -- an unlikely error has occurred; will cause lookup of default to fail end -- Attempt to use only the first unit if a combination or output multiple. -- This is not bulletproof but should work for most cases. -- Where it does not work, the convert will need to specify the wanted output unit. local t = all_units[ucode] if t then local combo = t.combination if combo then -- For a multiple like ftin, the "first" unit (ft) is last in the combination. local i = t.multiple and table_len(combo) or 1 ucode = combo[i] end else -- Try for an automatically generated combination. local item = ucode:match('^(.-)%+') or ucode:match('^(%S+)%s') if all_units[item] then return item end end return ucode end local unit1, unit2 = per[1], per[2] local def1 = (unit1 and a_default(value, unit1) or unit_table.vprefix or '') local def2 = a_default(1, unit2) -- 1 because per unit of denominator return true, def1 .. '/' .. def2 end return false, { 'cvt_no_default', unit_table.symbol } end if default:find('!', 1, true) == nil then return true, default end local t = split(default, '!') if #t == 3 or #t == 4 then local success, result = pcall(evaluate_condition, value, t[1]) if success then default = result and t[2] or t[3] if #t == 4 then default = default .. t[4] end return true, default end end return false, { 'cvt_bad_default', unit_table.symbol } end local linked_pages -- to record linked pages so will not link to the same page more than once local function unlink(unit_table) -- Forget that the given unit has previously been linked (if it has). -- That is needed when processing a range of inputs or outputs when an id -- for the first range value may have been evaluated, but only an id for -- the last value is displayed, and that id may need to be linked. linked_pages[unit_table.unitcode or unit_table] = nil end local function make_link(link, id, unit_table) -- Return wikilink "[[link|id]]", possibly abbreviated as in examples: -- [[Mile|mile]] --> [[mile]] -- [[Mile|miles]] --> [[mile]]s -- However, just id is returned if: -- * no link given (so caller does not need to check if a link was defined); or -- * link has previously been used during the current convert (to avoid overlinking). local link_key if unit_table then link_key = unit_table.unitcode or unit_table else link_key = link end if not link or link == '' or linked_pages[link_key] then return id end linked_pages[link_key] = true -- Following only works for language en, but it should be safe on other wikis, -- and overhead of doing it generally does not seem worthwhile. local l = link:sub(1, 1):lower() .. link:sub(2) if link == id or l == id then return '[[' .. id .. ']]' elseif link .. 's' == id or l .. 's' == id then return '[[' .. id:sub(1, -2) .. ']]s' else return '[[' .. link .. '|' .. id .. ']]' end end local function variable_name(clean, unit_table, exp_multiplier, key_id) -- A unit name may depend on the value in some languages. -- Parameter clean is the unsigned value in en digits, as a string. -- It may represent a number ("1.0") or a fraction ("1+2/3"). -- In varname, fields are separated with "!" and are not empty. -- A field for a unit using an SI prefix has the prefix name inserted, -- replacing '#' if found, or before the field otherwise. if clean:match('[./]') or clean:find('⁄', 1, true) then -- float or fraction if exp_multiplier then clean = exp_multiplier -- force selection of name for a large integer else clean = 34.5 -- force selection of name for a float value end else clean = tonumber(clean) * (exp_multiplier or 1) end local name1, vname if key_id == 'pername' and unit_table.pername then vname = unit_table.pername elseif unit_table.varname then local splitvname = split(unit_table.varname, '!') name1 = unit_table.name1 vname = mw.language.getContentLanguage():convertPlural(clean, name1, unpack(splitvname)) else return clean == 1 and unit_table.name1 or unit_table.name2 end if vname == name1 then -- SI prefix (if any) has been inserted by unit_prefixed_mt. else local si_name = rawget(unit_table, 'si_name') or '' local pos = vname:find('#', 1, true) if pos then vname = vname:sub(1, pos - 1) .. si_name .. vname:sub(pos + 1) else vname = si_name .. vname end end return vname end local function linked_id(parms, unit_table, key_id, want_link, clean, exp_multiplier) -- Return final unit id (symbol or name), optionally with a wikilink, -- and update unit_table.sep if required. -- key_id is one of: 'symbol', 'sym_us', 'name1', 'name1_us', 'name2', 'name2_us', 'pername'. local abbr_on = (key_id == 'symbol' or key_id == 'sym_us') if abbr_on and want_link then local symlink = rawget(unit_table, 'symlink') if symlink then return symlink -- for exceptions that have the linked symbol built-in end end local multiplier = rawget(unit_table, 'multiplier') local per = unit_table.per if per then local paren1, paren2 = '', '' -- possible parentheses around bottom unit local unit1 = per[1] -- top unit_table, or nil local unit2 = per[2] -- bottom unit_table if abbr_on then if not unit1 then unit_table.sep = '' -- no separator in "$2/acre" end if not want_link then local symbol = unit_table.symbol_raw if symbol then return symbol -- for exceptions that have the symbol built-in end end if (unit2.symbol):find('⋅', 1, true) then paren1, paren2 = '(', ')' end end local key_id2 -- unit2 is always singular if key_id == 'name2' then key_id2 = 'name1' elseif key_id == 'name2_us' then key_id2 = 'name1_us' else key_id2 = key_id end if key_id2 == 'name1' or key_id2 == 'name1_us' then key_id2 = unit2.pername and 'pername' or key_id2 -- ukwiki has some units with a different name in "per unitname" end local result if abbr_on then result = '/' elseif omitsep then result = per_word elseif unit1 then result = ' ' .. per_word .. ' ' else result = per_word .. ' ' end if want_link and unit_table.link then if varname and not abbr_on then result = (unit1 and variable_name(clean, unit1, exp_multiplier) or '') .. result .. variable_name('1', unit2, exp_multiplier, key_id2) else result = (unit1 and linked_id(parms, unit1, key_id, false, clean) or '') .. result .. linked_id(parms, unit2, key_id2, false, '1') end if omit_separator(result) then unit_table.sep = '' end return make_link(unit_table.link, result, unit_table) end if unit1 then result = linked_id(parms, unit1, key_id, want_link, clean) .. result if unit1.sep then unit_table.sep = unit1.sep end elseif omitsep then unit_table.sep = '' end return result .. paren1 .. linked_id(parms, unit2, key_id2, want_link, '1') .. paren2 end if multiplier then -- A multiplier (like "100" in "100km") forces the unit to be plural. multiplier = from_en(multiplier) if not omitsep then multiplier = multiplier .. (abbr_on and '&nbsp;' or ' ') end if not abbr_on then if key_id == 'name1' then key_id = 'name2' elseif key_id == 'name1_us' then key_id = 'name2_us' end end else multiplier = '' end local id = unit_table.fixed_name or ((varname and not abbr_on) and variable_name(clean, unit_table, exp_multiplier, key_id) or unit_table[key_id]) if omit_separator(id) then unit_table.sep = '' end if want_link then local link = data_code.link_exceptions[unit_table.linkey or unit_table.symbol] or unit_table.link if link then local before = '' local i = unit_table.customary if i == 1 and parms.opt_sp_us then i = 2 -- show "U.S." not "US" end if i == 3 and abbr_on then i = 4 -- abbreviate "imperial" to "imp" end local customary = text_code.customary_units[i] if customary then -- LATER: This works for language en only, but it's esoteric so ignore for now. local pertext if id:sub(1, 1) == '/' then -- Want unit "/USgal" to display as "/U.S. gal", not "U.S. /gal". pertext = '/' id = id:sub(2) elseif id:sub(1, 4) == 'per ' then -- Similarly want "per U.S. gallon", not "U.S. per gallon" (but in practice this is unlikely to be used). pertext = 'per ' id = id:sub(5) else pertext = '' end -- Omit any "US"/"U.S."/"imp"/"imperial" from start of id since that will be inserted. local removes = (i < 3) and { 'US&nbsp;', 'US ', 'U.S.&nbsp;', 'U.S. ' } or { 'imp&nbsp;', 'imp ', 'imperial ' } for _, prefix in ipairs(removes) do local plen = #prefix if id:sub(1, plen) == prefix then id = id:sub(plen + 1) break end end before = pertext .. make_link(customary.link, customary[1]) .. ' ' end id = before .. make_link(link, id, unit_table) end end return multiplier .. id end local function make_id(parms, which, unit_table) -- Return id, f where -- id = unit name or symbol, possibly modified -- f = true if id is a name, or false if id is a symbol -- using the value for index 'which', and for 'in' or 'out' (unit_table.inout). -- Result is '' if no symbol/name is to be used. -- In addition, set unit_table.sep = ' ' or '&nbsp;' or '' -- (the separator that caller will normally insert before the id). if parms.opt_values then unit_table.sep = '' return '' end local inout = unit_table.inout local info = unit_table.valinfo[which] local lk = parms.lk local want_link = (lk == 'on' or lk == inout) local singular = info.singular local want_name local exp_multiplier if unit_table.usename then want_name = true else if parms.abbr_org == nil then if parms.wantname then want_name = true end if unit_table.usesymbol then want_name = false end end if want_name == nil then local abbr = parms.abbr if abbr == 'on' or abbr == inout or (abbr == 'mos' and inout == 'out') then want_name = false else want_name = true end end end local key if want_name then if lk == nil and unit_table.builtin == 'hand' then want_link = true end if parms.opt_use_nbsp then unit_table.sep = '&nbsp;' else unit_table.sep = ' ' end if parms.opt_singular then local value if inout == 'in' then value = info.value else value = info.absvalue end if value then -- some unusual units do not always set value field value = abs(value) singular = (0 < value and value < 1.0001) end end if unit_table.engscale then -- engscale: so "|1|e3kg" gives "1 thousand kilograms" (plural) singular = false exp_multiplier = 10^unit_table.engscale.exponent -- '1 gram' and '1 thousand grams', for example, may use different names for the unit in some languages end key = (parms.opt_adjectival or singular) and 'name1' or 'name2' if parms.opt_sp_us then key = key .. '_us' end else if unit_table.builtin == 'hand' then if parms.opt_hand_hh then unit_table.symbol = 'hh' -- LATER: might want i18n applied to this end end unit_table.sep = '&nbsp;' key = parms.opt_sp_us and 'sym_us' or 'symbol' end return linked_id(parms, unit_table, key, want_link, info.clean, exp_multiplier), want_name end local function decorate_value(parms, unit_table, which, enable_number_word) -- If needed, update unit_table so values will be shown with extra information. -- For consistency with the old template (but different from fmtpower), -- the style to display powers of 10 includes "display:none" to allow some -- browsers to copy, for example, "10³" as "10^3", rather than as "103". -- The engscale table may have entries such as either of the following: -- ["3"] = { "thousand", exponent = 3 }, -- ["3"] = { name1 = "A", varname = "B!C!D", exponent = 3 }, -- The first option always uses "thousand" as the exponent name. -- The second option uses one of A, B, C, D as the exponent name, depending on the value. local info local engscale = unit_table.engscale local prefix = unit_table.vprefix if engscale or prefix then info = unit_table.valinfo[which] if info.decorated then return -- do not redecorate if repeating convert end info.decorated = true if engscale then -- Range |10|-|20|e3km| gives '10×10³–20×10³' or '10–20 thousand'. local inout = unit_table.inout local abbr = parms.abbr if (abbr == 'on' or abbr == inout) and not (unit_table.this_number_word or parms.number_word) then info.show = info.show .. '<span style="margin-left:0.2em">×<span style="margin-left:0.1em">' .. from_en('10') .. '</span></span><s style="display:none">^</s><sup>' .. from_en(tostring(engscale.exponent)) .. '</sup>' elseif enable_number_word then local number_id local name = engscale.varname and variable_name(info.clean, engscale) or engscale[1] if parms.lk == 'on' or parms.lk == inout then number_id = make_link(engscale.link, name) else number_id = name end -- WP:NUMERAL recommends "&nbsp;" in values like "12 million". info.show = info.show .. (parms.opt_adjectival and '-' or '&nbsp;') .. number_id end end if prefix then info.show = prefix .. info.show end end end local function process_input(parms, in_current) -- Processing required once per conversion. -- Return block of text to represent input (value/unit). if parms.opt_output_only or parms.opt_output_number_only or parms.opt_output_unit_only then parms.joins = { '', '' } return '' end local first_unit local composite = in_current.composite -- nil or table of units if composite then first_unit = composite[1] else first_unit = in_current end local id1, want_name = make_id(parms, 1, first_unit) local sep = first_unit.sep -- separator between value and unit, set by make_id local preunit = parms.preunit1 if preunit then sep = '' -- any separator is included in preunit else preunit = '' end if parms.opt_input_unit_only then parms.joins = { '', '' } if composite then local parts = { id1 } for i, unit in ipairs(composite) do if i > 1 then table.insert(parts, (make_id(parms, 1, unit))) end end id1 = table.concat(parts, ' ') end if want_name and parms.opt_adjectival then return preunit .. hyphenated(id1) end return preunit .. id1 end if parms.opt_also_symbol and not composite and not parms.opt_flip then local join1 = parms.joins[1] if join1 == ' (' or join1 == ' [' then parms.joins = { ' [' .. first_unit[parms.opt_sp_us and 'sym_us' or 'symbol'] .. ']' .. join1 , parms.joins[2] } end end if in_current.builtin == 'mach' and first_unit.sep ~= '' then -- '' means omitsep with non-enwiki name local prefix = id1 .. '&nbsp;' local range = parms.range local valinfo = first_unit.valinfo local result = prefix .. valinfo[1].show if range then -- For simplicity and because more not needed, handle one range item only. local prefix2 = make_id(parms, 2, first_unit) .. '&nbsp;' result = range_text(range[1], want_name, parms, result, prefix2 .. valinfo[2].show, 'in', {spaced=true}) end return preunit .. result end if composite then -- Simplify: assume there is no range, and no decoration. local mid = (not parms.opt_flip) and parms.mid or '' local sep1 = '&nbsp;' local sep2 = ' ' if parms.opt_adjectival and want_name then sep1 = '-' sep2 = '-' end if omitsep and sep == '' then -- Testing the id of the most significant unit should be sufficient. sep1 = '' sep2 = '' end local parts = { first_unit.valinfo[1].show .. sep1 .. id1 } for i, unit in ipairs(composite) do if i > 1 then table.insert(parts, unit.valinfo[1].show .. sep1 .. (make_id(parms, 1, unit))) end end return table.concat(parts, sep2) .. mid end local add_unit = (parms.abbr == 'mos') or parms[parms.opt_flip and 'out_range_x' or 'in_range_x'] or (not want_name and parms.abbr_range_x) local range = parms.range if range and not add_unit then unlink(first_unit) end local id = range and make_id(parms, range.n + 1, first_unit) or id1 local extra, was_hyphenated = hyphenated_maybe(parms, want_name, sep, id, 'in') if was_hyphenated then add_unit = false end local result local valinfo = first_unit.valinfo if range then for i = 0, range.n do local enable_number_word if i == range.n then add_unit = false enable_number_word = true end decorate_value(parms, first_unit, i+1, enable_number_word) local show = valinfo[i+1].show if add_unit then show = show .. first_unit.sep .. (i == 0 and id1 or make_id(parms, i+1, first_unit)) end if i == 0 then result = show else result = range_text(range[i], want_name, parms, result, show, 'in') end end else decorate_value(parms, first_unit, 1, true) result = valinfo[1].show end return result .. preunit .. extra end local function process_one_output(parms, out_current) -- Processing required for each output unit. -- Return block of text to represent output (value/unit). local inout = out_current.inout -- normally 'out' but can be 'in' for order=out local id1, want_name = make_id(parms, 1, out_current) local sep = out_current.sep -- set by make_id local preunit = parms.preunit2 if preunit then sep = '' -- any separator is included in preunit else preunit = '' end if parms.opt_output_unit_only then if want_name and parms.opt_adjectival then return preunit .. hyphenated(id1) end return preunit .. id1 end if out_current.builtin == 'mach' and out_current.sep ~= '' then -- '' means omitsep with non-enwiki name local prefix = id1 .. '&nbsp;' local range = parms.range local valinfo = out_current.valinfo local result = prefix .. valinfo[1].show if range then -- For simplicity and because more not needed, handle one range item only. result = range_text(range[1], want_name, parms, result, prefix .. valinfo[2].show, inout, {spaced=true}) end return preunit .. result end local add_unit = (parms[parms.opt_flip and 'in_range_x' or 'out_range_x'] or (not want_name and parms.abbr_range_x)) and not parms.opt_output_number_only local range = parms.range if range and not add_unit then unlink(out_current) end local id = range and make_id(parms, range.n + 1, out_current) or id1 local extra, was_hyphenated = hyphenated_maybe(parms, want_name, sep, id, inout) if was_hyphenated then add_unit = false end local result local valinfo = out_current.valinfo if range then for i = 0, range.n do local enable_number_word if i == range.n then add_unit = false enable_number_word = true end decorate_value(parms, out_current, i+1, enable_number_word) local show = valinfo[i+1].show if add_unit then show = show .. out_current.sep .. (i == 0 and id1 or make_id(parms, i+1, out_current)) end if i == 0 then result = show else result = range_text(range[i], want_name, parms, result, show, inout) end end else decorate_value(parms, out_current, 1, true) result = valinfo[1].show end if parms.opt_output_number_only then return result end return result .. preunit .. extra end local function make_output_single(parms, in_unit_table, out_unit_table) -- Return true, item where item = wikitext of the conversion result -- for a single output (which is not a combination or a multiple); -- or return false, t where t is an error message table. if parms.opt_order_out and in_unit_table.unitcode == out_unit_table.unitcode then out_unit_table.valinfo = in_unit_table.valinfo else out_unit_table.valinfo = collection() for _, v in ipairs(in_unit_table.valinfo) do local success, info = cvtround(parms, v, in_unit_table, out_unit_table) if not success then return false, info end out_unit_table.valinfo:add(info) end end return true, process_one_output(parms, out_unit_table) end local function make_output_multiple(parms, in_unit_table, out_unit_table) -- Return true, item where item = wikitext of the conversion result -- for an output which is a multiple (like 'ftin'); -- or return false, t where t is an error message table. local inout = out_unit_table.inout -- normally 'out' but can be 'in' for order=out local multiple = out_unit_table.multiple -- table of scaling factors (will not be nil) local combos = out_unit_table.combination -- table of unit tables (will not be nil) local abbr = parms.abbr local abbr_org = parms.abbr_org local disp = parms.disp local want_name = (abbr_org == nil and (disp == 'or' or disp == 'slash')) or not (abbr == 'on' or abbr == inout or abbr == 'mos') local want_link = (parms.lk == 'on' or parms.lk == inout) local mid = parms.opt_flip and parms.mid or '' local sep1 = '&nbsp;' local sep2 = ' ' if parms.opt_adjectival and want_name then sep1 = '-' sep2 = '-' end local do_spell = parms.opt_spell_out parms.opt_spell_out = nil -- so the call to cvtround does not spell the value local function make_result(info, isfirst) local fmt, outvalue, sign local results = {} for i = 1, #combos do local tfrac, thisvalue, strforce local out_current = combos[i] out_current.inout = inout local scale = multiple[i] if i == 1 then -- least significant unit ('in' from 'ftin') local decimals out_current.frac = out_unit_table.frac local success, outinfo = cvtround(parms, info, in_unit_table, out_current) if not success then return false, outinfo end if isfirst then out_unit_table.valinfo = { outinfo } -- in case output value of first least significant unit is needed end sign = outinfo.sign tfrac = outinfo.fraction_table if outinfo.is_scientific then strforce = outinfo.show decimals = '' elseif tfrac then decimals = '' else local show = outinfo.show -- number as a string in local language local p1, p2 = show:find(numdot, 1, true) decimals = p1 and show:sub(p2 + 1) or '' -- text after numdot, if any end fmt = '%.' .. ulen(decimals) .. 'f' -- to reproduce precision if decimals == '' then if tfrac then outvalue = floor(outinfo.raw_absvalue) -- integer part only; fraction added later else outvalue = floor(outinfo.raw_absvalue + 0.5) -- keep all integer digits of least significant unit end else outvalue = outinfo.absvalue end end if scale then outvalue, thisvalue = divide(outvalue, scale) else thisvalue = outvalue end local id if want_name then if varname then local clean if strforce or tfrac then clean = '.1' -- dummy value to force name for floating point else clean = format(fmt, thisvalue) end id = variable_name(clean, out_current) else local key = 'name2' if parms.opt_adjectival then key = 'name1' elseif tfrac then if thisvalue == 0 then key = 'name1' end elseif parms.opt_singular then if 0 < thisvalue and thisvalue < 1.0001 then key = 'name1' end else if thisvalue == 1 then key = 'name1' end end id = out_current[key] end else id = out_current['symbol'] end if i == 1 and omit_separator(id) then -- Testing the id of the least significant unit should be sufficient. sep1 = '' sep2 = '' end if want_link then local link = out_current.link if link then id = make_link(link, id, out_current) end end local strval local spell_inout = (i == #combos or outvalue == 0) and inout or '' -- trick so the last value processed (first displayed) has uppercase, if requested if strforce and outvalue == 0 then sign = '' -- any sign is in strforce strval = strforce -- show small values in scientific notation; will only use least significant unit elseif tfrac then local wholestr = (thisvalue > 0) and tostring(thisvalue) or nil strval = format_fraction(parms, spell_inout, false, wholestr, tfrac.numstr, tfrac.denstr, do_spell) else strval = (thisvalue == 0) and from_en('0') or with_separator(parms, format(fmt, thisvalue)) if do_spell then strval = spell_number(parms, spell_inout, strval) or strval end end table.insert(results, strval .. sep1 .. id) if outvalue == 0 then break end fmt = '%.0f' -- only least significant unit can have a non-integral value end local reversed, count = {}, #results for i = 1, count do reversed[i] = results[count + 1 - i] end return true, sign .. table.concat(reversed, sep2) end local valinfo = in_unit_table.valinfo local success, result = make_result(valinfo[1], true) if not success then return false, result end local range = parms.range if range then for i = 1, range.n do local success, result2 = make_result(valinfo[i+1]) if not success then return false, result2 end result = range_text(range[i], want_name, parms, result, result2, inout, {spaced=true}) end end return true, result .. mid end local function process(parms, in_unit_table, out_unit_table) -- Return true, s, outunit where s = final wikitext result, -- or return false, t where t is an error message table. linked_pages = {} local success, bad_output local bad_input_mcode = in_unit_table.bad_mcode -- nil if input unit is a valid convert unit local out_unit = parms.out_unit if out_unit == nil or out_unit == '' or type(out_unit) == 'function' then -- out_unit can be set to a function by adjustparameters in Module:Convert/wikidata. if bad_input_mcode or parms.opt_input_unit_only then bad_output = '' else local getdef = type(out_unit) == 'function' and out_unit or get_default success, out_unit = getdef(in_unit_table.valinfo[1].value, in_unit_table) parms.out_unit = out_unit if not success then bad_output = out_unit end end end if not bad_output and not out_unit_table then success, out_unit_table = lookup(parms, out_unit, 'any_combination') if success then local mismatch = check_mismatch(in_unit_table, out_unit_table) if mismatch then bad_output = mismatch end else bad_output = out_unit_table end end local lhs, rhs local flipped = parms.opt_flip and not bad_input_mcode if bad_output then rhs = (bad_output == '') and '' or message(parms, bad_output) elseif parms.opt_input_unit_only then rhs = '' else local combos -- nil (for 'ft' or 'ftin'), or table of unit tables (for 'm ft') if not out_unit_table.multiple then -- nil/false ('ft' or 'm ft'), or table of factors ('ftin') combos = out_unit_table.combination end local frac = parms.frac -- nil or denominator of fraction for output values if frac then -- Apply fraction to the unit (if only one), or to non-SI units (if a combination), -- except that if a precision is also specified, the fraction only applies to -- the hand unit; that allows the following result: -- {{convert|156|cm|in hand|1|frac=2}} → 156 centimetres (61.4 in; 15.1½ hands) -- However, the following is handled elsewhere as a special case: -- {{convert|156|cm|hand in|1|frac=2}} → 156 centimetres (15.1½ hands; 61½ in) if combos then local precision = parms.precision for _, unit in ipairs(combos) do if unit.builtin == 'hand' or (not precision and not unit.prefixes) then unit.frac = frac end end else out_unit_table.frac = frac end end local outputs = {} local imax = combos and #combos or 1 -- 1 (single unit) or number of unit tables if imax == 1 then parms.opt_order_out = nil -- only useful with an output combination end if not flipped and not parms.opt_order_out then -- Process left side first so any duplicate links (from lk=on) are suppressed -- on right. Example: {{convert|28|e9pc|e9ly|abbr=off|lk=on}} lhs = process_input(parms, in_unit_table) end for i = 1, imax do local success, item local out_current = combos and combos[i] or out_unit_table out_current.inout = 'out' if i == 1 then if imax > 1 and out_current.builtin == 'hand' then out_current.out_next = combos[2] -- built-in hand can influence next unit in a combination end if parms.opt_order_out then out_current.inout = 'in' end end if out_current.multiple then success, item = make_output_multiple(parms, in_unit_table, out_current) else success, item = make_output_single(parms, in_unit_table, out_current) end if not success then return false, item end outputs[i] = item end if parms.opt_order_out then lhs = outputs[1] table.remove(outputs, 1) end local sep = parms.table_joins and parms.table_joins[2] or parms.join_between rhs = table.concat(outputs, sep) end if flipped or not lhs then local input = process_input(parms, in_unit_table) if flipped then lhs = rhs rhs = input else lhs = input end end if parms.join_before then lhs = parms.join_before .. lhs end local wikitext if bad_input_mcode then if bad_input_mcode == '' then wikitext = lhs else wikitext = lhs .. message(parms, bad_input_mcode) end elseif parms.table_joins then wikitext = parms.table_joins[1] .. lhs .. parms.table_joins[2] .. rhs else wikitext = lhs .. parms.joins[1] .. rhs .. parms.joins[2] end if parms.warnings and not bad_input_mcode then wikitext = wikitext .. parms.warnings end return true, get_styles(parms) .. wikitext, out_unit_table end local function _main_convert(confArgs, parmsArgs, frame) -- Do convert, and if needed, do it again with higher default precision. local parms = { frame = frame or mw.getCurrentFrame() } -- will hold template arguments, after translation set_config(confArgs) local success, result = get_parms(parms, parmsArgs) if success then if type(result) ~= 'table' then return tostring(result) end local in_unit_table = result local out_unit_table for _ = 1, 2 do -- use counter so cannot get stuck repeating convert success, result, out_unit_table = process(parms, in_unit_table, out_unit_table) if success and parms.do_convert_again then parms.do_convert_again = false else break end end end -- If input=x gives a problem, the result should be just the user input -- (if x is a property like P123 it has been replaced with ''). -- An unknown input unit would display the input and an error message -- with success == true at this point. -- Also, can have success == false with a message that outputs an empty string. if parms.input_text then if success and not parms.have_problem then return result end local cat if parms.tracking then -- Add a tracking category using the given text as the category sort key. -- There is currently only one type of tracking, but in principle multiple -- items could be tracked, using different sort keys for convenience. cat = wanted_category('tracking', parms.tracking) end return parms.input_text .. (cat or '') end if parms.error_text then if success and not parms.have_problem then return result end return parms.error_text end return success and result or message(parms, result) end local function main_convert(frame) return _main_convert(frame.args, frame:getParent().args, frame) end local function _unit(unitcode, options) -- Helper function for Module:Val to look up a unit. -- Parameter unitcode must be a string to identify the wanted unit. -- Parameter options must be nil or a table with optional fields: -- value = number (for sort key; default value is 1) -- scaled_top = nil for a normal unit, or a number for a unit which is -- the denominator of a per unit (for sort key) -- si = { 'symbol', 'link' } -- (a table with two strings) to make an SI unit -- that will be used for the look up -- link = true if result should be [[linked]] -- sort = 'on' or 'debug' if result should include a sort key in a -- span element ('debug' makes the key visible) -- name = true for the name of the unit instead of the symbol -- us = true for the US spelling of the unit, if any -- Return nil if unitcode is not a non-empty string. -- Otherwise return a table with fields: -- text = requested symbol or name of unit, optionally linked -- scaled_value = input value adjusted by unit scale; used for sort key -- sortspan = span element with sort key like that provided by {{ntsh}}, -- calculated from the result of converting value -- to a base unit with scale 1. -- unknown = true if the unitcode was not known unitcode = strip(unitcode) if unitcode == nil or unitcode == '' then return nil end set_config({}) linked_pages = {} options = options or {} local parms = { abbr = options.name and 'off' or 'on', lk = options.link and 'on' or nil, opt_sp_us = options.us and true or nil, opt_ignore_error = true, opt_no_extra = true, -- do not add pages using this function to 'what links here' for Module:Convert/extra opt_sortable_on = options.sort == 'on' or options.sort == 'debug', opt_sortable_debug = options.sort == 'debug', } if options.si then -- Make a dummy table of units (just one unit) for lookup to use. -- This makes lookup recognize any SI prefix in the unitcode. local symbol = options.si[1] or '?' parms.unittable = { [symbol] = { _name1 = symbol, _name2 = symbol, _symbol = symbol, utype = symbol, scale = symbol == 'g' and 0.001 or 1, prefixes = 1, default = symbol, link = options.si[2], }} end local success, unit_table = lookup(parms, unitcode, 'no_combination') if not success then unit_table = setmetatable({ symbol = unitcode, name2 = unitcode, utype = unitcode, scale = 1, default = '', defkey = '', linkey = '' }, unit_mt) end local value = tonumber(options.value) or 1 local clean = tostring(abs(value)) local info = { value = value, altvalue = value, singular = (clean == '1'), clean = clean, show = clean, } unit_table.inout = 'in' unit_table.valinfo = { info } local sortspan, scaled_value if options.sort then sortspan, scaled_value = make_table_or_sort(parms, value, info, unit_table, options.scaled_top) end return { text = make_id(parms, 1, unit_table), sortspan = sortspan, scaled_value = scaled_value, unknown = not success and true or nil, } end return { convert = main_convert, _convert = _main_convert, _unit = _unit } r4djqnuzbxaut805hk89ncew56hajfu Module:Convert/data 828 7136 150721 133292 2026-08-29T09:34:52Z آیات محراج 11062 Added more data 150721 Scribunto text/plain -- Conversion data used by [[Module:Convert]] which uses mw.loadData() for -- read-only access to this module so that it is loaded only once per page. -- -- These data tables follow: -- all_units all properties for a unit, including default output -- default_exceptions exceptions for default output ('kg' and 'g' have different defaults) -- link_exceptions exceptions for links ('kg' and 'g' have different links) -- -- These tables are generated by a script which reads the wikitext of a page that -- documents the required properties of each unit; see [[Module:Convert/doc]]. --------------------------------------------------------------------------- -- Do not change the data in this table because it is created by running -- -- a script that reads the wikitext from a wiki page (see note above). -- --------------------------------------------------------------------------- local all_units = { ["Gy"] = { _name1 = "گری", _symbol = "Gy", utype = "absorbed radiation dose", scale = 1, prefixes = 1, default = "rad", link = "گری (اکائی)", }, ["rad"] = { _name1 = "رَد", _symbol = "rad", utype = "absorbed radiation dose", scale = 0.01, prefixes = 1, default = "Gy", link = "رد (اکائی)", }, ["cm/s2"] = { name1 = "سؠنٹی میٖٹَر فی مجذور سؠکَنٛڈ", name1_us = "سؠنٹی میٖٹَر فی مجذور سؠکَنٛڈ", name2 = "سؠنٹی میٖٹَر فی مجذور سؠکَنٛڈ", name2_us = "سؠنٹی میٖٹَر فی مجذور سؠکَنٛڈ", symbol = "cm/s<sup>2</sup>", utype = "acceleration", scale = 0.01, default = "ft/s2", link = "گال (اکائی)", }, ["ft/s2"] = { name1 = "فُٹ فی مجذور سؠکَنٛڈ", name2 = "فُٹ فی مجذور سؠکَنٛڈ", symbol = "فُٹ/سؠکَنٛڈ<sup>2</sup>", utype = "acceleration", scale = 0.3048, default = "m/s2", }, ["g0"] = { name1 = "گرانش استاندارد", name2 = "گرانش استاندارد", symbol = "''g<sub>0</sub>''", utype = "acceleration", scale = 9.80665, default = "m/s2", }, ["km/hs"] = { name1 = "کِلومیٖٹَر فی گھنٹہٕ فی سؠکَنٛڈ", name1_us = "کِلومیٖٹَر فی گھنٹہٕ فی سؠکَنٛڈ", name2 = "کِلومیٖٹَر فی گھنٹہٕ فی سؠکَنٛڈ", name2_us = "کِلومیٖٹَر فی گھنٹہٕ فی سؠکَنٛڈ", symbol = "km/(h·s)", utype = "acceleration", scale = 0.27777777777777779, default = "mph/s", link = "شتاب", }, ["km/s2"] = { name1 = "کِلومیٖٹَر فی مجذور سؠکَنٛڈ", name1_us = "کِلومیٖٹَر فی مجذور سؠکَنٛڈ", name2 = "کِلومیٖٹَر فی مجذور سؠکَنٛڈ", name2_us = "کِلومیٖٹَر فی مجذور سؠکَنٛڈ", symbol = "km/s<sup>2</sup>", utype = "acceleration", scale = 1000, default = "mph/s", link = "شتاب", }, ["m/s2"] = { name1 = "میٖٹَر فی مجذور سؠکَنٛڈ", name1_us = "میٖٹَر فی مجذور سؠکَنٛڈ", name2 = "میٖٹَر فی مجذور سؠکَنٛڈ", name2_us = "میٖٹَر فی مجذور سؠکَنٛڈ", symbol = "m/s<sup>2</sup>", utype = "acceleration", scale = 1, default = "ft/s2", }, ["mph/s"] = { name1 = "میٖل فی گھنٹہٕ فی سؠکَنٛڈ", name2 = "میٖل فی گھنٹہٕ فی سؠکَنٛڈ", symbol = "میٖل فی گھنٹہٕ/سؠکَنٛڈ", utype = "acceleration", scale = 0.44704, default = "km/hs", link = "شتاب", }, ["km/h/s"] = { target = "km/hs", }, ["standard gravity"] = { target = "g0", }, ["1000sqft"] = { name1 = "ہزار مُرَبَع فُٹ", name2 = "ہزار مُرَبَع فُٹ", symbol = "1000&nbsp;فُٹ&nbsp;مُرَبَع", utype = "area", scale = 92.90304, default = "m2", link = "مُرَبَع فُٹ", }, ["a"] = { _name1 = "ہیکٹر", _symbol = "a", utype = "area", scale = 100, prefixes = 1, default = "sqft", link = "ہیکٹر", }, ["acre"] = { symbol = "acre", usename = 1, utype = "area", scale = 4046.8564224, default = "ha", }, ["acre-sing"] = { symbol = "acre", usename = 1, utype = "area", scale = 4046.8564224, default = "ha", }, ["arpent"] = { symbol = "arpent", usename = 1, utype = "area", scale = 3418.89, default = "ha", }, ["cda"] = { name1 = "ایکڑ اسپانیایی", symbol = "cda", utype = "area", scale = 3930.395625, default = "acre ha", }, ["Cypriot donum"] = { symbol = "donum", usename = 1, utype = "area", scale = 1337.803776, default = "km2 sqmi", link = "دونم", }, ["Cypriot dunam"] = { symbol = "dunam", usename = 1, utype = "area", scale = 1337.803776, default = "km2 sqmi", }, ["Cypriot dunum"] = { symbol = "dunum", usename = 1, utype = "area", scale = 1337.803776, default = "km2 sqmi", link = "دونم", }, ["Cypriot dönüm"] = { symbol = "dönüm", usename = 1, utype = "area", scale = 1337.803776, default = "km2 sqmi", link = "دونم", }, ["daa"] = { name1 = "دکار", symbol = "daa", utype = "area", scale = 1000, default = "km2 sqmi", }, ["donum"] = { symbol = "donum", usename = 1, utype = "area", scale = 1000, default = "km2 sqmi", link = "دونم", }, ["dunam"] = { symbol = "dunam", usename = 1, utype = "area", scale = 1000, default = "km2 sqmi", }, ["dunum"] = { symbol = "dunum", usename = 1, utype = "area", scale = 1000, default = "km2 sqmi", link = "دونم", }, ["dönüm"] = { symbol = "dönüm", usename = 1, utype = "area", scale = 1000, default = "km2 sqmi", link = "دونم", }, ["foot2"] = { name1 = "چَکور فُٹ", name2 = "چَکور فُٹ", symbol = "sq&nbsp;ft", utype = "area", scale = 0.09290304, default = "m2", }, ["ha"] = { name1 = "ہیکٹر", symbol = "ha", utype = "area", scale = 10000, default = "acre", }, ["hectare"] = { name1 = "ہیکٹر", symbol = "ha", usename = 1, utype = "area", scale = 10000, default = "acre", }, ["Iraqi donum"] = { symbol = "donum", usename = 1, utype = "area", scale = 2500, default = "km2 sqmi", link = "دونم", }, ["Iraqi dunam"] = { symbol = "dunam", usename = 1, utype = "area", scale = 2500, default = "km2 sqmi", }, ["Iraqi dunum"] = { symbol = "dunum", usename = 1, utype = "area", scale = 2500, default = "km2 sqmi", link = "دونم", }, ["Iraqi dönüm"] = { symbol = "dönüm", usename = 1, utype = "area", scale = 2500, default = "km2 sqmi", link = "دونم", }, ["Irish acre"] = { name1 = "ایکڑ آئرش", symbol = "Irish&nbsp;acres", utype = "area", scale = 6555.2385024, default = "ha", link = "ایکڑ (آئرش)", }, ["m2"] = { _name1 = "چَکور میٖٹَر", _name1_us= "چَکور میٖٹَر", _symbol = "میٖٹَر<sup>2</sup>", utype = "area", scale = 1, prefixes = 2, default = "sqft", link = "چَکور میٖٹَر", }, ["old donum"] = { symbol = "donum", usename = 1, utype = "area", scale = 919.3, default = "km2 sqmi", link = "دونم", }, ["old dunam"] = { symbol = "dunam", usename = 1, utype = "area", scale = 919.3, default = "km2 sqmi", }, ["old dunum"] = { symbol = "dunum", usename = 1, utype = "area", scale = 919.3, default = "km2 sqmi", link = "دونم", }, ["old dönüm"] = { symbol = "dönüm", usename = 1, utype = "area", scale = 919.3, default = "km2 sqmi", link = "دونم", }, ["pondemaat"] = { name1 = "پونڈمت", name2 = "پونڈمیت", symbol = "pond", utype = "area", scale = 3674.363358816, default = "m2", link = ":nl:pondemaat", }, ["pyeong"] = { name2 = "پیٛونٛگ", symbol = "pyeong", usename = 1, utype = "area", scale = 3.3057851239669422, default = "m2", }, ["rood"] = { symbol = "rood", usename = 1, utype = "area", scale = 1011.7141056, default = "sqft sqm", link = "روٗد (اکائی)", }, ["sqfoot"] = { name1 = "چَکور فُٹ", name2 = "چَکور فُٹ", symbol = "sq&nbsp;ft", utype = "area", scale = 0.09290304, default = "m2", }, ["sqft"] = { name1 = "چَکور فُٹ", name2 = "چَکور فُٹ", symbol = "فُٹ&nbsp;چَکور", utype = "area", scale = 0.09290304, default = "m2", }, ["sqin"] = { name1 = "چَکور آنٛچہِ", name2 = "چَکور آنٛچہِ", symbol = "sq&nbsp;in", utype = "area", scale = 0.00064516, default = "cm2", }, ["sqmi"] = { name1 = "چَکور میٖل", symbol = "چَکور&nbsp;میٖل", utype = "area", scale = 2589988.110336, default = "km2", }, ["sqnmi"] = { name1 = "میٖل دریائی چَکور", symbol = "چَکور&nbsp;سَمَنٛدٔری میٖل", utype = "area", scale = 3429904, default = "km2 sqmi", link = "میٖل دریائی", }, ["sqverst"] = { symbol = "ورست چَکور", usename = 1, utype = "area", scale = 1138062.24, default = "km2 sqmi", link = "ورست", }, ["sqyd"] = { name1 = "یارڈ چَکور", symbol = "چَکور&nbsp;یارڈ", utype = "area", scale = 0.83612736, default = "m2", }, ["tsubo"] = { name2 = "ژُبو", symbol = "tsubo", usename = 1, utype = "area", scale = 3.3057851239669422, default = "m2", link = "Japanese units of measurement#Area", }, ["acres"] = { target = "acre", }, ["are"] = { target = "a", }, ["Cypriot donum diaeresis"] = { target = "Cypriot dönüm", }, ["Cypriot donum dots"] = { target = "Cypriot dönüm", }, ["decare"] = { target = "daa", }, ["donum diaeresis"] = { target = "dönüm", }, ["donum dots"] = { target = "dönüm", }, ["ft2"] = { target = "sqft", }, ["in2"] = { target = "sqin", }, ["Iraqi donum diaeresis"] = { target = "Iraqi dönüm", }, ["Iraqi donum dots"] = { target = "Iraqi dönüm", }, ["km²"] = { target = "km2", }, ["metric donum"] = { target = "donum", }, ["metric donum diaeresis"] = { target = "dönüm", }, ["metric donum dots"] = { target = "dönüm", }, ["metric dunam"] = { target = "dunam", }, ["metric dönüm"] = { target = "dönüm", }, ["mi2"] = { target = "sqmi", }, ["million acre"] = { target = "e6acre", }, ["million acres"] = { target = "e6acre", }, ["million hectares"] = { target = "e6ha", }, ["m²"] = { target = "m2", }, ["nmi2"] = { target = "sqnmi", }, ["old donum diaeresis"] = { target = "old dönüm", }, ["old donum dots"] = { target = "old dönüm", }, ["pond"] = { target = "pondemaat", }, ["sq arp"] = { target = "arpent", }, ["sq feet"] = { shouldbe = "Use %{sqft%} (not %{sq feet%})", }, ["sqkm"] = { target = "km2", }, ["sqm"] = { target = "m2", }, ["square verst"] = { target = "sqverst", }, ["verst2"] = { target = "sqverst", }, ["yd2"] = { target = "sqyd", }, ["m2/ha"] = { name1 = "میٖٹَر مُرَبَع فی ہیکٹر", name1_us = "میٖٹَر مُرَبَع فی ہیکٹر", name2 = "میٖٹَر مُرَبَع فی ہیکٹر", name2_us = "میٖٹَر مُرَبَع فی ہیکٹر", symbol = "میٖٹَر<sup>2</sup>/ہیکٹر", utype = "area per unit area", scale = 0.0001, default = "sqft/acre", link = "Basal area", }, ["sqft/acre"] = { name1 = "فُٹ چَکور فی ایکڑ", name2 = "فُٹ چَکور فی ایکڑ", symbol = "ایکڑ&nbsp;فُٹ/چَکور", utype = "area per unit area", scale = 2.295684113865932e-5, default = "m2/ha", }, ["A.h"] = { name1 = "آمپر گھنٹہٕ", symbol = "A·h", utype = "charge", scale = 3600, default = "coulomb", }, ["coulomb"] = { _name1 = "کولن", _symbol = "C", utype = "charge", scale = 1, prefixes = 1, default = "e", link = "کولن", }, ["e"] = { name1 = "بار الکتریکی مقدماتی", symbol = "''e''", utype = "charge", scale = 1.602176487e-19, default = "coulomb", }, ["A·h"] = { target = "A.h", }, ["g-mol"] = { name1 = "گرٛام مول", symbol = "g-mol", utype = "chemical amount", scale = 1, default = "lbmol", link = "مول", }, ["gmol"] = { name1 = "گرٛام مول", symbol = "gmol", utype = "chemical amount", scale = 1, default = "lbmol", link = "مول", }, ["kmol"] = { name1 = "کِلومول", symbol = "کِلومول", utype = "chemical amount", scale = 1000, default = "lbmol", link = "مول", }, ["lb-mol"] = { name1 = "پونڈمول", symbol = "lb-mol", utype = "chemical amount", scale = 453.59237, default = "mol", link = "مول", }, ["lbmol"] = { name1 = "پونڈمول", symbol = "lbmol", utype = "chemical amount", scale = 453.59237, default = "mol", link = "مول", }, ["mol"] = { name1 = "مول", symbol = "mol", utype = "chemical amount", scale = 1, default = "lbmol", link = "مول", }, ["kgCO2/L"] = { name1 = "کِلوگرٛام فی لیٖٹَر", name1_us = "کِلوگرٛام فی لیٖٹَر", name2 = "کِلوگرٛام فی لیٖٹَر", name2_us = "کِلوگرٛام فی لیٖٹَر", symbol = "kg(CO<sub>2</sub>)/L", utype = "co2 per unit volume", scale = 1000, default = "lbCO2/USgal", link = "گاز خروجی", }, ["lbCO2/USgal"] = { name1 = "پونڈ فی گالون امریکی", name2 = "پونڈ فی گالون امریکی", symbol = "lbCO2/US&nbsp;gal", utype = "co2 per unit volume", scale = 119.82642731689663, default = "kgCO2/L", link = "گاز خروجی", }, ["$/acre"] = { per = { "$", "acre" }, utype = "cost $ per unit area", default = "$/ha", }, ["$/ha"] = { per = { "$", "ha" }, utype = "cost $ per unit area", default = "$/acre", }, ["$/m2"] = { per = { "$", "m2" }, utype = "cost $ per unit area", default = "$/sqft", }, ["$/sqft"] = { per = { "$", "sqft" }, utype = "cost $ per unit area", default = "$/m2", }, ["$/km"] = { per = { "$", "km" }, utype = "cost $ per unit length", default = "$/mi", }, ["$/mi"] = { per = { "$", "mi" }, utype = "cost $ per unit length", default = "$/km", }, ["$/kg"] = { per = { "$", "kg" }, utype = "cost $ per unit mass", default = "$/lb", }, ["$/g"] = { per = { "$", "g" }, utype = "cost $ per unit mass", default = "$/lb", }, ["$/lb"] = { per = { "$", "lb" }, utype = "cost $ per unit mass", default = "$/kg", }, ["$/oz"] = { per = { "$", "oz" }, utype = "cost $ per unit mass", default = "$/g", }, ["$/ozt"] = { per = { "$", "ozt" }, utype = "cost $ per unit mass", default = "$/kg", }, ["$/m3"] = { per = { "$", "m3" }, utype = "cost $ per unit volume", default = "$/oilbbl", }, ["$/oilbbl"] = { per = { "$", "oilbbl" }, utype = "cost $ per unit volume", default = "$/m3", }, ["£/acre"] = { per = { "£", "acre" }, utype = "cost £ per unit area", default = "£/ha", }, ["£/ha"] = { per = { "£", "ha" }, utype = "cost £ per unit area", default = "£/acre", }, ["g/dm3"] = { name1 = "گرٛام فی ڈیسی‌مکعب میٖٹَر", name1_us = "گرٛام فی ڈیسی‌مکعب میٖٹَر", name2 = "گرٛام فی ڈیسی‌مکعب میٖٹَر", name2_us = "گرٛام فی ڈیسی‌مکعب میٖٹَر", symbol = "گرٛام/ڈیسی میٖٹَر<sup>3</sup>", utype = "density", scale = 1, default = "kg/m3", link = "چگالی", }, ["g/L"] = { name1 = "گرٛام فی لیٖٹَر", name1_us = "گرٛام فی لیٖٹَر", name2 = "گرٛام فی لیٖٹَر", name2_us = "گرٛام فی لیٖٹَر", symbol = "گرٛام/لیٖٹَر", utype = "density", scale = 1, default = "lb/cuin", link = "چگالی", }, ["g/mL"] = { name1 = "گرٛام فی ملی لیٖٹَر", name1_us = "گرٛام فی ملی لیٖٹَر", name2 = "گرٛام فی ملی لیٖٹَر", name2_us = "گرٛام فی ملی لیٖٹَر", symbol = "گرٛام/ملی لیٖٹَر", utype = "density", scale = 1000, default = "lb/cuin", link = "چگالی", }, ["g/ml"] = { name1 = "گرٛام فی ملی لیٖٹَر", name1_us = "گرٛام فی ملی لیٖٹَر", name2 = "گرٛام فی ملی لیٖٹَر", name2_us = "گرٛام فی ملی لیٖٹَر", symbol = "گرٛام/ملی لیٖٹَر", utype = "density", scale = 1000, default = "lb/cuin", link = "چگالی", }, ["kg/dm3"] = { name1 = "کِلوگرٛام فی ڈیسی‌مکعب میٖٹَر", name1_us = "کِلوگرٛام فی ڈیسی‌مکعب میٖٹَر", name2 = "کِلوگرٛام فی ڈیسی‌مکعب میٖٹَر", name2_us = "کِلوگرٛام فی ڈیسی‌مکعب میٖٹَر", symbol = "کِلو گرٛام/ڈیسی معکعب<sup>3</sup>", utype = "density", scale = 1000, default = "lb/cuft", link = "چگالی", }, ["kg/L"] = { name1 = "کِلوگرٛام فی لیٖٹَر", name1_us = "کِلوگرٛام فی لیٖٹَر", name2 = "کِلوگرٛام فی لیٖٹَر", name2_us = "کِلوگرٛام فی لیٖٹَر", symbol = "کِلوگرٛام/لیٖٹَر", utype = "density", scale = 1000, default = "lb/USgal", link = "چگالی", }, ["kg/l"] = { name1 = "کِلوگرٛام فی لیٖٹَر", name1_us = "کِلوگرٛام فی لیٖٹَر", name2 = "کِلوگرٛام فی لیٖٹَر", name2_us = "کِلوگرٛام فی لیٖٹَر", symbol = "گلوگرٛام/لیٖٹَر", utype = "density", scale = 1000, default = "lb/USgal", link = "چگالی", }, ["kg/m3"] = { name1 = "کِلوگرٛام فی مکعب میٖٹَر", name1_us = "کِلوگرٛام فی مکعب میٖٹَر", name2 = "کِلوگرٛام فی مکعب میٖٹَر", name2_us = "کِلوگرٛام فی مکعب میٖٹَر", symbol = "کِلو گرٛام/میٖٹَر<sup>3</sup>", utype = "density", scale = 1, default = "lb/cuyd", link = "چگالی", }, ["lb/cuft"] = { name1 = "پونڈ فی فُٹ مکعب", name2 = "پونڈ فی فُٹ مکعب", symbol = "lb/cu&nbsp;ft", utype = "density", scale = 16.018463373960142, default = "g/cm3", link = "چگالی", }, ["lb/cuin"] = { name1 = "پونڈ فی آنٛچہِ مکعب", name2 = "پونڈ فی آنٛچہِ مکعب", symbol = "lb/cu&nbsp;in", utype = "density", scale = 27679.904710203122, default = "g/cm3", link = "چگالی", }, ["lb/cuyd"] = { name1 = "پونڈ فی یارڈ مکعب", name2 = "پونڈ فی یارڈ مکعب", symbol = "lb/cu&nbsp;yd", utype = "density", scale = 0.5932764212577829, default = "kg/m3", link = "چگالی", }, ["lb/impgal"] = { name1 = "پونڈ فی گالون برطانوی", name2 = "پونڈ فی گالون برطانوی", symbol = "lb/imp&nbsp;gal", utype = "density", scale = 99.776372663101697, default = "kg/L", link = "چگالی", }, ["lb/in3"] = { name1 = "پونڈ فی آنٛچہِ مکعب", name2 = "پونڈ فی آنٛچہِ مکعب", symbol = "lb/cu&thinsp;in", utype = "density", scale = 27679.904710203122, default = "g/cm3", link = "چگالی", }, ["lb/U.S.gal"] = { name1 = "پونڈ فی گالون امریکی", name2 = "پونڈ فی گالون امریکی", symbol = "lb/U.S.&nbsp;gal", utype = "density", scale = 119.82642731689663, default = "kg/L", link = "چگالی", }, ["lb/USbu"] = { name1 = "پونڈ فی بوشل امریکی", name2 = "پونڈ فی بوشل امریکی", symbol = "lb/US&nbsp;bu", utype = "density", scale = 12.871859780974471, default = "kg/m3", link = "بوشل", }, ["lb/USgal"] = { name1 = "پونڈ فی گالون امریکی", name2 = "پونڈ فی گالون امریکی", symbol = "lb/US&nbsp;gal", utype = "density", scale = 119.82642731689663, default = "kg/L", link = "چگالی", }, ["lbm/cuin"] = { name1 = "جرم پونڈ فی آنٛچہِ مکعب", name2 = "پونڈ جرم فی آنٛچہِ مکعب", symbol = "lbm/cu&thinsp;in", utype = "density", scale = 27679.904710203122, default = "g/cm3", link = "چگالی", }, ["mg/L"] = { name1 = "ملی گرٛام فی لیٖٹَر", name1_us = "ملی گرٛام فی لیٖٹَر", name2 = "ملی گرٛام فی لیٖٹَر", name2_us = "ملی گرٛام فی لیٖٹَر", symbol = "mg/L", utype = "density", scale = 0.001, default = "lb/cuin", link = "چگالی", }, ["oz/cuin"] = { name1 = "اونس فی آنٛچہِ مکعب", name2 = "اونس فی آنٛچہِ مکعب", symbol = "oz/cu&nbsp;in", utype = "density", scale = 1729.9940443876951, default = "g/cm3", link = "چگالی", }, ["g/cm3"] = { per = { "g", "cm3" }, utype = "density", default = "lb/cuin", }, ["g/m3"] = { per = { "g", "m3" }, utype = "density", default = "lb/cuyd", link = "density", }, ["Mg/m3"] = { per = { "Mg", "m3" }, utype = "density", default = "lb/cuft", }, ["µg/dL"] = { per = { "µg", "dL" }, utype = "density", default = "lb/cuin", }, ["lb/ft3"] = { target = "lb/cuft", }, ["lb/yd3"] = { target = "lb/cuyd", }, ["lbm/in3"] = { target = "lbm/cuin", }, ["mcg/dL"] = { target = "µg/dL", }, ["oz/in3"] = { target = "oz/cuin", }, ["ug/dL"] = { target = "µg/dL", }, ["μg/dL"] = { target = "µg/dL", }, ["B.O.T.U."] = { name1 = "صفحهٔ یکای تجارت", symbol = "B.O.T.U.", utype = "energy", scale = 3600000, default = "MJ", link = "کِلوواٹ گھنٹہٕ", }, ["bboe"] = { name1 = "معادل بشکه نفت", name2 = "معادل بشکه نفت", symbol = "bboe", utype = "energy", scale = 6117863200, default = "GJ", }, ["BOE"] = { name1 = "معادل بشکه نفت", name2 = "معادل بشکه نفت", symbol = "BOE", utype = "energy", scale = 6117863200, default = "GJ", }, ["BTU"] = { name1 = "یکای گرٛامایی برطانوی", symbol = "BTU", utype = "energy", scale = 1055.05585262, default = "kJ", }, ["Btu"] = { name1 = "بی ٹی یو", symbol = "Btu", utype = "energy", scale = 1055.05585262, default = "kJ", }, ["BTU-39F"] = { name1 = "بی ٹی یو تا (39°F)", name2 = "بی ٹی یو تا (39°F)", symbol = "BTU<sub>39°F</sub>", utype = "energy", scale = 1059.67, default = "kJ", link = "یکای برطانوی حرارت", }, ["Btu-39F"] = { name1 = "بی ٹی یو تا (39°F)", name2 = "بی ٹی یو تا (39°F)", symbol = "Btu<sub>39°F</sub>", utype = "energy", scale = 1059.67, default = "kJ", link = "یکای برطانوی حرارت", }, ["BTU-59F"] = { name1 = "بی ٹی یو تا (59°F)", name2 = "بی ٹی یو تا (59°F)", symbol = "BTU<sub>59°F</sub>", utype = "energy", scale = 1054.804, default = "kJ", link = "یکای برطانوی حرارت", }, ["Btu-59F"] = { name1 = "بی ٹی یو تا (59°F)", name2 = "بی ٹی یو تا (59°F)", symbol = "Btu<sub>59°F</sub>", utype = "energy", scale = 1054.804, default = "kJ", link = "یکای برطانوی حرارت", }, ["BTU-60F"] = { name1 = "بی ٹی یو تا (60°F)", name2 = "بی ٹی یو تا (60°F)", symbol = "BTU<sub>60°F</sub>", utype = "energy", scale = 1054.68, default = "kJ", link = "یکای برطانوی حرارت", }, ["Btu-60F"] = { name1 = "بی ٹی یو تا (60°F)", name2 = "بی ٹی یو تا (60°F)", symbol = "Btu<sub>60°F</sub>", utype = "energy", scale = 1054.68, default = "kJ", link = "یکای برطانوی حرارت", }, ["BTU-63F"] = { name1 = "یکای گرٛامایی برطانوی (63°F)", name2 = "یکای گرٛامایی برطانوی (63°F)", symbol = "BTU<sub>63°F</sub>", utype = "energy", scale = 1054.6, default = "kJ", link = "یکای برطانوی حرارت", }, ["Btu-63F"] = { name1 = "یکای گرٛامایی برطانوی (63°F)", name2 = "یکای گرٛامایی برطانوی (63°F)", symbol = "Btu<sub>63°F</sub>", utype = "energy", scale = 1054.6, default = "kJ", link = "یکای برطانوی حرارت", }, ["BTU-ISO"] = { name1 = "یکای گرٛامایی برطانوی (ISO)", name2 = "یکای گرٛامایی برطانوی (ISO)", symbol = "BTU<sub>ISO</sub>", utype = "energy", scale = 1055.056, default = "kJ", link = "یکای برطانوی حرارت", }, ["Btu-ISO"] = { name1 = "یکای گرٛامایی برطانوی (ISO)", name2 = "یکای گرٛامایی برطانوی (ISO)", symbol = "BTU<sub>ISO</sub>", utype = "energy", scale = 1055.056, default = "kJ", link = "یکای برطانوی حرارت", }, ["BTU-IT"] = { name1 = "یکای گرٛامایی برطانوی (IT)", name2 = "یکای گرٛامایی برطانوی (IT)", symbol = "BTU<sub>IT</sub>", utype = "energy", scale = 1055.05585262, default = "kJ", link = "یکای برطانوی حرارت", }, ["Btu-IT"] = { name1 = "یکای گرٛامایی برطانوی (IT)", name2 = "یکای گرٛامایی برطانوی (IT)", symbol = "Btu<sub>IT</sub>", utype = "energy", scale = 1055.05585262, default = "kJ", link = "یکای برطانوی حرارت", }, ["BTU-mean"] = { name1 = "یکای گرٛامایی برطانوی (میانگین)", name2 = "یکای گرٛامایی برطانوی (میانگین)", symbol = "BTU<sub>mean</sub>", utype = "energy", scale = 1055.87, default = "kJ", link = "یکای برطانوی حرارت", }, ["Btu-mean"] = { name1 = "یکای گرٛامایی برطانوی (میانگین)", name2 = "یکای گرٛامایی برطانوی (میانگین)", symbol = "Btu<sub>mean</sub>", utype = "energy", scale = 1055.87, default = "kJ", link = "یکای برطانوی حرارت", }, ["BTU-th"] = { name1 = "یکای گرٛامایی برطانوی (گرٛاماشیمیایی)", name2 = "یکای گرٛامایی برطانوی (گرٛاماشیمیایی)", symbol = "BTU<sub>th</sub>", utype = "energy", scale = 1054.35026444, default = "kJ", link = "یکای برطانوی حرارت", }, ["Btu-th"] = { name1 = "یکای گرٛامایی برطانوی (گرٛاماشیمیایی)", name2 = "یکای گرٛامایی برطانوی (گرٛاماشیمیایی)", symbol = "Btu<sub>th</sub>", utype = "energy", scale = 1054.35026444, default = "kJ", link = "یکای برطانوی حرارت", }, ["Cal"] = { name1 = "کیلوری", symbol = "Cal", utype = "energy", scale = 4184, default = "kJ", }, ["cal"] = { name1 = "کیلوری", symbol = "cal", utype = "energy", scale = 4.184, default = "J", }, ["Cal-15"] = { name1 = "کیلوری (15°C)", name2 = "کیلوری (15°C)", symbol = "Cal<sub>15</sub>", utype = "energy", scale = 4185.8, default = "kJ", link = "کیلوری", }, ["cal-15"] = { name1 = "calorie (15°C)", name2 = "calories (15°C)", symbol = "cal<sub>15</sub>", utype = "energy", scale = 4.1858, default = "J", link = "کیلوری", }, ["Cal-IT"] = { name1 = "کیلوری (جدول بخار بین‌المللی)", name2 = "کیلوری (جدول بین‌المللی بخار)", symbol = "Cal<sub>IT</sub>", utype = "energy", scale = 4186.8, default = "kJ", link = "کیلوری", }, ["cal-IT"] = { name1 = "calorie (International Steam Table)", name2 = "calories (International Steam Table)", symbol = "cal<sub>IT</sub>", utype = "energy", scale = 4.1868, default = "J", link = "کیلوری", }, ["Cal-th"] = { name1 = "کیلوری (گرٛاماشیمیایی)", name2 = "کیلوری (گرٛاماشیمیایی)", symbol = "Cal<sub>th</sub>", utype = "energy", scale = 4184, default = "kJ", link = "کیلوری", }, ["cal-th"] = { name1 = "calorie (thermochemical)", name2 = "calories (thermochemical)", symbol = "cal<sub>th</sub>", utype = "energy", scale = 4.184, default = "J", link = "کیلوری", }, ["ccatm"] = { name1 = "سؠنٹی مکعب میٖٹَر-اتمسفر", name1_us = "سؠنٹی مکعب میٖٹَر-اتمسفر", symbol = "cc·atm", utype = "energy", scale = 0.101325, default = "mJ", link = "اتمسفر (اکائی)", }, ["CHU-IT"] = { name1 = "یکای گرٛامایی سلسیوس (جدول بین‌المللی)", name2 = "یکای گرٛامایی سلسیوس (جدول بین‌المللی)", symbol = "CHU<sub>IT</sub>", utype = "energy", scale = 1899.100534716, default = "kJ", link = "تبدیل یکاهای اندازه‌گیری", }, ["cm3atm"] = { name1 = "سؠنٹی مکعب میٖٹَر-اتمسفر", name1_us = "سؠنٹی مکعب میٖٹَر-اتمسفر", symbol = "سؠنٹی میٖٹَر<sup>3</sup>·atm", utype = "energy", scale = 0.101325, default = "mJ", link = "اتمسفر (اکائی)", }, ["cufootatm"] = { name1 = "فُٹ مکعب اتمسفر", name2 = "فُٹ مکعب اتمسفر", symbol = "cu&nbsp;ft&nbsp;atm", utype = "energy", scale = 2869.2044809344, default = "kJ", link = "اتمسفر (اکائی)", }, ["cufootnaturalgas"] = { name1 = "فُٹ مکعب گاز طبیعی", name2 = "فُٹ مکعب گاز طبیعی", symbol = "cuftnaturalgas", usename = 1, utype = "energy", scale = 1055055.85262, default = "MJ", link = "تبدیل یکاهای اندازه‌گیری", }, ["cuftatm"] = { name1 = "فُٹ مکعب اتمسفر", name2 = "فُٹ مکعب اتمسفر", symbol = "cu&nbsp;ft&nbsp;atm", utype = "energy", scale = 2869.2044809344, default = "kJ", link = "اتمسفر (اکائی)", }, ["cuftnaturalgas"] = { name1 = "فُٹ مکعب گاز طبیعی", name2 = "فُٹ مکعب گاز طبیعی", symbol = "cuftnaturalgas", usename = 1, utype = "energy", scale = 1055055.85262, default = "MJ", link = "تبدیل یکاهای اندازه‌گیری", }, ["cuydatm"] = { name1 = "یارڈ مکعب اتمسفر", name2 = "یارڈ مکعب اتمسفر", symbol = "cu&nbsp;yd&nbsp;atm", utype = "energy", scale = 77468.5209852288, default = "kJ", link = "اتمسفر (اکائی)", }, ["Eh"] = { name1 = "هارتری", symbol = "''E''<sub>h</sub>", utype = "energy", scale = 4.35974417e-18, default = "eV", }, ["erg"] = { symbol = "erg", utype = "energy", scale = 0.0000001, default = "µJ", }, ["eV"] = { name1 = "الکترون‌ولت", symbol = "eV", utype = "energy", scale = 1.602176487e-19, default = "aJ", }, ["feV"] = { name1 = "فُٹوالکترون‌ولت", symbol = "feV", utype = "energy", scale = 1.602176487e-34, default = "yJ", link = "الکترون‌ولت", }, ["foe"] = { symbol = "foe", utype = "energy", scale = 1e44, default = "YJ", link = "فو", }, ["ftlb"] = { name1 = "فُٹ-پونڈ", symbol = "ft·lb", utype = "energy", alttype = "torque", scale = 1.3558179483314004, default = "J", link = "Foot-pound (energy)", }, ["ftlb-f"] = { name1 = "قوتی فُٹ-پونڈ", name2 = "فُٹ-پونڈ قوت", symbol = "ft·lb<sub>f</sub>", utype = "energy", alttype = "torque", scale = 1.3558179483314004, default = "J", link = "Foot-pound (energy)", }, ["ftlbf"] = { name1 = "قوتی فُٹ-پونڈ", name2 = "فُٹ-پونڈ قوت", symbol = "فُٹ·پونڈ قوت", utype = "energy", alttype = "torque", scale = 1.3558179483314004, default = "J", link = "فُٹ-پونڈ (توانائی)", }, ["ftpdl"] = { name1 = "فُٹ-پونڈی", symbol = "فُٹ·pdl", utype = "energy", scale = 0.0421401100938048, default = "J", }, ["GeV"] = { name1 = "گیگاالکترون‌ولت", symbol = "GeV", utype = "energy", scale = 1.602176487e-10, default = "nJ", link = "الکترون‌ولت", }, ["GLatm"] = { name1 = "گیگالیٖٹَر-اتمسفر", name1_us = "گیگالیٖٹَر-اتمسفر", symbol = "GL·atm", utype = "energy", scale = 101325000000, default = "GJ", link = "اتمسفر (اکائی)", }, ["Glatm"] = { name1 = "گیگالیٖٹَر-اتمسفر", name1_us = "گیگالیٖٹَر-اتمسفر", symbol = "Gl·atm", utype = "energy", scale = 101325000000, default = "GJ", link = "اتمسفر (اکائی)", }, ["gTNT"] = { name2 = "گرٛام تی‌ان‌تی", symbol = "gram of TNT", usename = 1, utype = "energy", scale = 4184, default = "kJ", link = "هم‌ارز تی‌ان‌تی", }, ["Gtoe"] = { name1 = "معادل گیگاٹن نفت", name2 = "معادل گیگاٹن نفت", symbol = "Gtoe", utype = "energy", scale = 4.1868e19, default = "EJ", link = "معادل یک ٹن نفت", }, ["GtonTNT"] = { name2 = "گیگاٹن تی‌ان‌تی", symbol = "gigaton of TNT", usename = 1, utype = "energy", scale = 4.184e18, default = "EJ", link = "هم‌ارز تی‌ان‌تی", }, ["GtTNT"] = { name2 = "گیگاٹن تی‌ان‌تی", symbol = "gigatonne of TNT", usename = 1, utype = "energy", scale = 4.184e18, default = "EJ", link = "هم‌ارز تی‌ان‌تی", }, ["GW.h"] = { name1 = "گیگاواٹ-گھنٹہ", symbol = "GW·h", utype = "energy", scale = 3.6e12, default = "TJ", link = "کِلوواٹ گھنٹہ", }, ["GWh"] = { name1 = "گیگاواٹ-گھنٹہ", symbol = "GWh", utype = "energy", scale = 3.6e12, default = "TJ", link = "کِلوواٹ گھنٹہ", }, ["hph"] = { name1 = "اسب بخار-گھنٹہ", symbol = "hp·h", utype = "energy", scale = 2684519.537696172792, default = "kWh", link = "اسب بخار", }, ["impgalatm"] = { name1 = "گالون-اتمسفر برطانوی", symbol = "imp gal·atm", utype = "energy", scale = 460.63256925, default = "J", link = "اتمسفر (اکائی)", }, ["inlb"] = { name1 = "آنٛچہِ-پونڈ", symbol = "in·lb", utype = "energy", alttype = "torque", scale = 0.1129848290276167, default = "mJ", link = "Foot-pound (energy)", }, ["inlb-f"] = { name1 = "آنٛچہِ-پونڈ قوت", name2 = "آنٛچہِ-پونڈ قوت", symbol = "in·lb<sub>f</sub>", utype = "energy", alttype = "torque", scale = 0.1129848290276167, default = "mJ", link = "Foot-pound (energy)", }, ["inlbf"] = { name1 = "آنٛچہِ-پونڈ قوت", name2 = "آنٛچہِ-پونڈ قوت", symbol = "آنٛچہِ·پونڈ قوت", utype = "energy", alttype = "torque", scale = 0.1129848290276167, default = "mJ", link = "Foot-pound (energy)", }, ["inoz-f"] = { name1 = "آنٛچہِ-اونس قوت", name2 = "آنٛچہِ-اونس قوت", symbol = "in·oz<sub>f</sub>", utype = "energy", alttype = "torque", scale = 0.00706155181422604375, default = "mJ", link = "Foot-pound (energy)", }, ["inozf"] = { name1 = "آنٛچہِ-اونس قوت", name2 = "آنٛچہِ-اونس قوت", symbol = "in·ozf", utype = "energy", alttype = "torque", scale = 0.00706155181422604375, default = "mJ", link = "Foot-pound (energy)", }, ["J"] = { _name1 = "ژول", _symbol = "J", utype = "energy", scale = 1, prefixes = 1, default = "cal", link = "ژول", }, ["kBOE"] = { name1 = "معادل کِلو بشکه نفت", name2 = "معادل کِلو بشکه نفت", symbol = "kBOE", utype = "energy", scale = 6.1178632e12, default = "TJ", link = "معادل بشکه نفت", }, ["kcal"] = { name1 = "کِلوکیلوری", symbol = "kcal", utype = "energy", scale = 4184, default = "kJ", link = "کیلوری", }, ["kcal-15"] = { name1 = "کِلوکیلوری (15°C)", name2 = "کِلوکیلوری (15°C)", symbol = "kcal<sub>15</sub>", utype = "energy", scale = 4185.8, default = "kJ", link = "کیلوری", }, ["kcal-IT"] = { name1 = "کِلوکیلوری (جدول بین‌المللی بخار)", name2 = "کِلوکیلوری (جدول بین‌المللی بخار)", symbol = "kcal<sub>IT</sub>", utype = "energy", scale = 4186.8, default = "kJ", link = "کیلوری", }, ["kcal-th"] = { name1 = "کِلوکیلوری (گرٛاماشیمیایی)", name2 = "کِلوکیلوری (گرٛاماشیمیایی)", symbol = "kcal<sub>th</sub>", utype = "energy", scale = 4184, default = "kJ", link = "کیلوری", }, ["kerg"] = { name1 = "کِلواِرگ", symbol = "kerg", utype = "energy", scale = 0.0001, default = "mJ", link = "ارگ (اکائی)", }, ["keV"] = { name1 = "کِلوالکترون‌ولت", symbol = "keV", utype = "energy", scale = 1.602176487e-16, default = "fJ", link = "الکترون‌ولت", }, ["kgTNT"] = { name2 = "کِلوگرٛام تی‌ان‌تی", symbol = "kilogram of TNT", usename = 1, utype = "energy", scale = 4184000, default = "MJ", link = "هم‌ارز تی‌ان‌تی", }, ["kLatm"] = { name1 = "کِلولیٖٹَر-اتمسفر", name1_us = "کِلولیٖٹَر-اتمسفر", symbol = "kL·atm", utype = "energy", scale = 101325, default = "kJ", link = "اتمسفر (اکائی)", }, ["klatm"] = { name1 = "کِلولیٖٹَر-اتمسفر", name1_us = "کِلولیٖٹَر-اتمسفر", symbol = "kl·atm", utype = "energy", scale = 101325, default = "kJ", link = "اتمسفر (اکائی)", }, ["kt(TNT)"] = { name1 = "کِلوٹن", name1_us = "کِلوٹن", symbol = "kt", utype = "energy", scale = 4.184e12, default = "TJ", link = "هم‌ارز تی‌ان‌تی", }, ["ktoe"] = { name1 = "معادل کِلوٹن نفت", name2 = "معادل کِلوٹن نفت", symbol = "ktoe", utype = "energy", scale = 4.1868e13, default = "TJ", link = "معادل یک ٹن نفت", }, ["ktonTNT"] = { name1 = "کِلوٹن ٹی این ٹی", name2 = "کِلوٹن ٹی این ٹی", symbol = "kt", utype = "energy", scale = 4.184e12, default = "TJ", link = "هم‌ارز تی‌ان‌تی", }, ["ktTNT"] = { name2 = "کِلوٹن ٹی این ٹی", symbol = "kilotonne of TNT", usename = 1, utype = "energy", scale = 4.184e12, default = "TJ", link = "هم‌ارز تی‌ان‌تی", }, ["kW.h"] = { name1 = "کِلوواٹ-گھنٹہ", symbol = "kW·h", utype = "energy", scale = 3600000, default = "MJ", link = "کِلوواٹ گھنٹہ", }, ["kWh"] = { name1 = "کِلوواٹ-گھنٹہ", symbol = "kWh", utype = "energy", scale = 3600000, default = "MJ", link = "کِلوواٹ گھنٹہ", }, ["Latm"] = { name1 = "لیٖٹَر-اتمسفر", name1_us = "لیٖٹَر-اتمسفر", symbol = "L·atm", utype = "energy", scale = 101.325, default = "J", link = "اتمسفر (اکائی)", }, ["latm"] = { name1 = "لیٖٹَر-اتمسفر", name1_us = "لیٖٹَر-اتمسفر", symbol = "l·atm", utype = "energy", scale = 101.325, default = "J", link = "اتمسفر (اکائی)", }, ["m3atm"] = { name1 = "مکعب میٖٹَر-اتمسفر", name1_us = "مکعب میٖٹَر-اتمسفر", symbol = "میٖٹَر<sup>3</sup>·atm", utype = "energy", scale = 101325, default = "kJ", link = "اتمسفر (اکائی)", }, ["MBtu"] = { name1 = "ہزار یکای گرٛامایی برطانوی", name2 = "ہزار یکای گرٛامایی برطانوی", symbol = "MBtu", utype = "energy", scale = 1055055.85262, default = "MJ", link = "یکای برطانوی حرارت", }, ["MBTU-39F"] = { name1 = "ہزار یکای گرٛامایی برطانوی (39°F)", name2 = "ہزار یکای گرٛامایی برطانوی (39°F)", symbol = "MBTU<sub>39°F</sub>", utype = "energy", scale = 1059670, default = "MJ", link = "یکای برطانوی حرارت", }, ["MBtu-39F"] = { name1 = "ہزار یکای گرٛامایی برطانوی (39°F)", name2 = "ہزار یکای گرٛامایی برطانوی (39°F)", symbol = "MBtu<sub>39°F</sub>", utype = "energy", scale = 1059670, default = "MJ", link = "یکای برطانوی حرارت", }, ["MBTU-59F"] = { name1 = "ہزار یکای گرٛامایی برطانوی (59°F)", name2 = "ہزار یکای گرٛامایی برطانوی (59°F)", symbol = "MBTU<sub>59°F</sub>", utype = "energy", scale = 1054804, default = "MJ", link = "یکای برطانوی حرارت", }, ["MBtu-59F"] = { name1 = "ہزار یکای گرٛامایی برطانوی (59°F)", name2 = "ہزار یکای گرٛامایی برطانوی (59°F)", symbol = "MBtu<sub>59°F</sub>", utype = "energy", scale = 1054804, default = "MJ", link = "یکای برطانوی حرارت", }, ["MBTU-60F"] = { name1 = "ہزار یکای گرٛامایی برطانوی (60°F)", name2 = "ہزار یکای گرٛامایی برطانوی (60°F)", symbol = "MBTU<sub>60°F</sub>", utype = "energy", scale = 1054680, default = "MJ", link = "یکای برطانوی حرارت", }, ["MBtu-60F"] = { name1 = "ہزار یکای گرٛامایی برطانوی (60°F)", name2 = "ہزار یکای گرٛامایی برطانوی (60°F)", symbol = "MBtu<sub>60°F</sub>", utype = "energy", scale = 1054680, default = "MJ", link = "یکای برطانوی حرارت", }, ["MBTU-63F"] = { name1 = "ہزار یکای گرٛامایی برطانوی (63°F)", name2 = "ہزار یکای گرٛامایی برطانوی (63°F)", symbol = "MBTU<sub>63°F</sub>", utype = "energy", scale = 1054600, default = "MJ", link = "یکای برطانوی حرارت", }, ["MBtu-63F"] = { name1 = "ہزار یکای گرٛامایی برطانوی (63°F)", name2 = "ہزار یکای گرٛامایی برطانوی (63°F)", symbol = "MBtu<sub>63°F</sub>", utype = "energy", scale = 1054600, default = "MJ", link = "یکای برطانوی حرارت", }, ["MBTU-ISO"] = { name1 = "ہزار یکای گرٛامایی برطانوی (ISO)", name2 = "ہزار یکای گرٛامایی برطانوی (ISO)", symbol = "MBTU<sub>ISO</sub>", utype = "energy", scale = 1055056, default = "MJ", link = "یکای برطانوی حرارت", }, ["MBtu-ISO"] = { name1 = "ہزار یکای گرٛامایی برطانوی (ISO)", name2 = "ہزار یکای گرٛامایی برطانوی (ISO)", symbol = "MBtu<sub>ISO</sub>", utype = "energy", scale = 1055056, default = "MJ", link = "یکای برطانوی حرارت", }, ["MBTU-IT"] = { name1 = "ہزار یکای گرٛامایی برطانوی (IT)", name2 = "ہزار یکای گرٛامایی برطانوی (IT)", symbol = "MBTU<sub>IT</sub>", utype = "energy", scale = 1055055.85262, default = "MJ", link = "یکای برطانوی حرارت", }, ["MBtu-IT"] = { name1 = "ہزار یکای گرٛامایی برطانوی (IT)", name2 = "ہزار یکای گرٛامایی برطانوی (IT)", symbol = "MBtu<sub>IT</sub>", utype = "energy", scale = 1055055.85262, default = "MJ", link = "یکای برطانوی حرارت", }, ["MBTU-mean"] = { name1 = "ہزار یکای گرٛامایی برطانوی (میانگین)", name2 = "ہزار یکای گرٛامایی برطانوی (میانگین)", symbol = "MBTU<sub>mean</sub>", utype = "energy", scale = 1055870, default = "MJ", link = "یکای برطانوی حرارت", }, ["MBtu-mean"] = { name1 = "ہزار یکای گرٛامایی برطانوی (میانگین)", name2 = "ہزار یکای گرٛامایی برطانوی (میانگین)", symbol = "MBtu<sub>mean</sub>", utype = "energy", scale = 1055870, default = "MJ", link = "یکای برطانوی حرارت", }, ["MBTU-th"] = { name1 = "ہزار یکای گرٛامایی برطانوی (گرٛاماشیمیایی)", name2 = "ہزار یکای گرٛامایی برطانوی (گرٛاماشیمیایی)", symbol = "MBTU<sub>th</sub>", utype = "energy", scale = 1054350.26444, default = "MJ", link = "یکای برطانوی حرارت", }, ["MBtu-th"] = { name1 = "ہزار یکای گرٛامایی برطانوی (گرٛاماشیمیایی)", name2 = "ہزار یکای گرٛامایی برطانوی (گرٛاماشیمیایی)", symbol = "MBtu<sub>th</sub>", utype = "energy", scale = 1054350.26444, default = "MJ", link = "یکای برطانوی حرارت", }, ["Mcal"] = { name1 = "میگاکیلوری", symbol = "Mcal", utype = "energy", scale = 4184000, default = "MJ", link = "کیلوری", }, ["mcal"] = { name1 = "ملیکیلوری", symbol = "mcal", utype = "energy", scale = 0.004184, default = "mJ", link = "کیلوری", }, ["Mcal-15"] = { name1 = "میگاکیلوری (15°C)", name2 = "میگاکیلوری (15°C)", symbol = "Mcal<sub>15</sub>", utype = "energy", scale = 4185800, default = "MJ", link = "کیلوری", }, ["mcal-15"] = { name1 = "ملیکیلوری (15°C)", name2 = "ملیکیلوری (15°C)", symbol = "mcal<sub>15</sub>", utype = "energy", scale = 0.0041858, default = "mJ", link = "کیلوری", }, ["Mcal-IT"] = { name1 = "میگاکیلوری (جدول بین‌المللی بخار)", name2 = "میگاکیلوری (جدول بین‌المللی بخار)", symbol = "Mcal<sub>IT</sub>", utype = "energy", scale = 4186800, default = "MJ", link = "کیلوری", }, ["mcal-IT"] = { name1 = "ملیکیلوری (جدول بین‌المللی بخار)", name2 = "ملیکیلوری (جدول بین‌المللی بخار)", symbol = "mcal<sub>IT</sub>", utype = "energy", scale = 0.0041868, default = "mJ", link = "کیلوری", }, ["Mcal-th"] = { name1 = "میگاکیلوری (گرٛاماشیمیایی)", name2 = "میگاکیلوری (گرٛاماشیمیایی)", symbol = "Mcal<sub>th</sub>", utype = "energy", scale = 4184000, default = "MJ", link = "کیلوری", }, ["mcal-th"] = { name1 = "ملیکیلوری (گرٛاماشیمیایی)", name2 = "ملیکیلوری (گرٛاماشیمیایی)", symbol = "mcal<sub>th</sub>", utype = "energy", scale = 0.004184, default = "mJ", link = "کیلوری", }, ["Merg"] = { name1 = "میگااِرگ", symbol = "Merg", utype = "energy", scale = 0.1, default = "J", link = "ارگ (اکائی)", }, ["merg"] = { name1 = "ملیاِرگ", symbol = "merg", utype = "energy", scale = 0.0000000001, default = "µJ", link = "ارگ (اکائی)", }, ["MeV"] = { name1 = "میگاالکترون‌ولت", symbol = "MeV", utype = "energy", scale = 1.602176487e-13, default = "pJ", link = "الکترون‌ولت", }, ["meV"] = { name1 = "ملیالکترون‌ولت", symbol = "meV", utype = "energy", scale = 1.602176487e-22, default = "zJ", link = "الکترون‌ولت", }, ["MLatm"] = { name1 = "میگالیٖٹَر-اتمسفر", name1_us = "میگالیٖٹَر-اتمسفر", symbol = "ML·atm", utype = "energy", scale = 101325000, default = "MJ", link = "اتمسفر (اکائی)", }, ["Mlatm"] = { name1 = "میگالیٖٹَر-اتمسفر", name1_us = "میگالیٖٹَر-اتمسفر", symbol = "Ml·atm", utype = "energy", scale = 101325000, default = "MJ", link = "اتمسفر (اکائی)", }, ["mLatm"] = { name1 = "ملی لیٖٹَر-اتمسفر", name1_us = "ملی لیٖٹَر-اتمسفر", symbol = "L·atm", utype = "energy", scale = 0.101325, default = "mJ", link = "اتمسفر (اکائی)", }, ["mlatm"] = { name1 = "ملی لیٖٹَر-اتمسفر", name1_us = "ملی لیٖٹَر-اتمسفر", symbol = "l·atm", utype = "energy", scale = 0.101325, default = "mJ", link = "اتمسفر (اکائی)", }, ["MMBtu"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی", name2 = "مِلیَن یکای گرٛامایی برطانوی", symbol = "MMBtu", utype = "energy", scale = 1055055852.62, default = "GJ", link = "یکای برطانوی حرارت", }, ["MMBTU-39F"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی (39°F)", name2 = "مِلیَن یکای گرٛامایی برطانوی (39°F)", symbol = "MMBTU<sub>39°F</sub>", utype = "energy", scale = 1059670000, default = "GJ", link = "یکای برطانوی حرارت", }, ["MMBtu-39F"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی (39°F)", name2 = "مِلیَن یکای گرٛامایی برطانوی (39°F)", symbol = "MMBtu<sub>39°F</sub>", utype = "energy", scale = 1059670000, default = "GJ", link = "یکای برطانوی حرارت", }, ["MMBTU-59F"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی (59°F)", name2 = "مِلیَن یکای گرٛامایی برطانوی (59°F)", symbol = "MMBTU<sub>59°F</sub>", utype = "energy", scale = 1054804000, default = "GJ", link = "یکای برطانوی حرارت", }, ["MMBtu-59F"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی (59°F)", name2 = "مِلیَن یکای گرٛامایی برطانوی (59°F)", symbol = "MMBtu<sub>59°F</sub>", utype = "energy", scale = 1054804000, default = "GJ", link = "یکای برطانوی حرارت", }, ["MMBTU-60F"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی (60°F)", name2 = "مِلیَن یکای گرٛامایی برطانوی (60°F)", symbol = "MMBTU<sub>60°F</sub>", utype = "energy", scale = 1054680000, default = "GJ", link = "یکای برطانوی حرارت", }, ["MMBtu-60F"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی (60°F)", name2 = "مِلیَن یکای گرٛامایی برطانوی (60°F)", symbol = "MMBtu<sub>60°F</sub>", utype = "energy", scale = 1054680000, default = "GJ", link = "یکای برطانوی حرارت", }, ["MMBTU-63F"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی (63°F)", name2 = "مِلیَن یکای گرٛامایی برطانوی (63°F)", symbol = "MMBTU<sub>63°F</sub>", utype = "energy", scale = 1054600000, default = "GJ", link = "یکای برطانوی حرارت", }, ["MMBtu-63F"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی (63°F)", name2 = "مِلیَن یکای گرٛامایی برطانوی (63°F)", symbol = "MMBtu<sub>63°F</sub>", utype = "energy", scale = 1054600000, default = "GJ", link = "یکای برطانوی حرارت", }, ["MMBTU-ISO"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی (ISO)", name2 = "مِلیَن یکای گرٛامایی برطانوی (ISO)", symbol = "MMBTU<sub>ISO</sub>", utype = "energy", scale = 1055056000, default = "GJ", link = "یکای برطانوی حرارت", }, ["MMBtu-ISO"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی (ISO)", name2 = "مِلیَن یکای گرٛامایی برطانوی (ISO)", symbol = "MMBtu<sub>ISO</sub>", utype = "energy", scale = 1055056000, default = "GJ", link = "یکای برطانوی حرارت", }, ["MMBTU-IT"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی (IT)", name2 = "مِلیَن یکای گرٛامایی برطانوی (IT)", symbol = "MMBTU<sub>IT</sub>", utype = "energy", scale = 1055055852.62, default = "GJ", link = "یکای برطانوی حرارت", }, ["MMBtu-IT"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی (IT)", name2 = "مِلیَن یکای گرٛامایی برطانوی (IT)", symbol = "MMBtu<sub>IT</sub>", utype = "energy", scale = 1055055852.62, default = "GJ", link = "یکای برطانوی حرارت", }, ["MMBTU-mean"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی (میانگین)", name2 = "مِلیَن یکای گرٛامایی برطانوی (میانگین)", symbol = "MMBTU<sub>mean</sub>", utype = "energy", scale = 1055870000, default = "GJ", link = "یکای برطانوی حرارت", }, ["MMBtu-mean"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی (میانگین)", name2 = "مِلیَن یکای گرٛامایی برطانوی (میانگین)", symbol = "MMBtu<sub>mean</sub>", utype = "energy", scale = 1055870000, default = "GJ", link = "یکای برطانوی حرارت", }, ["MMBTU-th"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی (گرٛاماشیمیایی)", name2 = "مِلیَن یکای گرٛامایی برطانوی (گرٛاماشیمیایی)", symbol = "MMBTU<sub>th</sub>", utype = "energy", scale = 1054350264.44, default = "GJ", link = "یکای برطانوی حرارت", }, ["MMBtu-th"] = { name1 = "مِلیَن یکای گرٛامایی برطانوی (گرٛاماشیمیایی)", name2 = "مِلیَن یکای گرٛامایی برطانوی (گرٛاماشیمیایی)", symbol = "MMBtu<sub>th</sub>", utype = "energy", scale = 1054350264.44, default = "GJ", link = "یکای برطانوی حرارت", }, ["Mt(TNT)"] = { name1 = "میگاٹن", name1_us = "میگاٹن", symbol = "Mt", utype = "energy", scale = 4.184e15, default = "PJ", link = "هم‌ارز تی‌ان‌تی", }, ["Mtoe"] = { name1 = "معادل میگاٹن نفت", name2 = "معادل میگاٹن نفت", symbol = "Mtoe", utype = "energy", scale = 4.1868e16, default = "PJ", link = "معادل یک ٹن نفت", }, ["MtonTNT"] = { name1 = "میگاٹن تی‌ان‌تی", name2 = "میگاٹن تی‌ان‌تی", symbol = "Mt", utype = "energy", scale = 4.184e15, default = "PJ", link = "هم‌ارز تی‌ان‌تی", }, ["mtonTNT"] = { name2 = "مِلیَن تی‌ان‌تی", symbol = "milliton of TNT", usename = 1, utype = "energy", scale = 4184000, default = "MJ", link = "هم‌ارز تی‌ان‌تی", }, ["MtTNT"] = { name2 = "میگاٹن تی‌ان‌تی", symbol = "megatonne of TNT", usename = 1, utype = "energy", scale = 4.184e15, default = "PJ", link = "هم‌ارز تی‌ان‌تی", }, ["mtTNT"] = { name2 = "ملیٹن تی‌ان‌تی", symbol = "millitonne of TNT", usename = 1, utype = "energy", scale = 4184000, default = "MJ", link = "هم‌ارز تی‌ان‌تی", }, ["MW.h"] = { name1 = "میگاواٹ-گھنٹہ", symbol = "MW·h", utype = "energy", scale = 3600000000, default = "GJ", link = "کِلوواٹ گھنٹہ", }, ["mW.h"] = { name1 = "ملیواٹ-گھنٹہ", symbol = "mW·h", utype = "energy", scale = 3.6, default = "J", link = "کِلوواٹ گھنٹہ", }, ["MWh"] = { name1 = "میگاواٹ-گھنٹہ", symbol = "MWh", utype = "energy", scale = 3600000000, default = "GJ", link = "کِلوواٹ گھنٹہ", }, ["mWh"] = { name1 = "ملیواٹ-گھنٹہ", symbol = "mWh", utype = "energy", scale = 3.6, default = "J", link = "کِلوواٹ گھنٹہ", }, ["neV"] = { name1 = "نانوالکترون‌ولت", symbol = "neV", utype = "energy", scale = 1.602176487e-28, default = "yJ", link = "الکترون‌ولت", }, ["PeV"] = { name1 = "پتاالکترون‌ولت", symbol = "PeV", utype = "energy", scale = 0.0001602176487, default = "mJ", link = "الکترون‌ولت", }, ["peV"] = { name1 = "پیکوالکترون‌ولت", symbol = "peV", utype = "energy", scale = 1.602176487e-31, default = "yJ", link = "الکترون‌ولت", }, ["quad"] = { name1 = "کوادریلیون یکای گرٛامایی برطانوی", name2 = "کوادریلیون یکای گرٛامایی برطانوی", symbol = "quad", utype = "energy", scale = 1.054804e18, default = "EJ", link = "کوآد", }, ["Ry"] = { name1 = "ریدبرگ", symbol = "Ry", utype = "energy", scale = 2.1798741e-18, default = "eV", link = "ثابت ریدبرگ", }, ["scc"] = { name1 = "سؠنٹی مکعب میٖٹَر استاندارد", name1_us = "سؠنٹی مکعب میٖٹَر استاندارد", symbol = "scc", utype = "energy", scale = 0.101325, default = "mJ", link = "اتمسفر (اکائی)", }, ["scf"] = { name1 = "فُٹ مکعب استاندارد", name2 = "فُٹ مکعب استاندارد", symbol = "scf", utype = "energy", scale = 2869.2044809344, default = "kJ", link = "اتمسفر (اکائی)", }, ["scfoot"] = { name1 = "فُٹ مکعب استاندارد", name2 = "فُٹ مکعب استاندارد", symbol = "scf", utype = "energy", scale = 2869.2044809344, default = "kJ", link = "اتمسفر (اکائی)", }, ["scy"] = { name1 = "یارڈ مکعب استاندارد", symbol = "scy", utype = "energy", scale = 77468.5209852288, default = "kJ", link = "اتمسفر (اکائی)", }, ["sl"] = { name1 = "لیٖٹَر استاندارد", name1_us = "لیٖٹَر استاندارد", symbol = "sl", utype = "energy", scale = 101.325, default = "J", link = "اتمسفر (اکائی)", }, ["t(TNT)"] = { name1 = "ٹن", name1_us = "ٹن", symbol = "t", utype = "energy", scale = 4184000000, default = "GJ", link = "هم‌ارز تی‌ان‌تی", }, ["TeV"] = { name1 = "تراالکترون‌ولت", symbol = "TeV", utype = "energy", scale = 1.602176487e-7, default = "µJ", link = "الکترون‌ولت", }, ["th"] = { name1 = "ترمی", symbol = "th", utype = "energy", scale = 4186800, default = "MJ", link = "تبدیل یکاهای اندازه‌گیری", }, ["thm-EC"] = { name1 = "ترم (EC)", name2 = "ترم (EC)", symbol = "thm (EC)", utype = "energy", scale = 105506000, default = "MJ", link = "ترم (اکائی)", }, ["thm-UK"] = { name1 = "ترم (بریتانیا)", name2 = "ترم (بریتانیا)", symbol = "thm (UK)", utype = "energy", scale = 105505585.257348, default = "MJ", link = "ترم (اکائی)", }, ["thm-US"] = { name1 = "ترم (امریکا)", name1_us = "ترم (امریکا)", name2 = "ترم (امریکا)", name2_us = "ترم (امریکا)", symbol = "thm (US)", sym_us = "thm (U.S.)", utype = "energy", scale = 105480400, default = "MJ", link = "ترم (اکائی)", }, ["toe"] = { name1 = "معادل ٹن نفت", name2 = "معادل ٹن نفت", symbol = "toe", utype = "energy", scale = 41868000000, default = "GJ", }, ["tonTNT"] = { name2 = "ٹن تی‌ان‌تی", symbol = "ton of TNT", usename = 1, utype = "energy", scale = 4184000000, default = "GJ", link = "هم‌ارز تی‌ان‌تی", }, ["tTNT"] = { name2 = "ٹن تی‌ان‌تی", symbol = "tonne of TNT", usename = 1, utype = "energy", scale = 4184000000, default = "GJ", link = "هم‌ارز تی‌ان‌تی", }, ["TtonTNT"] = { name2 = "تراٹن تی‌ان‌تی", symbol = "teraton of TNT", usename = 1, utype = "energy", scale = 4.184e21, default = "ZJ", link = "هم‌ارز تی‌ان‌تی", }, ["TtTNT"] = { name2 = "تراٹن تی‌ان‌تی", symbol = "teratonne of TNT", usename = 1, utype = "energy", scale = 4.184e21, default = "ZJ", link = "هم‌ارز تی‌ان‌تی", }, ["TW.h"] = { name1 = "تراواٹ-گھنٹہ", symbol = "TW·h", utype = "energy", scale = 3.6e15, default = "PJ", link = "کِلوواٹ گھنٹہ", }, ["TWh"] = { name1 = "تراواٹ-گھنٹہ", symbol = "TWh", utype = "energy", scale = 3.6e15, default = "PJ", link = "کِلوواٹ گھنٹہ", }, ["uerg"] = { name1 = "میکرواِرگ", symbol = "µerg", utype = "energy", scale = 1e-13, default = "nJ", link = "ارگ (اکائی)", }, ["USgalatm"] = { name1 = "گالون امریکی-اتمسفر", name1_us = "گالون امریکی-اتمسفر", symbol = "US&nbsp;gal·atm", sym_us = "U.S.&nbsp;gal·atm", utype = "energy", scale = 383.5568490138, default = "J", link = "اتمسفر (اکائی)", }, ["W.h"] = { name1 = "واٹ-گھنٹہ", symbol = "W·h", utype = "energy", scale = 3600, default = "kJ", }, ["Wh"] = { name1 = "واٹ-گھنٹہ", symbol = "Wh", utype = "energy", scale = 3600, default = "kJ", }, ["µerg"] = { name1 = "میکرواِرگ", symbol = "µerg", utype = "energy", scale = 1e-13, default = "nJ", link = "ارگ (اکائی)", }, ["µeV"] = { name1 = "میکروالکترون‌ولت", symbol = "µeV", utype = "energy", scale = 1.602176487e-25, default = "yJ", link = "الکترون‌ولت", }, ["µLatm"] = { name1 = "میکرولیٖٹَر-اتمسفر", name1_us = "میکرولیٖٹَر-اتمسفر", symbol = "µL·atm", utype = "energy", scale = 0.000101325, default = "µJ", link = "اتمسفر (اکائی)", }, ["µlatm"] = { name1 = "میکرولیٖٹَر-اتمسفر", name1_us = "میکرولیٖٹَر-اتمسفر", symbol = "µl·atm", utype = "energy", scale = 0.000101325, default = "µJ", link = "اتمسفر (اکائی)", }, ["µtonTNT"] = { name2 = "میکروٹن تی‌ان‌تی", symbol = "microton of TNT", usename = 1, utype = "energy", scale = 4184, default = "kJ", link = "هم‌ارز تی‌ان‌تی", }, ["µtTNT"] = { name2 = "میکروٹن تی‌ان‌تی", symbol = "microtonne of TNT", usename = 1, utype = "energy", scale = 4184, default = "kJ", link = "هم‌ارز تی‌ان‌تی", }, ["µW.h"] = { name1 = "میکروواٹ-گھنٹہ", symbol = "µW·h", utype = "energy", scale = 0.0036, default = "mJ", link = "کِلوواٹ گھنٹہ", }, ["µWh"] = { name1 = "میکروواٹ-گھنٹہ", symbol = "µWh", utype = "energy", scale = 0.0036, default = "mJ", link = "کِلوواٹ گھنٹہ", }, ["-kW.h"] = { target = "kW.h", link = "کِلوواٹ گھنٹہ", }, ["btu"] = { target = "BTU", }, ["Calorie"] = { target = "Cal", }, ["ft.lbf"] = { target = "ftlbf", }, ["ft·lb-f"] = { target = "ftlb-f", }, ["ft·lbf"] = { target = "ftlbf", }, ["g-cal-15"] = { target = "cal-15", }, ["g-cal-IT"] = { target = "cal-IT", }, ["g-cal-th"] = { target = "cal-th", }, ["g-kcal-15"] = { target = "kcal-15", }, ["g-kcal-IT"] = { target = "kcal-IT", }, ["g-kcal-th"] = { target = "kcal-th", }, ["g-Mcal-15"] = { target = "Mcal-15", }, ["g-mcal-15"] = { target = "mcal-15", }, ["g-Mcal-IT"] = { target = "Mcal-IT", }, ["g-mcal-IT"] = { target = "mcal-IT", }, ["g-Mcal-th"] = { target = "Mcal-th", }, ["g-mcal-th"] = { target = "mcal-th", }, ["GW-h"] = { target = "GW.h", }, ["GW·h"] = { target = "GW.h", }, ["Hartree"] = { target = "Eh", }, ["hp.h"] = { target = "hph", }, ["hp·h"] = { target = "hph", }, ["in.lb-f"] = { target = "inlb-f", }, ["in.lbf"] = { target = "inlbf", }, ["in.oz-f"] = { target = "inoz-f", }, ["in.ozf"] = { target = "inozf", }, ["in·lb-f"] = { target = "inlb-f", }, ["in·lbf"] = { target = "inlbf", }, ["in·oz-f"] = { target = "inoz-f", }, ["in·ozf"] = { target = "inozf", }, ["kbboe"] = { target = "kBOE", symbol = "kbboe", }, ["kg-cal-15"] = { target = "Cal-15", }, ["kg-cal-IT"] = { target = "Cal-IT", }, ["kg-cal-th"] = { target = "Cal-th", }, ["kW-h"] = { target = "kW.h", }, ["kW·h"] = { target = "kW.h", }, ["MW-h"] = { target = "MW.h", }, ["mW-h"] = { target = "mW.h", }, ["MW·h"] = { target = "MW.h", }, ["mW·h"] = { target = "mW.h", }, ["TW-h"] = { target = "TW.h", }, ["TW·h"] = { target = "TW.h", }, ["U.S.galatm"] = { target = "USgalatm", sp_us = true, }, ["ueV"] = { target = "µeV", }, ["uLatm"] = { target = "µLatm", }, ["ulatm"] = { target = "µlatm", }, ["usgalatm"] = { target = "USgalatm", }, ["utonTNT"] = { target = "µtonTNT", }, ["utTNT"] = { target = "µtTNT", }, ["uW-h"] = { target = "µW.h", }, ["uW.h"] = { target = "µW.h", }, ["uWh"] = { target = "µWh", }, ["uW·h"] = { target = "µW.h", }, ["W-h"] = { target = "W.h", }, ["W·h"] = { target = "W.h", }, ["µW-h"] = { target = "µW.h", }, ["µW·h"] = { target = "µW.h", }, ["μerg"] = { target = "µerg", }, ["μeV"] = { target = "µeV", }, ["μLatm"] = { target = "µLatm", }, ["μlatm"] = { target = "µlatm", }, ["μtonTNT"] = { target = "µtonTNT", }, ["μtTNT"] = { target = "µtTNT", }, ["μW-h"] = { target = "µW.h", }, ["μW.h"] = { target = "µW.h", }, ["μWh"] = { target = "µWh", }, ["μW·h"] = { target = "µW.h", }, ["kWh/100 km"] = { name1 = "کِلوواٹ-گھنٹہ فی 100 کِلومیٖٹَر", name1_us = "کِلوواٹ-گھنٹہ فی 100 کِلومیٖٹَر", name2 = "کِلوواٹ-گھنٹہ فی 100 کِلومیٖٹَر", name2_us = "کِلوواٹ-گھنٹہ فی 100 کِلومیٖٹَر", symbol = "kW·h/100&nbsp;km", utype = "energy per unit length", scale = 36, default = "MJ/km kWh/mi", link = "کِلوواٹ گھنٹہ", }, ["MJ/100 km"] = { name1 = "میگاجول فی 100 کِلومیٖٹَر", name1_us = "میگاجول فی 100 کِلومیٖٹَر", name2 = "میگاجول فی 100 کِلومیٖٹَر", name2_us = "میگاجول فی 100 کِلومیٖٹَر", symbol = "kW·h/100&nbsp;mi", utype = "energy per unit length", scale = 10, default = "BTU/mi", link = "یکای برطانوی حرارت", }, ["BTU/mi"] = { per = { "BTU", "mi" }, utype = "energy per unit length", default = "v > 1525 ! M ! k ! J/km", }, ["kJ/km"] = { per = { "kJ", "km" }, utype = "energy per unit length", default = "BTU/mi", }, ["kWh/km"] = { per = { "-kW.h", "km" }, utype = "energy per unit length", default = "MJ/km kWh/mi", }, ["kWh/mi"] = { per = { "-kW.h", "mi" }, utype = "energy per unit length", default = "kWh/km MJ/km", }, ["MJ/km"] = { per = { "MJ", "km" }, utype = "energy per unit length", default = "BTU/mi", }, ["BTU/lb"] = { name1 = "یکای گرٛامایی برطانوی فی پونڈ", name2 = "یکای گرٛامایی برطانوی فی پونڈ", symbol = "BTU/lb", utype = "energy per unit mass", scale = 429.92261414790346, default = "kJ/kg", link = "یکای برطانوی حرارت", }, ["cal/g"] = { name1 = "کیلوری فی گرٛام", name2 = "کیلوری فی گرٛام", symbol = "cal/g", utype = "energy per unit mass", scale = 4184, default = "J/g", }, ["GJ/kg"] = { name1 = "گیگاژول فی کِلوگرٛام", name2 = "گیگاژول فی کِلوگرٛام", symbol = "GJ/kg", utype = "energy per unit mass", scale = 1e9, default = "ktTNT/t", link = "ژول", }, ["J/g"] = { name1 = "ژول فی گرٛام", name2 = "ژول فی گرٛام", symbol = "J/g", utype = "energy per unit mass", scale = 1000, default = "kcal/g", link = "ژول", }, ["kcal/g"] = { name1 = "کِلوکیلوری فی گرٛام", name2 = "کِلوکیلوری فی گرٛام", symbol = "kcal/g", utype = "energy per unit mass", scale = 4184000, default = "kJ/g", }, ["kJ/g"] = { name1 = "کِلوژول فی گرٛام", name2 = "کِلوژول فی گرٛام", symbol = "kJ/g", utype = "energy per unit mass", scale = 1000000, default = "kcal/g", link = "ژول", }, ["kJ/kg"] = { name1 = "کِلوژول فی کِلوگرٛام", name2 = "کِلوژول فی کِلوگرٛام", symbol = "kJ/kg", utype = "energy per unit mass", scale = 1000, default = "BTU/lb", }, ["ktonTNT/MT"] = { name2 = "کِلوٹن ٹی این ٹی فی ٹن میٖٹَری", symbol = "kiloton of TNT per metric ton", usename = 1, utype = "energy per unit mass", scale = 4184000000, default = "GJ/kg", link = "هم‌ارز تی‌ان‌تی", }, ["ktTNT/t"] = { name2 = "کِلوٹن ٹی این ٹی فی ٹن", symbol = "kilotonne of TNT per tonne", usename = 1, utype = "energy per unit mass", scale = 4184000000, default = "GJ/kg", link = "هم‌ارز تی‌ان‌تی", }, ["MtonTNT/MT"] = { name2 = "میگاٹن ٹی این ٹی فی ٹن میٖٹَری", symbol = "megaton of TNT per metric ton", usename = 1, utype = "energy per unit mass", scale = 4.184e12, default = "TJ/kg", link = "هم‌ارز تی‌ان‌تی", }, ["MtTNT/MT"] = { name2 = "میگاٹن ٹی این ٹی فی ٹن", symbol = "megatonne of TNT per tonne", usename = 1, utype = "energy per unit mass", scale = 4.184e12, default = "TJ/kg", link = "هم‌ارز تی‌ان‌تی", }, ["TJ/kg"] = { name1 = "تراژول فی کِلوگرٛام", name2 = "تراژول فی کِلوگرٛام", symbol = "TJ/kg", utype = "energy per unit mass", scale = 1e12, default = "MtTNT/MT", link = "ژول", }, ["Cal/g"] = { per = { "Cal", "g" }, utype = "energy per unit mass", default = "kJ/g", }, ["BTU/cuft"] = { per = { "BTU", "cuft" }, utype = "energy per unit volume", default = "kJ/L", }, ["Cal/12USoz(mL)serve"] = { per = { "Cal", "-12USoz(mL)serve" }, utype = "energy per unit volume", default = "kJ/L", }, ["Cal/12USoz(ml)serve"] = { per = { "Cal", "-12USoz(ml)serve" }, utype = "energy per unit volume", default = "kJ/l", }, ["Cal/12USozserve"] = { per = { "Cal", "-12USozserve" }, utype = "energy per unit volume", default = "kJ/L", }, ["Cal/USoz"] = { per = { "Cal", "USoz" }, utype = "energy per unit volume", default = "kJ/ml", }, ["kJ/L"] = { per = { "kJ", "L" }, utype = "energy per unit volume", default = "BTU/cuft", }, ["kJ/l"] = { per = { "kJ", "l" }, utype = "energy per unit volume", default = "BTU/cuft", }, ["kJ/ml"] = { per = { "kJ", "ml" }, utype = "energy per unit volume", default = "Cal/USoz", }, ["Sv"] = { _name1 = "سیورت", _symbol = "Sv", utype = "equivalent radiation dose", scale = 1, prefixes = 1, default = "rem", link = "سیورت", }, ["rem"] = { _name1 = "رم", _symbol = "rem", utype = "equivalent radiation dose", scale = 0.01, prefixes = 1, default = "Sv", link = "Roentgen equivalent man", }, ["g/km"] = { name1 = "گرٛام فی کِلومیٖٹَر", name1_us = "گرٛام فی کِلومیٖٹَر", name2 = "گرٛام فی کِلومیٖٹَر", name2_us = "گرٛام فی کِلومیٖٹَر", symbol = "g/km", utype = "exhaust emission", scale = 1e-6, default = "oz/mi", link = "گاز خروجی", }, ["g/mi"] = { name1 = "گرٛام فی میٖل", name2 = "گرٛام فی میٖل", symbol = "گرٛام/میٖل", utype = "exhaust emission", scale = 6.2137119223733397e-7, default = "g/km", link = "گاز خروجی", }, ["gCO2/km"] = { name1 = "گرٛام CO<sub>2</sub> فی کِلومیٖٹَر", name1_us = "گرٛام CO<sub>2</sub> فی کِلومیٖٹَر", name2 = "گرٛام CO<sub>2</sub> فی کِلومیٖٹَر", name2_us = "گرٛام CO<sub>2</sub> فی کِلومیٖٹَر", symbol = "g(CO<sub>2</sub>)/km", utype = "exhaust emission", scale = 1e-6, default = "ozCO2/mi", link = "گاز خروجی", }, ["gCO2/mi"] = { name1 = "گرٛام CO<sub>2</sub> فی میٖل", name2 = "گرٛام CO<sub>2</sub> فی میٖل", symbol = "گرٛام(CO<sub>2</sub>)/میٖل", utype = "exhaust emission", scale = 6.2137119223733397e-7, default = "gCO2/km", link = "گاز خروجی", }, ["kg/km"] = { name1 = "کِلوگرٛام فی کِلومیٖٹَر", name1_us = "کِلوگرٛام فی کِلومیٖٹَر", name2 = "کِلوگرٛام فی کِلومیٖٹَر", name2_us = "کِلوگرٛام فی کِلومیٖٹَر", symbol = "kg/km", utype = "exhaust emission", scale = 0.001, default = "lb/mi", link = "گاز خروجی", }, ["kgCO2/km"] = { name1 = "کِلوگرٛام CO<sub>2</sub> فی کِلومیٖٹَر", name1_us = "کِلوگرٛام CO<sub>2</sub> فی کِلومیٖٹَر", name2 = "کِلوگرٛام CO<sub>2</sub> فی کِلومیٖٹَر", name2_us = "کِلوگرٛام CO<sub>2</sub> فی کِلومیٖٹَر", symbol = "kg(CO<sub>2</sub>)/km", utype = "exhaust emission", scale = 0.001, default = "lbCO2/mi", link = "گاز خروجی", }, ["lb/mi"] = { name1 = "پونڈ فی میٖل", name2 = "پونڈ فی میٖل", symbol = "lb/mi", utype = "exhaust emission", scale = 0.00028184923173665794, default = "kg/km", link = "گاز خروجی", }, ["lbCO2/mi"] = { name1 = "پونڈ CO<sub>2</sub> فی میٖل", name2 = "پونڈ CO<sub>2</sub> فی میٖل", symbol = "lb(CO<sub>2</sub>)/mi", utype = "exhaust emission", scale = 0.00028184923173665794, default = "kgCO2/km", link = "گاز خروجی", }, ["oz/mi"] = { name1 = "اونس فی میٖل", name2 = "اونس فی میٖل", symbol = "oz/mi", utype = "exhaust emission", scale = 1.7615576983541121e-5, default = "g/km", link = "گاز خروجی", }, ["ozCO2/mi"] = { name1 = "اونس CO<sub>2</sub> فی میٖل", name2 = "اونس CO<sub>2</sub> فی میٖل", symbol = "oz(CO<sub>2</sub>)/mi", utype = "exhaust emission", scale = 1.7615576983541121e-5, default = "gCO2/km", link = "گاز خروجی", }, ["cuft/a"] = { name1 = "فُٹ مکعب پر سال", name2 = "فُٹ مکعب پر سال", symbol = "سال&nbsp;فُٹ/مکعب", utype = "flow", scale = 8.9730672142368242e-10, default = "m3/a", link = "فُٹ مکعب", }, ["cuft/d"] = { name1 = "فُٹ مکعب پر دن", name2 = "فُٹ مکعب پر دن", symbol = "فُٹ&nbsp;مکعب/دن", utype = "flow", scale = 3.2774128000000003e-7, default = "m3/d", link = "فُٹ مکعب", }, ["cuft/h"] = { name1 = "فُٹ مکعب فی گھنٹہ", name2 = "فُٹ مکعب فی گھنٹہ", symbol = "فُٹ&nbsp;مکعب/گھنٹہ", utype = "flow", scale = 7.8657907200000004e-6, default = "m3/h", link = "فُٹ مکعب", }, ["cuft/min"] = { name1 = "فُٹ مکعب فی منٹ", name2 = "فُٹ مکعب فی منٹ", symbol = "فُٹ&nbsp;مکعب/منٹ", utype = "flow", scale = 0.00047194744319999999, default = "m3/min", link = "فُٹ مکعب", }, ["cuft/s"] = { name1 = "فُٹ مکعب فی سؠکَنٛڈ", name2 = "فُٹ مکعب فی سؠکَنٛڈ", symbol = "فُٹ&nbsp;مکعب/سؠکَنٛڈ", utype = "flow", scale = 28316846592e-12, default = "m3/s", }, ["cumi/a"] = { name1 = "میٖل مکعب پر سال", name2 = "میٖل مکعب پر سال", symbol = "سال&nbsp;میٖل/مکعب", utype = "flow", scale = 132.08171170940057, default = "km3/a", link = "فُٹ مکعب", }, ["cuyd/h"] = { name1 = "یارڈ مکعب فی گھنٹہ", name2 = "یارڈ مکعب فی گھنٹہ", symbol = "cuyd/h", utype = "flow", scale = 0.00021237634944000001, default = "m3/h", link = "فُٹ مکعب", }, ["cuyd/s"] = { name1 = "یارڈ مکعب فی سؠکَنٛڈ", name2 = "یارڈ مکعب فی سؠکَنٛڈ", symbol = "cu&nbsp;yd/s", utype = "flow", scale = 0.76455485798400002, default = "m3/s", }, ["Goilbbl/a"] = { name1 = "میٖلیارڈ بشکه پر سال", name2 = "میٖلیارڈ بشکه پر سال", symbol = "Gbbl/a", utype = "flow", scale = 5.0380033629933836, default = "v * 1.58987294928 < 10 ! e6 ! e9 ! m3/a", link = "بشکه (اکائی)", }, ["impgal/h"] = { name1 = "گالون فی گھنٹہ برطانوی", name2 = "گالون برطانوی فی گھنٹہ", symbol = "imp&nbsp;gal/h", utype = "flow", scale = 1.2628027777777779e-6, default = "m3/h", link = "گالون", }, ["impgal/min"] = { name1 = "گالون فی منٹ برطانوی", name2 = "گالون برطانوی فی منٹ", symbol = "imp gal/min", utype = "flow", scale = 7.5768166666666671e-5, default = "m3/s", link = "گالون", }, ["impgal/s"] = { name1 = "گالون فی سؠکَنٛڈ برطانوی", name2 = "گالون برطانوی فی سؠکَنٛڈ", symbol = "impgal/s", utype = "flow", scale = 0.00454609, default = "m3/s", link = "مکعب میٖٹَر فی سؠکَنٛڈ", }, ["km3/a"] = { name1 = "کِلومکعب میٖٹَر پر سال", name1_us = "کِلومکعب میٖٹَر پر سال", name2 = "کِلومکعب میٖٹَر پر سال", name2_us = "کِلومکعب میٖٹَر پر سال", symbol = "گلومیٖٹَر<sup>3</sup>/سال", utype = "flow", scale = 31.68808781402895, default = "cumi/a", link = "مکعب میٖٹَر فی سؠکَنٛڈ", }, ["km3/d"] = { name1 = "کِلومکعب میٖٹَر پر دن", name1_us = "کِلومکعب میٖٹَر پر دن", name2 = "کِلومکعب میٖٹَر پر دن", name2_us = "کِلومکعب میٖٹَر پر دن", symbol = "کِلومیٖٹَر<sup>3</sup>/دن", utype = "flow", scale = 11574.074074074075, default = "cuft/d", link = "مکعب میٖٹَر فی سؠکَنٛڈ", }, ["koilbbl/a"] = { name1 = "ہزار بشکه پر سال", name2 = "ہزار بشکه پر سال", symbol = "kbbl/a", utype = "flow", scale = 5.0380033629933841e-6, default = "v * 1.58987294928 < 10 ! ! e3 ! m3/a", link = "بشکه (اکائی)", }, ["koilbbl/d"] = { name1 = "ہزار بشکه پر دن", name2 = "ہزار بشکه پر دن", symbol = "kbbl/d", utype = "flow", scale = 0.0018401307283333335, default = "v * 1.58987294928 < 10 ! ! e3 ! m3/d", link = "بشکه (اکائی)", }, ["L/h"] = { name1 = "لیٖٹَر فی گھنٹہ", name1_us = "لیٖٹَر فی گھنٹہ", name2 = "لیٖٹَر فی گھنٹہ", name2_us = "لیٖٹَر فی گھنٹہ", symbol = "L/h", utype = "flow", scale = 2.7777777777777776e-7, default = "impgal/h USgal/h", link = "مکعب میٖٹَر فی سؠکَنٛڈ", }, ["L/min"] = { name1 = "لیٖٹَر فی منٹ", name1_us = "لیٖٹَر فی منٹ", name2 = "لیٖٹَر فی منٹ", name2_us = "لیٖٹَر فی منٹ", symbol = "L/min", utype = "flow", scale = 1.6666666666666667e-5, default = "impgal/min USgal/min", link = "مکعب میٖٹَر فی سؠکَنٛڈ", }, ["L/s"] = { name1 = "لیٖٹَر فی سؠکَنٛڈ", name1_us = "لیٖٹَر فی سؠکَنٛڈ", name2 = "لیٖٹَر فی سؠکَنٛڈ", name2_us = "لیٖٹَر فی سؠکَنٛڈ", symbol = "L/s", utype = "flow", scale = 0.001, default = "cuft/s", link = "مکعب میٖٹَر فی سؠکَنٛڈ", }, ["m3/a"] = { name1 = "مکعب میٖٹَر پر سال", name1_us = "مکعب میٖٹَر پر سال", name2 = "مکعب میٖٹَر پر سال", name2_us = "مکعب میٖٹَر پر سال", symbol = "میٖٹَر<sup>3</sup>/سال", utype = "flow", scale = 3.1688087814028947e-8, default = "cuft/a", link = "مکعب میٖٹَر فی سؠکَنٛڈ", }, ["m3/d"] = { name1 = "مکعب میٖٹَر پر دن", name1_us = "مکعب میٖٹَر پر دن", name2 = "مکعب میٖٹَر پر دن", name2_us = "مکعب میٖٹَر پر دن", symbol = "میٖٹَر<sup>3</sup>/دن", utype = "flow", scale = 1.1574074074074073e-5, default = "cuft/d", link = "مکعب میٖٹَر فی سؠکَنٛڈ", }, ["m3/h"] = { name1 = "مکعب میٖٹَر فی گھنٹہ", name1_us = "مکعب میٖٹَر فی گھنٹہ", name2 = "مکعب میٖٹَر فی گھنٹہ", name2_us = "مکعب میٖٹَر فی گھنٹہ", symbol = "میٖٹَر<sup>3</sup>/گھنٹہ", utype = "flow", scale = 0.00027777777777777778, default = "cuft/h", link = "مکعب میٖٹَر فی سؠکَنٛڈ", }, ["m3/min"] = { name1 = "مکعب میٖٹَر فی منٹ", name1_us = "مکعب میٖٹَر فی منٹ", name2 = "مکعب میٖٹَر فی منٹ", name2_us = "مکعب میٖٹَر فی منٹ", symbol = "میٖٹَر<sup>3</sup>/منٹ", utype = "flow", scale = 0.016666666666666666, default = "cuft/min", link = "مکعب میٖٹَر فی سؠکَنٛڈ", }, ["m3/s"] = { name1 = "مکعب میٖٹَر فی سؠکَنٛڈ", name1_us = "مکعب میٖٹَر فی سؠکَنٛڈ", name2 = "مکعب میٖٹَر فی سؠکَنٛڈ", name2_us = "مکعب میٖٹَر فی سؠکَنٛڈ", symbol = "میٖٹَر<sup>3</sup>/سؠکَنٛڈ", utype = "flow", scale = 1, default = "cuft/s", }, ["Moilbbl/a"] = { name1 = "مِلیَن بشکه پر سال", name2 = "مِلیَن بشکه پر سال", symbol = "Mbbl/a", utype = "flow", scale = 0.0050380033629933837, default = "v * 1.58987294928 < 10 ! e3 ! e6 ! m3/a", link = "بشکه (اکائی)", }, ["Moilbbl/d"] = { name1 = "مِلیَن بشکه پر دن", name2 = "مِلیَن بشکه پر دن", symbol = "Mbbl/d", utype = "flow", scale = 1.8401307283333335, default = "v * 1.58987294928 < 10 ! e3 ! e6 ! m3/d", link = "بشکه (اکائی)", }, ["oilbbl/a"] = { name1 = "بشکه پر سال", name2 = "بشکه پر سال", symbol = "bbl/a", utype = "flow", scale = 5.0380033629933841e-9, default = "m3/a", link = "بشکه (اکائی)", }, ["oilbbl/d"] = { name1 = "بشکه پر دن", name2 = "بشکه پر دن", symbol = "bbl/d", utype = "flow", scale = 1.8401307283333336e-6, default = "m3/d", }, ["Toilbbl/a"] = { name1 = "تریلیون بشکه پر سال", name2 = "تریلیون بشکه پر سال", symbol = "Tbbl/a", utype = "flow", scale = 5038.0033629933832, default = "v * 1.58987294928 < 10 ! e9 ! e12 ! m3/a", link = "بشکه (اکائی)", }, ["U.S.gal/d"] = { name1 = "گالون امریکی پر دن", name2 = "گالون امریکی پر دن", symbol = "U.S.&nbsp;gal/d", utype = "flow", scale = 4.3812636388888893e-8, default = "m3/s", customary= 1, }, ["U.S.gal/h"] = { name1 = "گالون فی گھنٹہ", name2 = "گالون فی گھنٹہ", symbol = "gal/h", utype = "flow", scale = 1.0515032733333334e-6, default = "m3/h", link = "گالون", customary= 2, }, ["U.S.gal/min"] = { name1 = "گالون امریکی فی منٹ", name2 = "گالون امریکی فی منٹ", symbol = "U.S.&nbsp;gal/min", utype = "flow", scale = 6.3090196400000003e-5, default = "m3/s", link = "گالون", }, ["USgal/a"] = { name1 = "گالون امریکی پر سال", name2 = "گالون امریکی پر سال", symbol = "US&nbsp;gal/a", utype = "flow", scale = 1.1995246102365199e-10, default = "m3/s", link = "US gallon per day", }, ["USgal/d"] = { name1 = "گالون امریکی پر دن", name2 = "گالون امریکی پر دن", symbol = "US&nbsp;gal/d", utype = "flow", scale = 4.3812636388888893e-8, default = "m3/s", }, ["USgal/h"] = { name1 = "گالون فی گھنٹہ", name2 = "گالون فی گھنٹہ", symbol = "gal/h", utype = "flow", scale = 1.0515032733333334e-6, default = "m3/h", link = "گالون", customary= 1, }, ["USgal/min"] = { name1 = "گالون امریکی فی منٹ", name2 = "گالون امریکی فی منٹ", symbol = "US&nbsp;gal/min", utype = "flow", scale = 6.3090196400000003e-5, default = "m3/s", link = "گالون", }, ["USgal/s"] = { name1 = "گالون امریکی فی سؠکَنٛڈ", name1_us = "گالون امریکی فی سؠکَنٛڈ", name2 = "گالون امریکی فی سؠکَنٛڈ", name2_us = "گالون امریکی فی سؠکَنٛڈ", symbol = "USgal/s", utype = "flow", scale = 0.003785411784, default = "m3/s", link = "مکعب میٖٹَر فی سؠکَنٛڈ", }, ["ft3/a"] = { target = "cuft/a", }, ["ft3/d"] = { target = "cuft/d", }, ["ft3/h"] = { target = "cuft/h", }, ["ft3/s"] = { target = "cuft/s", }, ["Gcuft/a"] = { target = "e9cuft/a", }, ["Gcuft/d"] = { target = "e9cuft/d", }, ["kcuft/a"] = { target = "e3cuft/a", }, ["kcuft/d"] = { target = "e3cuft/d", }, ["kcuft/s"] = { target = "e3cuft/s", }, ["Mcuft/a"] = { target = "e6cuft/a", }, ["Mcuft/d"] = { target = "e6cuft/d", }, ["Mcuft/s"] = { target = "e6cuft/s", }, ["m³/s"] = { target = "m3/s", }, ["Tcuft/a"] = { target = "e12cuft/a", }, ["Tcuft/d"] = { target = "e12cuft/d", }, ["u.s.gal/min"] = { target = "U.S.gal/min", }, ["usgal/min"] = { target = "USgal/min", }, ["-LTf"] = { name1 = "ٹن بزرگ-قوت", name2 = "ٹن بزرگ-قوت", symbol = "LTf", utype = "force", scale = 9964.01641818352, default = "kN", }, ["-STf"] = { name1 = "ٹن کوتاه-قوت", name2 = "ٹن کوتاه-قوت", symbol = "STf", utype = "force", scale = 8896.443230521, default = "kN", }, ["dyn"] = { name1 = "دین", symbol = "dyn", utype = "force", scale = 0.00001, default = "gr-f", }, ["g-f"] = { name1 = "گرٛام-قوت", name2 = "گرٛام-قوت", symbol = "g<sub>f</sub>", utype = "force", scale = 0.00980665, default = "mN oz-f", link = "Kilogram-force", }, ["gf"] = { name1 = "گرٛام-قوت", name2 = "گرٛام-قوت", symbol = "gf", utype = "force", scale = 0.00980665, default = "mN ozf", link = "Kilogram-force", }, ["gr-f"] = { name1 = "دانہ-قوت", name2 = "دانہ-قوت", symbol = "gr<sub>f</sub>", utype = "force", scale = 0.0006354602307515, default = "µN", link = "Pound-force", }, ["grf"] = { name1 = "دانہ-قوت", name2 = "دانہ-قوت", symbol = "grf", utype = "force", scale = 0.0006354602307515, default = "µN", link = "Pound-force", }, ["kdyn"] = { name1 = "کِلودین", symbol = "kdyn", utype = "force", scale = 0.01, default = "oz-f", link = "دین (اکائی)", }, ["kg-f"] = { name1 = "کِلوگرٛام-قوت", name2 = "کِلوگرٛام-قوت", symbol = "kg<sub>f</sub>", utype = "force", scale = 9.80665, default = "N lb-f", }, ["kgf"] = { name1 = "کِلوگرٛام-قوت", name2 = "کِلوگرٛام-قوت", symbol = "kgf", utype = "force", scale = 9.80665, default = "N lbf", }, ["kp"] = { name1 = "کِلوپونڈ", symbol = "kp", utype = "force", scale = 9.80665, default = "N lb-f", link = "Kilogram-force", }, ["L/T-f"] = { name1 = "ٹن بزرگ-قوت", name2 = "ٹن بزرگ-قوت", symbol = "L/T<sub>f</sub>", utype = "force", scale = 9964.01641818352, default = "kN", }, ["L/Tf"] = { name1 = "ٹن بزرگ-قوت", name2 = "ٹن بزرگ-قوت", symbol = "L/Tf", utype = "force", scale = 9964.01641818352, default = "kN", }, ["lb-f"] = { name1 = "پونڈ-قوت", name2 = "پونڈ-قوت", symbol = "lb<sub>f</sub>", utype = "force", scale = 4.4482216152605, default = "N", }, ["lbf"] = { name1 = "پونڈ-قوت", name2 = "پونڈ-قوت", symbol = "پونڈ قوت", utype = "force", scale = 4.4482216152605, default = "N", }, ["lb(f)"] = { name1 = "پونڈ", symbol = "lb", utype = "force", scale = 4.4482216152605, default = "N", link = "پونڈ-قوت", }, ["LT-f"] = { name1 = "ٹن بزرگ-قوت", name2 = "ٹن بزرگ-قوت", symbol = "LT<sub>f</sub>", utype = "force", scale = 9964.01641818352, default = "kN", }, ["LTf"] = { name1 = "ٹن بزرگ-قوت", name2 = "ٹن بزرگ-قوت", symbol = "LTf", usename = 1, utype = "force", scale = 9964.01641818352, default = "kN", }, ["Mdyn"] = { name1 = "میگادین", symbol = "Mdyn", utype = "force", scale = 10, default = "lb-f", link = "دین (اکائی)", }, ["mdyn"] = { name1 = "ملیدین", symbol = "mdyn", utype = "force", scale = 0.00000001, default = "gr-f", link = "دین (اکائی)", }, ["mg-f"] = { name1 = "ملی گرٛام-قوت", name2 = "ملی گرٛام-قوت", symbol = "mg<sub>f</sub>", utype = "force", scale = 0.00000980665, default = "µN gr-f", link = "Kilogram-force", }, ["mgf"] = { name1 = "ملی گرٛام-قوت", name2 = "ملی گرٛام-قوت", symbol = "mgf", utype = "force", scale = 0.00000980665, default = "µN grf", link = "Kilogram-force", }, ["Mp"] = { name1 = "میگاپونڈ", symbol = "Mp", utype = "force", scale = 9806.65, default = "kN LT-f ST-f", link = "Kilogram-force", }, ["mp"] = { name1 = "ملیپونڈ", symbol = "mp", utype = "force", scale = 0.00000980665, default = "µN gr-f", link = "Kilogram-force", }, ["N"] = { _name1 = "نیوٹن", _symbol = "N", utype = "force", scale = 1, prefixes = 1, default = "lb-f", link = "نیوتون (اکائی)", }, ["oz-f"] = { name1 = "اونس-قوت", name2 = "اونس-قوت", symbol = "oz<sub>f</sub>", utype = "force", scale = 0.2780138203095378125, default = "mN", link = "Pound-force", }, ["ozf"] = { name1 = "اونس-قوت", name2 = "اونس-قوت", symbol = "ozf", utype = "force", scale = 0.2780138203095378125, default = "mN", link = "Pound-force", }, ["p"] = { name1 = "پونڈ", symbol = "p", utype = "force", scale = 0.00980665, default = "mN oz-f", link = "Kilogram-force", }, ["pdl"] = { name1 = "پونڈال", symbol = "pdl", utype = "force", scale = 0.138254954376, default = "N", }, ["S/T-f"] = { name1 = "ٹن کوتاه-قوت", name2 = "ٹن کوتاه-قوت", symbol = "S/T<sub>f</sub>", utype = "force", scale = 8896.443230521, default = "kN", }, ["S/Tf"] = { name1 = "ٹن کوتاه-قوت", name2 = "ٹن کوتاه-قوت", symbol = "S/Tf", utype = "force", scale = 8896.443230521, default = "kN", }, ["ST-f"] = { name1 = "ٹن کوتاه-قوت", name2 = "ٹن کوتاه-قوت", symbol = "ST<sub>f</sub>", utype = "force", scale = 8896.443230521, default = "kN", }, ["STf"] = { name1 = "ٹن کوتاه-قوت", name2 = "ٹن کوتاه-قوت", symbol = "STf", usename = 1, utype = "force", scale = 8896.443230521, default = "kN", }, ["t-f"] = { name1 = "ٹن-قوت", name2 = "ٹن-قوت", symbol = "t<sub>f</sub>", utype = "force", scale = 9806.65, default = "kN LT-f ST-f", link = "Ton-force#Tonne-force", }, ["tf"] = { name1 = "ٹن-قوت", name2 = "ٹن-قوت", symbol = "tf", utype = "force", scale = 9806.65, default = "kN LTf STf", link = "Ton-force#Tonne-force", }, ["dyne"] = { target = "dyn", }, ["newtons"] = { target = "N", }, ["poundal"] = { target = "pdl", }, ["tonne-force"] = { target = "tf", }, ["impgal/mi"] = { per = { "@impgal", "mi" }, utype = "fuel efficiency", invert = 1, iscomplex= true, default = "l/km USgal/mi", }, ["km/L"] = { per = { "km", "L" }, utype = "fuel efficiency", invert = -1, iscomplex= true, default = "mpgimp mpgus", }, ["km/l"] = { per = { "km", "l" }, utype = "fuel efficiency", invert = -1, iscomplex= true, default = "mpgimp mpgus", }, ["L/100 km"] = { per = { "L", "100km" }, utype = "fuel efficiency", invert = 1, iscomplex= true, default = "mpgimp mpgus", symlink = "[[Fuel economy in automobiles#Units of measure|L/100 km]]", }, ["l/100 km"] = { per = { "l", "100km" }, utype = "fuel efficiency", invert = 1, iscomplex= true, default = "mpgimp mpgus", symlink = "[[Fuel economy in automobiles#Units of measure|l/100 km]]", }, ["L/km"] = { per = { "L", "km" }, utype = "fuel efficiency", invert = 1, iscomplex= true, default = "mpgimp mpgus", }, ["l/km"] = { per = { "l", "km" }, utype = "fuel efficiency", invert = 1, iscomplex= true, default = "mpgimp mpgus", }, ["mi/impqt"] = { per = { "mi", "impqt" }, utype = "fuel efficiency", invert = -1, iscomplex= true, default = "km/L", }, ["mi/U.S.qt"] = { per = { "mi", "U.S.qt" }, utype = "fuel efficiency", invert = -1, iscomplex= true, default = "km/L", }, ["mi/USqt"] = { per = { "mi", "USqt" }, utype = "fuel efficiency", invert = -1, iscomplex= true, default = "km/L", }, ["mi/usqt"] = { per = { "mi", "usqt" }, utype = "fuel efficiency", invert = -1, iscomplex= true, default = "km/L", }, ["mpgimp"] = { per = { "mi", "@impgal" }, symbol = "mpg<sub><small>-imp</small></sub>", utype = "fuel efficiency", invert = -1, iscomplex= true, default = "L/100 km mpgus", symlink = "[[Fuel economy in automobiles#Units of measure|mpg]]<sub><small>-[[دستگاه برطانوی|imp]]</small></sub>", }, ["mpgus"] = { per = { "mi", "+USgal" }, symbol = "mpg<sub><small>-US</small></sub>", utype = "fuel efficiency", invert = -1, iscomplex= true, default = "L/100 km mpgimp", symlink = "[[Fuel economy in automobiles#Units of measure|mpg]]<sub><small>-[[دستگاه امریکی|US]]</small></sub>", }, ["U.S.gal/mi"] = { per = { "*U.S.gal", "mi" }, sp_us = true, utype = "fuel efficiency", invert = 1, iscomplex= true, default = "l/km impgal/mi", }, ["usgal/mi"] = { per = { "+USgal", "mi" }, utype = "fuel efficiency", invert = 1, iscomplex= true, default = "l/km impgal/mi", }, ["L/100km"] = { target = "L/100 km", }, ["l/100km"] = { target = "l/100 km", }, ["L100km"] = { shouldbe = "Use %{L/100 km%} (not %{L100km%})", }, ["mpg"] = { shouldbe = "Use %{mpgus%} for miles per US gallon or %{mpgimp%} for miles per imperial gallon (not %{mpg%})", }, ["mpgU.S."] = { target = "mpgus", symbol = "mpg<sub><small>-U.S.</small></sub>", sp_us = true, symlink = "[[Fuel economy in automobiles#Units of measure|mpg]]<sub><small>-[[دستگاه امریکی|U.S.]]</small></sub>", }, ["mpgu.s."] = { target = "mpgus", symbol = "mpg<sub><small>-U.S.</small></sub>", sp_us = true, symlink = "[[Fuel economy in automobiles#Units of measure|mpg]]<sub><small>-[[دستگاه امریکی|U.S.]]</small></sub>", }, ["mpgUS"] = { target = "mpgus", }, ["USgal/mi"] = { target = "usgal/mi", }, ["kPa/m"] = { per = { "kPa", "-m-frac" }, utype = "fracture gradient", default = "psi/ft", }, ["psi/ft"] = { per = { "psi", "-ft-frac" }, utype = "fracture gradient", default = "kPa/m", }, ["cm/km"] = { name1 = "سؠنٹی میٖٹَر فی کِلومیٖٹَر", name1_us = "سؠنٹی میٖٹَر فی کِلومیٖٹَر", name2 = "سؠنٹی میٖٹَر فی کِلومیٖٹَر", name2_us = "سؠنٹی میٖٹَر فی کِلومیٖٹَر", symbol = "سؠنٹی میٖٹَر/کِلو میٖٹَر", utype = "gradient", scale = 0.00001, default = "ft/mi", link = "Grade (slope)", }, ["ft/mi"] = { name1 = "فُٹ فی میٖل", name2 = "فُٹ فی میٖل", symbol = "فُٹ/میٖل", utype = "gradient", scale = 0.00018939393939393939, default = "v < 5.28 ! c ! ! m/km", link = "Grade (slope)", }, ["ft/nmi"] = { name1 = "فُٹ فی بحری میٖل", name2 = "فُٹ فی بحری میٖل", symbol = "فُٹ/بحری میٖل", utype = "gradient", scale = 0.00016457883369330455, default = "v < 6.076 ! c ! ! m/km", link = "Grade (slope)", }, ["in/ft"] = { name1 = "آنٛچہِ فی فُٹ", name2 = "آنٛچہِ فی فُٹ", symbol ="in/ft", utype = "gradient", scale = 0.083333333333333329, default = "mm/m", link = "Grade (slope)", }, ["in/mi"] = { name1 = "آنٛچہِ فی میٖل", name2 = "آنٛچہِ فی میٖل", symbol = "آنٛچہِ/میٖل", utype = "gradient", scale = 1.5782828282828283e-5, default = "v < 0.6336 ! m ! c ! m/km", link = "Grade (slope)", }, ["m/km"] = { name1 = "میٖٹَر فی کِلومیٖٹَر", name1_us = "میٖٹَر فی کِلومیٖٹَر", name2 = "میٖٹَر فی کِلومیٖٹَر", name2_us = "میٖٹَر فی کِلومیٖٹَر", symbol = "میٖل/کِلومیٖٹَر", utype = "gradient", scale = 0.001, default = "ft/mi", link = "Grade (slope)", }, ["mm/km"] = { name1 = "ملی میٖٹَر فی کِلومیٖٹَر", name1_us = "ملی میٖٹَر فی کِلومیٖٹَر", name2 = "ملی میٖٹَر فی کِلومیٖٹَر", name2_us = "ملی میٖٹَر فی کِلومیٖٹَر", symbol = "mm/km", utype = "gradient", scale = 0.000001, default = "in/mi", link = "Grade (slope)", }, ["mm/m"] = { name1 = "ملی میٖٹَر فی میٖٹَر", name1_us = "ملی میٖٹَر فی میٖٹَر", name2 = "ملی میٖٹَر فی میٖٹَر", name2_us = "ملی میٖٹَر فی میٖٹَر", symbol = "ملی مٹیر/میٖٹَر", utype = "gradient", scale = 0.001, default = "in/ft", link = "Grade (slope)", }, ["admi"] = { name1 = "بحری میٖل", symbol = "بحری میٖل", utype = "length", scale = 1853.184, default = "km mi", link = "بحری میٖل", }, ["AU"] = { name1 = "یکای نجومی", symbol = "AU", utype = "length", scale = 149597870700, default = "km mi", }, ["Brnmi"] = { name1 = "بحری میٖل برطانوی", symbol = "(برطانوی)&nbsp;بحری میٖل", utype = "length", scale = 1853.184, default = "km mi", link = "بحری میٖل", }, ["bu"] = { name2 = "بو", symbol = "bu", usename = 1, utype = "length", scale = 0.0030303030303030303, default = "mm", link = "Japanese units of measurement#Length", }, ["ch"] = { name1 = "زنجیر", symbol = "ch", utype = "length", scale = 20.1168, default = "ft m", subdivs = { ["ft"] = { 66, default = "m" }, ["yd"] = { 22, default = "m" } }, link = "زنجیر (اکائی)", }, ["chain"] = { symbol = "chain", usename = 1, utype = "length", scale = 20.1168, default = "ft m", subdivs = { ["ft"] = { 66, default = "m" }, ["yd"] = { 22, default = "m" } }, link = "زنجیر (اکائی)", }, ["dpcm"] = { name2 = "dot/cm", symbol = "dot/cm", utype = "length", scale = 100, invert = -1, iscomplex= true, default = "dpi", link = "نقطه پر آنٛچہِ", }, ["dpi"] = { name2 = "دی‌پی‌آی", symbol = "DPI", utype = "length", scale = 39.370078740157481, invert = -1, iscomplex= true, default = "pitch", link = "نقطه پر آنٛچہِ", }, ["fathom"] = { symbol = "fathom", usename = 1, utype = "length", scale = 1.8288, default = "ft m", }, ["foot"] = { name1 = "فُٹ", name2 = "فُٹ", symbol = "فُٹ", utype = "length", scale = 0.3048, default = "m", subdivs = { ["in"] = { 12, default = "m" } }, link = "پا (اکائی)", }, ["ft"] = { name1 = "فُٹ", name2 = "فُٹ", symbol = "فُٹ", utype = "length", scale = 0.3048, exception= "integer_more_precision", default = "m", subdivs = { ["in"] = { 12, default = "m" } }, link = "پا (اکائی)", }, ["furlong"] = { symbol = "furlong", usename = 1, utype = "length", scale = 201.168, default = "ft m", }, ["Gly"] = { name1 = "گیگا سال نوری", symbol = "Gly", utype = "length", scale = 9.4607304725808e24, default = "Mpc", link = "سال نوری", }, ["Gpc"] = { name1 = "گیگاپارسک", symbol = "Gpc", utype = "length", scale = 3.0856775814671916e25, default = "Gly", link = "پارسک", }, ["hand"] = { name1 = "دست", symbol = "h", utype = "length", builtin = "hand", scale = 0.1016, iscomplex= true, default = "in cm", link = "Hand (unit)", }, ["in"] = { name1 = "آنٛچہِ", name2 = "آنٛچہِ", symbol = "آنٛچہِ", utype = "length", scale = 0.0254, exception= "subunit_more_precision", default = "mm", }, ["inabbreviated"] = { name2 = "آنٛچہِ", symbol = "آنٛچہِ", utype = "length", scale = 0.0254, default = "mm", link = "آنٛچہِ", }, ["kly"] = { name1 = "کِلو نوری سال`", symbol = "kly", utype = "length", scale = 9.4607304725808e18, default = "pc", link = "نوری سال", }, ["kpc"] = { name1 = "کِلوپارسک", symbol = "kpc", utype = "length", scale = 3.0856775814671916e19, default = "kly", link = "پارسک", }, ["LD"] = { name1 = "فاصلهٔ قمری", symbol = "LD", utype = "length", scale = 384403000, default = "km mi", link = "Lunar distance (astronomy)", }, ["league"] = { symbol = "فرسنگ", utype = "length", scale = 4828.032, default = "km", link = "لیگ (اکائی)", }, ["ly"] = { name1 = "نوری سال", symbol = "نوری سال", utype = "length", scale = 9.4607304725808e15, default = "AU", }, ["m"] = { _name1 = "میٖٹَر", _name1_us= "میٖٹَر", _symbol = "میٖٹَر", utype = "length", scale = 1, prefixes = 1, default = "v > 0 and v < 3 ! ftin ! ft", link = "میٖٹَر", }, ["mi"] = { name1 = "میٖل", symbol = "میٖل", utype = "length", scale = 1609.344, default = "km", subdivs = { ["ch"] = { 80, default = "km" }, ["chain"] = { 80, default = "km" }, ["ft"] = { 5280, default = "km" }, ["yd"] = { 1760, default = "km" } }, }, ["mil"] = { symbol = "مکعب سؠنٹی میٖٹَر", usename = 1, utype = "length", scale = 0.0000254, default = "mm", link = "مکعب سؠنٹی میٖٹَر (اکائی)", }, ["Mly"] = { name1 = "میگا سال نوری", symbol = "Mly", utype = "length", scale = 9.4607304725808e21, default = "kpc", link = "سال نوری", }, ["Mpc"] = { name1 = "میگاپارسک", symbol = "Mpc", utype = "length", scale = 3.0856775814671916e22, default = "Mly", link = "پارسک", }, ["NM"] = { name1 = "بحری میٖل", symbol = "NM", utype = "length", scale = 1852, default = "km mi", }, ["nmi"] = { name1 = "بحری میٖل", symbol = "بحری میٖل", utype = "length", scale = 1852, default = "km mi", }, ["oldUKnmi"] = { name1 = "بحری میٖل", symbol = "بحری میٖل", utype = "length", scale = 1853.184, default = "km mi", }, ["oldUSnmi"] = { name1 = "بحری میٖل", symbol = "بحری میٖل", utype = "length", scale = 1853.24496, default = "km mi", }, ["pc"] = { name1 = "پارسک", symbol = "pc", utype = "length", scale = 3.0856775814671916e16, default = "ly", }, ["perch"] = { name2 = "پرچس", symbol = "perch", usename = 1, utype = "length", scale = 5.0292, default = "ft m", link = "راد (اکائی)", }, ["pitch"] = { name2 = "µm", symbol = "µm", utype = "length", scale = 1e-6, default = "dpi", defkey = "pitch", linkey = "pitch", link = "نقطه پر آنٛچہِ", }, ["pole"] = { symbol = "pole", usename = 1, utype = "length", scale = 5.0292, default = "ft m", link = "راد (اکائی)", }, ["pre1954U.S.nmi"] = { name1 = "(امریکی قبل از 1954) بحری میٖل", symbol = "(قبل-1954&nbsp;یو۔ ایس۔) بحری میٖل", utype = "length", scale = 1853.24496, default = "km mi", link = "بحری میٖل", }, ["pre1954USnmi"] = { name1 = "(امریکی قبل از 1954) بحری میٖل", name1_us = "(امریکی قبل از 1954) بحری میٖل", symbol = "(قبل-1954&nbsp;US) بحری میٖل", sym_us = "(pre-1954&nbsp;U.S.) nmi", utype = "length", scale = 1853.24496, default = "km mi", link = "بحری میٖل", }, ["rd"] = { name1 = "رود", symbol = "rd", utype = "length", scale = 5.0292, default = "ft m", link = "راد (اکائی)", }, ["royal cubit"] = { name1 = "ارش برطانوی", symbol = "مکعب", utype = "length", scale = 0.524, default = "mm", }, ["rtkm"] = { name1 = "روٹ کِلومیٖٹَر", name1_us = "روٹ کِلومیٖٹَر", symbol = "کِلو میٖٹَر", utype = "length", scale = 1000, default = "mi", link = "کِلومیٖٹَر", }, ["rtmi"] = { name1 = "روٹ میٖل", symbol = "میٖل", utype = "length", scale = 1609.344, default = "km", link = "میٖل", }, ["shaku"] = { name2 = "شکو", symbol = "shaku", usename = 1, utype = "length", scale = 0.30303030303030304, default = "m", link = "Japanese units of measurement#Length", }, ["sm"] = { name1 = "اسموت", symbol = "sm", utype = "length", scale = 1.70180, default = "m", link = "Smoot (unit)", }, ["smi"] = { name1 = "میٖل مقررات", symbol = "میٖل", utype = "length", scale = 1609.344, default = "km", subdivs = { ["chain"] = { 80, default = "km" } }, }, ["sun"] = { name2 = "خورشید", symbol = "sun", usename = 1, utype = "length", scale = 0.030303030303030304, default = "mm", link = "Japanese units of measurement#Length", }, ["thou"] = { name2 = "ثو", symbol = "thou", usename = 1, utype = "length", scale = 0.0000254, default = "mm", link = "ثو (اکائی)", }, ["verst"] = { symbol = "verst", usename = 1, utype = "length", scale = 1066.8, default = "km mi", }, ["yd"] = { name1 = "یارڈ", symbol = "yd", utype = "length", scale = 0.9144, default = "m", subdivs = { ["ft"] = { 3, default = "m" } }, }, ["µin"] = { name1 = "میکروآنٛچہِ", name2 = "میکروآنٛچہِ", symbol = "µin", utype = "length", scale = 0.0000000254, default = "nm", link = "پیشوندهای اس‌آی", }, ["Å"] = { name1 = "اُنگستروم", symbol = "Å", utype = "length", scale = 0.0000000001, default = "in", link = "اُنگستروم", }, ["-ft-frac"] = { target = "ft", link = "شکستگی‌های هیدرولیکی", }, ["-in-stiff"] = { target = "in", link = "سفتی", }, ["-m-frac"] = { target = "m", link = "شکستگی‌های هیدرولیکی", }, ["-m-stiff"] = { target = "m", link = "سفتی", }, ["100km"] = { target = "km", multiplier= 100, }, ["admiralty nmi"] = { target = "oldUKnmi", }, ["angstrom"] = { target = "Å", }, ["feet"] = { shouldbe = "Use %{ft%} (not %{feet%})", }, ["hands"] = { target = "hand", }, ["inch"] = { target = "in", }, ["light-year"] = { shouldbe = "Use %{ly%} (not %{light-year%})", }, ["light-years"] = { shouldbe = "Use %{ly%} (not %{light-years%})", }, ["meter"] = { shouldbe = "Use %{m%} (not %{meter%})", }, ["meters"] = { shouldbe = "Use %{m%} (not %{meters%})", }, ["metre"] = { shouldbe = "Use %{m%} (not %{metre%})", }, ["metres"] = { shouldbe = "Use %{m%} (not %{metres%})", }, ["micrometre"] = { target = "µm", }, ["mile"] = { target = "mi", }, ["mile"] = { target = "mi", }, ["miles"] = { target = "mi", }, ["parsec"] = { target = "pc", }, ["rod"] = { target = "rd", }, ["smoot"] = { target = "sm", }, ["uin"] = { target = "µin", }, ["yard"] = { target = "yd", }, ["yards"] = { target = "yd", }, ["yds"] = { target = "yd", }, ["μin"] = { target = "µin", }, ["dtex"] = { name1 = "ڈیسی‌تکس", name2 = "ڈیسی‌تکس", symbol = "dtex", utype = "linear density", scale = 1e-7, default = "lb/yd", link = "Units of textile measurement#Tex", }, ["kg/cm"] = { name1 = "کِلوگرٛام فی سؠنٹی میٖٹَر", name1_us = "کِلوگرٛام فی سؠنٹی میٖٹَر", name2 = "کِلوگرٛام فی سؠنٹی میٖٹَر", name2_us = "کِلوگرٛام فی سؠنٹی میٖٹَر", symbol = "kg/cm", utype = "linear density", scale = 100, default = "lb/yd", link = "چگالی خطی", }, ["kg/m"] = { name1 = "کِلوگرٛام فی میٖٹَر", name1_us = "کِلوگرٛام فی میٖٹَر", name2 = "کِلوگرٛام فی میٖٹَر", name2_us = "کِلوگرٛام فی میٖٹَر", symbol = "kg/m", utype = "linear density", scale = 1, default = "lb/yd", link = "چگالی خطی", }, ["lb/ft"] = { name1 = "پونڈ فی فُٹ", name2 = "پونڈ فی فُٹ", symbol = "lb/ft", utype = "linear density", scale = 1.4881639435695539, default = "kg/m", link = "چگالی خطی", }, ["lb/yd"] = { name1 = "پونڈ فی یارڈ", name2 = "پونڈ فی یارڈ", symbol = "lb/yd", utype = "linear density", scale = 0.49605464785651798, default = "kg/m", link = "چگالی خطی", }, ["G"] = { name1 = "گاوس", name2 = "گاوس", symbol = "G", utype = "magnetic field strength", scale = 0.0001, default = "T", link = "گاوس (اکائی)", }, ["T"] = { _name1 = "ٹیسلا", _symbol = "ٹیسلا", utype = "magnetic field strength", scale = 1, prefixes = 1, default = "G", link = "ٹیسلا (اکائی)", }, ["A/m"] = { name1 = "آمپر فی میٖٹَر", name1_us = "آمپر فی میٖٹَر", name2 = "آمپر فی میٖٹَر", name2_us = "آمپر فی میٖٹَر", symbol = "A/m", utype = "magnetizing field", scale = 1, default = "Oe", link = "میدان مغناطیسی", }, ["kA/m"] = { name1 = "کِلوآمپر فی میٖٹَر", name1_us = "کِلوآمپر فی میٖٹَر", name2 = "کِلوآمپر فی میٖٹَر", name2_us = "کِلوآمپر فی میٖٹَر", symbol = "kA/m", utype = "magnetizing field", scale = 1000, default = "kOe", link = "میدان مغناطیسی", }, ["MA/m"] = { name1 = "میگاآمپر فی میٖٹَر", name1_us = "میگاآمپر فی میٖٹَر", name2 = "میگاآمپر فی میٖٹَر", name2_us = "میگاآمپر فی میٖٹَر", symbol = "MA/m", utype = "magnetizing field", scale = 1e6, default = "kOe", link = "میدان مغناطیسی", }, ["Oe"] = { _name1 = "اورستد", _symbol = "Oe", utype = "magnetizing field", scale = 79.5774715, prefixes = 1, default = "kA/m", link = "Oersted", }, ["--Lcwt"] = { name1 = "صدوزن", symbol = "Lcwt", usename = 1, utype = "mass", scale = 50.80234544, default = "lb", }, ["--Scwt"] = { name1 = "صدوزن", symbol = "Scwt", usename = 1, utype = "mass", scale = 45.359237, default = "lb", link = "هاندردویت", }, ["-LT"] = { name1 = "ٹن بزرگ", symbol = "LT", utype = "mass", scale = 1016.0469088, default = "t", }, ["-Scwt"] = { name1 = "صدوزن کوچک", symbol = "Scwt", usename = 1, utype = "mass", scale = 45.359237, default = "lb", }, ["-ST"] = { name1 = "ٹن کوچک", symbol = "ST", utype = "mass", scale = 907.18474, default = "t", }, ["carat"] = { symbol = "قیراط", usename = 1, utype = "mass", scale = 0.0002, default = "g", link = "قیراط", }, ["drachm"] = { name1_us = "درم", symbol = "drachm", usename = 1, utype = "mass", scale = 0.001771845195, default = "g", link = "درم (اکائی)", }, ["dram"] = { name1_us = "درم", symbol = "drachm", usename = 1, utype = "mass", scale = 0.001771845195, default = "g", link = "درم (اکائی)", }, ["dwt"] = { name1 = "وزن پنی", symbol = "dwt", utype = "mass", scale = 0.00155517384, default = "oz g", }, ["DWton"] = { symbol = "deadweight ton", usename = 1, utype = "mass", scale = 1016.0469088, default = "DWtonne", link = "Tonnage", }, ["DWtonne"] = { symbol = "deadweight tonne", usename = 1, utype = "mass", scale = 1000, default = "DWton", link = "Tonnage", }, ["g"] = { _name1 = "گرٛام", _symbol = "گرٛام", utype = "mass", scale = 0.001, prefixes = 1, default = "oz", link = "گرٛام", }, ["gr"] = { name1 = "دانہ", symbol = "gr", utype = "mass", scale = 0.00006479891, default = "g", link = "دانہ (اکائی)", }, ["Gt"] = { name1 = "گیگاٹن", symbol = "Gt", utype = "mass", scale = 1000000000000, default = "LT ST", link = "ٹن (اکائی)", }, ["impgalh2o"] = { name1 = "گالون آب برطانوی", name2 = "گالون برطانوی آب", symbol = "imp&nbsp;gal H<sub>2</sub>O", utype = "mass", scale = 4.5359236999999499, default = "lb kg", link = "گالون", }, ["kt"] = { name1 = "کِلوٹن", symbol = "kt", utype = "mass", scale = 1000000, default = "LT ST", link = "ٹن (اکائی)", }, ["lb"] = { name1 = "پونڈ", symbol = "پونڈ", utype = "mass", scale = 0.45359237, exception= "integer_more_precision", default = "kg", subdivs = { ["oz"] = { 16, default = "kg" } }, link = "پونڈ (یکای جرم)", }, ["Lcwt"] = { name1 = "صدوزن بزرگ", symbol = "Lcwt", usename = 1, utype = "mass", scale = 50.80234544, default = "lb", subdivs = { ["qtr"] = { 4, default = "kg", name = "qtr" }, ["st"] = { 8, default = "kg" } }, link = "هاندردویت", }, ["long cwt"] = { name1 = "صدوزن بزرگ", symbol = "long&nbsp;cwt", utype = "mass", scale = 50.80234544, default = "lb kg", link = "هاندردویت", }, ["long qtr"] = { name1 = "کوارتر بزرگ", symbol = "long&nbsp;qtr", utype = "mass", scale = 12.70058636, default = "lb kg", link = "آوواردوپوآ", }, ["long ton"] = { symbol = "long ton", usename = 1, utype = "mass", scale = 1016.0469088, default = "t", }, ["LT"] = { symbol = "long ton", usename = 1, utype = "mass", scale = 1016.0469088, default = "t", subdivs = { ["Lcwt"] = { 20, default = "t", unit = "--Lcwt", name = "cwt" } }, }, ["lt"] = { name1 = "ٹن بزرگ", symbol = "LT", utype = "mass", scale = 1016.0469088, default = "t", }, ["metric ton"] = { symbol = "metric ton", usename = 1, utype = "mass", scale = 1000, default = "long ton", link = "ٹن (اکائی)", }, ["MT"] = { name1 = "ٹن میٖٹَری", symbol = "t", utype = "mass", scale = 1000, default = "LT ST", link = "ٹن (اکائی)", }, ["Mt"] = { name1 = "میگاٹن", symbol = "Mt", utype = "mass", scale = 1000000000, default = "LT ST", link = "ٹن (اکائی)", }, ["oz"] = { name1 = "اونس", symbol = "oz", utype = "mass", scale = 0.028349523125, default = "g", }, ["ozt"] = { name1 = "اونس تروا", symbol = "ozt", utype = "mass", scale = 0.0311034768, default = "oz g", }, ["pdr"] = { name1 = "پونڈ", symbol = "pdr", utype = "mass", scale = 0.45359237, default = "kg", link = "پونڈ (یکای جرم)", }, ["qtr"] = { name1 = "کوارتر", symbol = "چوتھائی", utype = "mass", scale = 12.70058636, default = "lb kg", subdivs = { ["lb"] = { 28, default = "kg" } }, link = "تجارتی پونڈ", }, ["Scwt"] = { name1 = "صدوزن کوتاه", name2 = "صدوزن کوتاه", symbol = "Scwt", usename = 1, utype = "mass", scale = 45.359237, default = "lb", }, ["short cwt"] = { name1 = "صدوزن کوتاه", symbol = "short&nbsp;cwt", utype = "mass", scale = 45.359237, default = "lb kg", link = "هاندردویت", }, ["short qtr"] = { name1 = "کوارتر کوتاه", symbol = "short&nbsp;qtr", utype = "mass", scale = 11.33980925, default = "lb kg", link = "آوواردوپوآ", }, ["short ton"] = { symbol = "short ton", usename = 1, utype = "mass", scale = 907.18474, default = "t", }, ["shtn"] = { name1 = "ٹن کوتاه", symbol = "sh&nbsp;tn", utype = "mass", scale = 907.18474, default = "t", }, ["shton"] = { symbol = "ton", usename = 1, utype = "mass", scale = 907.18474, default = "t", }, ["solar mass"] = { name1 = "جرم خورشیدی", name2 = "جرم خورشیدی", symbol = "M<sub>☉</sub>", utype = "mass", scale = 1.98855e30, default = "kg", }, ["ST"] = { symbol = "ٹن کوچک", usename = 1, utype = "mass", scale = 907.18474, default = "t", subdivs = { ["Scwt"] = { 20, default = "t", unit = "--Scwt" } }, }, ["st"] = { name1 = "سنگ", name2 = "سنگ", symbol = "سنگ", utype = "mass", scale = 6.35029318, default = "lb kg", subdivs = { ["lb"] = { 14, default = "kg lb" } }, link = "سنگ (اکائی)", }, ["t"] = { name1 = "ٹن", name1_us = "ٹن میٖٹَری", symbol = "ٹن", utype = "mass", scale = 1000, default = "LT ST", link = "ٹن (اکائی)", }, ["tonne"] = { name1 = "ٹن", name1_us = "ٹن میٖٹَری", symbol = "t", utype = "mass", scale = 1000, default = "shton", }, ["troy pound"] = { symbol = "پونڈ تروا", usename = 1, utype = "mass", scale = 0.3732417216, default = "lb kg", link = "وزن تروا", }, ["usgalh2o"] = { name1 = "گالون امریکی آب", name1_us = "گالون امریکی آب", name2 = "گالون امریکی آب", name2_us = "گالون امریکی آب", symbol = "US&nbsp;gal H<sub>2</sub>O", utype = "mass", scale = 3.7776215836051126, default = "lb kg", link = "دستگاه امریکی", }, ["viss"] = { name2 = "ویز", symbol = "viss", utype = "mass", scale = 1.632932532, default = "kg", link = "Burmese units of measurement#mass", }, ["billion tonne"] = { target = "e9t", }, ["kilogram"] = { shouldbe = "Use %{kg%} (not %{kilogram%})", }, ["kilotonne"] = { target = "kt", }, ["lbs"] = { target = "lb", }, ["lbt"] = { target = "troy pound", }, ["lcwt"] = { target = "Lcwt", }, ["mcg"] = { target = "µg", }, ["million tonne"] = { target = "e6t", }, ["scwt"] = { target = "Scwt", }, ["stone"] = { target = "st", }, ["thousand tonne"] = { target = "e3t", }, ["tonnes"] = { target = "t", }, ["kg/kW"] = { name1 = "کِلوگرٛام فی کِلوواٹ", name2 = "کِلوگرٛام فی کِلوواٹ", symbol = "kg/kW", utype = "mass per unit power", scale = 0.001, default = "lb/hp", link = "واٹ", }, ["lb/hp"] = { name1 = "پونڈ فی اسب بخار", name2 = "پونڈ فی اسب بخار", symbol = "lb/hp", utype = "mass per unit power", scale = 0.00060827738784176115, default = "kg/kW", link = "اسب بخار", }, ["kg/h"] = { per = { "kg", "h" }, utype = "mass per unit time", default = "lb/h", }, ["lb/h"] = { per = { "lb", "h" }, utype = "mass per unit time", default = "kg/h", }, ["g-mol/d"] = { name1 = "گرٛام-مول پر دن", name2 = "گرٛام-مول پر دن", symbol = "g-mol/d", utype = "molar rate", scale = 1.1574074074074073e-5, default = "µmol/s", link = "مول", }, ["g-mol/h"] = { name1 = "گرٛام-مول فی گھنٹہ", name2 = "گرٛام-مول فی گھنٹہ", symbol = "g-mol/h", utype = "molar rate", scale = 0.00027777777777777778, default = "mmol/s", link = "مول", }, ["g-mol/min"] = { name1 = "گرٛام-مول فی منٹ", name2 = "گرٛام-مول فی منٹ", symbol = "g-mol/min", utype = "molar rate", scale = 0.016666666666666666, default = "g-mol/s", link = "مول", }, ["g-mol/s"] = { name1 = "گرٛام-مول فی سؠکَنٛڈ", name2 = "گرٛام-مول فی سؠکَنٛڈ", symbol = "g-mol/s", utype = "molar rate", scale = 1, default = "lb-mol/min", link = "مول", }, ["gmol/d"] = { name1 = "گرٛام-مول پر دن", name2 = "گرٛام-مول پر دن", symbol = "gmol/d", utype = "molar rate", scale = 1.1574074074074073e-5, default = "µmol/s", link = "مول", }, ["gmol/h"] = { name1 = "گرٛام-مول فی گھنٹہ", name2 = "گرٛام-مول فی گھنٹہ", symbol = "gmol/h", utype = "molar rate", scale = 0.00027777777777777778, default = "mmol/s", link = "مول", }, ["gmol/min"] = { name1 = "گرٛام-مول فی منٹ", name2 = "گرٛام-مول فی منٹ", symbol = "gmol/min", utype = "molar rate", scale = 0.016666666666666666, default = "gmol/s", link = "مول", }, ["gmol/s"] = { name1 = "گرٛام-مول فی سؠکَنٛڈ", name2 = "گرٛام-مول فی سؠکَنٛڈ", symbol = "gmol/s", utype = "molar rate", scale = 1, default = "lbmol/min", link = "مول", }, ["kmol/d"] = { name1 = "کِلومول پر دن", name2 = "کِلومول پر دن", symbol = "kmol/d", utype = "molar rate", scale = 0.011574074074074073, default = "mmol/s", link = "مول", }, ["kmol/h"] = { name1 = "کِلومول فی گھنٹہ", name2 = "کِلومول فی گھنٹہ", symbol = "kmol/h", utype = "molar rate", scale = 0.27777777777777779, default = "mol/s", link = "مول", }, ["kmol/min"] = { name1 = "کِلومول فی منٹ", name2 = "کِلومول فی منٹ", symbol = "kmol/min", utype = "molar rate", scale = 16.666666666666668, default = "mol/s", link = "کِلومول", }, ["kmol/s"] = { name1 = "کِلومول فی سؠکَنٛڈ", name2 = "کِلومول فی سؠکَنٛڈ", symbol = "kmol/s", utype = "molar rate", scale = 1000, default = "lb-mol/s", link = "مول", }, ["lb-mol/d"] = { name1 = "پونڈ-مول پر دن", name2 = "پونڈ-مول پر دن", symbol = "lb-mol/d", utype = "molar rate", scale = 0.0052499116898148141, default = "mmol/s", link = "مول", }, ["lb-mol/h"] = { name1 = "پونڈ-مول فی گھنٹہ", name2 = "پونڈ-مول فی گھنٹہ", symbol = "lb-mol/h", utype = "molar rate", scale = 0.12599788055555555, default = "mol/s", link = "مول", }, ["lb-mol/min"] = { name1 = "پونڈ-مول فی منٹ", name2 = "پونڈ-مول فی منٹ", symbol = "lb-mol/min", utype = "molar rate", scale = 7.5598728333333334, default = "mol/s", link = "مول", }, ["lb-mol/s"] = { name1 = "پونڈ-مول فی سؠکَنٛڈ", name2 = "پونڈ-مول فی سؠکَنٛڈ", symbol = "lb-mol/s", utype = "molar rate", scale = 453.59237, default = "kmol/s", link = "مول", }, ["lbmol/d"] = { name1 = "پونڈ-مول پر دن", name2 = "پونڈ-مول پر دن", symbol = "lbmol/d", utype = "molar rate", scale = 0.0052499116898148141, default = "mmol/s", link = "مول", }, ["lbmol/h"] = { name1 = "پونڈ-مول فی گھنٹہ", name2 = "پونڈ-مول فی گھنٹہ", symbol = "lbmol/h", utype = "molar rate", scale = 0.12599788055555555, default = "mol/s", link = "مول", }, ["lbmol/min"] = { name1 = "پونڈ-مول فی منٹ", name2 = "پونڈ-مول فی منٹ", symbol = "lbmol/min", utype = "molar rate", scale = 7.5598728333333334, default = "mol/s", link = "مول", }, ["lbmol/s"] = { name1 = "پونڈ-مول فی سؠکَنٛڈ", name2 = "پونڈ-مول فی سؠکَنٛڈ", symbol = "lbmol/s", utype = "molar rate", scale = 453.59237, default = "kmol/s", link = "مول", }, ["mmol/s"] = { name1 = "ملیمول فی سؠکَنٛڈ", name2 = "ملیمول فی سؠکَنٛڈ", symbol = "mmol/s", utype = "molar rate", scale = 0.001, default = "lb-mol/d", link = "مول", }, ["mol/d"] = { name1 = "مول پر دن", name2 = "مول پر دن", symbol = "mol/d", utype = "molar rate", scale = 1.1574074074074073e-5, default = "µmol/s", link = "مول", }, ["mol/h"] = { name1 = "مول فی گھنٹہ", name2 = "مول فی گھنٹہ", symbol = "mol/h", utype = "molar rate", scale = 0.00027777777777777778, default = "mmol/s", link = "مول", }, ["mol/min"] = { name1 = "مول فی منٹ", name2 = "مول فی منٹ", symbol = "mol/min", utype = "molar rate", scale = 0.016666666666666666, default = "mol/s", link = "مول", }, ["mol/s"] = { name1 = "مول فی سؠکَنٛڈ", name2 = "مول فی سؠکَنٛڈ", symbol = "mol/s", utype = "molar rate", scale = 1, default = "lb-mol/min", link = "مول", }, ["µmol/s"] = { name1 = "میکرومول فی سؠکَنٛڈ", name2 = "میکرومول فی سؠکَنٛڈ", symbol = "µmol/s", utype = "molar rate", scale = 0.000001, default = "lb-mol/d", link = "مول", }, ["umol/s"] = { target = "µmol/s", }, ["μmol/s"] = { target = "µmol/s", }, ["/acre"] = { name1 = "بر ایکڑ", name2 = "بر ایکڑ", symbol = "/acre", usename = 1, utype = "per unit area", scale = 247.10538146716533, default = "/ha", link = "ایکڑ", }, ["/ha"] = { name1 = "بر ہیکٹر", name2 = "بر ہیکٹر", symbol = "/ha", utype = "per unit area", scale = 100, default = "/acre", link = "ہیکٹر", }, ["/sqcm"] = { name1 = "بر سؠنٹی میٖٹَر چَکور", name1_us = "بر سؠنٹی میٖٹَر چَکور", name2 = "بر سؠنٹی میٖٹَر چَکور", name2_us = "بر سؠنٹی میٖٹَر چَکور", symbol = "/cm<sup>2</sup>", utype = "per unit area", scale = 1e10, default = "/sqin", link = "میٖٹَر مُرَبَع", }, ["/sqin"] = { name1 = "بر آنٛچہِ مُرَبَع", name2 = "بر آنٛچہِ مُرَبَع", symbol = "/in<sup>2</sup>", utype = "per unit area", scale = 1550003100.0062001, default = "/sqcm", link = "آنٛچہِ مُرَبَع", }, ["/sqkm"] = { name1 = "بر کِلومیٖٹَر مُرَبَع", name1_us = "بر کِلومیٖٹَر مُرَبَع", name2 = "بر کِلومیٖٹَر مُرَبَع", name2_us = "بر کِلومیٖٹَر مُرَبَع", symbol = "/کِلو میٖٹَر<sup>2</sup>", utype = "per unit area", scale = 1, default = "/sqmi", link = "کِلومیٖٹَر چَکور", }, ["/sqmi"] = { name1 = "بر میٖل مُرَبَع", name2 = "بر میٖل مُرَبَع", symbol = "/مُرَبَع&nbsp;میٖل", utype = "per unit area", scale = 0.38610215854244584, default = "/sqkm", link = "میٖل مُرَبَع", }, ["PD/acre"] = { name1 = "ساکن پر ایکڑ", name2 = "ساکن پر هر ایکڑ", symbol = "/acre", usename = 1, utype = "per unit area", scale = 247.10538146716533, default = "PD/ha", link = "ایکڑ", }, ["PD/ha"] = { name1 = "ساکن پر ہیکٹر", name2 = "ساکن پر هر ہیکٹر", symbol = "/ha", utype = "per unit area", scale = 100, default = "PD/acre", link = "ہیکٹر", }, ["PD/sqkm"] = { name1 = "افراد فی مُرَبَع کِلومیٖٹَر", name1_us = "افراد فی مُرَبَع کِلومیٖٹَر", name2 = "افراد فی مُرَبَع کِلومیٖٹَر", name2_us = "افراد فی مُرَبَع کِلومیٖٹَر", symbol = "/km<sup>2</sup>", utype = "per unit area", scale = 1, default = "PD/sqmi", link = "مُرَبَع کِلومیٖٹَر", }, ["PD/sqmi"] = { name1 = "افراد فی مُرَبَع کِلومیٖٹَر", name2 = "افراد فی مُرَبَع کِلومیٖٹَر", symbol = "/مُرَبَع&nbsp;میٖل", utype = "per unit area", scale = 0.38610215854244584, default = "PD/sqkm", link = "مُرَبَع میٖل", }, ["/cm2"] = { target = "/sqcm", }, ["/in2"] = { target = "/sqin", }, ["/km2"] = { target = "/sqkm", }, ["pd/acre"] = { target = "PD/acre", }, ["pd/ha"] = { target = "PD/ha", }, ["PD/km2"] = { target = "PD/sqkm", }, ["pd/km2"] = { target = "PD/sqkm", }, ["PD/km²"] = { target = "PD/sqkm", }, ["pd/sqkm"] = { target = "PD/sqkm", }, ["pd/sqmi"] = { target = "PD/sqmi", }, ["/l"] = { name1 = "بر لیٖٹَر", name1_us = "بر لیٖٹَر", name2 = "بر لیٖٹَر", name2_us = "بر لیٖٹَر", symbol = "/l", utype = "per unit volume", scale = 1000, default = "/usgal", link = "لیٖٹَر", }, ["/USgal"] = { name1 = "بر گالون", name2 = "بر گالون", symbol = "/gal", utype = "per unit volume", scale = 264.172052, default = "/l", link = "گالون", customary= 2, }, ["/usgal"] = { target = "/USgal", }, ["bhp"] = { name1 = "اسب بخار ترمز", name2 = "اسب بخار ترمز", symbol = "bhp", utype = "power", scale = 745.69987158227022, default = "kW", link = "اسب بخار", }, ["Cal/d"] = { name1 = "کیلوری بزرگ پر دن", name2 = "کیلوری بزرگ پر دن", symbol = "Cal/d", utype = "power", scale = 0.048425925925925928, default = "kJ/d", link = "کیلوری", }, ["Cal/h"] = { name1 = "کیلوری فی گھنٹہ", name2 = "کیلوری فی گھنٹہ", symbol = "Cal/h", utype = "power", scale = 1.1622222222222223, default = "kJ/h", link = "کیلوری", }, ["cal/h"] = { name1 = "کیلوری فی گھنٹہ", name2 = "کیلوری فی گھنٹہ", symbol = "cal/h", utype = "power", scale = 0.0011622222222222223, default = "W", link = "کیلوری", }, ["CV"] = { name1 = "اسب بخار میٖٹَری", name2 = "اسب بخار میٖٹَری", symbol = "CV", utype = "power", scale = 735.49875, default = "kW", }, ["hk"] = { name1 = "اسب بخار میٖٹَری", name2 = "اسب بخار میٖٹَری", symbol = "hk", utype = "power", scale = 735.49875, default = "kW", }, ["hp"] = { name1 = "اسب بخار", name2 = "اسب بخار", symbol = "hp", utype = "power", scale = 745.69987158227022, default = "kW", }, ["hp-electric"] = { name1 = "اسب بخار الکتریک", name2 = "اسب بخار الکتریک", symbol = "hp", utype = "power", scale = 746, default = "kW", }, ["hp-electrical"] = { name1 = "اسب بخار الکتریکی", name2 = "اسب بخار الکتریکی", symbol = "hp", utype = "power", scale = 746, default = "kW", }, ["hp-metric"] = { name1 = "اسب بخار میٖٹَری", name2 = "اسب بخار میٖٹَری", symbol = "hp", utype = "power", scale = 735.49875, default = "kW", }, ["ihp"] = { name1 = "اسب بخار مشخص‌شده", name2 = "اسب بخار مشخص‌شده", symbol = "ihp", utype = "power", scale = 745.69987158227022, default = "kW", link = "اسب بخار", }, ["kcal/h"] = { name1 = "کِلوکیلوری فی گھنٹہ", name2 = "کِلوکیلوری فی گھنٹہ", symbol = "kcal/h", utype = "power", scale = 1.1622222222222223, default = "kW", link = "کیلوری", }, ["kJ/d"] = { name1 = "کِلوجول پر دۄہ", name2 = "کِلوجول پر دۄہ", symbol = "kJ/d", utype = "power", scale = 0.011574074074074073, default = "Cal/d", link = "جول", }, ["kJ/h"] = { name1 = "کِلوجول پر گھنٹہ", name2 = "کِلوجول فی گھنٹہ", symbol = "kJ/h", utype = "power", scale = 0.27777777777777779, default = "W", link = "جول", }, ["PS"] = { name1 = "اسب بخار میٖٹَری", name2 = "اسب بخار میٖٹَری", symbol = "PS", utype = "power", scale = 735.49875, default = "kW", }, ["shp"] = { name1 = "اسب بخار شفت", name2 = "اسب بخار کوتاه", symbol = "shp", utype = "power", scale = 745.69987158227022, default = "kW", link = "اسب بخار", }, ["W"] = { _name1 = "واٹ", _symbol = "W", utype = "power", scale = 1, prefixes = 1, default = "hp", link = "واٹ", }, ["BTU/h"] = { per = { "BTU", "h" }, utype = "power", default = "W", }, ["Btu/h"] = { per = { "Btu", "h" }, utype = "power", default = "W", }, ["BHP"] = { target = "bhp", }, ["btu/h"] = { target = "BTU/h", }, ["HP"] = { target = "hp", }, ["Hp"] = { target = "hp", }, ["hp-mechanical"] = { target = "hp", }, ["IHP"] = { target = "ihp", }, ["SHP"] = { target = "shp", }, ["whp"] = { target = "hp", }, ["hp/LT"] = { name1 = "اسب بخار فی ٹن بزرگ", name2 = "اسب بخار فی ٹن بزرگ", symbol = "hp/LT", utype = "power per unit mass", scale = 0.73392268125000004, default = "kW/t", link = "توان وزنی مخصوص", }, ["hp/ST"] = { name1 = "اسب بخار فی ٹن کوچک", name2 = "اسب بخار فی ٹن کوتاه", symbol = "hp/ST", utype = "power per unit mass", scale = 0.821993403, default = "kW/t", link = "توان وزنی مخصوص", }, ["hp/t"] = { name1 = "اسب بخار فی ٹن", name2 = "اسب بخار فی ٹن", symbol = "hp/t", utype = "power per unit mass", scale = 0.74569987158227022, default = "kW/t", link = "توان وزنی مخصوص", }, ["kW/t"] = { name1 = "کِلوواٹ فی ٹن", name2 = "کِلوواٹ فی ٹن", symbol = "kW/t", utype = "power per unit mass", scale = 1, default = "PS/t", link = "توان وزنی مخصوص", }, ["PS/t"] = { name1 = "اسب بخار میٖٹَری فی ٹن", name2 = "اسب بخار میٖٹَری فی ٹن", symbol = "PS/t", utype = "power per unit mass", scale = 0.73549875, default = "kW/t", link = "توان وزنی مخصوص", }, ["hp/tonne"] = { target = "hp/t", symbol = "hp/tonne", default = "kW/tonne", }, ["kW/tonne"] = { target = "kW/t", symbol = "kW/tonne", }, ["-lb/in2"] = { name1 = "پونڈ فی آنٛچہِ مُرَبَع", name2 = "پونڈ فی آنٛچہِ مُرَبَع", symbol = "lb/in<sup>2</sup>", utype = "pressure", scale = 6894.7572931683608, default = "kPa kgf/cm2", link = "پونڈ فی آنٛچہِ مُرَبَع", }, ["atm"] = { name1 = "اتمسفر استاندارد", symbol = "atm", utype = "pressure", scale = 101325, default = "kPa", link = "اتمسفر (اکائی)", }, ["Ba"] = { name1 = "باری", symbol = "Ba", utype = "pressure", scale = 0.1, default = "Pa", }, ["bar"] = { symbol = "bar", utype = "pressure", scale = 100000, default = "kPa", link = "بار (اکائی)", }, ["dbar"] = { name1 = "ڈیسی‌بار", symbol = "dbar", utype = "pressure", scale = 10000, default = "kPa", link = "بار (اکائی)", }, ["inHg"] = { name1 = "آنٛچہِ جیوه", name2 = "آنٛچہِ جیوه", symbol = "inHg", utype = "pressure", scale = 3386.388640341, default = "kPa", }, ["kBa"] = { name1 = "کِلوباری", symbol = "kBa", utype = "pressure", scale = 100, default = "hPa", link = "Barye", }, ["kg-f/cm2"] = { name1 = "کِلوگرٛام-قوت فی سؠنٹی میٖٹَر مُرَبَع", name1_us = "کِلوگرٛام-قوت فی سؠنٹی میٖٹَر مُرَبَع", name2 = "کِلوگرٛام-قوت فی سؠنٹی میٖٹَر مُرَبَع", name2_us = "کِلوگرٛام-قوت فی سؠنٹی میٖٹَر مُرَبَع", symbol = "kg<sub>f</sub>/cm<sup>2</sup>", utype = "pressure", scale = 98066.5, default = "psi", link = "Kilogram-force", }, ["kg/cm2"] = { name1 = "کِلوگرٛام فی سؠنٹی میٖٹَر مُرَبَع", name1_us = "کِلوگرٛام فی سؠنٹی میٖٹَر مُرَبَع", name2 = "کِلوگرٛام فی سؠنٹی میٖٹَر مُرَبَع", name2_us = "کِلوگرٛام فی سؠنٹی میٖٹَر مُرَبَع", symbol = "kg/cm<sup>2</sup>", utype = "pressure", scale = 98066.5, default = "psi", link = "Kilogram-force", }, ["kgf/cm2"] = { name1 = "کِلوگرٛام-قوت فی سؠنٹی میٖٹَر مُرَبَع", name1_us = "کِلوگرٛام-قوت فی سؠنٹی میٖٹَر مُرَبَع", name2 = "کِلوگرٛام-قوت فی سؠنٹی میٖٹَر مُرَبَع", name2_us = "کِلوگرٛام-قوت فی سؠنٹی میٖٹَر مُرَبَع", symbol = "kgf/cm<sup>2</sup>", utype = "pressure", scale = 98066.5, default = "psi", link = "Kilogram-force", }, ["ksi"] = { name1 = "کِلوپونڈ فی آنٛچہِ مُرَبَع", name2 = "کِلوپونڈ فی آنٛچہِ مُرَبَع", symbol = "ksi", utype = "pressure", scale = 6894757.2931683613, default = "MPa", link = "پونڈ فی آنٛچہِ مُرَبَع", }, ["lbf/in2"] = { name1 = "پونڈ-قوت فی آنٛچہِ مُرَبَع", name2 = "پونڈ-قوت فی آنٛچہِ مُرَبَع", symbol = "پونڈ قوت/آنٛچہِ<sup>2</sup>", utype = "pressure", scale = 6894.7572931683608, default = "kPa kgf/cm2", link = "Pounds-force per square inch", }, ["mb"] = { name1 = "ملیبار", symbol = "mb", utype = "pressure", scale = 100, default = "hPa", link = "بار (اکائی)", }, ["mbar"] = { name1 = "ملیبار", symbol = "mbar", utype = "pressure", scale = 100, default = "hPa", link = "بار (اکائی)", }, ["mmHg"] = { name1 = "ملی میٖٹَر جیوه", name1_us = "ملی میٖٹَر جیوه", name2 = "ملی میٖٹَر جیوه", name2_us = "ملی میٖٹَر جیوه", symbol = "mmHg", utype = "pressure", scale = 133.322387415, default = "kPa", link = "Millimeter of mercury", }, ["Pa"] = { _name1 = "پاسکال", _symbol = "Pa", utype = "pressure", scale = 1, prefixes = 1, default = "psi", link = "پاسکال (اکائی)", }, ["psf"] = { name1 = "پونڈ فی فُٹ مُرَبَع", name2 = "پونڈ فی فُٹ مُرَبَع", symbol = "psf", utype = "pressure", scale = 47.880258980335839, default = "kPa", link = "پونڈ فی آنٛچہِ مُرَبَع", }, ["psi"] = { name1 = "پونڈ فی آنٛچہِ مُرَبَع", name2 = "پونڈ فی آنٛچہِ مُرَبَع", symbol = "psi", utype = "pressure", scale = 6894.7572931683608, default = "kPa", link = "پونڈ فی آنٛچہِ مُرَبَع", }, ["Torr"] = { name1 = "تور", symbol = "Torr", utype = "pressure", scale = 133.32236842105263, default = "kPa", }, ["N/cm2"] = { per = { "N", "cm2" }, utype = "pressure", default = "psi", }, ["N/m2"] = { per = { "N", "m2" }, utype = "pressure", default = "psi", }, ["g/cm2"] = { per = { "g", "cm2" }, utype = "pressure", default = "lb/sqft", multiplier= 9.80665, }, ["g/m2"] = { per = { "g", "m2" }, utype = "pressure", default = "lb/sqft", multiplier= 9.80665, }, ["kg/m2"] = { per = { "kg", "m2" }, utype = "pressure", default = "lb/sqft", multiplier= 9.80665, }, ["lb/1000sqft"] = { per = { "lb", "1000sqft" }, utype = "pressure", default = "g/m2", multiplier= 9.80665, }, ["lb/sqft"] = { per = { "lb", "sqft" }, utype = "pressure", default = "kg/m2", multiplier= 9.80665, }, ["lb/sqyd"] = { per = { "lb", "sqyd" }, utype = "pressure", default = "kg/m2", multiplier= 9.80665, }, ["LT/acre"] = { per = { "LT", "acre" }, utype = "pressure", default = "t/ha", multiplier= 9.80665, }, ["MT/ha"] = { per = { "MT", "ha" }, utype = "pressure", default = "LT ST/acre", multiplier= 9.80665, }, ["oz/sqft"] = { per = { "oz", "sqft" }, utype = "pressure", default = "g/m2", multiplier= 9.80665, }, ["oz/sqyd"] = { per = { "oz", "sqyd" }, utype = "pressure", default = "g/m2", multiplier= 9.80665, }, ["ST/acre"] = { per = { "ST", "acre" }, utype = "pressure", default = "t/ha", multiplier= 9.80665, }, ["t/ha"] = { per = { "t", "ha" }, utype = "pressure", default = "LT ST/acre", multiplier= 9.80665, }, ["kgfpsqcm"] = { target = "kgf/cm2", }, ["kgpsqcm"] = { target = "kg/cm2", }, ["kN/m2"] = { target = "kPa", }, ["lb/in2"] = { target = "lbf/in2", }, ["torr"] = { target = "Torr", }, ["Bq"] = { _name1 = "بکرل", _symbol = "Bq", utype = "radioactivity", scale = 1, prefixes = 1, default = "pCi", link = "بکرل", }, ["Ci"] = { _name1 = "کوری", _symbol = "Ci", utype = "radioactivity", scale = 3.7e10, prefixes = 1, default = "GBq", link = "کوری (اکائی)", }, ["cm/h"] = { name1 = "سؠنٹی میٖٹَر فی گھنٹہ", name1_us = "سؠنٹی میٖٹَر فی گھنٹہ", name2 = "سؠنٹی میٖٹَر فی گھنٹہ", name2_us = "سؠنٹی میٖٹَر فی گھنٹہ", symbol = "cm/h", utype = "speed", scale = 2.7777777777777775e-6, default = "in/h", link = "میٖٹَر فی سؠکَنٛڈ", }, ["cm/s"] = { name1 = "سؠنٹی میٖٹَر فی سؠکَنٛڈ", name1_us = "سؠنٹی میٖٹَر فی سؠکَنٛڈ", name2 = "سؠنٹی میٖٹَر فی سؠکَنٛڈ", name2_us = "سؠنٹی میٖٹَر فی سؠکَنٛڈ", symbol = "سؠنٹی میٖٹَر/سؠکَنٛڈ", utype = "speed", scale = 0.01, default = "in/s", link = "میٖٹَر فی سؠکَنٛڈ", }, ["cm/year"] = { name1 = "سؠنٹی میٖٹَر پر سال", name1_us = "سؠنٹی میٖٹَر پر سال", name2 = "سؠنٹی میٖٹَر پر سال", name2_us = "سؠنٹی میٖٹَر پر سال", symbol = "cm/year", utype = "speed", scale = 3.168873850681143e-10, default = "in/year", link = "Orders of magnitude (speed)", }, ["foot/s"] = { name1 = "فُٹ فی سؠکَنٛڈ", name2 = "فُٹ فی سؠکَنٛڈ", symbol = "فُٹ/سؠکَنٛڈ", utype = "speed", scale = 0.3048, default = "m/s", link = "Feet per second", }, ["ft/min"] = { name1 = "فُٹ فی منٹ", name2 = "فُٹ فی منٹ", symbol = "فُٹ/منٹ", utype = "speed", scale = 0.00508, default = "m/min", link = "Feet per second", }, ["ft/s"] = { name1 = "فُٹ فی سؠکَنٛڈ", name2 = "فُٹ فی سؠکَنٛڈ", symbol = "فُٹ/سؠکَنٛڈ", utype = "speed", scale = 0.3048, default = "m/s", link = "Feet per second", }, ["furlong per fortnight"] = { name2 = "furlongs فی fortnight", symbol = "furlong per fortnight", usename = 1, utype = "speed", scale = 0.00016630952380952381, default = "km/h mph", link = "FFF System", }, ["in/h"] = { name1 = "آنٛچہِ فی گھنٹہ", name2 = "آنٛچہِ فی گھنٹہ", symbol = "in/h", utype = "speed", scale = 7.0555555555555559e-6, default = "cm/h", link = "آنٛچہِ", }, ["in/s"] = { name1 = "آنٛچہِ فی سؠکَنٛڈ", name2 = "آنٛچہِ فی سؠکَنٛڈ", symbol = "in/s", utype = "speed", scale = 0.0254, default = "cm/s", link = "آنٛچہِ", }, ["in/year"] = { name1 = "آنٛچہِ پر سال", name2 = "آنٛچہِ پر سال", symbol = "in/year", utype = "speed", scale = 8.0489395807301024e-10, default = "cm/year", link = "Orders of magnitude (speed)", }, ["isp"] = { name1 = "سؠکَنٛڈ", symbol = "سؠکَنٛڈ", utype = "speed", scale = 9.80665, default = "km/s", link = "Specific impulse", }, ["km/h"] = { name1 = "کِلومیٖٹَر فی گھنٹہ", name1_us = "کِلومیٖٹَر فی گھنٹہ", name2 = "کِلومیٖٹَر فی گھنٹہ", name2_us = "کِلومیٖٹَر فی گھنٹہ", symbol = "کِلومیٖٹَر/گھنٹہ", utype = "speed", scale = 0.27777777777777779, default = "mph", link = "کِلومیٖٹَر فی گھنٹہ", }, ["km/s"] = { name1 = "کِلومیٖٹَر فی سؠکَنٛڈ", name1_us = "کِلومیٖٹَر فی سؠکَنٛڈ", name2 = "کِلومیٖٹَر فی سؠکَنٛڈ", name2_us = "کِلومیٖٹَر فی سؠکَنٛڈ", symbol = "کِلو میٖٹَر/سؠکَنٛڈ", utype = "speed", scale = 1000, default = "mi/s", link = "میٖٹَر فی سؠکَنٛڈ", }, ["kn"] = { name1 = "ناٹ", symbol = "ناٹ", utype = "speed", scale = 0.51444444444444448, default = "km/h mph", link = "ناٹ (اکائی)", }, ["kNs/kg"] = { name2 = "kN-s/kg", symbol = "kN-s/kg", utype = "speed", scale = 1000, default = "isp", link = "Specific impulse", }, ["m/min"] = { name1 = "میٖٹَر فی منٹ", name1_us = "میٖٹَر فی منٹ", name2 = "میٖٹَر فی منٹ", name2_us = "میٖٹَر فی منٹ", symbol = "میٖٹَر/منٹ", utype = "speed", scale = 0.016666666666666666, default = "ft/min", link = "میٖٹَر فی سؠکَنٛڈ", }, ["m/s"] = { name1 = "میٖٹَر فی سؠکَنٛڈ", name1_us = "میٖٹَر فی سؠکَنٛڈ", name2 = "میٖٹَر فی سؠکَنٛڈ", name2_us = "m/s", symbol = "میٖٹَر/سؠکَنٛڈ", utype = "speed", scale = 1, default = "ft/s", }, ["Mach"] = { name2 = "ماخ", symbol = "Mach", utype = "speed", builtin = "mach", scale = 0, iscomplex= true, default = "mph km/h", link = "عدد ماخ", }, ["mi/s"] = { name1 = "میٖل فی سؠکَنٛڈ", name2 = "میٖل فی سؠکَنٛڈ", symbol = "میٖل/سؠکَنٛڈ", utype = "speed", scale = 1609.344, default = "km/s", link = "میٖل", }, ["mm/h"] = { name1 = "ملی میٖٹَر فی گھنٹہ", name1_us = "ملی میٖٹَر فی گھنٹہ", name2 = "ملی میٖٹَر فی گھنٹہ", name2_us = "ملی میٖٹَر فی گھنٹہ", symbol = "ملی میٖٹَر/گھنٹہ", utype = "speed", scale = 2.7777777777777781e-7, default = "in/h", link = "میٖٹَر فی سؠکَنٛڈ", }, ["mph"] = { name1 = "میٖل فی گھنٹہ", name2 = "میٖل فی گھنٹہ", symbol = "میٖل فی گھنٹہ", utype = "speed", scale = 0.44704, default = "km/h", link = "Miles per hour", }, ["Ns/kg"] = { name2 = "N-s/kg", symbol = "N-s/kg", utype = "speed", scale = 1, default = "isp", link = "Specific impulse", }, ["si tsfc"] = { name2 = "g/(kN·s)", symbol = "g/(kN·s)", utype = "speed", scale = 9.9999628621379242e-7, invert = -1, iscomplex= true, default = "tsfc", link = "Thrust specific fuel consumption", }, ["tsfc"] = { name2 = "پونڈ/(پونڈ طاقت·گھنٹہ)", symbol = "پونڈ/(پونڈ طاقت·گھنٹہ)", utype = "speed", scale = 2.832545036049801e-5, invert = -1, iscomplex= true, default = "si tsfc", link = "Thrust specific fuel consumption", }, ["cm/y"] = { target = "cm/year", }, ["cm/yr"] = { target = "cm/year", }, ["in/y"] = { target = "in/year", }, ["in/yr"] = { target = "in/year", }, ["knot"] = { target = "kn", }, ["knots"] = { target = "kn", }, ["kph"] = { target = "km/h", }, ["mi/h"] = { target = "mph", }, ["mm/s"] = { per = { "mm", "s" }, utype = "speed", default = "in/s", link = "میٖٹَر فی سؠکَنٛڈ", }, ["C"] = { name1 = "درجه سلسیوس", name2 = "درجه سلسیوس", symbol = "°C", usesymbol= 1, utype = "temperature", scale = 1, offset = -273.15, iscomplex= true, istemperature= true, default = "F", link = "سلسیوس", }, ["F"] = { name1 = "درجه فارنهایت", name2 = "درجه فارنهایت", symbol = "°F", usesymbol= 1, utype = "temperature", scale = 0.55555555555555558, offset = 32-273.15*(9/5), iscomplex= true, istemperature= true, default = "C", link = "مقیاس فارنهایت", }, ["K"] = { name1 = "کِلوین", symbol = "ک", usesymbol= 1, utype = "temperature", scale = 1, offset = 0, iscomplex= true, istemperature= true, default = "C F", }, ["keVT"] = { name1 = "کِلوالکترون‌ولت", symbol = "keV", utype = "temperature", scale = 11.604505e6, offset = 0, iscomplex= true, default = "MK", link = "الکترون‌ولت", }, ["MK"] = { name1 = "میگاکِلوین", symbol = "MK", utype = "temperature", scale = 1e6, offset = 0, iscomplex= true, default = "keVT", link = "کِلوین", }, ["R"] = { name1 = "درجه رانکین", name2 = "درجه رانکین", symbol = "°R", usesymbol= 1, utype = "temperature", scale = 0.55555555555555558, offset = 0, iscomplex= true, istemperature= true, default = "K F C", link = "رانکین", }, ["Celsius"] = { target = "C", }, ["°C"] = { target = "C", }, ["°F"] = { target = "F", }, ["°R"] = { target = "R", }, ["C-change"] = { name1 = "تغییر درجه سلسیوس", name2 = "تغییر درجه سلسیوس", symbol = "°C", usesymbol= 1, utype = "temperature change", scale = 1, default = "F-change", link = "سلسیوس", }, ["F-change"] = { name1 = "تغییر درجه فارنهایت", name2 = "تغییر درجه فارنهایت", symbol = "°F", usesymbol= 1, utype = "temperature change", scale = 0.55555555555555558, default = "C-change", link = "مقیاس فارنهایت", }, ["K-change"] = { name1 = "تغییر کِلوین", name2 = "تغییر کِلوین", symbol = "ک", usesymbol= 1, utype = "temperature change", scale = 1, default = "F-change", link = "کِلوین", }, ["°C-change"] = { target = "C-change", }, ["°F-change"] = { target = "F-change", }, ["century"] = { name1 = "صدی", name2 = "صدی", symbol = "ha", utype = "time", scale = 3155760000, default = "Gs", }, ["d"] = { name1 = "یوم", symbol = "d", utype = "time", scale = 86400, default = "ks", }, ["decade"] = { name1 = "دہائی", symbol = "daa", utype = "time", scale = 315576000, default = "Ms", }, ["dog year"] = { name1 = "سال سگی", symbol = "سال سگ", utype = "time", scale = 220903200, default = "years", }, ["fortnight"] = { symbol = "fortnight", usename = 1, utype = "time", scale = 1209600, default = "week", }, ["h"] = { name1 = "گھنٹہ", symbol = "گھنٹہ", utype = "time", scale = 3600, default = "ks", }, ["long billion year"] = { name1 = "میٖلیارڈ سال", name2 = "میٖلیارڈ سال", symbol = "Ta", utype = "time", scale = 31557600000000000000, default = "Es", link = "سال", }, ["millennium"] = { name1 = "ہزاریہ", name2 = "ہزاریہ", symbol = "ka", utype = "time", scale = 31557600000, default = "Gs", }, ["milliard year"] = { name1 = "میٖلیارڈ سال", name2 = "میٖلیارڈ سال", symbol = "Ga", utype = "time", scale = 31557600000000000, default = "Ps", link = "سال", }, ["million year"] = { name1 = "مِلیَن سال", name2 = "مِلیَن سال", symbol = "Ma", utype = "time", scale = 31557600000000, default = "Ts", link = "سال", }, ["min"] = { name1 = "منٹ", symbol = "منٹ", utype = "time", scale = 60, default = "s", }, ["month"] = { symbol = "مہینہ", usename = 1, utype = "time", scale = 2629800, default = "Ms", }, ["months"] = { name1 = "مہینہ", symbol = "مہینہ", utype = "time", scale = 2629800, default = "year", }, ["s"] = { _name1 = "سؠکَنٛڈ", _symbol = "سؠکَنٛڈ", utype = "time", scale = 1, prefixes = 1, default = "min", link = "سؠکَنٛڈ" , }, ["short billion year"] = { name1 = "میٖلیارڈ سال", name2 = "میٖلیارڈ سال", symbol = "Ga", utype = "time", scale = 31557600000000000, default = "Ps", link = "سال", }, ["short trillion year"] = { name1 = "تریلیون سال", name2 = "تریلیون سال", symbol = "Ta", utype = "time", scale = 31557600000000000000, default = "Es", link = "سال", }, ["thousand million year"] = { name1 = "ہزار مِلیَن سال", name2 = "ہزار مِلیَن سال", symbol = "Ga", utype = "time", scale = 31557600000000000, default = "Ps", link = "سال", }, ["wk"] = { symbol = "ہفتہ", usename = 1, utype = "time", scale = 604800, default = "Ms", }, ["year"] = { name1 = "سال", symbol = "a", utype = "time", scale = 31557600, default = "Ms", link = "سال", }, ["years"] = { name1 = "سال", symbol = "سال", utype = "time", scale = 31557600, default = "Ms", link = "سال", }, ["byr"] = { target = "short billion year", }, ["day"] = { target = "d", }, ["days"] = { target = "d", }, ["dog yr"] = { target = "dog year", }, ["Gyr"] = { target = "thousand million year", }, ["hour"] = { target = "h", }, ["hours"] = { target = "h", }, ["kMyr"] = { target = "thousand million year", }, ["kmyr"] = { target = "thousand million year", }, ["kyr"] = { target = "millennium", }, ["long byr"] = { target = "long billion year", }, ["minute"] = { target = "min", }, ["minutes"] = { target = "min", }, ["mth"] = { target = "month", }, ["Myr"] = { target = "million year", }, ["myr"] = { target = "million year", }, ["second"] = { target = "s", }, ["seconds"] = { target = "s", }, ["tmyr"] = { target = "thousand million year", }, ["tryr"] = { target = "short trillion year", }, ["tyr"] = { target = "millennium", }, ["week"] = { target = "wk", }, ["weeks"] = { target = "wk", }, ["yr"] = { target = "year", }, ["kg.m"] = { name1 = "کِلوگرٛام میٖٹَر", name1_us = "کِلوگرٛام میٖٹَر", symbol = "کِلوگرٛام·میٖٹَر", utype = "torque", scale = 9.80665, default = "Nm lbft", }, ["kgf.m"] = { name1 = "کِلوگرٛام قوت-میٖٹَر", name1_us = "کِلوگرٛام قوت-میٖٹَر", symbol = "kgf·m", utype = "torque", scale = 9.80665, default = "Nm lbfft", link = "کِلوگرٛام میٖٹَر", }, ["kgm"] = { name1 = "کِلوگرٛام میٖٹَر", name1_us = "کِلوگرٛام میٖٹَر", symbol = "kg·m", utype = "torque", scale = 9.80665, default = "Nm lbfft", }, ["lb-fft"] = { name1 = "پونڈ قوت-فُٹ", name2 = "پونڈ قوت-فُٹ", symbol = "فُٹ·پونڈ<sub>فیرو</sub>", utype = "torque", scale = 1.3558179483314004, default = "Nm", link = "Pound-foot (torque)", }, ["lb.ft"] = { name1 = "پونڈ قوت-فُٹ", name2 = "پونڈ قوت-فُٹ", symbol = "پونڈ·فُٹ", utype = "torque", scale = 1.3558179483314004, default = "Nm", link = "Pound-foot (torque)", }, ["lb.in"] = { name1 = "پونڈ قوت-آنٛچہِ", symbol = "پونڈ·انج", utype = "torque", scale = 0.1129848290276167, default = "mN.m", link = "Pound-foot (torque)", }, ["lbfft"] = { name1 = "پونڈ قوت-فُٹ", name2 = "پونڈ قوت-فُٹ", symbol = "پونڈ·فُٹ", utype = "torque", scale = 1.3558179483314004, default = "Nm", link = "Pound-foot (torque)", }, ["lbft"] = { name1 = "پونڈ-فُٹ", name2 = "پونڈ-فُٹ", symbol = "پونڈ·فُٹ", utype = "torque", scale = 1.3558, default = "Nm", link = "Pound-foot (torque)", }, ["m.kg-f"] = { name1 = "میٖٹَر کِلوگرٛام-قوت", name1_us = "میٖٹَر کِلوگرٛام-قوت", name2 = "میٖٹَر کِلوگرٛام-قوت", name2_us = "میٖٹَر کِلوگرٛام-قوت", symbol = "میٖٹَر·کِلو گرٛام<sub>فیرو</sub>", utype = "torque", scale = 9.80665, default = "Nm lbfft", link = "کِلوگرٛام میٖٹَر", }, ["m.kgf"] = { name1 = "میٖٹَر کِلوگرٛام-قوت", name1_us = "میٖٹَر کِلوگرٛام-قوت", name2 = "میٖٹَر کِلوگرٛام-قوت", name2_us = "میٖٹَر کِلوگرٛام-قوت", symbol = "m·kgf", utype = "torque", scale = 9.80665, default = "Nm lbfft", link = "کِلوگرٛام میٖٹَر", }, ["mN.m"] = { name1 = "ملینیوٹن میٖٹَر", name1_us = "ملینیوٹن میٖٹَر", symbol = "mN·m", utype = "torque", scale = 0.001, default = "lb.in", link = "نیوتون-میٖٹَر", }, ["Nm"] = { name1 = "نیوٹن میٖٹَر", name1_us = "نیوٹن میٖٹَر", symbol = "N·m", utype = "torque", alttype = "energy", scale = 1, default = "lbfft", }, ["kN/m"] = { per = { "kN", "-m-stiff" }, utype = "torque", default = "lbf/in", }, ["lbf/in"] = { per = { "lbf", "-in-stiff" }, utype = "torque", default = "kN/m", }, ["lb-f.ft"] = { target = "lb-fft", }, ["lb-f·ft"] = { target = "lb-fft", }, ["lbf.ft"] = { target = "lbfft", }, ["lbf·ft"] = { target = "lbfft", }, ["lb·ft"] = { target = "lb.ft", }, ["mkg-f"] = { target = "m.kg-f", }, ["mkgf"] = { target = "m.kgf", }, ["N.m"] = { target = "Nm", }, ["N·m"] = { target = "Nm", }, ["-12USoz(mL)serve"] = { name1_us = "12&nbsp;U.S.&nbsp;fl&nbsp;oz (355&nbsp;mL) serving", symbol = "12&nbsp;US&nbsp;fl&nbsp;oz (355&nbsp;mL) serving", sym_us = "12&nbsp;U.S.&nbsp;fl&nbsp;oz (355&nbsp;mL) serving", utype = "volume", scale = 0.00035488235475000004, default = "mL", link = "Beverage can#Capacity", }, ["-12USoz(ml)serve"] = { name1_us = "12&nbsp;U.S.&nbsp;fl&nbsp;oz (355&nbsp;ml) serving", symbol = "12&nbsp;US&nbsp;fl&nbsp;oz (355&nbsp;ml) serving", sym_us = "12&nbsp;U.S.&nbsp;fl&nbsp;oz (355&nbsp;ml) serving", utype = "volume", scale = 0.00035488235475000004, default = "ml", link = "Beverage can#Capacity", }, ["-12USozserve"] = { name1_us = "12&nbsp;U.S.&nbsp;fl&nbsp;oz serving", symbol = "12&nbsp;US&nbsp;fl&nbsp;oz serving", sym_us = "12&nbsp;U.S.&nbsp;fl&nbsp;oz serving", utype = "volume", scale = 0.00035488235475000004, default = "mL", link = "Beverage can#Capacity", }, ["acre foot"] = { name1 = "ایکڑ فُٹ", name2 = "ایکڑ فُٹ", symbol = "acre·ft", utype = "volume", scale = 1233.48183754752, default = "m3", }, ["acre ft"] = { name1 = "ایکڑ فُٹ", name2 = "ایکڑ فُٹ", symbol = "acre·ft", utype = "volume", scale = 1233.48183754752, default = "m3", }, ["bdft"] = { name1 = "board فُٹ", name2 = "فُٹ بورد", symbol = "bd&nbsp;ft", utype = "volume", scale = 0.0023597372167, default = "m3", }, ["board feet"] = { name2 = "فُٹ بورد", symbol = "board foot", usename = 1, utype = "volume", scale = 0.0023597372167, default = "m3", }, ["board foot"] = { name2 = "فُٹ بورد", symbol = "board foot", usename = 1, utype = "volume", scale = 0.0023597372167, default = "m3", }, ["cc"] = { name1 = "سؠنٹی مکعب میٖٹَر", name1_us = "سؠنٹی مکعب میٖٹَر", symbol = "cc", utype = "volume", scale = 0.000001, default = "cuin", }, ["CID"] = { name1 = "آنٛچہِ مکعب", name2 = "آنٛچہِ مکعب", symbol = "cu&nbsp;in", utype = "volume", scale = 0.000016387064, default = "cc", link = "آنٛچہِ مکعب", }, ["cord"] = { symbol = "cord", utype = "volume", scale = 3.624556363776, default = "m3", link = "Cord (volume)", }, ["cufoot"] = { name1 = "فُٹ مکعب", name2 = "فُٹ مکعب", symbol = "cu&nbsp;ft", utype = "volume", scale = 0.028316846592, default = "m3", }, ["cuft"] = { name1 = "فُٹ مکعب", name2 = "فُٹ مکعب", symbol = "cu&nbsp;ft", utype = "volume", scale = 0.028316846592, default = "m3", }, ["cuin"] = { name1 = "آنٛچہِ مکعب", name2 = "آنٛچہِ مکعب", symbol = "cu&nbsp;in", utype = "volume", scale = 0.000016387064, default = "cm3", }, ["cumi"] = { name1 = "میٖل مکعب", symbol = "cu&nbsp;mi", utype = "volume", scale = 4168181825.440579584, default = "km3", }, ["cuyd"] = { name1 = "یارڈ مکعب", symbol = "cu&nbsp;yd", utype = "volume", scale = 0.764554857984, default = "m3", }, ["firkin"] = { symbol = "firkin", usename = 1, utype = "volume", scale = 0.04091481, default = "l impgal USgal", }, ["foot3"] = { name1 = "فُٹ مکعب", name2 = "فُٹ مکعب", symbol = "cu&nbsp;ft", utype = "volume", scale = 0.028316846592, default = "m3", }, ["Goilbbl"] = { name1 = "میٖلیارڈ بشکه", name2 = "میٖلیارڈ بشکه", symbol = "Gbbl", utype = "volume", scale = 158987294.928, default = "v * 1.58987294928 < 10 ! e6 ! e9 ! m3", link = "بشکه (اکائی)", }, ["gr water"] = { name1 = "ناٹ آب", name2 = "ناٹ آبی", symbol = "gr H<sub>2</sub>O", utype = "volume", scale = 0.00000006479891, default = "cm3", link = "Grain (unit)", }, ["grt"] = { name1 = "ٹن ثبت‌شده بزرگ", symbol = "grt", utype = "volume", scale = 2.8316846592, default = "m3", link = "Gross register tonnage", }, ["impbbl"] = { name1 = "بشکه برطانوی", symbol = "imp&nbsp;bbl", utype = "volume", scale = 0.16365924, default = "l impgal USgal", link = "بشکه (اکائی)", }, ["impbsh"] = { name1 = "بوشل برطانوی", symbol = "imp&nbsp;bsh", utype = "volume", scale = 0.03636872, default = "l impgal USdrygal", }, ["impbu"] = { name1 = "بوشل برطانوی", symbol = "imp&nbsp;bu", utype = "volume", scale = 0.03636872, default = "m3", }, ["impgal"] = { name1 = "گالون برطانوی", symbol = "imp&nbsp;gal", utype = "volume", scale = 0.00454609, default = "l USgal", }, ["impgi"] = { name1 = "جیل", symbol = "gi", utype = "volume", scale = 0.0001420653125, default = "ml USoz", link = "جیل (اکائی)", }, ["impkenning"] = { name1 = "کنینگ برطانوی", symbol = "kenning", utype = "volume", scale = 0.01818436, default = "l USdrygal", link = "کنینگ (اکائی)", }, ["impoz"] = { name1 = "اونس مائع برطانوی", symbol = "imp&nbsp;fl&nbsp;oz", utype = "volume", scale = 0.0000284130625, default = "ml USoz", }, ["imppk"] = { name1 = "پک برطانوی", symbol = "pk", utype = "volume", scale = 0.00909218, default = "l USdrygal", link = "Peck", }, ["imppt"] = { name1 = "پینت برطانوی", symbol = "imp&nbsp;pt", utype = "volume", scale = 0.00056826125, default = "l", }, ["impqt"] = { name1 = "کوآرت برطانوی", symbol = "imp&nbsp;qt", utype = "volume", scale = 0.0011365225, default = "ml USoz", customary= 3, }, ["kilderkin"] = { symbol = "kilderkin", usename = 1, utype = "volume", scale = 0.08182962, default = "l impgal USgal", }, ["koilbbl"] = { name1 = "ہزار بشکه", name2 = "ہزار بشکه", symbol = "kbbl", utype = "volume", scale = 158.987294928, default = "v * 1.58987294928 < 10 ! ! e3 ! m3", link = "بشکه (اکائی)", }, ["L"] = { _name1 = "لیٖٹَر", _name1_us= "لیٖٹَر", _symbol = "L", utype = "volume", scale = 0.001, prefixes = 1, default = "impgal USgal", link = "لیٖٹَر", }, ["l"] = { _name1 = "لیٖٹَر", _name1_us= "لیٖٹَر", _symbol = "l", utype = "volume", scale = 0.001, prefixes = 1, default = "impgal USgal", link = "لیٖٹَر", }, ["m3"] = { _name1 = "مکعب میٖٹَر", _name1_us= "مکعب میٖٹَر", _symbol = "میٖٹَر<sup>3</sup>", utype = "volume", scale = 1, prefixes = 3, default = "cuft", link = "مکعب میٖٹَر", }, ["Mbbl"] = { name1 = "ہزار بشکه", name2 = "ہزار بشکه", symbol = "Mbbl", utype = "volume", scale = 158.987294928, default = "v * 1.58987294928 < 10 ! e3 ! ! m3", link = "بشکه (اکائی)", }, ["mm3"] = { name1 = "ملیمکعب میٖٹَر", name1_us = "ملیمکعب میٖٹَر", symbol = "mm<sup>3</sup>", utype = "volume", scale = 0.000000001, default = "cuin", }, ["MMoilbbl"] = { name1 = "مِلیَن بشکه", name2 = "مِلیَن بشکه", symbol = "MMbbl", utype = "volume", scale = 158987.294928, default = "v * 1.58987294928 < 10 ! e3 ! e6 ! m3", link = "بشکه (اکائی)", }, ["Moilbbl"] = { name1 = "مِلیَن بشکه", name2 = "مِلیَن بشکه", symbol = "Mbbl", utype = "volume", scale = 158987.294928, default = "v * 1.58987294928 < 10 ! e3 ! e6 ! m3", link = "بشکه (اکائی)", }, ["MTON"] = { name1 = "اندازهٔ ٹن", symbol = "MTON", utype = "volume", scale = 1.13267386368, default = "m3", }, ["MUSgal"] = { name1 = "مِلیَن گالون امریکی", name1_us = "مِلیَن گالون امریکی", name2 = "مِلیَن گالون امریکی", name2_us = "مِلیَن گالون امریکی", symbol = "million US&nbsp;gal", sym_us = "million U.S.&nbsp;gal", utype = "volume", scale = 3785.411784, default = "Ml", link = "گالون", }, ["oilbbl"] = { name1 = "بشکه", symbol = "bbl", utype = "volume", scale = 0.158987294928, default = "m3", link = "بشکه (اکائی)", }, ["stere"] = { symbol = "stère", usename = 1, utype = "volume", scale = 1, default = "cuft", }, ["Toilbbl"] = { name1 = "تریلیون بشکه", name2 = "تریلیون بشکه", symbol = "Tbbl", utype = "volume", scale = 158987294928, default = "v * 1.58987294928 < 10 ! e9 ! e12 ! m3", link = "بشکه (اکائی)", }, ["USbbl"] = { name1 = "بشکه امریکی", name1_us = "بشکه امریکی", symbol = "US&nbsp;bbl", sym_us = "U.S.&nbsp;bbl", utype = "volume", scale = 0.119240471196, default = "l USgal impgal", link = "بشکه (اکائی)", }, ["USbeerbbl"] = { name1 = "بشکه شراب امریکی", name1_us = "بشکه شراب امریکی", symbol = "US&nbsp;bbl", sym_us = "U.S.&nbsp;bbl", utype = "volume", scale = 0.117347765304, default = "l USgal impgal", link = "بشکه (اکائی)", }, ["USbsh"] = { name1 = "بوشل امریکی", name1_us = "بوشل امریکی امریکی", symbol = "US&nbsp;bsh", sym_us = "U.S.&nbsp;bsh", utype = "volume", scale = 0.03523907016688, default = "l USdrygal impgal", link = "بوشل", }, ["USbu"] = { name1 = "بوشل امریکی", name1_us = "بوشل امریکی امریکی", symbol = "US&nbsp;bu", sym_us = "U.S.&nbsp;bu", utype = "volume", scale = 0.03523907016688, default = "l USdrygal impgal", link = "بوشل", }, ["USdrybbl"] = { name1 = "بشکه خشک امریکی", name1_us = "بشکه خشک امریکی", symbol = "US&nbsp;dry&nbsp;bbl", sym_us = "U.S.&nbsp;dry&nbsp;bbl", utype = "volume", scale = 0.11562819898508, default = "m3", link = "بشکه (اکائی)", }, ["USdrygal"] = { name1 = "گالون خشک امریکی", name1_us = "گالون خشک امریکی", symbol = "US&nbsp;dry&nbsp;gal", sym_us = "U.S.&nbsp;dry&nbsp;gal", utype = "volume", scale = 0.00440488377086, default = "l", link = "گالون", }, ["USdrypt"] = { name1 = "پینت خشک امریکی", name1_us = "پینت خشک امریکی", symbol = "US&nbsp;dry&nbsp;pt", sym_us = "U.S.&nbsp;dry&nbsp;pt", utype = "volume", scale = 0.0005506104713575, default = "ml", link = "Pint", }, ["USdryqt"] = { name1 = "کوارت خشک امریکی", name1_us = "کوارت امریکی", symbol = "US&nbsp;dry&nbsp;qt", sym_us = "U.S.&nbsp;dry&nbsp;qt", utype = "volume", scale = 0.001101220942715, default = "ml", link = "کوارت", }, ["USflgal"] = { name1 = "گالون امریکی", name1_us = "گالون امریکی", symbol = "US fl gal", sym_us = "U.S.&nbsp;fl&nbsp;gal", utype = "volume", scale = 0.003785411784, default = "l impgal", link = "گالون", }, ["USgal"] = { name1 = "گالون امریکی", name1_us = "گالون امریکی", symbol = "US&nbsp;gal", sym_us = "U.S.&nbsp;gal", utype = "volume", scale = 0.003785411784, default = "l impgal", }, ["USgi"] = { name1 = "جیل", symbol = "gi", utype = "volume", scale = 0.0001182941183, default = "ml impoz", link = "جیل (اکائی)", }, ["USkenning"] = { name1 = "کنینگ امریکی", name1_us = "کنینگ امریکی", symbol = "US&nbsp;kenning", sym_us = "U.S.&nbsp;kenning", utype = "volume", scale = 0.01761953508344, default = "l impgal", link = "کنینگ (اکائی)", }, ["USmin"] = { name1 = "مینیم امریکی", name1_us = "مینیم امریکی", symbol = "US&nbsp;min", sym_us = "U.S.&nbsp;min", utype = "volume", scale = 0.000000061611519921875, default = "ml", link = "مینیم (اکائی)", }, ["USoz"] = { name1 = "اونس مائع امریکی", name1_us = "اونس مائع امریکی", symbol = "US&nbsp;fl&nbsp;oz", sym_us = "U.S.&nbsp;fl&nbsp;oz", utype = "volume", scale = 0.0000295735295625, default = "ml", }, ["USpk"] = { name1 = "پک امریکی", name1_us = "پک امریکی", symbol = "US&nbsp;pk", sym_us = "U.S.&nbsp;pk", utype = "volume", scale = 0.00880976754172, default = "l impgal", link = "Peck", }, ["USpt"] = { name1 = "پینت امریکی", name1_us = "پینت امریکی", symbol = "US&nbsp;pt", sym_us = "U.S.&nbsp;pt", utype = "volume", scale = 0.000473176473, default = "l imppt", link = "Pint", }, ["USqt"] = { name1 = "کوارت امریکی", name1_us = "کوارت امریکی", symbol = "US&nbsp;qt", sym_us = "U.S.&nbsp;qt", utype = "volume", scale = 0.000946352946, default = "ml", link = "کوارت", customary= 1, }, ["USquart"] = { name1 = "کوارت امریکی", name1_us = "کوارت امریکی", symbol = "US&nbsp;qt", sym_us = "U.S.&nbsp;qt", utype = "volume", scale = 0.000946352946, default = "ml impoz", link = "کوارت", }, ["winecase"] = { symbol = "case", usename = 1, utype = "volume", scale = 0.009, default = "l", link = "Case (goods)", }, ["*U.S.drygal"] = { target = "USdrygal", sp_us = true, customary= 2, }, ["*U.S.gal"] = { target = "USgal", sp_us = true, default = "L impgal", customary= 2, }, ["+USdrygal"] = { target = "USdrygal", customary= 1, }, ["+usfloz"] = { target = "USoz", link = "Fluid ounce", customary= 1, }, ["+USgal"] = { target = "USgal", customary= 1, }, ["+USoz"] = { target = "USoz", customary= 1, }, ["@impgal"] = { target = "impgal", link = "گالون", customary= 3, }, ["acre feet"] = { target = "acre ft", }, ["acre-feet"] = { target = "acre ft", }, ["acre-ft"] = { target = "acre ft", }, ["acre.foot"] = { target = "acre foot", }, ["acre.ft"] = { target = "acre ft", }, ["acre·foot"] = { target = "acre foot", }, ["acre·ft"] = { target = "acre ft", }, ["bushels"] = { target = "USbsh", }, ["cid"] = { target = "CID", }, ["drybbl"] = { target = "USdrybbl", }, ["drygal"] = { target = "+USdrygal", }, ["drypt"] = { target = "USdrypt", }, ["dryqt"] = { target = "USdryqt", }, ["ft3"] = { target = "cuft", }, ["gal"] = { target = "USgal", }, ["gallon"] = { shouldbe = "Use %{USgal%} for US gallons or %{impgal%} for imperial gallons (not %{gallon%})", }, ["gallons"] = { shouldbe = "Use %{USgal%} for US gallons or %{impgal%} for imperial gallons (not %{gallons%})", }, ["Gcuft"] = { target = "e9cuft", }, ["impfloz"] = { target = "impoz", }, ["Impgal"] = { target = "impgal", }, ["in3"] = { target = "cuin", }, ["kcuft"] = { target = "e3cuft", }, ["kcum"] = { target = "e3m3", }, ["km³"] = { target = "km3", }, ["liter"] = { target = "L", sp_us = true, }, ["liters"] = { target = "L", sp_us = true, }, ["litre"] = { target = "L", }, ["litres"] = { target = "L", }, ["Mcuft"] = { target = "e6cuft", }, ["Mcum"] = { target = "e6m3", }, ["Mft3"] = { target = "e6cuft", }, ["mi3"] = { target = "cumi", }, ["m³"] = { target = "m3", }, ["Pcuft"] = { target = "e15cuft", }, ["pt"] = { shouldbe = "Use %{USpt%} for US pints or %{imppt%} for imperial pints (not %{pt%})", }, ["qt"] = { shouldbe = "Use %{USqt%} for US quarts or %{impqt%} for imperial quarts (not %{qt%})", }, ["Tcuft"] = { target = "e12cuft", }, ["Tft3"] = { target = "e12cuft", }, ["U.S.bbl"] = { target = "USbbl", sp_us = true, default = "l U.S.gal impgal", }, ["U.S.beerbbl"] = { target = "USbeerbbl", sp_us = true, default = "l U.S.gal impgal", }, ["U.S.bsh"] = { target = "USbsh", sp_us = true, default = "l U.S.drygal impgal", }, ["U.S.bu"] = { target = "USbu", sp_us = true, default = "l U.S.drygal impgal", }, ["U.S.drybbl"] = { target = "USdrybbl", sp_us = true, }, ["U.S.drygal"] = { target = "USdrygal", sp_us = true, }, ["U.S.drypt"] = { target = "USdrypt", sp_us = true, }, ["U.S.dryqt"] = { target = "USdryqt", sp_us = true, }, ["U.S.flgal"] = { target = "USflgal", sp_us = true, }, ["U.S.floz"] = { target = "USoz", sp_us = true, }, ["U.S.gal"] = { target = "USgal", sp_us = true, default = "L impgal", link = "U.S. gallon", }, ["u.s.gal"] = { target = "USgal", sp_us = true, default = "L impgal", link = "U.S. gallon", }, ["U.S.gi"] = { target = "USgi", sp_us = true, }, ["U.S.kenning"] = { target = "USkenning", sp_us = true, }, ["U.S.oz"] = { target = "USoz", sp_us = true, }, ["U.S.pk"] = { target = "USpk", sp_us = true, }, ["U.S.pt"] = { target = "USpt", sp_us = true, }, ["U.S.qt"] = { target = "USqt", sp_us = true, default = "L impqt", customary= 2, }, ["usbbl"] = { target = "USbbl", }, ["usbeerbbl"] = { target = "USbeerbbl", }, ["usbsh"] = { target = "USbsh", }, ["usbu"] = { target = "USbu", }, ["usdrybbl"] = { target = "USdrybbl", }, ["usdrygal"] = { target = "+USdrygal", }, ["usdrypt"] = { target = "USdrypt", }, ["usdryqt"] = { target = "USdryqt", }, ["USfloz"] = { target = "USoz", }, ["usfloz"] = { target = "USoz", }, ["USGAL"] = { target = "USgal", }, ["usgal"] = { target = "USgal", }, ["usgi"] = { target = "USgi", }, ["uskenning"] = { target = "USkenning", }, ["usoz"] = { target = "USoz", }, ["uspk"] = { target = "USpk", }, ["uspt"] = { target = "USpt", }, ["usqt"] = { target = "USqt", }, ["yd3"] = { target = "cuyd", }, ["cuft/sqmi"] = { per = { "cuft", "sqmi" }, utype = "volume per unit area", default = "m3/km2", }, ["m3/ha"] = { name1 = "مکعب میٖٹَر فی ہیکٹر", name1_us = "مکعب میٖٹَر فی ہیکٹر", name2 = "مکعب میٖٹَر فی ہیکٹر", name2_us = "مکعب میٖٹَر فی ہیکٹر", symbol = "m<sup>3</sup>/ha", utype = "volume per unit area", scale = 0.0001, default = "USbu/acre", link = "ہیکٹر", }, ["m3/km2"] = { per = { "m3", "km2" }, utype = "volume per unit area", default = "cuft/sqmi", }, ["U.S.gal/acre"] = { per = { "U.S.gal", "acre" }, utype = "volume per unit area", default = "m3/km2", }, ["USbu/acre"] = { name2 = "بوشل امریکی فی ایکڑ", symbol = "US bushel per acre", usename = 1, utype = "volume per unit area", scale = 8.7077638761350888e-6, default = "m3/ha", link = "بوشل", }, ["USgal/acre"] = { per = { "USgal", "acre" }, utype = "volume per unit area", default = "m3/km2", }, ["miydftin"] = { combination= { "in", "ft", "yd", "mi" }, multiple = { 12, 3, 1760 }, utype = "length", }, ["mift"] = { combination= { "ft", "mi" }, multiple = { 5280 }, utype = "length", }, ["ydftin"] = { combination= { "in", "ft", "yd" }, multiple = { 12, 3 }, utype = "length", }, ["ydft"] = { combination= { "ft", "yd" }, multiple = { 3 }, utype = "length", }, ["ftin"] = { combination= { "in", "ft" }, multiple = { 12 }, utype = "length", }, ["footin"] = { combination= { "in", "foot" }, multiple = { 12 }, utype = "length", }, ["handin"] = { combination= { "in", "hand" }, multiple = { 4 }, utype = "length", }, ["lboz"] = { combination= { "oz", "lb" }, multiple = { 16 }, utype = "mass", }, ["stlb"] = { combination= { "lb", "st" }, multiple = { 14 }, utype = "mass", }, ["stlboz"] = { combination= { "oz", "lb", "st" }, multiple = { 16, 14 }, utype = "mass", }, ["st and lb"] = { combination= { "lb", "st" }, multiple = { 14 }, utype = "mass", }, ["acre ha"] = { combination= { "acre", "ha" }, utype = "area", }, ["acre m2"] = { combination= { "acre", "m2" }, utype = "area", }, ["acre sqm"] = { combination= { "acre", "sqm" }, utype = "area", }, ["acre sqmi"] = { combination= { "acre", "sqmi" }, utype = "area", }, ["cm2 in2"] = { combination= { "cm2", "sqin" }, utype = "area", }, ["cm2 sqin"] = { combination= { "cm2", "sqin" }, utype = "area", }, ["foot2 m2"] = { combination= { "foot2", "m2" }, utype = "area", }, ["ft2 m2"] = { combination= { "ft2", "m2" }, utype = "area", }, ["ha acre"] = { combination= { "ha", "acre" }, utype = "area", }, ["ha sqmi"] = { combination= { "ha", "sqmi" }, utype = "area", }, ["in2 cm2"] = { combination= { "sqin", "cm2" }, utype = "area", }, ["in2 mm2"] = { combination= { "sqin", "mm2" }, utype = "area", }, ["km2 acre sqmi"] = { combination= { "km2", "acre", "sqmi" }, utype = "area", }, ["km2 mi2"] = { combination= { "km2", "sqmi" }, utype = "area", }, ["km2 sqmi"] = { combination= { "km2", "sqmi" }, utype = "area", }, ["m2 ft2"] = { combination= { "m2", "ft2" }, utype = "area", }, ["m2 sqft"] = { combination= { "m2", "sqft" }, utype = "area", }, ["mi2 ha"] = { combination= { "sqmi", "ha" }, utype = "area", }, ["mi2 km2"] = { combination= { "sqmi", "km2" }, utype = "area", }, ["mm2 in2"] = { combination= { "mm2", "sqin" }, utype = "area", }, ["mm2 sqin"] = { combination= { "mm2", "sqin" }, utype = "area", }, ["sqfoot m2"] = { combination= { "sqfoot", "m2" }, utype = "area", }, ["sqft m2"] = { combination= { "sqft", "m2" }, utype = "area", }, ["sqft sqm"] = { combination= { "sqft", "m2" }, utype = "area", }, ["sqin cm2"] = { combination= { "sqin", "cm2" }, utype = "area", }, ["sqin mm2"] = { combination= { "sqin", "mm2" }, utype = "area", }, ["sqmi acre"] = { combination= { "sqmi", "acre" }, utype = "area", }, ["sqmi ha"] = { combination= { "sqmi", "ha" }, utype = "area", }, ["sqmi ha km2"] = { combination= { "sqmi", "ha", "km2" }, utype = "area", }, ["sqmi km2"] = { combination= { "sqmi", "km2" }, utype = "area", }, ["tsubo sqft"] = { combination= { "tsubo", "sqft" }, utype = "area", }, ["lb/impgal lb/USgal"] = { combination= { "lb/impgal", "lb/USgal" }, utype = "density", }, ["kWh/km kWh/mi"] = { combination= { "kWh/km", "kWh/mi" }, utype = "energy per unit length", }, ["kWh/km MJ/km"] = { combination= { "kWh/km", "MJ/km" }, utype = "energy per unit length", }, ["MJ/km kWh/km"] = { combination= { "MJ/km", "kWh/km" }, utype = "energy per unit length", }, ["MJ/km kWh/mi"] = { combination= { "MJ/km", "kWh/mi" }, utype = "energy per unit length", }, ["impgal/h USgal/h"] = { combination= { "impgal/h", "USgal/h" }, utype = "flow", }, ["impgal/min USgal/min"] = { combination= { "impgal/min", "USgal/min" }, utype = "flow", }, ["L/s impgal/min"] = { combination= { "L/s", "impgal/min" }, utype = "flow", }, ["m3/s impgal/min"] = { combination= { "m3/s", "impgal/min" }, utype = "flow", }, ["GN LT-f"] = { combination= { "GN", "LT-f" }, utype = "force", }, ["GN LT-f ST-f"] = { combination= { "GN", "LT-f", "ST-f" }, utype = "force", }, ["GN LTf"] = { combination= { "GN", "-LTf" }, utype = "force", }, ["GN LTf STf"] = { combination= { "GN", "-LTf", "-STf" }, utype = "force", }, ["GN ST-f"] = { combination= { "GN", "ST-f" }, utype = "force", }, ["GN ST-f LT-f"] = { combination= { "GN", "ST-f", "LT-f" }, utype = "force", }, ["GN STf"] = { combination= { "GN", "-STf" }, utype = "force", }, ["GN STf LTf"] = { combination= { "GN", "-STf", "-LTf" }, utype = "force", }, ["kN lb-f"] = { combination= { "kN", "lb-f" }, utype = "force", }, ["kN lbf"] = { combination= { "kN", "lbf" }, utype = "force", }, ["kN LT-f"] = { combination= { "kN", "LT-f" }, utype = "force", }, ["kN LT-f ST-f"] = { combination= { "kN", "LT-f", "ST-f" }, utype = "force", }, ["kN LTf"] = { combination= { "kN", "-LTf" }, utype = "force", }, ["kN LTf STf"] = { combination= { "kN", "-LTf", "-STf" }, utype = "force", }, ["kN ST-f"] = { combination= { "kN", "ST-f" }, utype = "force", }, ["kN ST-f LT-f"] = { combination= { "kN", "ST-f", "LT-f" }, utype = "force", }, ["kN STf"] = { combination= { "kN", "-STf" }, utype = "force", }, ["kN STf LTf"] = { combination= { "kN", "-STf", "-LTf" }, utype = "force", }, ["LT-f ST-f"] = { combination= { "LT-f", "ST-f" }, utype = "force", }, ["LTf STf"] = { combination= { "-LTf", "-STf" }, utype = "force", }, ["mN gr-f"] = { combination= { "mN", "gr-f" }, utype = "force", }, ["mN grf"] = { combination= { "mN", "grf" }, utype = "force", }, ["MN LT-f"] = { combination= { "MN", "LT-f" }, utype = "force", }, ["MN LT-f ST-f"] = { combination= { "MN", "LT-f", "ST-f" }, utype = "force", }, ["MN LTf"] = { combination= { "MN", "-LTf" }, utype = "force", }, ["MN LTf STf"] = { combination= { "MN", "-LTf", "-STf" }, utype = "force", }, ["mN oz-f"] = { combination= { "mN", "oz-f" }, utype = "force", }, ["mN ozf"] = { combination= { "mN", "ozf" }, utype = "force", }, ["MN ST-f"] = { combination= { "MN", "ST-f" }, utype = "force", }, ["MN ST-f LT-f"] = { combination= { "MN", "ST-f", "LT-f" }, utype = "force", }, ["MN STf"] = { combination= { "MN", "-STf" }, utype = "force", }, ["MN STf LTf"] = { combination= { "MN", "-STf", "-LTf" }, utype = "force", }, ["N lb-f"] = { combination= { "N", "lb-f" }, utype = "force", }, ["N lbf"] = { combination= { "N", "lbf" }, utype = "force", }, ["N oz-f"] = { combination= { "N", "oz-f" }, utype = "force", }, ["N ozf"] = { combination= { "N", "ozf" }, utype = "force", }, ["nN gr-f"] = { combination= { "nN", "gr-f" }, utype = "force", }, ["nN grf"] = { combination= { "nN", "grf" }, utype = "force", }, ["S/T-f L/T-f"] = { combination= { "S/T-f", "L/T-f" }, utype = "force", }, ["S/Tf L/Tf"] = { combination= { "S/Tf", "L/Tf" }, utype = "force", }, ["ST-f LT-f"] = { combination= { "ST-f", "LT-f" }, utype = "force", }, ["STf LTf"] = { combination= { "-STf", "-LTf" }, utype = "force", }, ["uN gr-f"] = { combination= { "µN", "gr-f" }, utype = "force", }, ["uN grf"] = { combination= { "µN", "grf" }, utype = "force", }, ["µN gr-f"] = { combination= { "µN", "gr-f" }, utype = "force", }, ["µN grf"] = { combination= { "µN", "grf" }, utype = "force", }, ["μN gr-f"] = { combination= { "µN", "gr-f" }, utype = "force", }, ["μN grf"] = { combination= { "µN", "grf" }, utype = "force", }, ["impgal/mi U.S.gal/mi"] = { combination= { "impgal/mi", "U.S.gal/mi" }, utype = "fuel efficiency", }, ["impgal/mi USgal/mi"] = { combination= { "impgal/mi", "USgal/mi" }, utype = "fuel efficiency", }, ["km/L mpgimp"] = { combination= { "km/L", "mpgimp" }, utype = "fuel efficiency", }, ["km/l mpgimp"] = { combination= { "km/l", "mpgimp" }, utype = "fuel efficiency", }, ["km/L mpgU.S."] = { combination= { "km/L", "mpgU.S." }, utype = "fuel efficiency", }, ["km/l mpgU.S."] = { combination= { "km/l", "mpgU.S." }, utype = "fuel efficiency", }, ["km/L mpgUS"] = { combination= { "km/L", "mpgus" }, utype = "fuel efficiency", }, ["km/L mpgus"] = { combination= { "km/L", "mpgus" }, utype = "fuel efficiency", }, ["km/l mpgUS"] = { combination= { "km/l", "mpgus" }, utype = "fuel efficiency", }, ["km/l mpgus"] = { combination= { "km/l", "mpgus" }, utype = "fuel efficiency", }, ["L/100 km mpgimp"] = { combination= { "L/100 km", "mpgimp" }, utype = "fuel efficiency", }, ["l/100 km mpgimp"] = { combination= { "l/100 km", "mpgimp" }, utype = "fuel efficiency", }, ["L/100 km mpgU.S."] = { combination= { "L/100 km", "mpgU.S." }, utype = "fuel efficiency", }, ["l/100 km mpgU.S."] = { combination= { "l/100 km", "mpgU.S." }, utype = "fuel efficiency", }, ["L/100 km mpgUS"] = { combination= { "L/100 km", "mpgus" }, utype = "fuel efficiency", }, ["L/100 km mpgus"] = { combination= { "L/100 km", "mpgus" }, utype = "fuel efficiency", }, ["l/100 km mpgUS"] = { combination= { "l/100 km", "mpgus" }, utype = "fuel efficiency", }, ["l/100 km mpgus"] = { combination= { "l/100 km", "mpgus" }, utype = "fuel efficiency", }, ["L/km impgal/mi"] = { combination= { "L/km", "impgal/mi" }, utype = "fuel efficiency", }, ["l/km impgal/mi"] = { combination= { "l/km", "impgal/mi" }, utype = "fuel efficiency", }, ["L/km U.S.gal/mi"] = { combination= { "L/km", "U.S.gal/mi" }, utype = "fuel efficiency", }, ["l/km U.S.gal/mi"] = { combination= { "l/km", "U.S.gal/mi" }, utype = "fuel efficiency", }, ["L/km USgal/mi"] = { combination= { "L/km", "USgal/mi" }, utype = "fuel efficiency", }, ["L/km usgal/mi"] = { combination= { "L/km", "usgal/mi" }, utype = "fuel efficiency", }, ["l/km USgal/mi"] = { combination= { "l/km", "USgal/mi" }, utype = "fuel efficiency", }, ["l/km usgal/mi"] = { combination= { "l/km", "usgal/mi" }, utype = "fuel efficiency", }, ["mpgimp L/100 km"] = { combination= { "mpgimp", "L/100 km" }, utype = "fuel efficiency", }, ["mpgimp mpgU.S."] = { combination= { "mpgimp", "mpgU.S." }, utype = "fuel efficiency", }, ["mpgimp mpgUS"] = { combination= { "mpgimp", "mpgus" }, utype = "fuel efficiency", }, ["mpgimp mpgus"] = { combination= { "mpgimp", "mpgus" }, utype = "fuel efficiency", }, ["mpgU.S. mpgimp"] = { combination= { "mpgU.S.", "mpgimp" }, utype = "fuel efficiency", }, ["mpgUS mpgimp"] = { combination= { "mpgus", "mpgimp" }, utype = "fuel efficiency", }, ["mpgus mpgimp"] = { combination= { "mpgus", "mpgimp" }, utype = "fuel efficiency", }, ["U.S.gal/mi impgal/mi"] = { combination= { "U.S.gal/mi", "impgal/mi" }, utype = "fuel efficiency", }, ["USgal/mi impgal/mi"] = { combination= { "USgal/mi", "impgal/mi" }, utype = "fuel efficiency", }, ["cm in"] = { combination= { "cm", "in" }, utype = "length", }, ["fathom ft"] = { combination= { "fathom", "ft" }, utype = "length", }, ["foot m"] = { combination= { "foot", "m" }, utype = "length", }, ["ft km"] = { combination= { "ft", "km" }, utype = "length", }, ["ft m"] = { combination= { "ft", "m" }, utype = "length", }, ["ft mi"] = { combination= { "ft", "mi" }, utype = "length", }, ["in cm"] = { combination= { "in", "cm" }, utype = "length", }, ["in mm"] = { combination= { "in", "mm" }, utype = "length", }, ["km ly"] = { combination= { "km", "ly" }, utype = "length", }, ["km mi"] = { combination= { "km", "mi" }, utype = "length", }, ["km mi ft"] = { combination= { "km", "mi", "ft" }, utype = "length", }, ["km nmi"] = { combination= { "km", "nmi" }, utype = "length", }, ["m foot"] = { combination= { "m", "foot" }, utype = "length", }, ["m ft"] = { combination= { "m", "ft" }, utype = "length", }, ["m yd"] = { combination= { "m", "yd" }, utype = "length", }, ["mi ft"] = { combination= { "mi", "ft" }, utype = "length", }, ["mi km"] = { combination= { "mi", "km" }, utype = "length", }, ["mi nmi"] = { combination= { "mi", "nmi" }, utype = "length", }, ["mm in"] = { combination= { "mm", "in" }, utype = "length", }, ["nmi km"] = { combination= { "nmi", "km" }, utype = "length", }, ["nmi mi"] = { combination= { "nmi", "mi" }, utype = "length", }, ["nmi mi ft"] = { combination= { "nmi", "mi", "ft" }, utype = "length", }, ["statmi km"] = { combination= { "smi", "km" }, utype = "length", }, ["yd m"] = { combination= { "yd", "m" }, utype = "length", }, ["g gr"] = { combination= { "g", "gr" }, utype = "mass", }, ["g oz"] = { combination= { "g", "oz" }, utype = "mass", }, ["gr mg"] = { combination= { "gr", "mg" }, utype = "mass", }, ["kg lb"] = { combination= { "kg", "lb" }, utype = "mass", }, ["kg lb st"] = { combination= { "kg", "lb", "st" }, utype = "mass", }, ["kg Scwt"] = { combination= { "kg", "-Scwt" }, utype = "mass", }, ["kg st"] = { combination= { "kg", "st" }, utype = "mass", }, ["kg st lb"] = { combination= { "kg", "st", "lb" }, utype = "mass", }, ["kg stlb"] = { combination= { "kg", "stlb" }, utype = "mass", }, ["lb kg"] = { combination= { "lb", "kg" }, utype = "mass", }, ["lb kg st"] = { combination= { "lb", "kg", "st" }, utype = "mass", }, ["lb ozt"] = { combination= { "lb", "ozt" }, utype = "mass", }, ["lb st"] = { combination= { "lb", "st" }, utype = "mass", }, ["lb st kg"] = { combination= { "lb", "st", "kg" }, utype = "mass", }, ["lb stlb"] = { combination= { "lb", "stlb" }, utype = "mass", }, ["LT MT"] = { combination= { "LT", "MT" }, utype = "mass", }, ["LT MT ST"] = { combination= { "LT", "MT", "ST" }, utype = "mass", }, ["LT ST"] = { combination= { "LT", "ST" }, utype = "mass", }, ["LT ST MT"] = { combination= { "LT", "ST", "MT" }, utype = "mass", }, ["LT ST t"] = { combination= { "-LT", "-ST", "t" }, utype = "mass", }, ["LT t"] = { combination= { "LT", "t" }, utype = "mass", }, ["LT t ST"] = { combination= { "-LT", "t", "-ST" }, utype = "mass", }, ["mg gr"] = { combination= { "mg", "gr" }, utype = "mass", }, ["MT LT"] = { combination= { "MT", "LT" }, utype = "mass", }, ["MT LT ST"] = { combination= { "MT", "LT", "ST" }, utype = "mass", }, ["MT ST"] = { combination= { "MT", "ST" }, utype = "mass", }, ["MT ST LT"] = { combination= { "MT", "ST", "LT" }, utype = "mass", }, ["oz g"] = { combination= { "oz", "g" }, utype = "mass", }, ["oz ozt"] = { combination= { "oz", "ozt" }, utype = "mass", }, ["ozt g"] = { combination= { "ozt", "g" }, utype = "mass", }, ["ozt kg"] = { combination= { "ozt", "kg" }, utype = "mass", }, ["ozt oz"] = { combination= { "ozt", "oz" }, utype = "mass", }, ["st kg"] = { combination= { "st", "kg" }, utype = "mass", }, ["st kg lb"] = { combination= { "st", "kg", "lb" }, utype = "mass", }, ["st lb"] = { combination= { "st", "lb" }, utype = "mass", }, ["st lb kg"] = { combination= { "st", "lb", "kg" }, utype = "mass", }, ["ST LT"] = { combination= { "ST", "LT" }, utype = "mass", }, ["ST LT MT"] = { combination= { "ST", "LT", "MT" }, utype = "mass", }, ["ST LT t"] = { combination= { "-ST", "-LT", "t" }, utype = "mass", }, ["ST MT"] = { combination= { "ST", "MT" }, utype = "mass", }, ["ST MT LT"] = { combination= { "ST", "MT", "LT" }, utype = "mass", }, ["ST t"] = { combination= { "ST", "t" }, utype = "mass", }, ["ST t LT"] = { combination= { "-ST", "t", "-LT" }, utype = "mass", }, ["t LT"] = { combination= { "t", "LT" }, utype = "mass", }, ["t LT ST"] = { combination= { "t", "-LT", "-ST" }, utype = "mass", }, ["t Scwt"] = { combination= { "t", "-Scwt" }, utype = "mass", }, ["t ST"] = { combination= { "t", "ST" }, utype = "mass", }, ["t ST LT"] = { combination= { "t", "ST", "LT" }, utype = "mass", }, ["ton"] = { combination= { "LT", "ST" }, utype = "mass", }, ["/acre /ha"] = { combination= { "/acre", "/ha" }, utype = "per unit area", }, ["/ha /acre"] = { combination= { "/ha", "/acre" }, utype = "per unit area", }, ["/km2 sqmi"] = { combination= { "/km2", "/sqmi" }, utype = "per unit area", }, ["/sqkm /sqmi"] = { combination= { "/sqkm", "/sqmi" }, utype = "per unit area", }, ["/sqmi /sqkm"] = { combination= { "/sqmi", "/sqkm" }, utype = "per unit area", }, ["PD/acre PD/ha"] = { combination= { "PD/acre", "PD/ha" }, utype = "per unit area", }, ["PD/ha PD/acre"] = { combination= { "PD/ha", "PD/acre" }, utype = "per unit area", }, ["PD/sqkm PD/sqmi"] = { combination= { "PD/sqkm", "PD/sqmi" }, utype = "per unit area", }, ["PD/sqmi PD/sqkm"] = { combination= { "PD/sqmi", "PD/sqkm" }, utype = "per unit area", }, ["kW bhp"] = { combination= { "kW", "bhp" }, utype = "power", }, ["kW hp"] = { combination= { "kW", "hp" }, utype = "power", }, ["kW PS"] = { combination= { "kW", "PS" }, utype = "power", }, ["PS bhp"] = { combination= { "PS", "bhp" }, utype = "power", }, ["PS hp"] = { combination= { "PS", "hp" }, utype = "power", }, ["bar kPa"] = { combination= { "bar", "kPa" }, utype = "pressure", }, ["hPa inHg"] = { combination= { "hPa", "inHg" }, utype = "pressure", }, ["inHg psi"] = { combination= { "inHg", "psi" }, utype = "pressure", }, ["kPa inHg"] = { combination= { "kPa", "inHg" }, utype = "pressure", }, ["kPa kg-f/cm2"] = { combination= { "kPa", "kg-f/cm2" }, utype = "pressure", }, ["kPa kg/cm2"] = { combination= { "kPa", "kgf/cm2" }, utype = "pressure", }, ["kPa kgf/cm2"] = { combination= { "kPa", "kgf/cm2" }, utype = "pressure", }, ["kPa lb/in2"] = { combination= { "kPa", "-lb/in2" }, utype = "pressure", }, ["kPa mmHg"] = { combination= { "kPa", "mmHg" }, utype = "pressure", }, ["kPa psi"] = { combination= { "kPa", "psi" }, utype = "pressure", }, ["kPa Torr"] = { combination= { "kPa", "Torr" }, utype = "pressure", }, ["LT ST/acre"] = { combination= { "LT/acre", "ST/acre" }, utype = "pressure", }, ["LT/acre ST/acre"] = { combination= { "LT/acre", "ST/acre" }, utype = "pressure", }, ["mmHg psi"] = { combination= { "mmHg", "psi" }, utype = "pressure", }, ["MPa kg-f/cm2"] = { combination= { "MPa", "kg-f/cm2" }, utype = "pressure", }, ["MPa kgf/cm2"] = { combination= { "MPa", "kgf/cm2" }, utype = "pressure", }, ["MPa ksi"] = { combination= { "MPa", "ksi" }, utype = "pressure", }, ["MPa psi"] = { combination= { "MPa", "psi" }, utype = "pressure", }, ["Torr psi"] = { combination= { "Torr", "psi" }, utype = "pressure", }, ["foot/s m/s"] = { combination= { "foot/s", "m/s" }, utype = "speed", }, ["ft/s m/s"] = { combination= { "ft/s", "m/s" }, utype = "speed", }, ["km/h kn"] = { combination= { "km/h", "kn" }, utype = "speed", }, ["km/h mph"] = { combination= { "km/h", "mph" }, utype = "speed", }, ["kn km/h"] = { combination= { "kn", "km/h" }, utype = "speed", }, ["kn m/s"] = { combination= { "kn", "m/s" }, utype = "speed", }, ["kn mph"] = { combination= { "kn", "mph" }, utype = "speed", }, ["m/s foot/s"] = { combination= { "m/s", "foot/s" }, utype = "speed", }, ["m/s ft/s"] = { combination= { "m/s", "ft/s" }, utype = "speed", }, ["m/s kn km/h"] = { combination= { "m/s", "kn", "km/h" }, utype = "speed", }, ["m/s mph"] = { combination= { "m/s", "mph" }, utype = "speed", }, ["mph km/h"] = { combination= { "mph", "km/h" }, utype = "speed", }, ["mph kn"] = { combination= { "mph", "kn" }, utype = "speed", }, ["C F"] = { combination= { "C", "F" }, utype = "temperature", }, ["C F K"] = { combination= { "C", "F", "K" }, utype = "temperature", }, ["C F R"] = { combination= { "C", "F", "R" }, utype = "temperature", }, ["C K"] = { combination= { "C", "K" }, utype = "temperature", }, ["C K F"] = { combination= { "C", "K", "F" }, utype = "temperature", }, ["C K R"] = { combination= { "C", "K", "R" }, utype = "temperature", }, ["C R"] = { combination= { "C", "R" }, utype = "temperature", }, ["C R F"] = { combination= { "C", "R", "F" }, utype = "temperature", }, ["C R K"] = { combination= { "C", "R", "K" }, utype = "temperature", }, ["F C"] = { combination= { "F", "C" }, utype = "temperature", }, ["F C K"] = { combination= { "F", "C", "K" }, utype = "temperature", }, ["F C R"] = { combination= { "F", "C", "R" }, utype = "temperature", }, ["F K"] = { combination= { "F", "K" }, utype = "temperature", }, ["F K C"] = { combination= { "F", "K", "C" }, utype = "temperature", }, ["F K R"] = { combination= { "F", "K", "R" }, utype = "temperature", }, ["F R"] = { combination= { "F", "R" }, utype = "temperature", }, ["F R C"] = { combination= { "F", "R", "C" }, utype = "temperature", }, ["F R K"] = { combination= { "F", "R", "K" }, utype = "temperature", }, ["K C"] = { combination= { "K", "C" }, utype = "temperature", }, ["K C F"] = { combination= { "K", "C", "F" }, utype = "temperature", }, ["K C R"] = { combination= { "K", "C", "R" }, utype = "temperature", }, ["K F"] = { combination= { "K", "F" }, utype = "temperature", }, ["K F C"] = { combination= { "K", "F", "C" }, utype = "temperature", }, ["K F R"] = { combination= { "K", "F", "R" }, utype = "temperature", }, ["K R"] = { combination= { "K", "R" }, utype = "temperature", }, ["K R C"] = { combination= { "K", "R", "C" }, utype = "temperature", }, ["K R F"] = { combination= { "K", "R", "F" }, utype = "temperature", }, ["K °C"] = { combination= { "K", "°C" }, utype = "temperature", }, ["K °C °F"] = { combination= { "K", "°C", "°F" }, utype = "temperature", }, ["K °C °R"] = { combination= { "K", "°C", "°R" }, utype = "temperature", }, ["K °F"] = { combination= { "K", "°F" }, utype = "temperature", }, ["K °F °C"] = { combination= { "K", "°F", "°C" }, utype = "temperature", }, ["K °F °R"] = { combination= { "K", "°F", "°R" }, utype = "temperature", }, ["K °R"] = { combination= { "K", "°R" }, utype = "temperature", }, ["K °R °C"] = { combination= { "K", "°R", "°C" }, utype = "temperature", }, ["K °R °F"] = { combination= { "K", "°R", "°F" }, utype = "temperature", }, ["R C"] = { combination= { "R", "C" }, utype = "temperature", }, ["R C F"] = { combination= { "R", "C", "F" }, utype = "temperature", }, ["R C K"] = { combination= { "R", "C", "K" }, utype = "temperature", }, ["R F"] = { combination= { "R", "F" }, utype = "temperature", }, ["R F C"] = { combination= { "R", "F", "C" }, utype = "temperature", }, ["R F K"] = { combination= { "R", "F", "K" }, utype = "temperature", }, ["R K"] = { combination= { "R", "K" }, utype = "temperature", }, ["R K C"] = { combination= { "R", "K", "C" }, utype = "temperature", }, ["R K F"] = { combination= { "R", "K", "F" }, utype = "temperature", }, ["°C K"] = { combination= { "°C", "K" }, utype = "temperature", }, ["°C K °F"] = { combination= { "°C", "K", "°F" }, utype = "temperature", }, ["°C K °R"] = { combination= { "°C", "K", "°R" }, utype = "temperature", }, ["°C °F"] = { combination= { "°C", "°F" }, utype = "temperature", }, ["°C °F K"] = { combination= { "°C", "°F", "K" }, utype = "temperature", }, ["°C °F °R"] = { combination= { "°C", "°F", "°R" }, utype = "temperature", }, ["°C °R"] = { combination= { "°C", "°R" }, utype = "temperature", }, ["°C °R K"] = { combination= { "°C", "°R", "K" }, utype = "temperature", }, ["°C °R °F"] = { combination= { "°C", "°R", "°F" }, utype = "temperature", }, ["°F K"] = { combination= { "°F", "K" }, utype = "temperature", }, ["°F K °C"] = { combination= { "°F", "K", "°C" }, utype = "temperature", }, ["°F K °R"] = { combination= { "°F", "K", "°R" }, utype = "temperature", }, ["°F R"] = { combination= { "F", "R" }, utype = "temperature", }, ["°F °C"] = { combination= { "°F", "°C" }, utype = "temperature", }, ["°F °C K"] = { combination= { "°F", "°C", "K" }, utype = "temperature", }, ["°F °C °R"] = { combination= { "°F", "°C", "°R" }, utype = "temperature", }, ["°F °R"] = { combination= { "°F", "°R" }, utype = "temperature", }, ["°F °R K"] = { combination= { "°F", "°R", "K" }, utype = "temperature", }, ["°F °R °C"] = { combination= { "°F", "°R", "°C" }, utype = "temperature", }, ["°R K"] = { combination= { "°R", "K" }, utype = "temperature", }, ["°R K °C"] = { combination= { "°R", "K", "°C" }, utype = "temperature", }, ["°R K °F"] = { combination= { "°R", "K", "°F" }, utype = "temperature", }, ["°R °C"] = { combination= { "°R", "°C" }, utype = "temperature", }, ["°R °C K"] = { combination= { "°R", "°C", "K" }, utype = "temperature", }, ["°R °C °F"] = { combination= { "°R", "°C", "°F" }, utype = "temperature", }, ["°R °F"] = { combination= { "°R", "°F" }, utype = "temperature", }, ["°R °F K"] = { combination= { "°R", "°F", "K" }, utype = "temperature", }, ["°R °F °C"] = { combination= { "°R", "°F", "°C" }, utype = "temperature", }, ["kgm lbft"] = { combination= { "kg.m", "lb.ft" }, utype = "torque", }, ["lbft kgm"] = { combination= { "lb.ft", "kg.m" }, utype = "torque", }, ["Nm kgm"] = { combination= { "N.m", "kg.m" }, utype = "torque", }, ["Nm lb-fft"] = { combination= { "N.m", "lb-fft" }, utype = "torque", }, ["Nm lbfft"] = { combination= { "Nm", "lbfft" }, utype = "torque", }, ["Nm lbft"] = { combination= { "Nm", "lbft" }, utype = "torque", }, ["cc L"] = { combination= { "cc", "L" }, utype = "volume", }, ["cm3 L"] = { combination= { "cm3", "L" }, utype = "volume", }, ["cuft m3"] = { combination= { "cuft", "m3" }, utype = "volume", }, ["cuin USoz USpt"] = { combination= { "cuin", "USoz", "USpt" }, utype = "volume", }, ["cuyd m3"] = { combination= { "cuyd", "m3" }, utype = "volume", }, ["e12impgal e12U.S.gal"] = { combination= { "e12impgal", "e12U.S.gal" }, utype = "volume", }, ["e12impgal e12USgal"] = { combination= { "e12impgal", "e12USgal" }, utype = "volume", }, ["e3impgal e3U.S.gal"] = { combination= { "e3impgal", "e3U.S.gal" }, utype = "volume", }, ["e3impgal e3USgal"] = { combination= { "e3impgal", "e3USgal" }, utype = "volume", }, ["e6impgal e6U.S.gal"] = { combination= { "e6impgal", "e6U.S.gal" }, utype = "volume", }, ["e6impgal e6USgal"] = { combination= { "e6impgal", "e6USgal" }, utype = "volume", }, ["e9impgal e9U.S.gal"] = { combination= { "e9impgal", "e9U.S.gal" }, utype = "volume", }, ["e9impgal e9USgal"] = { combination= { "e9impgal", "e9USgal" }, utype = "volume", }, ["e9USgal e6m3"] = { combination= { "e9USgal", "e6m3" }, utype = "volume", }, ["floz"] = { combination= { "impoz", "USoz" }, utype = "volume", }, ["hL impgal"] = { combination= { "hL", "impgal" }, utype = "volume", }, ["hl impgal"] = { combination= { "hl", "impgal" }, utype = "volume", }, ["hL impgal U.S.gal"] = { combination= { "hL", "impgal", "U.S.gal" }, utype = "volume", }, ["hl impgal U.S.gal"] = { combination= { "hl", "impgal", "U.S.gal" }, utype = "volume", }, ["hL impgal USgal"] = { combination= { "hL", "impgal", "USgal" }, utype = "volume", }, ["hl impgal USgal"] = { combination= { "hl", "impgal", "USgal" }, utype = "volume", }, ["hL U.S.gal"] = { combination= { "hL", "U.S.gal" }, utype = "volume", }, ["hl U.S.gal"] = { combination= { "hl", "U.S.gal" }, utype = "volume", }, ["hL U.S.gal impgal"] = { combination= { "hL", "U.S.gal", "impgal" }, utype = "volume", }, ["hl U.S.gal impgal"] = { combination= { "hl", "U.S.gal", "impgal" }, utype = "volume", }, ["hL USgal"] = { combination= { "hL", "USgal" }, utype = "volume", }, ["hl USgal"] = { combination= { "hl", "USgal" }, utype = "volume", }, ["hL USgal impgal"] = { combination= { "hL", "USgal", "impgal" }, utype = "volume", }, ["hl USgal impgal"] = { combination= { "hl", "USgal", "impgal" }, utype = "volume", }, ["impfloz U.S.floz"] = { combination= { "impfloz", "U.S.floz" }, utype = "volume", }, ["impgal cuyd"] = { combination= { "impgal", "cuyd" }, utype = "volume", }, ["impgal L"] = { combination= { "impgal", "L" }, utype = "volume", }, ["impgal l"] = { combination= { "impgal", "l" }, utype = "volume", }, ["impgal L U.S.drygal"] = { combination= { "impgal", "L", "U.S.drygal" }, utype = "volume", }, ["impgal l U.S.drygal"] = { combination= { "impgal", "l", "U.S.drygal" }, utype = "volume", }, ["impgal L U.S.gal"] = { combination= { "impgal", "L", "U.S.gal" }, utype = "volume", }, ["impgal l U.S.gal"] = { combination= { "impgal", "l", "U.S.gal" }, utype = "volume", }, ["impgal L USdrygal"] = { combination= { "impgal", "L", "USdrygal" }, utype = "volume", }, ["impgal l USdrygal"] = { combination= { "impgal", "l", "USdrygal" }, utype = "volume", }, ["impgal L USgal"] = { combination= { "impgal", "L", "USgal" }, utype = "volume", }, ["impgal l USgal"] = { combination= { "impgal", "l", "USgal" }, utype = "volume", }, ["impgal U.S.drygal"] = { combination= { "impgal", "U.S.drygal" }, utype = "volume", }, ["impgal U.S.drygal L"] = { combination= { "impgal", "U.S.drygal", "L" }, utype = "volume", }, ["impgal U.S.drygal l"] = { combination= { "impgal", "U.S.drygal", "l" }, utype = "volume", }, ["impgal U.S.gal"] = { combination= { "impgal", "U.S.gal" }, utype = "volume", }, ["impgal U.S.gal L"] = { combination= { "impgal", "U.S.gal", "L" }, utype = "volume", }, ["impgal U.S.gal l"] = { combination= { "impgal", "U.S.gal", "l" }, utype = "volume", }, ["impgal USdrygal"] = { combination= { "impgal", "USdrygal" }, utype = "volume", }, ["impgal USdrygal L"] = { combination= { "impgal", "USdrygal", "L" }, utype = "volume", }, ["impgal USdrygal l"] = { combination= { "impgal", "USdrygal", "l" }, utype = "volume", }, ["impgal USgal"] = { combination= { "impgal", "USgal" }, utype = "volume", }, ["impgal usgal"] = { combination= { "impgal", "USgal" }, utype = "volume", }, ["impgal USgal L"] = { combination= { "impgal", "USgal", "L" }, utype = "volume", }, ["impgal USgal l"] = { combination= { "impgal", "USgal", "l" }, utype = "volume", }, ["impgal yd3"] = { combination= { "impgal", "cuyd" }, utype = "volume", }, ["impoz mL"] = { combination= { "impoz", "mL" }, utype = "volume", }, ["impoz ml"] = { combination= { "impoz", "ml" }, utype = "volume", }, ["impoz U.S.oz"] = { combination= { "impoz", "U.S.oz" }, utype = "volume", }, ["impoz USoz"] = { combination= { "impoz", "USoz" }, utype = "volume", }, ["impoz usoz"] = { combination= { "impoz", "USoz" }, utype = "volume", }, ["imppt USpt"] = { combination= { "imppt", "USpt" }, utype = "volume", }, ["impqt l"] = { combination= { "impqt", "l" }, utype = "volume", }, ["L cuin"] = { combination= { "L", "cuin" }, utype = "volume", }, ["L drygal"] = { combination= { "L", "drygal" }, utype = "volume", }, ["l drygal"] = { combination= { "l", "drygal" }, utype = "volume", }, ["L impgal"] = { combination= { "L", "impgal" }, utype = "volume", }, ["l impgal"] = { combination= { "l", "impgal" }, utype = "volume", }, ["L impgal drygal"] = { combination= { "L", "impgal", "drygal" }, utype = "volume", }, ["l impgal drygal"] = { combination= { "l", "impgal", "drygal" }, utype = "volume", }, ["L impgal U.S.drygal"] = { combination= { "L", "impgal", "U.S.drygal" }, utype = "volume", }, ["l impgal U.S.drygal"] = { combination= { "l", "impgal", "U.S.drygal" }, utype = "volume", }, ["L impgal U.S.gal"] = { combination= { "L", "impgal", "U.S.gal" }, utype = "volume", }, ["l impgal U.S.gal"] = { combination= { "l", "impgal", "U.S.gal" }, utype = "volume", }, ["L impgal USdrygal"] = { combination= { "L", "impgal", "USdrygal" }, utype = "volume", }, ["L impgal usdrygal"] = { combination= { "L", "impgal", "USdrygal" }, utype = "volume", }, ["l impgal USdrygal"] = { combination= { "l", "impgal", "USdrygal" }, utype = "volume", }, ["l impgal usdrygal"] = { combination= { "l", "impgal", "USdrygal" }, utype = "volume", }, ["L impgal USgal"] = { combination= { "L", "impgal", "USgal" }, utype = "volume", }, ["l impgal USgal"] = { combination= { "l", "impgal", "USgal" }, utype = "volume", }, ["L imppt"] = { combination= { "L", "imppt" }, utype = "volume", }, ["l imppt"] = { combination= { "l", "imppt" }, utype = "volume", }, ["L impqt"] = { combination= { "L", "impqt" }, utype = "volume", }, ["L U.S.drygal"] = { combination= { "L", "U.S.drygal" }, utype = "volume", }, ["l U.S.drygal"] = { combination= { "l", "U.S.drygal" }, utype = "volume", }, ["L U.S.drygal impgal"] = { combination= { "L", "U.S.drygal", "impgal" }, utype = "volume", }, ["l U.S.drygal impgal"] = { combination= { "l", "U.S.drygal", "impgal" }, utype = "volume", }, ["L U.S.gal"] = { combination= { "L", "U.S.gal" }, utype = "volume", }, ["l U.S.gal"] = { combination= { "l", "U.S.gal" }, utype = "volume", }, ["L U.S.gal impgal"] = { combination= { "L", "U.S.gal", "impgal" }, utype = "volume", }, ["l U.S.gal impgal"] = { combination= { "l", "U.S.gal", "impgal" }, utype = "volume", }, ["L USdrygal"] = { combination= { "L", "USdrygal" }, utype = "volume", }, ["L usdrygal"] = { combination= { "L", "USdrygal" }, utype = "volume", }, ["l USdrygal"] = { combination= { "l", "USdrygal" }, utype = "volume", }, ["l usdrygal"] = { combination= { "l", "USdrygal" }, utype = "volume", }, ["L USdrygal impgal"] = { combination= { "L", "USdrygal", "impgal" }, utype = "volume", }, ["l USdrygal impgal"] = { combination= { "l", "USdrygal", "impgal" }, utype = "volume", }, ["L USgal"] = { combination= { "L", "USgal" }, utype = "volume", }, ["L usgal"] = { combination= { "L", "usgal" }, utype = "volume", }, ["l USgal"] = { combination= { "l", "USgal" }, utype = "volume", }, ["l usgal"] = { combination= { "l", "usgal" }, utype = "volume", }, ["L USgal impgal"] = { combination= { "L", "USgal", "impgal" }, utype = "volume", }, ["L usgal impgal"] = { combination= { "L", "USgal", "impgal" }, utype = "volume", }, ["l USgal impgal"] = { combination= { "l", "USgal", "impgal" }, utype = "volume", }, ["l USpt"] = { combination= { "l", "USpt" }, utype = "volume", }, ["m3 impgal"] = { combination= { "m3", "impgal" }, utype = "volume", }, ["mL impfloz"] = { combination= { "mL", "impfloz" }, utype = "volume", }, ["ml impfloz"] = { combination= { "ml", "impfloz" }, utype = "volume", }, ["mL impoz"] = { combination= { "mL", "impoz" }, utype = "volume", }, ["ml impoz"] = { combination= { "ml", "impoz" }, utype = "volume", }, ["mL U.S.floz"] = { combination= { "mL", "U.S.floz" }, utype = "volume", }, ["ml U.S.floz"] = { combination= { "ml", "U.S.floz" }, utype = "volume", }, ["mL U.S.oz"] = { combination= { "mL", "U.S.oz" }, utype = "volume", }, ["ml U.S.oz"] = { combination= { "ml", "U.S.oz" }, utype = "volume", }, ["mL USfloz"] = { combination= { "mL", "USfloz" }, utype = "volume", }, ["mL usfloz"] = { combination= { "mL", "usfloz" }, utype = "volume", }, ["ml USfloz"] = { combination= { "ml", "USfloz" }, utype = "volume", }, ["ml usfloz"] = { combination= { "ml", "usfloz" }, utype = "volume", }, ["mL USoz"] = { combination= { "mL", "USoz" }, utype = "volume", }, ["mL usoz"] = { combination= { "mL", "usfloz" }, utype = "volume", }, ["ml USoz"] = { combination= { "ml", "USoz" }, utype = "volume", }, ["ml usoz"] = { combination= { "ml", "usfloz" }, utype = "volume", }, ["MUSgal m3"] = { combination= { "MUSgal", "m3" }, utype = "volume", }, ["oilbbl m3"] = { combination= { "oilbbl", "m3" }, utype = "volume", }, ["U.S.drygal impgal"] = { combination= { "U.S.drygal", "impgal" }, utype = "volume", }, ["U.S.drygal impgal L"] = { combination= { "U.S.drygal", "impgal", "L" }, utype = "volume", }, ["U.S.drygal impgal l"] = { combination= { "U.S.drygal", "impgal", "l" }, utype = "volume", }, ["U.S.drygal L"] = { combination= { "U.S.drygal", "L" }, utype = "volume", }, ["U.S.drygal l"] = { combination= { "U.S.drygal", "l" }, utype = "volume", }, ["U.S.drygal L impgal"] = { combination= { "U.S.drygal", "L", "impgal" }, utype = "volume", }, ["U.S.drygal l impgal"] = { combination= { "U.S.drygal", "l", "impgal" }, utype = "volume", }, ["U.S.floz impfloz"] = { combination= { "U.S.floz", "impfloz" }, utype = "volume", }, ["U.S.gal impgal"] = { combination= { "U.S.gal", "impgal" }, utype = "volume", }, ["U.S.gal impgal L"] = { combination= { "U.S.gal", "impgal", "L" }, utype = "volume", }, ["U.S.gal impgal l"] = { combination= { "U.S.gal", "impgal", "l" }, utype = "volume", }, ["U.S.gal L"] = { combination= { "U.S.gal", "L" }, utype = "volume", }, ["U.S.gal l"] = { combination= { "U.S.gal", "l" }, utype = "volume", }, ["U.S.gal L impgal"] = { combination= { "U.S.gal", "L", "impgal" }, utype = "volume", }, ["U.S.gal l impgal"] = { combination= { "U.S.gal", "l", "impgal" }, utype = "volume", }, ["U.S.gal U.S.drygal"] = { combination= { "U.S.flgal", "U.S.drygal" }, utype = "volume", }, ["U.S.oz impoz"] = { combination= { "U.S.oz", "impoz" }, utype = "volume", }, ["U.S.oz mL"] = { combination= { "U.S.oz", "mL" }, utype = "volume", }, ["U.S.oz ml"] = { combination= { "U.S.oz", "ml" }, utype = "volume", }, ["USdrygal impgal"] = { combination= { "USdrygal", "impgal" }, utype = "volume", }, ["USdrygal impgal L"] = { combination= { "USdrygal", "impgal", "L" }, utype = "volume", }, ["USdrygal impgal l"] = { combination= { "USdrygal", "impgal", "l" }, utype = "volume", }, ["USdrygal L"] = { combination= { "USdrygal", "L" }, utype = "volume", }, ["USdrygal l"] = { combination= { "USdrygal", "l" }, utype = "volume", }, ["USdrygal L impgal"] = { combination= { "USdrygal", "L", "impgal" }, utype = "volume", }, ["USdrygal l impgal"] = { combination= { "USdrygal", "l", "impgal" }, utype = "volume", }, ["USfloz impfloz"] = { combination= { "USfloz", "impfloz" }, utype = "volume", }, ["USgal impgal"] = { combination= { "USgal", "impgal" }, utype = "volume", }, ["usgal impgal"] = { combination= { "USgal", "impgal" }, utype = "volume", }, ["USgal impgal L"] = { combination= { "USgal", "impgal", "L" }, utype = "volume", }, ["USgal impgal l"] = { combination= { "USgal", "impgal", "l" }, utype = "volume", }, ["USgal L"] = { combination= { "USgal", "L" }, utype = "volume", }, ["USgal l"] = { combination= { "USgal", "l" }, utype = "volume", }, ["USgal L impgal"] = { combination= { "USgal", "L", "impgal" }, utype = "volume", }, ["USgal l impgal"] = { combination= { "USgal", "l", "impgal" }, utype = "volume", }, ["USgal m3"] = { combination= { "USgal", "m3" }, utype = "volume", }, ["USgal USdrygal"] = { combination= { "USflgal", "USdrygal" }, utype = "volume", }, ["USoz impoz"] = { combination= { "USoz", "impoz" }, utype = "volume", }, ["USoz mL"] = { combination= { "USoz", "mL" }, utype = "volume", }, ["USoz ml"] = { combination= { "USoz", "ml" }, utype = "volume", }, ["USqt impqt"] = { combination= { "USqt", "impqt" }, utype = "volume", }, } --------------------------------------------------------------------------- -- Do not change the data in this table because it is created by running -- -- a script that reads the wikitext from a wiki page (see note above). -- --------------------------------------------------------------------------- local default_exceptions = { -- Prefixed units with a default different from that of the base unit. -- Each key item is a prefixed symbol (unitcode for engineering notation). ["cm<sup>2</sup>"] = "sqin", ["dm<sup>2</sup>"] = "sqin", ["e3acre"] = "km2", ["e3m2"] = "e6sqft", ["e6acre"] = "km2", ["e6ha"] = "e6acre", ["e6km2"] = "e6sqmi", ["e6m2"] = "e6sqft", ["e6sqft"] = "v * 9.290304 < 100 ! e3 ! e6 ! m2", ["e6sqmi"] = "e6km2", ["hm<sup>2</sup>"] = "acre", ["km<sup>2</sup>"] = "sqmi", ["mm<sup>2</sup>"] = "sqin", ["aJ"] = "eV", ["e3BTU"] = "MJ", ["e6BTU"] = "GJ", ["EJ"] = "kWh", ["fJ"] = "keV", ["GJ"] = "kWh", ["MJ"] = "kWh", ["PJ"] = "kWh", ["pJ"] = "MeV", ["TJ"] = "kWh", ["YJ"] = "kWh", ["yJ"] = "µeV", ["ZJ"] = "kWh", ["zJ"] = "meV", ["e12cuft/a"] = "v * 2.8316846592 < 100 ! e9 ! e12 ! m3/a", ["e12cuft/d"] = "v * 2.8316846592 < 100 ! e9 ! e12 ! m3/d", ["e12m3/a"] = "Tcuft/a", ["e12m3/d"] = "Tcuft/d", ["e3cuft/a"] = "v * 2.8316846592 < 100 ! ! e3 ! m3/a", ["e3cuft/d"] = "v * 2.8316846592 < 100 ! ! e3 ! m3/d", ["e3cuft/s"] = "v * 2.8316846592 < 100 ! ! e3 ! m3/s", ["e3m3/a"] = "v < 28.316846592 ! k ! M ! cuft/a", ["e3m3/d"] = "v < 28.316846592 ! k ! M ! cuft/d", ["e3m3/s"] = "v < 28.316846592 ! k ! M ! cuft/s", ["e3USgal/a"] = "v * 3.785411784 < 1000 ! ! e3 ! m3/a", ["e6cuft/a"] = "v * 2.8316846592 < 100 ! e3 ! e6 ! m3/a", ["e6cuft/d"] = "v * 2.8316846592 < 100 ! e3 ! e6 ! m3/d", ["e6cuft/s"] = "v * 2.8316846592 < 100 ! e3 ! e6 ! m3/s", ["e6m3/a"] = "v < 28.316846592 ! M ! G ! cuft/a", ["e6m3/d"] = "v < 28.316846592 ! M ! G ! cuft/d", ["e6m3/s"] = "v < 28.316846592 ! e6 ! e9 ! cuft/s", ["e6USgal/a"] = "v * 3.785411784 < 1000 ! e3 ! e6 ! m3/a", ["e9cuft/a"] = "m3/a", ["e9cuft/d"] = "v * 2.8316846592 < 100 ! e6 ! e9 ! m3/d", ["e9m3/a"] = "v < 28.316846592 ! G ! T ! cuft/a", ["e9m3/d"] = "v < 28.316846592 ! G ! T ! cuft/d", ["e9m3/s"] = "v < 28.316846592 ! e9 ! e12 ! cuft/s", ["e9USgal/a"] = "v * 3.785411784 < 1000 ! e6 ! e9 ! m3/a", ["e9USgal/s"] = "v * 3.785411784 < 1000 ! e6 ! e9 ! m3/s", ["nN"] = "gr-f", ["µN"] = "gr-f", ["mN"] = "oz-f", ["am"] = "in", ["cm"] = "in", ["dam"] = "ft", ["dm"] = "in", ["e12km"] = "e12mi", ["e12mi"] = "e12km", ["e3AU"] = "ly", ["e3km"] = "e3mi", ["e3mi"] = "e3km", ["e6km"] = "e6mi", ["e6mi"] = "e6km", ["e9km"] = "AU", ["e9mi"] = "e9km", ["Em"] = "mi", ["fm"] = "in", ["Gm"] = "mi", ["hm"] = "ft", ["km"] = "mi", ["mm"] = "in", ["Mm"] = "mi", ["nm"] = "in", ["Pm"] = "mi", ["pm"] = "in", ["Tm"] = "mi", ["Ym"] = "mi", ["ym"] = "in", ["Zm"] = "mi", ["zm"] = "in", ["µm"] = "in", ["e12lb"] = "v * 4.5359237 < 10 ! Mt ! Gt", ["e3lb"] = "v * 4.5359237 < 10 ! kg ! t", ["e3ozt"] = "v * 0.311034768 < 10 ! kg ! t", ["e3t"] = "LT ST", ["e6carat"] = "t", ["e6lb"] = "v * 4.5359237 < 10 ! t ! kilotonne", ["e6ozt"] = "lb kg", ["e6ST"] = "Mt", ["e6t"] = "LT ST", ["e9lb"] = "v * 4.5359237 < 10 ! kilotonne ! Mt", ["e9t"] = "LT ST", ["Gg"] = "lb", ["kg"] = "lb", ["mg"] = "gr", ["Mg"] = "LT ST", ["ng"] = "gr", ["µg"] = "gr", ["mBq"] = "fCi", ["kBq"] = "nCi", ["MBq"] = "µCi", ["GBq"] = "mCi", ["TBq"] = "Ci", ["PBq"] = "kCi", ["EBq"] = "kCi", ["fCi"] = "mBq", ["pCi"] = "Bq", ["nCi"] = "Bq", ["µCi"] = "kBq", ["mCi"] = "MBq", ["kCi"] = "TBq", ["MCi"] = "PBq", ["ns"] = "µs", ["µs"] = "ms", ["ms"] = "s", ["ks"] = "h", ["Ms"] = "week", ["Gs"] = "decade", ["Ts"] = "millennium", ["Ps"] = "million year", ["Es"] = "thousand million year", ["cL"] = "impoz usoz", ["cl"] = "impoz usoz", ["cm<sup>3</sup>"] = "cuin", ["dL"] = "impoz usoz", ["dl"] = "impoz usoz", ["dm<sup>3</sup>"] = "cuin", ["e12cuft"] = "v * 2.8316846592 < 100 ! e9 ! e12 ! m3", ["e12impgal"] = "v * 4.54609 < 1000 ! T ! P ! l", ["e12m3"] = "v < 28.316846592 ! T ! P ! cuft", ["e12U.S.gal"] = "v * 3.785411784 < 1000 ! T ! P ! l", ["e12USgal"] = "v * 3.785411784 < 1000 ! T ! P ! l", ["e15cuft"] = "v * 2.8316846592 < 100 ! e12 ! e15 ! m3", ["e15m3"] = "Pcuft", ["e3bdft"] = "v * 0.23597372167 < 100 ! e3 ! e6 ! m3", ["e3cuft"] = "v * 2.8316846592 < 100 ! ! e3 ! m3", ["e3impgal"] = "v * 4.54609 < 1000 ! k ! M ! l", ["e3m3"] = "v < 28.316846592 ! k ! M ! cuft", ["e3U.S.gal"] = "v * 3.785411784 < 1000 ! k ! M ! l", ["e3USgal"] = "v * 3.785411784 < 1000 ! k ! M ! l", ["e6bdft"] = "v * 0.23597372167 < 100 ! e3 ! e6 ! m3", ["e6cuft"] = "v * 2.8316846592 < 100 ! e3 ! e6 ! m3", ["e6cuyd"] = "v * 7.64554857984 < 10 ! e3 ! e6 ! m3", ["e6impgal"] = "v * 4.54609 < 1000 ! M ! G ! l", ["e6L"] = "USgal", ["e6m3"] = "v < 28.316846592 ! M ! G ! cuft", ["e6U.S.gal"] = "v * 3.785411784 < 1000 ! M ! G ! l", ["e6USgal"] = "v * 3.785411784 < 1000 ! M ! G ! l", ["e9bdft"] = "v * 0.23597372167 < 100 ! e6 ! e9 ! m3", ["e9cuft"] = "v * 2.8316846592 < 100 ! e6 ! e9 ! m3", ["e9impgal"] = "v * 4.54609 < 1000 ! G ! T ! l", ["e9m3"] = "v < 28.316846592 ! G ! T ! cuft", ["e9U.S.gal"] = "v * 3.785411784 < 1000 ! G ! T ! l", ["e9USgal"] = "v * 3.785411784 < 1000 ! G ! T ! l", ["GL"] = "cuft", ["Gl"] = "cuft", ["kL"] = "cuft", ["kl"] = "cuft", ["km<sup>3</sup>"] = "cumi", ["mL"] = "impoz usoz", ["ml"] = "impoz usoz", ["Ml"] = "v < 28.316846592 ! e3 ! e6 ! cuft", ["ML"] = "v < 28.316846592 ! e3 ! e6 ! cuft", ["TL"] = "cumi", ["Tl"] = "cumi", ["µL"] = "cuin", ["µl"] = "cuin", } --------------------------------------------------------------------------- -- Do not change the data in this table because it is created by running -- -- a script that reads the wikitext from a wiki page (see note above). -- --------------------------------------------------------------------------- local link_exceptions = { -- Prefixed units with a linked article different from that of the base unit. -- Each key item is a prefixed symbol (not unitcode). ["mm<sup>2</sup>"] ="ملی میٖٹَر مُرَبَع", ["cm<sup>2</sup>"] ="سؠنٹی میٖٹَر مُرَبَع", ["dm<sup>2</sup>"] ="ڈیسی‌میٖٹَر مُرَبَع", ["km<sup>2</sup>"] ="کِلومیٖٹَر مُرَبَع", ["kJ"] ="کِلوژول", ["MJ"] ="میگاژول", ["fm"] ="فمتومیٖٹَر", ["pm"] ="پیکومیٖٹَر", ["nm"] ="نانومیٖٹَر", ["µm"] ="میکرومیٖٹَر", ["mm"] ="میٖلی میٖٹَر", ["cm"] ="سؠنٹی میٖٹَر", ["dm"] ="ڈیسی میٖٹَر", ["dam"] ="ڈیسی‌میٖٹَر", ["hm"] ="هکتامیٖٹَر", ["km"] ="کِلومیٖٹَر", ["Mm"] ="میگامیٖٹَر", ["Gm"] ="گیگامیٖٹَر", ["Tm"] ="ترامیٖٹَر", ["Pm"] ="پتامیٖٹَر", ["Em"] ="اگزامیٖٹَر", ["Zm"] ="زتامیٖٹَر", ["Ym"] ="یوتامیٖٹَر", ["µg"] ="میکروگرٛام", ["mg"] ="ملی گرٛام", ["kg"] ="کِلوگرٛام", ["Mg"] ="ٹن", ["yW"] ="یوکتاواٹ", ["zW"] ="زپتاواٹ", ["aW"] ="آتاواٹ", ["fW"] ="فمتوواٹ", ["pW"] ="پیکوواٹ", ["nW"] ="نانوواٹ", ["µW"] ="میکروواٹ", ["mW"] ="ملیواٹ", ["kW"] ="کِلوواٹ", ["MW"] ="میگاواٹ", ["GW"] ="گیگاواٹ", ["TW"] ="تراواٹ", ["PW"] ="پتاواٹ", ["EW"] ="اگزاواٹ", ["ZW"] ="زتاواٹ", ["YW"] ="یوتاواٹ", ["as"] ="آتوسؠکَنٛڈ", ["fs"] ="فمتوسؠکَنٛڈ", ["ps"] ="پیکو سؠکَنٛڈ", ["ns"] ="نانو سؠکَنٛڈ", ["µs"] ="میکروسؠکَنٛڈ", ["ms"] ="ملیسؠکَنٛڈ", ["ks"] ="کِلوسؠکَنٛڈ", ["Ms"] ="میگاسؠکَنٛڈ", ["Gs"] ="گیگاسؠکَنٛڈ", ["Ts"] ="تراسؠکَنٛڈ", ["Ps"] ="پتاسؠکَنٛڈ", ["Es"] ="اگزاسؠکَنٛڈ", ["Zs"] ="زتاسؠکَنٛڈ", ["Ys"] ="یوتاسؠکَنٛڈ", ["cm<sup>3</sup>"] ="سؠنٹی مکعب میٖٹَر", ["dm<sup>3</sup>"] ="ڈیسی مکعب میٖٹَر", ["dam<sup>3</sup>"] ="ده مکعب میٖٹَر", ["km<sup>3</sup>"] ="کِلومکعب میٖٹَر", ["µL"] ="میکرولیٖٹَر", ["µl"] ="میکرولیٖٹَر", ["mL"] ="ملی لیٖٹَر", ["ml"] ="ملی لیٖٹَر", ["cL"] ="سؠنٹی لیٖٹَر", ["cl"] ="سؠنٹی لیٖٹَر", ["dL"] ="ڈیسی‌لیٖٹَر", ["dl"] ="ڈیسی‌لیٖٹَر", ["daL"] ="دکالیٖٹَر", ["dal"] ="دکالیٖٹَر", ["hL"] ="هکتالیٖٹَر", ["hl"] ="هکتالیٖٹَر", ["kL"] ="کِلولیٖٹَر", ["kl"] ="کِلولیٖٹَر", ["ML"] ="میگالیٖٹَر", ["Ml"] ="میگالیٖٹَر", ["GL"] ="گیگالیٖٹَر", ["Gl"] ="گیگالیٖٹَر", ["TL"] ="ترالیٖٹَر", ["Tl"] ="ترالیٖٹَر", ["PL"] ="پتالیٖٹَر", ["Pl"] ="پتالیٖٹَر", } --------------------------------------------------------------------------- -- Do not change the data in this table because it is created by running -- -- a script that reads the wikitext from a wiki page (see note above). -- --------------------------------------------------------------------------- local per_unit_fixups = { -- Automatically created per units of form "x/y" may have their unit type -- changed, for example, "length/time" is changed to "speed". -- Other adjustments can also be specified. ["/area"] = "per unit area", ["/volume"] = "per unit volume", ["area/area"] = "area per unit area", ["energy/length"] = "energy per unit length", ["energy/mass"] = "energy per unit mass", ["energy/time"] = { utype = "power", link = "Power (physics)" }, ["energy/volume"] = "energy per unit volume", ["force/area"] = { utype = "pressure", link = "Pressure" }, ["length/length"] = { utype = "gradient", link = "Grade (slope)" }, ["length/time"] = { utype = "speed", link = "Speed" }, ["length/time/time"] = { utype = "acceleration", link = "Acceleration" }, ["mass/area"] = { utype = "pressure", multiplier = 9.80665 }, ["mass/length"] = "linear density", ["mass/mass"] = "concentration", ["mass/power"] = "mass per unit power", ["mass/time"] = "mass per unit time", ["mass/volume"] = { utype = "density", link = "Density" }, ["power/mass"] = "power per unit mass", ["power/volume"] = { link = "Power density" }, ["pressure/length"] = "fracture gradient", ["speed/time"] = { utype = "acceleration", link = "Acceleration" }, ["volume/area"] = "volume per unit area", ["volume/length"] = "volume per unit length", ["volume/time"] = "flow", } return { all_units = all_units, default_exceptions = default_exceptions, link_exceptions = link_exceptions, per_unit_fixups = per_unit_fixups, } 4fqaeykgmwutyr2vy27zy86r3g15vlb بَین الاقوٲمی معیار کِتاب نَمبَر 0 9414 150709 84049 2026-08-28T18:41:27Z آیات محراج 11062 /* */ 150709 wikitext text/x-wiki {{مولوٗماتھ}} '''بَین الاقوٲمی معیار کِتاب نَمبَر''' چھُ اَکھ نَمبَر یُس [[کِتاب|کِتابَن]] چھُ دِنہٕ یِوان یِم سٟتؠ یِم آسٲنی سان لَبنہٕ چھِ یِوان۔ یہِ چھُ ایکہ کِتاب ہُنٛد پَتا آسا۔ نٲشِر چھِ بین الاقوٲمی اَے ایس بی این ایجنسی کِس أکِس ملحقہ ادارٕ نِش آٮٔی ایس بی این ہؠوان یا رٹان۔ <ref>{{ویب حَوالہٕ|title=The International ISBN Agency {{!}} International ISBN Agency|url=https://www.isbn-international.org/|access-date=2023-12-03|website=www.isbn-international.org}}</ref> اَے ایس بی این چھُ دَہ ہندسہٕ زیوٹھ اگر 2007 برٛونٛہہ تفویض کرنہٕ یِیہِ، تہٕ ترٛواہ ہندسہٕ چھِ زیوٗٹھ اگر 1 جَنؤری 2007 یا امہِ پتہٕ تفویض کرنہٕ یِیہِ۔ {{نامُکَمَل مَضموٗن}} == حَوالہٕ== {{حَوالہٕ}} [[زٲژ:شِناخَتھ نَمبَر]] dsh60e0v1k8p2z0dn0y9khc3komk8pe فرما:Table of MRI sequences 10 12395 150674 59788 2026-08-28T15:16:54Z EmausBot 1793 Fixing double redirect from [[فرما:ایم آر آی سیوکینٕس ڈَبہٕ]] to [[فرما:ایم آر اَے سیوکینٕس ڈَبہٕ]] 150674 wikitext text/x-wiki #REDIRECT [[فرما:ایم آر اَے سیوکینٕس ڈَبہٕ]] c35ejhhdwk27v16y4c6hllimdncf76d وِکیٖپیٖڈیا:رُکُن فِہرِست اؠڈِٹ تَعداد مُطٲبِق 4 14505 150691 150632 2026-08-28T18:00:53Z Nadeemulhaqmir-bot 9480 Updated List of Wikipedians 150691 wikitext text/x-wiki == List of Wikipedians by number of edits == <div style="direction:ltr"> {| class="wikitable" |- style="white-space:nowrap;" ! No. ! User ! Edit count |- | 1 | [[User: آیات محراج | آیات محراج]] | [[Special:Contributions/آیات محراج|36564]] |- | 2 | <small><sub><span style="color:grey;"> </span></sub></small>[[User:511KeV|<span style="font-family:sans-serif; color:#FF1100; text-shadow:.2em .2em .4em #AfAfB1;">'''511KeV'''</span>]] [[User_talk:511KeV|<sup> '' (کتھ باتھ)''</sup>]] | [[Special:Contributions/511KeV|21544]] |- | 3 | [[User:Nadeemulhaqmir-bot|<span style="font-weight: 700; font-family: cursive;color: #41bf14;text-shadow: -1px 1px 0px #030318;">Mir-Bot</span>🍁]][[User_talk:Nadeemulhaqmir-bot|<sup>Talk</sup>]] | [[Special:Contributions/Nadeemulhaqmir-bot|14406]] |- | 4 | [[User: Uhaas bot | Uhaas bot]] | [[Special:Contributions/Uhaas bot|11723]] |- | 5 | [[User: SakuraBot | SakuraBot]] | [[Special:Contributions/SakuraBot|3572]] |- | 6 | [[User: SieBot | SieBot]] | [[Special:Contributions/SieBot|2432]] |- | 7 | [[User: Xqbot | Xqbot]] | [[Special:Contributions/Xqbot|2374]] |- | 8 | [[User: Humzah Rouf Phumboo | Humzah Rouf Phumboo]] | [[Special:Contributions/Humzah Rouf Phumboo|2268]] |- | 9 | [[User: Koshur | Koshur]] | [[Special:Contributions/Koshur|2227]] |- | 10 | —[[User:InternetArchiveBot|'''<span style="color:darkgrey;font-family:Courier New">InternetArchiveBot</span>''']] <span style="color:green;font-family:Rockwell">([[:en:User talk:InternetArchiveBot|Report bug]])</span> | [[Special:Contributions/InternetArchiveBot|1840]] |- |} </div> qvpz9lrdwyx87mt5ct5h4d55g9wq4yg ترکِچ زبان 0 19376 150707 122583 2026-08-28T18:38:02Z آیات محراج 11062 /* لکھأرؠ نظام */ 150707 wikitext text/x-wiki {{infobox language/Wikidata | familycolor = Altaic | fam1 = [[تُرکِک زَبانہٕ|ترکِک]] | fam2 = عام تُرکِک | fam3 = اوغز | fam4 = مغربی }} تُرکی (Türkçe: [ˈtyɾctʃe] i، Türq dili′) یا Türkiye Türckçesi 'ترکیہ' چھ سارِوٕے کھۄتہٕ زیٛادٕ بولنہٕ ینہٕ واجنیٚن ترکِچ زبانٕ مَنٛز اَکھ یُس عام طور تُرکی مَنٛز بولنہٕ چھُ یِوان۔<ref>{{کِتاب حَوالہٕ|last=Balci|first=Bayram|url=https://books.google.com/books?id=6fpyDwAAQBAJ|title=Islam in Central Asia and the Caucasus Since the Fall of the Soviet Union|publisher=Oxford University Press|year=2018|isbn=978-0-19-005030-6|page=36|language=en}}</ref> ==لکھأرؠ نظام== 1928 مَنٛز، جمہوریہ ترکی کس ابتدٲئی وٕریَن مَنٛز اتاترکچ اصلاحات مَنٛز اَکھ پٲنٹھ، فارسی عربی رسم الخطس script پؠٹھ مبنی عثمانی ترکی حروف تہجی آے لاطینی رسم الخط مَنٛز مبنی ترک حروف تہزیfrom perso Arabic script to Latin script سٟتؠ تبدیٖل کرنہٕ۔ == حَوالہٕ == [[زٲژ:زَبان]] bhkt4s4arvhn654v113f6hldpvuowzm سُلیمان 0 19904 150689 150636 2026-08-28T18:00:40Z Nadeemulhaqmir-bot 9480 باٹ چھُ غَلطی ٹھیٖکھ کَران [[وِکیٖپیٖڈیا:AutoWikiBrowser/Typos|غَلطی فِہرِست مُطٲبِق]] 150689 wikitext text/x-wiki {{Infobox royalty/Wikidata|birth_date=11ہِم–10ہِم صٔدی [[م.ب]]|death_date=«»}} سُلیمان چھُ ابراہیمی مذہبن ہنٛز اَکھ شخصیت۔ سُہٕ اوس [[اِسرٲیل|اسرائیلُک]] بادشاہ، بادشاہ داوود سُنٛد نیچُو۔ تٔمؠ سٕنٛدِس ناوُک مطلب چھُ "امن"۔ سُوٛ چھُ [[قُرآن|قرآن]]، بایبل (2 سیموییٖل) تہٕ باقی صحیٖفن مَنٛز لیکھنہٕ آمُت۔ وننہٕ چھُ یوان زِ سُہٕ چھُ پرانہٕ عہد نامہٕ کیٚن واریاہن کتابن ہنٛد مُصنِف۔ تیٚم لیٚچھ کلیسیسٹیس، سانگ آف سانگ تہٕ زیادٕہ تر محاورہٕ۔ سُہ چھُ گۄڈنیُک مندر بناونہٕ خٲطرٕ مشہوٗر، واریاہ دانٲیی آسنہٕ خٲطرٕ، واریاہ امیٖر آسنہٕ تہٕ واریاہ زنانہٕ آسنہٕ خٲطرٕ۔ أمہِ سٕنٛزن خانٛدارِنیٚن ہِنٛدِ وجہ سٟتہِ گٔیہِ أمہِ سٕنٛزِ بادشٲہی أمہِ سٕنٛدِ مرنہٕ تقسیٖم پتہٕ تٔمؠ سٕنٛزٕ زنانہٕ ٲس دیوتاہن ہٕنٛدیٚن بُتن ہٕنٛز پوٗزا کران تِکیازِ تمن مَنٛز ٲسؠ نہٕ واریاہ یہودی نسبٕکؠ کینٚہہ۔ == حَوالہٕ == {{حَوالہٕ وَرٲے}} h9d8y5u0frzl4r01xtaiv1dd3wfx9ow زینون گیس ایم آر اَے 0 20795 150704 100096 2026-08-28T18:36:47Z آیات محراج 11062 [[زینون گیس ایم آر آئی]] صَفہٕ آو پَکناونہٕ [[زینون گیس ایم آر اَے]] جاے، پَکناوَن وول صٲرف آیات محراج : ئ isn't used in kashmiri orthography 100096 wikitext text/x-wiki ہائپر پولرائزڈ 129Xe گیس میگنیٹک ریزوننس امیجنگ (MRI) چھِ اَکھ طبی امیجنگ تکنیک یُس جسمٲنی علاقن ہٕنٛز اناٹومی تہٕ فزیالوجی ہنٛد تصور کرنہٕ خٲطرٕ اِستِمال گژھان چھُ یِمَن معیٲری پروٹون ایم آر آی سٟتؠ امیج کرُن مشکل چھُ۔ خاص طور پٲٹھؠ، شوشس، یَتھ مَنٛز پروٹانن ہنٛز کٲفی کثافت چھِ نہٕ، خاص طور پٲنٹھ 129Xe گیس MRI سٟتؠ تصور کرنہٕ خٲطرٕ مفید۔ اَتھ تکنیکہِ مَنٛز چھُ شِششہٕ ہٕنٛزن دٲیمی بیماریٚن خٲطرٕ ابتدٲئی پتہ لگاونٕچ ٹیکنالوجی تہٕ تحلیل گیسن پیٚٹھ انحصار کرن وٲلؠ عملہٕ تہٕ ڈانٛچہٕ خٲطرٕ امیجنگ تکنیک کس طورس پیٚٹھ وعدٕ.<ref name=":1">{{cite journal|vauthors=Rao MR, Stewart NJ, Griffiths PD, Norquay G, Wild JM|date=February 2018|title=Imaging Human Brain Perfusion with Inhaled Hyperpolarized <sup>129</sup>Xe MR Imaging|journal=Radiology|volume=286|issue=2|pages=659–665|doi=10.1148/radiol.2017162881|pmid=28858563|doi-access=free}}</ref><ref name=":0">{{cite journal|vauthors=Roos JE, McAdams HP, Kaushik SS, Driehuys B|date=May 2015|title=Hyperpolarized Gas MR Imaging: Technique and Applications|journal=Magnetic Resonance Imaging Clinics of North America|volume=23|issue=2|pages=217–229|doi=10.1016/j.mric.2015.01.003|pmc=4428591|pmid=25952516}}</ref> 129Xe چھُ زینونُک اَکھ مستحکم، قدرتی طورس پؠٹھ واقع گژھن وول آیسوٹوپ یَتھ مَنٛز 26.44٪ آیسوٹوپ کثرت چھِ۔ یہٕ چھُ 131Xe سٟتؠ دۄیو Xe آئسوٹوپو مَنٛز اَکھ، یَتھ مَنٛز غٲر صفر سپن چھُ، یُس میگنیٹک ریزوننسک اجازت چھُ دیوان۔ 129Xe چھُ ایم آر آی خٲطرٕ اِستِمال گژھان تکیازِ امک بوٚڑ الیکٹران کلاؤڈ چھُ ہائپر پولرائزیشن تہٕ کیمیائی تبدیلین ہنٛز اَکھ وسیع رینجچ اجازت دیوان۔ ہائپر پولرائزیشن چھِ اَکھ بٔڑ سگنل شدت پٲدٕ کران، تہٕ کیمیائی تبدیلین ہنٛز وسیع رینج چھِ یہٕ شناخت کرنک اجازت دیوان زِ 129Xe چھُ ہیموگلوبن ہیوین مالیکیولزن سٟتؠ وابستہٕ۔ 29Xe چھُ ایم آر آی خٲطرٕہ 131Xe کھوتہٕ ترجیح دِنہٕ یوان کیازکہِ 129Xe چھُ سپن 1/2 (131Xe خٲطرٕہ 3/2 کہِ مقابلس مَنٛز)، اَکھ زیوٹھ T1، تہٕ 3.4 گنا بڑ جائرومیگنیٹک ریشو (11.78 MHz/T).<ref>{{cite journal|vauthors=Oros AM, Shah NJ|date=October 2004|title=Hyperpolarized xenon in NMR and MRI|url=http://juser.fz-juelich.de/record/40261/files/53606.pdf|url-status=live|journal=Physics in Medicine and Biology|volume=49|issue=20|pages=R105–R153|doi=10.1088/0031-9155/49/20/r01|pmid=15566166|archive-url=https://web.archive.org/web/20221227080225/https://juser.fz-juelich.de/record/40261/files/53606.pdf|archive-date=27 December 2022|access-date=27 December 2022|s2cid=250857751}}</ref> mxz2c841f8dkpmd8pj5wis2byi054c9 150706 150704 2026-08-28T18:37:13Z آیات محراج 11062 /* */ 150706 wikitext text/x-wiki ہائپر پولرائزڈ 129Xe گیس میگنیٹک ریزوننس امیجنگ (MRI) چھِ اَکھ طبی امیجنگ تکنیٖک یُس جسمٲنی علاقن ہٕنٛز اناٹومی تہٕ فزیالوجی ہنٛد تصور کرنہٕ خٲطرٕ اِستِمال گژھان چھُ یِمَن معیٲری پروٹون ایم آر آی سٟتؠ امیج کرُن مشکل چھُ۔ خاص طور پٲٹھؠ، شوشس، یَتھ مَنٛز پروٹانن ہنٛز کٲفی کثافت چھِ نہٕ، خاص طور پٲنٹھ 129Xe گیس MRI سٟتؠ تصور کرنہٕ خٲطرٕ مفید۔ اَتھ تکنیکہِ مَنٛز چھُ شِششہٕ ہٕنٛزن دٲیمی بیماریٚن خٲطرٕ ابتدٲئی پتہ لگاونٕچ ٹیکنالوجی تہٕ تحلیل گیسن پیٚٹھ انحصار کرن وٲلؠ عملہٕ تہٕ ڈانٛچہٕ خٲطرٕ امیجنگ تکنیک کس طورس پیٚٹھ وعدٕ.<ref name=":1">{{cite journal|vauthors=Rao MR, Stewart NJ, Griffiths PD, Norquay G, Wild JM|date=February 2018|title=Imaging Human Brain Perfusion with Inhaled Hyperpolarized <sup>129</sup>Xe MR Imaging|journal=Radiology|volume=286|issue=2|pages=659–665|doi=10.1148/radiol.2017162881|pmid=28858563|doi-access=free}}</ref><ref name=":0">{{cite journal|vauthors=Roos JE, McAdams HP, Kaushik SS, Driehuys B|date=May 2015|title=Hyperpolarized Gas MR Imaging: Technique and Applications|journal=Magnetic Resonance Imaging Clinics of North America|volume=23|issue=2|pages=217–229|doi=10.1016/j.mric.2015.01.003|pmc=4428591|pmid=25952516}}</ref> 129Xe چھُ زینونُک اَکھ مستحکم، قدرتی طورس پؠٹھ واقع گژھن وول آیسوٹوپ یَتھ مَنٛز 26.44٪ آیسوٹوپ کثرت چھِ۔ یہٕ چھُ 131Xe سٟتؠ دۄیو Xe آئسوٹوپو مَنٛز اَکھ، یَتھ مَنٛز غٲر صفر سپن چھُ، یُس میگنیٹک ریزوننسک اجازت چھُ دیوان۔ 129Xe چھُ ایم آر آی خٲطرٕ اِستِمال گژھان تکیازِ امک بوٚڑ الیکٹران کلاؤڈ چھُ ہائپر پولرائزیشن تہٕ کیمیائی تبدیلین ہنٛز اَکھ وسیع رینجچ اجازت دیوان۔ ہائپر پولرائزیشن چھِ اَکھ بٔڑ سگنل شدت پٲدٕ کران، تہٕ کیمیائی تبدیلین ہنٛز وسیع رینج چھِ یہٕ شناخت کرنک اجازت دیوان زِ 129Xe چھُ ہیموگلوبن ہیوین مالیکیولزن سٟتؠ وابستہٕ۔ 29Xe چھُ ایم آر آی خٲطرٕہ 131Xe کھوتہٕ ترجیح دِنہٕ یوان کیازکہِ 129Xe چھُ سپن 1/2 (131Xe خٲطرٕہ 3/2 کہِ مقابلس مَنٛز)، اَکھ زیوٹھ T1، تہٕ 3.4 گنا بڑ جائرومیگنیٹک ریشو (11.78 MHz/T).<ref>{{cite journal|vauthors=Oros AM, Shah NJ|date=October 2004|title=Hyperpolarized xenon in NMR and MRI|url=http://juser.fz-juelich.de/record/40261/files/53606.pdf|url-status=live|journal=Physics in Medicine and Biology|volume=49|issue=20|pages=R105–R153|doi=10.1088/0031-9155/49/20/r01|pmid=15566166|archive-url=https://web.archive.org/web/20221227080225/https://juser.fz-juelich.de/record/40261/files/53606.pdf|archive-date=27 December 2022|access-date=27 December 2022|s2cid=250857751}}</ref> ce1z9q6q43ysdeibubykwlvh4pq8ffj Chinese (China) 0 20895 150670 100616 2026-08-28T15:16:14Z EmausBot 1793 Fixing double redirect from [[چیٖنی زبان]] to [[چیٖنی زَبان]] 150670 wikitext text/x-wiki #REDIRECT [[چیٖنی زَبان]] jzqzhe78vr11u2q0khfhsji77kswvlv ایورمیکٹن 0 21227 150725 110083 2026-08-29T09:41:54Z آیات محراج 11062 /* */ temp changed to wikidata 150725 wikitext text/x-wiki {{Infobox drug/Wikidata}} '''ایورمیکٹن''' چھُ اَکھ دَوا یُس واریاہن قسمن ہٕنٛدؠ پیراسایٹ انفیکشنَن عیلاج کرنہٕ خٲطرٕ اِستِمال گژھان چھُ۔<ref name="AHFS2016">{{ویب حَوالہٕ|title=Ivermectin|url=https://www.drugs.com/monograph/ivermectin.html|publisher=The American Society of Health-System Pharmacists|access-date=16 January 2016|url-status=live|archive-url=https://web.archive.org/web/20160103191914/http://www.drugs.com/monograph/ivermectin.html|archive-date=January 3, 2016}}</ref> اَتھ مَنٛز چھ کَلچہ زوو، کھجلی، دریٲئی اندٕ پن (اونکوسرسیسس) ، سٹرانگائیلوڈیاسس، ٹرائکوریاسس، ایسکیریاسس تہٕ لیمفاٹک فلیریاسس شٲمل۔<ref name="AHFS2016" /><ref>{{کِتاب حَوالہٕ|last=Sneader|first=Walter|title=Drug Discovery a History.|date=2005|publisher=John Wiley & Sons|location=Chichester|isbn=978-0-470-01552-0|page=333|url=https://books.google.com/books?id=jglFsz5EJR8C&pg=PA333|access-date=April 5, 2020|archive-date=June 15, 2020|archive-url=https://web.archive.org/web/20200615002423/https://books.google.com/books?id=jglFsz5EJR8C&pg=PA333|url-status=live}}</ref><ref name="Sau2015">{{کِتاب حَوالہٕ|title=Saunders Handbook of Veterinary Drugs: Small and Large Animal|date=2015|publisher=Elsevier Health Sciences|isbn=978-0-323-24486-2|page=420|edition=4|url=https://books.google.com/books?id=SJvmCgAAQBAJ&pg=PA420|url-status=live|archive-url=https://web.archive.org/web/20160131142826/https://books.google.com/books?id=SJvmCgAAQBAJ&pg=PA420|archive-date=January 31, 2016|df=mdy-all}}</ref><ref>{{ویب حَوالہٕ|last=CDC-Centers for Disease Control and Prevention|title=Ascariasis - Resources for Health Professionals|url=https://www.cdc.gov/parasites/ascariasis/health_professionals/index.html|website=www.cdc.gov|access-date=28 December 2019|language=en-us|date=23 August 2019|archive-date=November 21, 2010|archive-url=https://web.archive.org/web/20101121144213/http://www.cdc.gov/parasites/ascariasis/health_professionals/index.html|url-status=live}}</ref> یہِ ہیٚکو ٲس ذٔریعہٕ نتھ یا نیبرم انفیکشن خٲطرٕ چھ ژمہ پیٚٹھ لگٲوِتھ۔<ref name="AHFS2016" /><ref>{{Cite journal|vauthors=Panahi Y, Poursaleh Z, Goldust M|url=https://www.annals-parasitology.eu/go.live.php/download_default/D660/2015-61-1_11.pdf|title=The efficacy of topical and oral ivermectin in the treatment of human scabies|journal=Annals of Parasitology|volume=61|issue=1|pages=11–16|date=2015|pmid=25911032|access-date=April 4, 2020|archive-date=April 4, 2020|archive-url=https://web.archive.org/web/20200404213228/https://www.annals-parasitology.eu/go.live.php/download_default/D660/2015-61-1_11.pdf|url-status=live}} {{Webarchive|url=https://web.archive.org/web/20200404213228/https://www.annals-parasitology.eu/go.live.php/download_default/D660/2015-61-1_11.pdf |date=April 4, 2020 }}</ref> یہِ گژھِ نہٕ أچھ مَنٛز اِستِمال کرنہٕ یُن۔<ref name="AHFS2016" /> عام ضمنی اثراتس مَنٛز چھ وۄزٕج أچھ، ہوکھ جلد، تہٕ ژھم دزُن شٲمل۔<ref name="AHFS2016" /> یہِ چھنہٕ واضح ز یہِ چھا [[حَمَل|حملس]] دوران اِستِمال کرنہٕ خٲطرٕ مۄحفوٗظ، مگر ممکنہٕ طور چھ دودھ چیناونس دوران اِستِمال کرنہٕ یوان۔<ref>{{ویب حَوالہٕ|title=Ivermectin Levels and Effects while Breastfeeding|url=https://www.drugs.com/breastfeeding/ivermectin.html|website=Drugs.com|access-date=January 16, 2016|url-status=live|archive-url=https://web.archive.org/web/20160101113118/http://www.drugs.com/breastfeeding/ivermectin.html|archive-date=January 1, 2016}}</ref> یہِ چھُ ادویاتن ہندس ٔورمیکٹن خاندانس سٟتؠ تعلق تھاوان۔<ref name="AHFS2016" /> یہِ چھُ پیراسایٹ سیل میمبرین پارگمیتا مَنٛز اضافہٕ کرنُک سبب بنتھ کٲم کران، یمہٕ کس نتیجس مَنٛز فالج تہٕ موت چھ گژھان۔<ref name="AHFS2016" /> '''ایورمیکٹن''' اوس 1975 مَنٛز دریافت آمُت کرنہٕ تہٕ 1981 مَنٛز آو طبی استعمالس مَنٛز اننہٕ۔<ref name="Meh2008">{{کِتاب حَوالہٕ|last=Mehlhorn|first=Heinz|title=Encyclopedia of parasitology|date=2008|publisher=Springer|location=Berlin|isbn=978-3-540-48994-8|page=646|edition=3rd|url=https://books.google.com/books?id=Jpg1ysgVn-AC&pg=PA646|url-status=live|archive-url=https://web.archive.org/web/20160131155507/https://books.google.com/books?id=Jpg1ysgVn-AC&pg=PA646|archive-date=January 31, 2016|df=mdy-all}}</ref><ref>{{کِتاب حَوالہٕ|veditors=Vercruysse J, Rew RS|title=Macrocyclic lactones in antiparasitic therapy|date=2002|publisher=CABI Pub.|location=Oxon, UK|isbn=978-0-85199-840-4|page=Preface|url=https://books.google.com/books?id=QXafQ91O74wC&pg=PR13|url-status=live|archive-url=https://web.archive.org/web/20160131121128/https://books.google.com/books?id=QXafQ91O74wC&pg=PR13|archive-date=January 31, 2016|df=mdy-all}}</ref> یہِ چھُ ورلڈ ہیلتھ آرگنائزیشنس (ڈبلیو ایچ او) ضۆروٗری ادویاتک فہرستس مَنٛز شٲمل۔<ref name="WHO21st">{{کِتاب حَوالہٕ|vauthors=((World Health Organization))|title=World Health Organization model list of essential medicines: 21st list 2019|year=2019|hdl=10665/325771|author-link=World Health Organization|publisher=World Health Organization|location=Geneva|id=WHO/MVP/EMP/IAU/2019.06. License: CC BY-NC-SA 3.0 IGO|hdl-access=free}}</ref> ترقی پذیر دنیا مَنٛز چھُ ٹیبلٹن ہنٛد تھوک خرچہٕ علاج کس کورس خٲطرٕ تقریٖنَن 0.12 امریکی ڈالر۔<ref name="MSH2014">{{ویب حَوالہٕ|title=Ivermectin|url=https://www.msh.org/resources/international-medical-products-price-guide?DMFId=1376&searchYear=2014|website=International Medical Products Price Guide|access-date=April 6, 2020|archive-date=April 5, 2020|archive-url=https://web.archive.org/web/20200405120943/https://www.msh.org/resources/international-medical-products-price-guide?DMFId=1376&searchYear=2014|url-status=live}}</ref> ریاستہائے متحدس مَنٛز، چھ لاگت 50 امریکی ڈالر کھوتہٕ کم تہٕ کاؤنٹرس پؠٹھ چھُ دستیاب۔<ref>{{ویب حَوالہٕ|last=Commissioner|first=Office of the|title=FDA Approves Lotion for Nonprescription Use to Treat Head Lice|url=https://www.fda.gov/news-events/press-announcements/fda-approves-lotion-nonprescription-use-treat-head-lice|website=FDA|access-date=30 October 2020|language=en|date=27 October 2020|archive-date=October 29, 2020|archive-url=https://web.archive.org/web/20201029112911/https://www.fda.gov/news-events/press-announcements/fda-approves-lotion-nonprescription-use-treat-head-lice|url-status=live}}</ref><ref>{{ویب حَوالہٕ|title=NADAC as of 2019-09-25 {{!}} Data.Medicaid.gov|url=https://data.medicaid.gov/Drug-Pricing-and-Payment/NADAC-as-of-2019-09-25/s3gx-n3zd|website=Centers for Medicare and Medicaid Services|access-date=26 September 2019|language=en|archive-date=September 26, 2019|archive-url=https://web.archive.org/web/20190926230738/https://data.medicaid.gov/Drug-Pricing-and-Payment/NADAC-as-of-2019-09-25/s3gx-n3zd|url-status=dead}} {{Webarchive|url=https://web.archive.org/web/20190926230738/https://data.medicaid.gov/Drug-Pricing-and-Payment/NADAC-as-of-2019-09-25/s3gx-n3zd |date=2019-09-26 }}</ref> باقین جانورن مَنٛز، چھُ یہِ باقین اشارن سٟتؠ سٟتؠ دلٕک کیٚمؠ تہٕ اکریاسس روکاونس تہٕ عیلاج کرنہٕ خٲطرٕ اِستِمال یوان کرنہٕ۔<ref name="Sau2015" /> == حَوالہٕ == <references /> [[Category:Translated from MDWiki]] hagzpxr413iaut13yh6ti72g4hjax62 فرما:Infobox currency 10 22628 150708 141155 2026-08-28T18:39:45Z آیات محراج 11062 150708 wikitext text/x-wiki {{infobox | title = {{if empty|{{{name|}}}|{{{currency_name|}}}|{{PAGENAMEBASE}}}} | above ={{if empty |1={{{currency_name_in_local|}}} |2={{{local_name_format|}}}<!-- 1, 2: Use local name (could be preformatted) --> |3={{if both|1={{{local_name_lang|}}}{{{local_name_lang1|}}}|2={{{local_name|}}}{{{local_name1|}}}<!-- (test to reduce t-exec; misses tag2+) -->|3={{Native name list<!-- -->|tag1={{if empty|1={{{local_name_lang1|}}}|2={{{local_name_lang|}}}}} |name1={{if empty|1={{{local_name1|}}}|2={{{local_name|}}}}} |italics1=off |parensize1=small |paren1={{#if:{{{postfix|}}}{{{postfix1|}}}|omit}} |postfix1=&#x20;{{if empty|1={{{postfix1|}}}|2={{{postfix|}}}}}<!-- -->|tag2={{{local_name_lang2|}}} |name2={{{local_name2|}}} |italics2=off |parensize2=small<!-- -->|tag3={{{local_name_lang3|}}} |name3={{{local_name3|}}} |italics3=off |parensize3=small<!-- -->|tag4={{{local_name_lang4|}}} |name4={{{local_name4|}}} |italics4=off |parensize4=small }} |4={{{local_name|}}} {{if empty|1={{{postfix|}}}|2={{{postfix1|}}}}}<!-- use local_name as is, no lang; can be blank --> }}}}<!-- -->{{#if:{{{name_abbr|}}}|<div>{{nobold|1={{{name_abbr|}}}}}</div>|}} | headerstyle = background-color: {{yesno|{{{obsolete|}}}|yes=lightpink|no=lightskyblue}} | imagestyle = {{#switch:{{#if:{{{image_1|}}}|1}}{{#if:{{{image_2|}}}|2}} | 1 = {{#if:{{{image_background_1|}}} | background: {{{image_background_1}}}}} | 2 = {{#if:{{{image_background_2|}}} | background: {{{image_background_2}}}}} | 12 = padding: 0.3em 0.6em 0.3em 0.6em }} | image = {{#if:{{{image_1|}}}{{{image_2|}}} |{{#switch:{{#if:{{{image_1|}}}|1}}{{#if:{{{image_2|}}}|2}} | 1 = {{#invoke:InfoboxImage|InfoboxImage|image={{{image_1}}}|size={{{image_width_1|}}}|sizedefault=252px|alt={{{alt1|{{{image_alt_1|}}}}}}}} | 2 = {{#invoke:InfoboxImage|InfoboxImage|image={{{image_2}}}|size={{{image_width_2|}}}|sizedefault=252px|alt={{{alt2|{{{image_alt_2|}}}}}}}} | 12 = <table style="display:table; margin:0 auto; background:none"><tr> <td style="vertical-align: middle; text-align: center;{{#if:{{{image_background_1|}}} | background: {{{image_background_1}}}}}">{{#invoke:InfoboxImage|InfoboxImage|image={{{image_1}}}|size={{{image_width_1|}}}|sizedefault=126px|alt={{{alt1|{{{image_alt_1|}}}}}}}}</td> <td style="vertical-align: middle; text-align: center;{{#if:{{{image_background_2|}}} | background: {{{image_background_2}}}}}">{{#invoke:InfoboxImage|InfoboxImage|image={{{image_2}}}|size={{{image_width_2|}}}|sizedefault=126px|alt={{{alt2|{{{image_alt_2|}}}}}}}}</td> </tr><tr><td style="text-align: center">{{{image_title_1|}}}</td><td style="text-align: center">{{{image_title_2|}}}</td> </tr></table> }} |{{#invoke:InfoboxImage|InfoboxImage|image={{#statements:P18}}|size={{{image_width|}}}|sizedefault=252px|alt={{{alt|}}}}} }} | caption = {{#switch:{{#if:{{{image_1|}}}|1}}{{#if:{{{image_2|}}}|2}} | 1 = {{{image_title_1|}}} | 2 = {{{image_title_2|}}} }} |header1 = {{#if:{{ISO 4217/code|iso-code={{{iso_code|}}}|format=option-none}}{{{iso_comment|}}}{{{iso_ref|}}}|[[اَے ایس او 4217]]}} | label2 = کوڈ | data2 = {{trim|1=<!-- three optional elements < > spaced; needs trimming in case of empty element; a ref requires unspaced -->{{ISO 4217/code|iso-code={{{iso_code|}}}|format=option-none, ISO4217-cat}} <!-- intentional space -->{{yesno|{{{obsolete|no}}}|yes=|no={{#if:{{ISO 4217/code-count|iso-code={{{iso_code|}}}|list=L1}}|(numeric:&#x20;{{ISO 4217/code-to-number|iso-code={{{iso_code|}}}|format=mono}})}}}} <!-- intentional space -->{{if both|{{{iso_code|}}}|{{{iso_comment|}}}|<br />}}{{{iso_comment|}}} }}{{{iso_ref|}}} | label4 = [[اَے ایس او 4217|سَب یوٗنِٹ]] | data4 = {{ISO 4217/code-minor-unit|iso-code={{{iso_code|}}}|is-obsolete={{yesno|{{{obsolete|}}}}}}} |header5 = {{#if:{{{unit|}}}{{{plural|}}}{{{symbol|}}}{{{nickname|}}}|یوٗنِٹ}} | label6 = یوٗنِٹ | data6 = {{{unit|}}} | label7 = جمع | data7 = {{br separated entries | 1 = {{{plural|}}} | 2 = {{#if:{{{plural_slavic|}}}|اَمہِ کرنسی ہٕنٛز زَبان چھِ [[سلاوِک زَبانہٕ|سلاوِک زَبانہٕ]] سٕتؠ تعلُق تھاوان. کثرت شکلہٕ بناونُک چِھ اکہٕ کھۄتہٕ زِیٛادٕ طریقہٕ۔}} | 3 = {{#if:{{{no_plural|}}}|امہِ کرنسی ہنٛزِ زَبانہِ منٛز چُھہ نہٕ کانٛہہ مورفولوجیکل پوائنٹسٕچ کثرت}} }} | label8 = [[کرنسی نِشان|نِشان]] | data8 = {{#if:{{{symbol|}}}|{{big|1={{{symbol}}}}}&lrm;|{{#if:{{#statements:P489}}|{{#statements:P489}}}}}} {{{symbol_comment|}}} | label9 = ناو رؠزھ | data9 = {{{nickname|}}} | header10 = {{#if:{{{superunit_name_1|}}}{{{subunit_name_1|}}}{{{used_banknotes|}}}{{{frequently_used_banknotes|}}}{{{rarely_used_banknotes|}}}{{{used_coins|}}}{{{frequently_used_coins|}}}{{{rarely_used_coins|}}}|[[فِرقہٕ (کرنسی)|فِرقہٕ]]}} | label11 = سُپریوٗنِٹ | data11 = {{#if:{{{superunit_ratio_1|}}}{{{superunit_ratio_2|}}}{{{superunit_ratio_3|}}}{{{superunit_ratio_4|}}}{{{superunit_ratio_5|}}}|<nowiki />}} | label12 = {{nobold|&ensp;{{{superunit_ratio_1}}}}} | data12 = {{#if:{{{superunit_ratio_1|}}}|{{{superunit_name_1}}}{{#if:{{{superunit_inline_note_1|}}}|<br />{{{superunit_inline_note_1}}}}}}} | label13 = {{nobold|&ensp;{{{superunit_ratio_2}}}}} | data13 = {{#if:{{{superunit_ratio_2|}}}|{{{superunit_name_2}}}{{#if:{{{superunit_inline_note_2|}}}|<br />{{{superunit_inline_note_2}}}}}}} | label14 = {{nobold|&ensp;{{{superunit_ratio_3}}}}} | data14 = {{#if:{{{superunit_ratio_3|}}}|{{{superunit_name_3}}}{{#if:{{{superunit_inline_note_3|}}}|<br />{{{superunit_inline_note_3}}}}}}} | label15 = {{nobold|&ensp;{{{superunit_ratio_4}}}}} | data15 = {{#if:{{{superunit_ratio_4|}}}|{{{superunit_name_4}}}{{#if:{{{superunit_inline_note_4|}}}|<br />{{{superunit_inline_note_4}}}}}}} | label16 = {{nobold|&ensp;{{{superunit_ratio_5}}}}} | data16 = {{#if:{{{superunit_ratio_5|}}}|{{{superunit_name_5}}}{{#if:{{{superunit_inline_note_5|}}}|<br />{{{superunit_inline_note_5}}}}}}} | label17 = سَب یوٗنِٹ | data17 = {{#if:{{{subunit_ratio_1|}}}{{{subunit_ratio_2|}}}{{{subunit_ratio_3|}}}{{{subunit_ratio_4|}}}{{{subunit_ratio_5|}}}|<nowiki />}} | label18 = {{nobold|&ensp;{{{subunit_ratio_1}}}}} | data18 = {{#if:{{{subunit_name_1|{{#statements:P9059}}}}} | {{{subunit_name_1|{{#statements:P9059}}}}}{{#if:{{{subunit_inline_note_1|}}}|<br />{{{subunit_inline_note_1}}}}} }} | label19 = {{nobold|&ensp;{{{subunit_ratio_2}}}}} | data19 = {{#if:{{{subunit_ratio_2|}}}|{{{subunit_name_2}}}{{#if:{{{subunit_inline_note_2|}}}|<br />{{{subunit_inline_note_2}}}}}}} | label20 = {{nobold|&ensp;{{{subunit_ratio_3}}}}} | data20 = {{#if:{{{subunit_ratio_3|}}}|{{{subunit_name_3}}}{{#if:{{{subunit_inline_note_3|}}}|<br />{{{subunit_inline_note_3}}}}}}} | label21 = {{nobold|&ensp;{{{subunit_ratio_4}}}}} | data21 = {{#if:{{{subunit_ratio_4|}}}|{{{subunit_name_4}}}{{#if:{{{subunit_inline_note_4|}}}|<br />{{{subunit_inline_note_4}}}}}}} | label22 = {{nobold|&ensp;{{{subunit_ratio_5}}}}} | data22 = {{#if:{{{subunit_ratio_5|}}}|{{{subunit_name_5}}}{{#if:{{{subunit_inline_note_5|}}}|<br />{{{subunit_inline_note_5}}}}}}} | label23 = جمع | data23 = {{#if:{{{plural_subunit_1|}}}{{{plural_subunit_2|}}}{{{plural_subunit_3|}}}{{{plural_subunit_4|}}}{{{plural_subunit_5|}}}|<nowiki/>}} | label24 = {{nobold|&ensp;{{{subunit_name_1}}}}} | data24 = {{#if:{{{subunit_name_1|}}}|{{{plural_subunit_1|}}}}} | label25 = {{nobold|&ensp;{{{subunit_name_2}}}}} | data25 = {{#if:{{{subunit_name_2|}}}|{{{plural_subunit_2|}}}}} | label26 = {{nobold|&ensp;{{{subunit_name_3}}}}} | data26 = {{#if:{{{subunit_name_3|}}}|{{{plural_subunit_3|}}}}} | label27 = {{nobold|&ensp;{{{subunit_name_4}}}}} | data27 = {{#if:{{{subunit_name_4|}}}|{{{plural_subunit_4|}}}}} | label28 = {{nobold|&ensp;{{{subunit_name_5}}}}} | data28 = {{#if:{{{subunit_name_5|}}}|{{{plural_subunit_5|}}}}} | label29 = نِشان | data29 = {{#if:{{{symbol_subunit_1|}}}{{{symbol_subunit_2|}}}{{{symbol_subunit_3|}}}{{{symbol_subunit_4|}}}{{{symbol_subunit_5|}}}|<nowiki/>}} | label30 = {{nobold|&ensp;{{{subunit_name_1}}}}} | data30 = {{#if:{{{subunit_name_1|}}}|{{{symbol_subunit_1|}}}}} | label31 = {{nobold|&ensp;{{{subunit_name_2}}}}} | data31 = {{#if:{{{subunit_name_2|}}}|{{{symbol_subunit_2|}}}}} | label32 = {{nobold|&ensp;{{{subunit_name_3}}}}} | data32 = {{#if:{{{subunit_name_3|}}}|{{{symbol_subunit_3|}}}}} | label33 = {{nobold|&ensp;{{{subunit_name_4}}}}} | data33 = {{#if:{{{subunit_name_4|}}}|{{{symbol_subunit_4|}}}}} | label34 = {{nobold|&ensp;{{{subunit_name_5}}}}} | data34 = {{#if:{{{subunit_name_5|}}}|{{{symbol_subunit_5|}}}}} | label35 = ناو رؠژھ | data35 = {{#if:{{{nickname_subunit_1|}}}{{{nickname_subunit_2|}}}{{{nickname_subunit_3|}}}{{{nickname_subunit_4|}}}{{{nickname_subunit_5|}}}|<nowiki/>}} | label36 = {{nobold|&ensp;{{{subunit_name_1}}}}} | data36 = {{#if:{{{subunit_name_1|}}}|{{{nickname_subunit_1|}}}}} | label37 = {{nobold|&ensp;{{{subunit_name_2}}}}} | data37 = {{#if:{{{subunit_name_2|}}}|{{{nickname_subunit_2|}}}}} | label38 = {{nobold|&ensp;{{{subunit_name_3}}}}} | data38 = {{#if:{{{subunit_name_3|}}}|{{{nickname_subunit_3|}}}}} | label39 = {{nobold|&ensp;{{{subunit_name_4}}}}} | data39 = {{#if:{{{subunit_name_4|}}}|{{{nickname_subunit_4|}}}}} | label40 = {{nobold|&ensp;{{{subunit_name_5}}}}} | data40 = {{#if:{{{subunit_name_5|}}}|{{{nickname_subunit_5|}}}}} | label41 = {{#if:{{{banknote_article|}}}|[[{{{banknote_article}}}|بینٛک نوٹ]]|{{#ifexist: Banknotes of the {{{currency_name|{{PAGENAMEBASE}}}}}|[[Banknotes of the {{{currency_name|{{PAGENAMEBASE}}}}}|Banknotes]]|بینٛک نوٹ}}}} | data41 = {{{used_banknotes|}}}{{#if:{{{frequently_used_banknotes|}}}{{{rarely_used_banknotes|}}}|<nowiki />}} | label42 = {{nobold|&ensp; زیٛادٕ طر اِستعمال گژھان}} | data42 = {{{frequently_used_banknotes|}}} | label43 = {{nobold|&ensp;کُنہِ ساتہٕ اِستعمال گژھان}} | data43 = {{{rarely_used_banknotes|}}} | label44 = {{#if:{{{coin_article|}}}|[[{{{coin_article}}}|سِکہٕ]]|{{#ifexist: Coins of the {{{currency_name|{{PAGENAMEBASE}}}}}|[[Coins of the {{{currency_name|{{PAGENAMEBASE}}}}}|سِکہٕ]]|سِکہٕ}}}} | data44 = {{{used_coins|}}}{{#if:{{{frequently_used_coins|}}}{{{rarely_used_coins|}}}|<nowiki />}} | label45 = {{nobold|&ensp; زیٛادٕ تر اِستعمال گژھان}} | data45 = {{{frequently_used_coins|}}} | label46 = {{nobold|&ensp; کُنہِ ساتہٕ اِستعمال گژھان}} | data46 = {{{rarely_used_coins|}}} | header47 = {{#if:{{{date_of_introduction|}}}{{{replaced_currency|}}}{{{date_of_withdrawal|}}}{{{replaced_by_currency|}}}{{{using_countries|}}}{{{unofficial_users|}}}{{{using_countries|{{#statements:P1001}}}}}|ڈیموگرافکس}} | label48 = تعارف فٕچ تٲریٖخ | data48 = {{#if:{{{date_of_introduction|}}}|{{{date_of_introduction}}}{{#if:{{{date_of_introduction_source|}}}| ({{{date_of_introduction_source}}})}}|{{#statements:P580}}}} | label49 = بدلومُت | data49 = {{#invoke:WikidataIB |getValue |P1365 |name=replacedcurrency |fetchwikidata={{{fetchwikidata|}}} |suppressfields={{{suppressfields|}}} |onlysourced={{{onlysourced|No}}} |noicon={{{noicon|Yes}}} |qid={{{qid|}}} |{{{replaced_currency|}}} }} | label50 = واپسی ہِنٛز تٲریٖخ | data50 = {{{date_of_withdrawal|}}}{{#if:{{{date_of_withdrawal|}}}|{{{date_of_withdrawal_source|}}}}} | label51 = بدلاون وول | data51 = {{{replaced_by_currency|}}} | label52 = {{#if:{{{unofficial_users|}}}|{{nowrap|سرکٲرؠ طور اِستعمال کرن وول(وٲلؠ)}}|اِستعمال کرن وول(وٲلؠ)}} | data52 = {{{using_countries|{{#statements:P1001}}}}} | label53 = {{nowrap|غأر سرکٲری طور اِستعمال کرن وول (وٲلؠ)}} | data53 = {{{unofficial_users|}}} | header54 = {{#if:{{{issuing_authority|{{#statements:P562}}}}}{{{printer|}}}{{{mint|}}}|جٲری کرُن}} | label55 = {{nowrap|{{#if:{{{issuing_authority_title|}}}|{{{issuing_authority_title}}}|[[مَرکَزی بینٛک]]}}}} | data55 = {{{issuing_authority|{{#statements:P562}}}}} | label56 = {{nobold|&ensp;وؠب سایِٹ}} | data56 = {{#if:{{{issuing_authority|{{#statements:P562}}}}}|{{{issuing_authority_website|}}}}} | label57 = [[پرِٛنٹر (شایع)|پرِٛنٹر]] | data57 = {{{printer|{{#statements:P176}}}}} | label58 = {{nobold|&ensp;وؠب سایِٹ}} | data58 = {{#if:{{{printer|{{#statements:P176}}}}}|{{{printer_website|}}}}} | label59 = [[ٹکسال (سَہوٗلت)|ٹکسال]] | data59 = {{#invoke:WikidataIB |getValue |P176 |name=mint |fetchwikidata={{{fetchwikidata|}}} |suppressfields={{{suppressfields|}}} |onlysourced={{{onlysourced|No}}} |noicon={{{noicon|Yes}}} |qid={{{qid|}}} |{{{mint|}}} }} | label60 = {{nobold|&ensp;وؠب سایِٹ}} | data60 = {{#if:{{#invoke:WikidataIB |getValue |P176 |name=mint |fetchwikidata={{{fetchwikidata|}}} |suppressfields={{{suppressfields|}}} |onlysourced={{{onlysourced|No}}} |noicon={{{noicon|Yes}}} |qid={{{qid|}}} |{{{mint|}}} }}|{{{mint_website|}}}}} | header61 = {{#if:{{{inflation_rate|}}}{{{value|}}}{{{ERM_since|}}}{{{pegged_with|}}}{{{pegged_by|}}}|درٛۄجر}} | label62 = {{#if:{{{inflation_title|}}}|{{{inflation_title}}}|[[زری درٛۄجر|درٛۄجر]]}} | data62 = {{{inflation_rate|}}} | label63 = {{nobold|&ensp;ذٔریعہٕ}} | data63 = {{#if:{{{inflation_rate|}}}|{{{inflation_source_date|}}}}} | label64 = {{nobold|&ensp;طریٖقہٕ}} | data64 = {{#if:{{{inflation_rate|}}}|{{{inflation_method|}}}}} | label65 = [[مُقرر تبدیٖلی ریٹ نِظام|سٕتؠ جُڑِتھ]] | data65 = {{{pegged_with|}}} | label66 = [[شرح تبادٕل|قٲمت]] | data66 = {{#invoke:WikidataIB |getValue |P2284 |name=value |fetchwikidata={{{fetchwikidata|}}} |suppressfields={{{suppressfields|}}} |onlysourced={{{onlysourced|No}}} |noicon={{{noicon|Yes}}} |qid={{{qid|}}} |{{{value|}}} }} | label67 = [[مُقرر تبدیٖلی ریٹ|ذٔریعہٕ مُقرر]] | data67 = {{{pegged_by|}}} |header68 = {{#if:{{{ERM_since|}}}|[[European Exchange Rate Mechanism|EU Exchange Rate Mechanism]] {{nobold|1=(ERM)}}}} | label69 = {{nobold|Since}} | data69 = {{{ERM_since|}}} | label70 = {{nobold|Withdrawn}} | data70 = {{#if:{{{ERM_since|}}}|{{{ERM_withdraw|}}}}} | label71 = {{nobold|Fixed rate since}} | data71 = {{#if:{{{ERM_since|}}}|{{{ERM_fixed_rate_since|}}}}} | label72 = {{nobold|Replaced by euro, non cash}} | data72 = {{#if:{{{ERM_since|}}}|{{{euro_replace_non_cash|}}}}} | label73 = {{nobold|Replaced by euro, cash}} | data73 = {{#if:{{{ERM_since|}}}|{{{euro_replace_cash|}}}}} | label74 = {{nobold|1=<span class="nounderlines">1&nbsp;€</span>&nbsp;=}} | data74 = {{#if:{{{ERM_since|}}}|{{{ERM_fixed_rate|}}}}} | label75 = {{nobold|Band}} | data75 = {{#if:{{{ERM_since|}}}|{{{ERM_band|}}}}} | belowstyle=text-align:left; background:#e9e9e9; | below = {{yesno|{{{obsolete|}}}|yes={{yesno|{{{obsolete_notice|true}}}|yes=<!-- -->''This infobox shows the latest status before this currency was rendered obsolete.''}}}}<!-- -->{{#if:{{{footnotes|}}}|<div>{{{footnotes|}}}</div>}}<!-- div for newline-effect --> }}<!-- end of infobox CHECK FOR UNKNOWN PARAMETERS -->{{#invoke:check for unknown parameters |check |unknown={{main other<!-- -->|1=[[Category:Pages using Infobox currency with unknown parameters|_VALUE_]]<!-- -->|2=[[:Category:Pages using Infobox currency with unknown parameters|Cat:IB currency unk param]]:_VALUE_&#x20;<!-- -->}} |preview=Unknown parameter "_VALUE_" in [[Template:Infobox currency]] <!-- NAME -->|name |local_name_format |currency_name |currency_name_in_local |name_abbr |qid |local_name |local_name_lang |postfix |local_name1 |local_name_lang1 |postfix1 |local_name2 |local_name_lang2 |local_name3 |local_name_lang3 |local_name4 |local_name_lang4 <!-- IMAGE -->|image_alt_1 |image_alt_2 |image_1 |image_2 |image_background_1 |image_background_2 |image_title_1 |image_title_2 |image_width_1 |image_width_2 <!-- AUTH & USERS -->|issuing_authority |issuing_authority_title |issuing_authority_website |unofficial_users |using_countries <!-- BANKNOTES AND COINS -->|used_banknotes |used_coins |banknote_article |coin_article |frequently_used_banknotes |frequently_used_coins |rarely_used_banknotes |rarely_used_coins <!-- HISTORICAL -->|obsolete |obsolete_notice |date_of_introduction |date_of_introduction_source |date_of_withdrawal |date_of_withdrawal_source |replaced_by_currency |replaced_currency <!-- ISO -->|iso_code |iso_comment |iso_ref <!-- UNIT -->|unit |plural |plural_slavic |no_plural |symbol |symbol_comment |nickname <!-- SUBUNIT -->|nickname_subunit_1 |nickname_subunit_2 |nickname_subunit_3 |nickname_subunit_4 |nickname_subunit_5 |plural_subunit_1 |plural_subunit_2 |plural_subunit_3 |plural_subunit_4 |plural_subunit_5 |subunit_inline_note_1 |subunit_inline_note_2 |subunit_inline_note_3 |subunit_inline_note_4 |subunit_inline_note_5 |subunit_name_1 |subunit_name_2 |subunit_name_3 |subunit_name_4 |subunit_name_5 |subunit_ratio_1 |subunit_ratio_2 |subunit_ratio_3 |subunit_ratio_4 |subunit_ratio_5 |symbol_subunit_1 |symbol_subunit_2 |symbol_subunit_3 |symbol_subunit_4 |symbol_subunit_5 <!-- SUPERUNIT -->|superunit_inline_note_1 |superunit_inline_note_2 |superunit_inline_note_3 |superunit_inline_note_4 |superunit_inline_note_5 |superunit_name_1 |superunit_name_2 |superunit_name_3 |superunit_name_4 |superunit_name_5 |superunit_ratio_1 |superunit_ratio_2 |superunit_ratio_3 |superunit_ratio_4 |superunit_ratio_5 <!-- ERM EURO -->|ERM_band |ERM_fixed_rate |ERM_fixed_rate_since |ERM_since |ERM_withdraw |euro_replace_cash |euro_replace_non_cash <!-- ISSUANCE -->|printer |printer_website |mint |mint_website <!-- VALUE & INFLATION -->|value |pegged_by |pegged_with |inflation_method |inflation_rate |inflation_source_date |inflation_title <!-- FOOTNOTE -->|footnotes }}<!-- CAT by iso-code. "None"=explicitly categorise as Without ISO code -->{{#if:{{ISO 4217/code-none|iso-code={{{iso_code|}}}}}|{{main other|1=[[Category:Currencies without ISO 4217 code]]|2={{template other|1=[[:Category:Currencies without ISO 4217 code|cat:Without ISO code]]}}}}}}<!-- -->{{#if:{{ISO 4217/code|iso-code={{{iso_code|}}}}}|{{main other|1=[[Category:Currencies with ISO 4217 code]]|2={{template other|1=[[:Category:Currencies with ISO 4217 code|cat:With ISO code]]}}}}}}<!-- bare url, categorise (3x check) -->{{main other|1=<!-- -->{{#if:{{{issuing_authority_website|}}}|{{#ifeq:{{str left|{{{issuing_authority_website}}}|1}}|<||[[Category:Infobox currency with an unlinked website]]}}}}<!-- -->{{#if:{{{printer_website|}}}|{{#ifeq:{{str left|{{{printer_website}}}|1}}|<||[[Category:Infobox currency with an unlinked website]]}}}}<!-- -->{{#if:{{{mint_website|}}}|{{#ifeq:{{str left|{{{mint_website}}}|1}}|<||[[Category:Infobox currency with an unlinked website]]}}}}<!-- -->}}<!-- CHECK name & local_name: -->{{#if:{{if empty |1={{if both|{{{currency_name_in_local|}}}|{{{local_name_format|}}}|_ERR1-local1: 2x fmt Nloc_}} |2={{if both|{{{currency_name_in_local|}}}{{{local_name_format|}}}|{{{local_name|}}}{{{local_name1|}}}|_ERR-local2: both Nloc & NlocFmt_}} |3={{#if:{{{local_name_lang|}}}{{{local_name_lang1|}}}|{{#if:{{{local_name|}}}{{{local_name1|}}}|<!-- ok, {native} -->|_ERR-local3: localname_lang not used_}}}} |4={{#ifeq:{{plain text|1={{{local_name|}}}{{{local_name1|}}}}}|{{{local_name|}}}{{{local_name1|}}}|<!-- ok -->|_WARNING-local4: local_name is formatted}} |5={{#ifeq:{{count|1={{{local_name1|}}}{{{local_name_lang1|}}}{{{postfix1|}}}|2={{{local_name|}}}{{{local_name_lang|}}}{{{postfix|}}}}}|2|_ERR-local5: both synonyms in use}} }}|{{#switch:{{NAMESPACENUMBER}} ||0=[[Category:Pages using Infobox currency to check|N]]<!-- mainspace --> |10=[[:Category:Pages using Infobox currency to check|cat:IBcurr-N<nowiki>*</nowiki>]]<!-- templatespace -->}}}}<!-- --><noinclude>{{Documentation}}</noinclude> 93rlpi0nkewew1ldmy0ht7oceiyf18s کٲنٛسؠ 0 26841 150698 127888 2026-08-28T18:15:23Z آیات محراج 11062 /* */ 150698 wikitext text/x-wiki {{Infobox mineral}} کٲنٛسؠ چھُ اَکھ [[بَرُتھ]] یَتھ مَنٛز بنیٲدی طور [[ترٛام|ترٛامس]] پؠٹھ مشتمل چھُ، عام طور پٲٹھؠ تَقریٖبَن 12-12.5٪ [[ٹِن]] آسان۔<ref>{{cite web|title=British Museum, "Scope Note" for "copper alloy"|url=https://www.britishmuseum.org/research/search_the_collection_database/term_details.aspx?scopeType=Terms&scopeId=18864|url-status=live|archive-url=https://web.archive.org/web/20140818004043/http://www.britishmuseum.org/research/search_the_collection_database/term_details.aspx?scopeType=Terms&scopeId=18864|archive-date=18 August 2014|access-date=14 September 2014|work=British Museum}}</ref> ==حَوالہٕ== [[زٲژ:رساێن تۄتھ]] ozrwdg5w2pmnunfnr9xj4twsc2ejeqf IPhone 17 0 31947 150671 146444 2026-08-28T15:16:24Z EmausBot 1793 Fixing double redirect from [[آیفون 17]] to [[اَیفون 17]] 150671 wikitext text/x-wiki #REDIRECT [[اَیفون 17]] rzmtl6cc0eentj74bta0ojulethlsp3 آیی فون 17 0 31948 150673 146445 2026-08-28T15:16:44Z EmausBot 1793 Fixing double redirect from [[آیفون 17]] to [[اَیفون 17]] 150673 wikitext text/x-wiki #REDIRECT [[اَیفون 17]] rzmtl6cc0eentj74bta0ojulethlsp3 آیی آو ایس 0 31953 150672 146457 2026-08-28T15:16:34Z EmausBot 1793 Fixing double redirect from [[آی او ایس]] to [[اَے او ایس]] 150672 wikitext text/x-wiki #REDIRECT [[اَے او ایس]] 41xnkr1slyc7big7empil7p9cobosph رُکُن:Nadeemulhaqmir-bot/log/2026/8 2 32004 150690 150631 2026-08-28T18:00:48Z Nadeemulhaqmir-bot 9480 باٹ چھُ اَز دۄہُک لاگ مَحفوٗظ کَران. 150690 wikitext text/x-wiki ==1-8-2026== ==== [[آیسِس]] - ([[Special:Diff/146873|فَرَق]]) ==== # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> ئیس </nowiki><b> -> </b><nowiki>ئیس</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[اِبتدٲیی اسلٲمی فلسفہٕ]] - ([[Special:Diff/146874|فَرَق]]) ==== # <nowiki> ابتدائی </nowiki><b> -> </b><nowiki>اِبتدٲیی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[کورِیاچہِ ترٛے بادشٲہیتہٕ]] - ([[Special:Diff/146875|فَرَق]]) ==== # <nowiki> ؤ </nowiki><b> -> </b><nowiki>و</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ہنبوک]] - ([[Special:Diff/146876|فَرَق]]) ==== # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جنوبی </nowiki><b> -> </b><nowiki>جۆنوٗبی</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ؤ </nowiki><b> -> </b><nowiki>و</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ایکس ایکس ایکس ٹیٚنٛٹیشَن]] - ([[Special:Diff/146877|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جنوری </nowiki><b> -> </b><nowiki>جَنؤری</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[ڈُوَلنگو]] - ([[Special:Diff/146878|فَرَق]]) ==== # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[بویِنٛگ 767]] - ([[Special:Diff/146879|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ستمبر </nowiki><b> -> </b><nowiki>سَتَمبَر</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> گوڑنک </nowiki><b> -> </b><nowiki>گۄڈنُیٛک</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ڈیٚلٹا اِیَر لاینز]] - ([[Special:Diff/146880|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[شیطٲنِیَتھ]] - ([[Special:Diff/146881|فَرَق]]) ==== # <nowiki> تِہ </nowiki><b> -> </b><nowiki>تہِ</nowiki> # <nowiki> نِہ </nowiki><b> -> </b><nowiki>نہِ</nowiki> ==== [[حٔقیٖقی عیسٲے کلیسا]] - ([[Special:Diff/146882|فَرَق]]) ==== # <nowiki> انسان </nowiki><b> -> </b><nowiki>اِنسان</nowiki> # <nowiki> تٕہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> سٕنز </nowiki><b> -> </b><nowiki>سٟنٛز</nowiki> # <nowiki> سُند </nowiki><b> -> </b><nowiki>سُنٛد</nowiki> # <nowiki> سٕندؠ </nowiki><b> -> </b><nowiki>سٟنٛدؠ</nowiki> # <nowiki> ۅ </nowiki><b> -> </b><nowiki>ۄ</nowiki> # <nowiki> ێ </nowiki><b> -> </b><nowiki>یٚ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> مِہ </nowiki><b> -> </b><nowiki>مہِ</nowiki> ==== [[سروانَنٛد کول پرٛیمی]] - ([[Special:Diff/146883|فَرَق]]) ==== # <nowiki> ۅ </nowiki><b> -> </b><nowiki>ۄ</nowiki> # <nowiki> تُھ </nowiki><b> -> </b><nowiki>تھُ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ترَٛکھ]] - ([[Special:Diff/146884|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مدد </nowiki><b> -> </b><nowiki>مَدَتھ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> ==== [[تھر کۆنٛڈ]] - ([[Special:Diff/146885|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ہنز </nowiki><b> -> </b><nowiki>ہِنٛز</nowiki> # <nowiki> ہُند </nowiki><b> -> </b><nowiki>ہُنٛد</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> م. </nowiki><b> -> </b><nowiki>م۔</nowiki> ==== [[تھایرایِڈ]] - ([[Special:Diff/146886|فَرَق]]) ==== # <nowiki> ن. </nowiki><b> -> </b><nowiki>ن۔</nowiki> ==== [[آرڈر آف آسٹرٛیلیا]] - ([[Special:Diff/146887|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> کرتھ </nowiki><b> -> </b><nowiki>کٔرِتھ</nowiki> ==== [[پوٗتنا]] - ([[Special:Diff/146888|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ٕ. </nowiki><b> -> </b><nowiki>ٕ۔</nowiki> ==== [[نِرمل پُرجا]] - ([[Special:Diff/146889|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> فلم </nowiki><b> -> </b><nowiki>فِلِم</nowiki> # <nowiki> گۄڈٕنیُک </nowiki><b> -> </b><nowiki>گۄڈنُیٛک</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> میٹر </nowiki><b> -> </b><nowiki>میٖٹَر</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> یونیورسٹی </nowiki><b> -> </b><nowiki>یوٗنِوَرسِٹی</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[2026 موروکو-سپین سرحدی واقعہٕ]] - ([[Special:Diff/146890|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> شہر </nowiki><b> -> </b><nowiki>شَہَر</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ؤ </nowiki><b> -> </b><nowiki>و</nowiki> # <nowiki> ۭ </nowiki><b> -> </b><nowiki>ٟ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[آزاد کٔشیٖر ہِنٛز تَوٲریٖخ]] - ([[Special:Diff/146891|فَرَق]]) ==== # <nowiki> آئین </nowiki><b> -> </b><nowiki>ٲییٖن</nowiki> # <nowiki> دعویٰ </nowiki><b> -> </b><nowiki>دعوا</nowiki> # <nowiki> سۭتہِ </nowiki><b> -> </b><nowiki>سٟتہِ</nowiki> # <nowiki> لِہ </nowiki><b> -> </b><nowiki>لہِ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[شاردا دٔرؠ‌یاو]] - ([[Special:Diff/146892|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> میل </nowiki><b> -> </b><nowiki>میٖل</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[رشمور پہاڑ]] - ([[Special:Diff/146893|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ٹایٹینِک (1997 فلم)]] - ([[Special:Diff/146894|فَرَق]]) ==== # <nowiki> فلم </nowiki><b> -> </b><nowiki>فِلِم</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> ==2-8-2026== ==== [[شؠشتٕر کال]] - ([[Special:Diff/147112|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[روٗسٕچ معشیت]] - ([[Special:Diff/147113|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ایشیا]] - ([[Special:Diff/147114|فَرَق]]) ==== # <nowiki> دنیاہُک </nowiki><b> -> </b><nowiki>دُنؠ‌یاہُک</nowiki> ==== [[انٹارکٹِکا]] - ([[Special:Diff/147115|فَرَق]]) ==== # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[کاینأتؠ گرٕد]] - ([[Special:Diff/147116|فَرَق]]) ==== # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ایم وی ہونٛڈِیَس]] - ([[Special:Diff/147117|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> دُنیاہَس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہَس</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ایم وی ہونٛڈِیَس ہَنتا وایرس]] - ([[Special:Diff/147118|فَرَق]]) ==== # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[نِرمل پُرجا]] - ([[Special:Diff/147119|فَرَق]]) ==== # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> دنیاہٕکؠ </nowiki><b> -> </b><nowiki>دُنؠ‌یاہٕکؠ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[شیٖنہٕ مٲنؠ]] - ([[Special:Diff/147120|فَرَق]]) ==== # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> ==== [[کیمونو]] - ([[Special:Diff/147121|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[جۆم تہٕ کٔشیٖر مَنٛز جُلوٗس پؠٹھ قوبوٗ]] - ([[Special:Diff/147122|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اِستعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> انسانی </nowiki><b> -> </b><nowiki>اِنسٲنی</nowiki> # <nowiki> بیاکھ </nowiki><b> -> </b><nowiki>بیٛاکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> تنقید </nowiki><b> -> </b><nowiki>تَنقیٖد</nowiki> # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> خلاف </nowiki><b> -> </b><nowiki>خَلاف</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ستمبر </nowiki><b> -> </b><nowiki>سَتَمبَر</nowiki> # <nowiki> شُروٗع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> قتل </nowiki><b> -> </b><nowiki>قَتٕل</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> گۄڈٕنیُک </nowiki><b> -> </b><nowiki>گۄڈنُیٛک</nowiki> # <nowiki> گھرٕ </nowiki><b> -> </b><nowiki>گرٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مدد </nowiki><b> -> </b><nowiki>مَدَتھ</nowiki> # <nowiki> مخالف </nowiki><b> -> </b><nowiki>مُخٲلِف</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ؠ مٕتؠ </nowiki><b> -> </b><nowiki>ؠ‌مٕتؠ</nowiki> ==== [[ایکس ایکس ایکس ٹیٚنٛٹیشَن]] - ([[Special:Diff/147123|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==3-8-2026== ==== [[جاپٲنؠ لوٗکھ]] - ([[Special:Diff/147363|فَرَق]]) ==== # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> ==== [[ہان کانٛگ]] - ([[Special:Diff/147364|فَرَق]]) ==== # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ردولہٕ]] - ([[Special:Diff/147365|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ر. </nowiki><b> -> </b><nowiki>ر۔</nowiki> ==== [[کووِڈ-19 عالمی وبا]] - ([[Special:Diff/147366|فَرَق]]) ==== # <nowiki> جنوری </nowiki><b> -> </b><nowiki>جَنؤری</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> دسمبر </nowiki><b> -> </b><nowiki>دَسَمبَر</nowiki> # <nowiki> دُنیاہَس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہَس</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ہُند </nowiki><b> -> </b><nowiki>ہُنٛد</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[اَوَستٲیی زَبان]] - ([[Special:Diff/147367|فَرَق]]) ==== # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ن. </nowiki><b> -> </b><nowiki>ن۔</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # [[وِکیٖپیٖڈیا:حَوالہٕ|حَوالہٕ]] وَرٲے مَضموٗن ٹیگ کَران ==== [[زرتشیت]] - ([[Special:Diff/147368|فَرَق]]) ==== # <nowiki> دنیاہک </nowiki><b> -> </b><nowiki>دُنؠ‌یاہک</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[پھِرٲرؠ]] - ([[Special:Diff/147369|فَرَق]]) ==== # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> جنوب </nowiki><b> -> </b><nowiki>جۆنوٗب</nowiki> # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ہ. </nowiki><b> -> </b><nowiki>ہ۔</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[شیش]] - ([[Special:Diff/147370|فَرَق]]) ==== # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> انواع </nowiki><b> -> </b><nowiki>زٲژ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> تقریبا </nowiki><b> -> </b><nowiki>تَقریٖبَن</nowiki> # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> ==حوالہٕ== </nowiki><b> -> </b><nowiki>== حَوالہٕ ==</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> کٔرتھ </nowiki><b> -> </b><nowiki>کٔرِتھ</nowiki> # <nowiki> کرتھ </nowiki><b> -> </b><nowiki>کٔرِتھ</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> محفوظ </nowiki><b> -> </b><nowiki>مۄحفوٗظ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ڈوروتھی ایڈی]] - ([[Special:Diff/147371|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> بیاکھ </nowiki><b> -> </b><nowiki>بیٛاکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> ٹیلی ویژن </nowiki><b> -> </b><nowiki>ٹیلی وِجَن</nowiki> # <nowiki> جنوری </nowiki><b> -> </b><nowiki>جَنؤری</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> گھرس </nowiki><b> -> </b><nowiki>گرس</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> وقت </nowiki><b> -> </b><nowiki>وَقٕت</nowiki> # <nowiki> ۅ </nowiki><b> -> </b><nowiki>ۄ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[سانٛگُر]] - ([[Special:Diff/147372|فَرَق]]) ==== # <nowiki> ==حوالہٕ== </nowiki><b> -> </b><nowiki>== حَوالہٕ ==</nowiki> # <nowiki> محفوظ </nowiki><b> -> </b><nowiki>مۄحفوٗظ</nowiki> ==== [[روٗسٕچ معشیت]] - ([[Special:Diff/147373|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==6-8-2026== ==== [[کرِٛس ہیٚڈفیٖلڈ]] - ([[Special:Diff/148342|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ز. </nowiki><b> -> </b><nowiki>ز۔</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[جیٚری ایل. راس]] - ([[Special:Diff/148343|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> جنوری </nowiki><b> -> </b><nowiki>جَنؤری</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> یونیورسٹی </nowiki><b> -> </b><nowiki>یوٗنِوَرسِٹی</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[بیلین جیسوٗٹ پرٛیپریٹری سکوٗل]] - ([[Special:Diff/148344|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[نِو یارٕک یوٗنِوَرسِٹی]] - ([[Special:Diff/148345|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> یونیورسٹی </nowiki><b> -> </b><nowiki>یوٗنِوَرسِٹی</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[مِیامی]] - ([[Special:Diff/148346|فَرَق]]) ==== # <nowiki> آبادی </nowiki><b> -> </b><nowiki>آبٲدی</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> جنوب </nowiki><b> -> </b><nowiki>جۆنوٗب</nowiki> # <nowiki> ریاست </nowiki><b> -> </b><nowiki>رِیاسَتھ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> شہر </nowiki><b> -> </b><nowiki>شَہَر</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> میٹر </nowiki><b> -> </b><nowiki>میٖٹَر</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[اعلان کرن وول]] - ([[Special:Diff/148347|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[بُلاگ]] - ([[Special:Diff/148348|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[پیریز ہِلٹَن]] - ([[Special:Diff/148349|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> ٹیلی ویژن </nowiki><b> -> </b><nowiki>ٹیلی وِجَن</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[تارُکھ]] - ([[Special:Diff/148350|فَرَق]]) ==== # <nowiki> تِہ </nowiki><b> -> </b><nowiki>تہِ</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> چَھ </nowiki><b> -> </b><nowiki>چھَ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[2009 ہِندوستٲنؠ عام چُناو جۆم تہٕ کٔشیٖر مَنٛز]] - ([[Special:Diff/148351|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[عبدالسید]] - ([[Special:Diff/148352|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یونیورسٹی </nowiki><b> -> </b><nowiki>یوٗنِوَرسِٹی</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[وباہ زان]] - ([[Special:Diff/148353|فَرَق]]) ==== # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ہُند </nowiki><b> -> </b><nowiki>ہُنٛد</nowiki> # <nowiki> ن. </nowiki><b> -> </b><nowiki>ن۔</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[روڈس سٕکالرشِپ]] - ([[Special:Diff/148354|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> دنیاہک </nowiki><b> -> </b><nowiki>دُنؠ‌یاہک</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> یونیورسٹی </nowiki><b> -> </b><nowiki>یوٗنِوَرسِٹی</nowiki> ==== [[ڈیٹرایٹ]] - ([[Special:Diff/148355|فَرَق]]) ==== # <nowiki> شہر </nowiki><b> -> </b><nowiki>شَہَر</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ن. </nowiki><b> -> </b><nowiki>ن۔</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[این آربر، مِشیگن]] - ([[Special:Diff/148356|فَرَق]]) ==== # <nowiki> آبادی </nowiki><b> -> </b><nowiki>آبٲدی</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> شہر </nowiki><b> -> </b><nowiki>شَہَر</nowiki> # <nowiki> قائم </nowiki><b> -> </b><nowiki>قٲیِم</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یونیورسٹی </nowiki><b> -> </b><nowiki>یوٗنِوَرسِٹی</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> ==== [[کولمبیا یوٗنِوَرسِٹی میلمین سکوٗل آف پَبلِک ہیلتھ]] - ([[Special:Diff/148357|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> شہر </nowiki><b> -> </b><nowiki>شَہَر</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> میل </nowiki><b> -> </b><nowiki>میٖل</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> یونیورسٹی </nowiki><b> -> </b><nowiki>یوٗنِوَرسِٹی</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ڈیٹرایٹ ہیلتھ ڈیپارٹمینٛٹ]] - ([[Special:Diff/148358|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ستمبر </nowiki><b> -> </b><nowiki>سَتَمبَر</nowiki> # <nowiki> شہر </nowiki><b> -> </b><nowiki>شَہَر</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> فروری </nowiki><b> -> </b><nowiki>فَرؤری</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[اینٛڈووَر ہایی سکوٗل (مِشیگن)]] - ([[Special:Diff/148359|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[اورِیَل کالیج، آکسفورڈ]] - ([[Special:Diff/148360|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> یونیورسٹی </nowiki><b> -> </b><nowiki>یوٗنِوَرسِٹی</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[کالیج آف لِٹریچر، ساینس اینٛڈ آرٹس]] - ([[Special:Diff/148361|فَرَق]]) ==== # <nowiki> یونیورسٹی </nowiki><b> -> </b><nowiki>یوٗنِوَرسِٹی</nowiki> # <nowiki> ٕ. </nowiki><b> -> </b><nowiki>ٕ۔</nowiki> ==== [[کولمبیا یوٗنِوَرسِٹی کالیج آف فزکس اینٛڈ سرجری]] - ([[Special:Diff/148362|فَرَق]]) ==== # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> شہر </nowiki><b> -> </b><nowiki>شَہَر</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یونیورسٹی </nowiki><b> -> </b><nowiki>یوٗنِوَرسِٹی</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[منہٕ]] - ([[Special:Diff/148363|فَرَق]]) ==== # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> ==حوالہٕ== </nowiki><b> -> </b><nowiki>== حَوالہٕ ==</nowiki> # <nowiki> ہُند </nowiki><b> -> </b><nowiki>ہُنٛد</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ن. </nowiki><b> -> </b><nowiki>ن۔</nowiki> ==== [[یوٗنِوَرسِٹی آف مِشیگن]] - ([[Special:Diff/148364|فَرَق]]) ==== # <nowiki> آبادی </nowiki><b> -> </b><nowiki>آبٲدی</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> زیادہ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یِہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> یونیورسٹی </nowiki><b> -> </b><nowiki>یوٗنِوَرسِٹی</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[روچیسٹر ہِلز، مِشیگن]] - ([[Special:Diff/148365|فَرَق]]) ==== # <nowiki> آبادی </nowiki><b> -> </b><nowiki>آبٲدی</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> شہر </nowiki><b> -> </b><nowiki>شَہَر</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[یوٗری گاگارِن]] - ([[Special:Diff/148366|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> تعلیم </nowiki><b> -> </b><nowiki>تٲلیٖم</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> سٍتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> گۄڈٕنیُک </nowiki><b> -> </b><nowiki>گۄڈنُیٛک</nowiki> # <nowiki> گۄڈنیُٛک </nowiki><b> -> </b><nowiki>گۄڈنُیٛک</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[کَلپَنا چاولہ]] - ([[Special:Diff/148367|فَرَق]]) ==== # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[جیک سویگرٹ]] - ([[Special:Diff/148368|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> دسمبر </nowiki><b> -> </b><nowiki>دَسَمبَر</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> محفوظ </nowiki><b> -> </b><nowiki>مۄحفوٗظ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[نیٖل آرٛمسِٹرانٛگ]] - ([[Special:Diff/148369|فَرَق]]) ==== # <nowiki> گۄڈنیُٛک </nowiki><b> -> </b><nowiki>گۄڈنُیٛک</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[دَے واد]] - ([[Special:Diff/148370|فَرَق]]) ==== # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> ==== [[جیٚمِنَے 8]] - ([[Special:Diff/148371|فَرَق]]) ==== # <nowiki> امہ </nowiki><b> -> </b><nowiki>اَمہِ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> مجموعی </nowiki><b> -> </b><nowiki>سۆمبرُنی</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> لِہ </nowiki><b> -> </b><nowiki>لہِ</nowiki> ==== [[فَریا فَرَجی]] - ([[Special:Diff/148372|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> شہر </nowiki><b> -> </b><nowiki>شَہَر</nowiki> # <nowiki> فلم </nowiki><b> -> </b><nowiki>فِلِم</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> موسیقی </nowiki><b> -> </b><nowiki>موٗسیٖقی</nowiki> # <nowiki> یونیورسٹی </nowiki><b> -> </b><nowiki>یوٗنِوَرسِٹی</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[ہرشد چوپڑا]] - ([[Special:Diff/148373|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> ٹیلی ویژن </nowiki><b> -> </b><nowiki>ٹیلی وِجَن</nowiki> # <nowiki> ٹیلی ویژنس </nowiki><b> -> </b><nowiki>ٹیلی وِجنس</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[لَولی (بِلی اَیلِش تہٕ خالِد سُنٛد بٲتھ)]] - ([[Special:Diff/148374|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> سٕند </nowiki><b> -> </b><nowiki>سٟنٛد</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> ==== [[ڈاینامایِٹ (بی ٹی ایس بٲتھ)]] - ([[Special:Diff/148375|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جنوبی </nowiki><b> -> </b><nowiki>جۆنوٗبی</nowiki> # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> گوڑنک </nowiki><b> -> </b><nowiki>گۄڈنُیٛک</nowiki> # <nowiki> گۄڈنیُٛک </nowiki><b> -> </b><nowiki>گۄڈنُیٛک</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[اَیڈَل (بی ٹی ایس بٲتھ)]] - ([[Special:Diff/148376|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جنوبی </nowiki><b> -> </b><nowiki>جۆنوٗبی</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[بَٹَر]] - ([[Special:Diff/148377|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> جنوبی </nowiki><b> -> </b><nowiki>جۆنوٗبی</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[وَن ڈایریکشن]] - ([[Special:Diff/148378|فَرَق]]) ==== # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ۭ </nowiki><b> -> </b><nowiki>ٟ</nowiki> ==== [[ٹیلَر سٕوِفٹ]] - ([[Special:Diff/148379|فَرَق]]) ==== # <nowiki> == زٲتی زِندگی == </nowiki><b> -> </b><nowiki>== ذٲتی زِندگی ==</nowiki> # <nowiki> ر. </nowiki><b> -> </b><nowiki>ر۔</nowiki> ==== [[یوٗکٔلیلی]] - ([[Special:Diff/148380|فَرَق]]) ==== # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[گلین ہنسارڈ]] - ([[Special:Diff/148381|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> دنیا </nowiki><b> -> </b><nowiki>دُنؠ‌یا</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ر. </nowiki><b> -> </b><nowiki>ر۔</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[لیبرٛون جیمز]] - ([[Special:Diff/148382|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیدائش </nowiki><b> -> </b><nowiki>پٲدٲیِش</nowiki> # <nowiki> دسمبر </nowiki><b> -> </b><nowiki>دَسَمبَر</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ؠ مٕتؠ </nowiki><b> -> </b><nowiki>ؠ‌مٕتؠ</nowiki> ==== [[2014 ہِندوستٲنؠ عام چُناو جۆم تہٕ کٔشیٖر مَنٛز]] - ([[Special:Diff/148383|فَرَق]]) ==== # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[2026 برٛاڈ تیٖنٛتول شیٖنہٕ مٲنؠ]] - ([[Special:Diff/148384|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ؠ مٕتؠ </nowiki><b> -> </b><nowiki>ؠ‌مٕتؠ</nowiki> ==== [[سانٛگُر]] - ([[Special:Diff/148385|فَرَق]]) ==== # <nowiki> سہُ </nowiki><b> -> </b><nowiki>سُہ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ؠ. </nowiki><b> -> </b><nowiki>ؠ۔</nowiki> ==== [[سانٛگٕرؠ زان]] - ([[Special:Diff/148386|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اندرونی </nowiki><b> -> </b><nowiki>اۆنٛدروٗنی</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پأنٹھ </nowiki><b> -> </b><nowiki>پٲٹھؠ</nowiki> # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> ٹیلی ویژنس </nowiki><b> -> </b><nowiki>ٹیلی وِجنس</nowiki> # <nowiki> چھے </nowiki><b> -> </b><nowiki>چھےٚ</nowiki> # <nowiki> ==حوالہٕ== </nowiki><b> -> </b><nowiki>== حَوالہٕ ==</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> ضروری </nowiki><b> -> </b><nowiki>ضۆروٗری</nowiki> # <nowiki> قائم </nowiki><b> -> </b><nowiki>قٲیِم</nowiki> # <nowiki> کرتھ </nowiki><b> -> </b><nowiki>کٔرِتھ</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مقبول </nowiki><b> -> </b><nowiki>مَقبوٗل</nowiki> # <nowiki> وقت </nowiki><b> -> </b><nowiki>وَقٕت</nowiki> # <nowiki> ہنز </nowiki><b> -> </b><nowiki>ہِنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئین </nowiki><b> -> </b><nowiki>ئین</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[اَوَستٲیی زَبان]] - ([[Special:Diff/148387|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==== [[پٲکِستانِچ تَوٲریٖخ]] - ([[Special:Diff/148388|فَرَق]]) ==== # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> دُنیاہُک </nowiki><b> -> </b><nowiki>دُنؠ‌یاہُک</nowiki> # <nowiki> یِہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ۭ </nowiki><b> -> </b><nowiki>ٟ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # [[وِکیٖپیٖڈیا:حَوالہٕ|حَوالہٕ]] وَرٲے مَضموٗن ٹیگ کَران ==== [[ہِندوستانٕچ تَوٲریٖخ]] - ([[Special:Diff/148389|فَرَق]]) ==== # <nowiki> انسان </nowiki><b> -> </b><nowiki>اِنسان</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> دُنیاہُک </nowiki><b> -> </b><nowiki>دُنؠ‌یاہُک</nowiki> # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یِہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ؠ مٕتؠ </nowiki><b> -> </b><nowiki>ؠ‌مٕتؠ</nowiki> ==== [[علی اصغر]] - ([[Special:Diff/148390|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> سُند </nowiki><b> -> </b><nowiki>سُنٛد</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۅ </nowiki><b> -> </b><nowiki>ۄ</nowiki> # <nowiki> ہُند </nowiki><b> -> </b><nowiki>ہُنٛد</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[2024 ہِندوستٲنؠ عام چُناو لَداخس مَنٛز]] - ([[Special:Diff/148391|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[2019 ہِندوستٲنؠ عام چُناو جۆم تہٕ کٔشیٖر مَنٛز]] - ([[Special:Diff/148392|فَرَق]]) ==== # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ہُند </nowiki><b> -> </b><nowiki>ہُنٛد</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[صۆوُر، سِریٖنَگَر]] - ([[Special:Diff/148393|فَرَق]]) ==== # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> یونیورسٹی </nowiki><b> -> </b><nowiki>یوٗنِوَرسِٹی</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[نوشہرہ، جۆم تہٕ کٔشیٖر]] - ([[Special:Diff/148394|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> بھارتی </nowiki><b> -> </b><nowiki>ہِندوستٲنؠ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> شہر </nowiki><b> -> </b><nowiki>شَہَر</nowiki> # <nowiki> ضلعہٕ </nowiki><b> -> </b><nowiki>ضِلہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[رَوِنٛدَر رینا]] - ([[Special:Diff/148395|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> جنوری </nowiki><b> -> </b><nowiki>جَنؤری</nowiki> ==== [[تقریری]] - ([[Special:Diff/148396|فَرَق]]) ==== # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> ==== [[2026 بَنٛگلہ دیٖشی عام چُناو]] - ([[Special:Diff/148397|فَرَق]]) ==== # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> حکوٗمت </nowiki><b> -> </b><nowiki>حوٚکوٗمَتھ</nowiki> # <nowiki> دُنیاہُک </nowiki><b> -> </b><nowiki>دُنؠ‌یاہُک</nowiki> # <nowiki> فروری </nowiki><b> -> </b><nowiki>فَرؤری</nowiki> # <nowiki> گۄڈٕنیُک </nowiki><b> -> </b><nowiki>گۄڈنُیٛک</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # [[وِکیٖپیٖڈیا:حَوالہٕ|حَوالہٕ]] وَرٲے مَضموٗن ٹیگ کَران ==== [[ہٲنٛگنین]] - ([[Special:Diff/148398|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # [[وِکیٖپیٖڈیا:حَوالہٕ|حَوالہٕ]] وَرٲے مَضموٗن ٹیگ کَران ==== [[کنہِ گاو]] - ([[Special:Diff/148399|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اندرونی </nowiki><b> -> </b><nowiki>اۆنٛدروٗنی</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # [[وِکیٖپیٖڈیا:حَوالہٕ|حَوالہٕ]] وَرٲے مَضموٗن ٹیگ کَران ==== [[کووِڈ-19 عالمی وبا]] - ([[Special:Diff/148400|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==== [[ڈوروتھی ایڈی]] - ([[Special:Diff/148401|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==7-8-2026== ==== [[الیگزینڈر ژُلُکِدزے]] - ([[Special:Diff/148593|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> سماجی </nowiki><b> -> </b><nowiki>سَمٲجی</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[نِکولا ژولوف]] - ([[Special:Diff/148594|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[اِشفاق احمد]] - ([[Special:Diff/148596|فَرَق]]) ==== # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> کِھ </nowiki><b> -> </b><nowiki>کھِ</nowiki> ==== [[رُم گٔیَم شیٖشس بیٚگُر گۆوا بانہٕ میٛون]] - ([[Special:Diff/148597|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> فلم </nowiki><b> -> </b><nowiki>فِلِم</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> موسیقی </nowiki><b> -> </b><nowiki>موٗسیٖقی</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ن. </nowiki><b> -> </b><nowiki>ن۔</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[سٹرٛابیری فیٖلڈز فارایوَر]] - ([[Special:Diff/148598|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> دِینہٕ </nowiki><b> -> </b><nowiki>دِنہٕ</nowiki> # <nowiki> فروری </nowiki><b> -> </b><nowiki>فَرؤری</nowiki> # <nowiki> فلم </nowiki><b> -> </b><nowiki>فِلِم</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ہُند </nowiki><b> -> </b><nowiki>ہُنٛد</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> ==== [[سٕپایڈَر-مین: برٛینٛڈ نِو ڈے]] - ([[Special:Diff/148599|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> دُنیا </nowiki><b> -> </b><nowiki>دُنؠ‌یا</nowiki> # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> شہر </nowiki><b> -> </b><nowiki>شَہَر</nowiki> # <nowiki> شُروٗع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> فلم </nowiki><b> -> </b><nowiki>فِلِم</nowiki> # <nowiki> فِلم </nowiki><b> -> </b><nowiki>فِلِم</nowiki> # <nowiki> ٚ. </nowiki><b> -> </b><nowiki>ٚ۔</nowiki> # <nowiki> مِہ </nowiki><b> -> </b><nowiki>مہِ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[نِشان صاحب]] - ([[Special:Diff/148600|فَرَق]]) ==== # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> امہ </nowiki><b> -> </b><nowiki>اَمہِ</nowiki> # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> {{Databox}} </nowiki><b> -> </b><nowiki>{{مولوٗماتھ}}</nowiki> ==== [[نِو یارٕک یوٗنِوَرسِٹی]] - ([[Special:Diff/148601|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==== [[لَولی (بِلی اَیلِش تہٕ خالِد سُنٛد بٲتھ)]] - ([[Special:Diff/148603|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==== [[سانٛگٕرؠ زان]] - ([[Special:Diff/148604|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==8-8-2026== ==== [[لِمونیٖن]] - ([[Special:Diff/148754|فَرَق]]) ==== # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[120]] - ([[Special:Diff/148755|فَرَق]]) ==== # [[وِکیٖپیٖڈیا:حَوالہٕ|حَوالہٕ]] وَرٲے مَضموٗن ٹیگ کَران ==== [[بادُر ژُلادزے]] - ([[Special:Diff/148756|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> فلم </nowiki><b> -> </b><nowiki>فِلِم</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ژومون لِنٛگ]] - ([[Special:Diff/148757|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> ُ. </nowiki><b> -> </b><nowiki>ُ۔</nowiki> ==== [[دپشکھا رائ]] - ([[Special:Diff/148758|فَرَق]]) ==== # <nowiki> ابتدائی </nowiki><b> -> </b><nowiki>اِبتدٲیی</nowiki> # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> حاصل </nowiki><b> -> </b><nowiki>حٲصِل</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> سٕند </nowiki><b> -> </b><nowiki>سٟنٛد</nowiki> # <nowiki> شاعر </nowiki><b> -> </b><nowiki>شٲیِر</nowiki> # <nowiki> شامل </nowiki><b> -> </b><nowiki>شٲمِل</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مشہور </nowiki><b> -> </b><nowiki>مَشہوٗر</nowiki> # <nowiki> میل </nowiki><b> -> </b><nowiki>میٖل</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> مجموعی </nowiki><b> -> </b><nowiki>سۆمبرُنی</nowiki> # <nowiki> ہُند </nowiki><b> -> </b><nowiki>ہُنٛد</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ٹاٹا نینو]] - ([[Special:Diff/148759|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ہندوستٲنۍ </nowiki><b> -> </b><nowiki>ہِندوستٲنؠ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ۭ </nowiki><b> -> </b><nowiki>ٟ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[سیمسَنٛگ گیٚلیکسی زی فلولڈ 8]] - ([[Special:Diff/148760|فَرَق]]) ==== # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> دنیاہَس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہَس</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> میٹر </nowiki><b> -> </b><nowiki>میٖٹَر</nowiki> # <nowiki> ورژنَس </nowiki><b> -> </b><nowiki>ؤرجنَس</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[رومن رینٚجٕس]] - ([[Special:Diff/148761|فَرَق]]) ==== # <nowiki> ھ. </nowiki><b> -> </b><nowiki>ھ۔</nowiki> # <nowiki> شٕہ </nowiki><b> -> </b><nowiki>شہٕ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ۭ </nowiki><b> -> </b><nowiki>ٟ</nowiki> ==== [[اعصام الحق قُریشی]] - ([[Special:Diff/148762|فَرَق]]) ==== # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[پیڈری]] - ([[Special:Diff/148763|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> دنیاہٕک </nowiki><b> -> </b><nowiki>دُنؠ‌یاہٕک</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مدد </nowiki><b> -> </b><nowiki>مَدَتھ</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[نِشان صاحب]] - ([[Special:Diff/148764|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==9-8-2026== ==== [[پرمین]] - ([[Special:Diff/148840|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> شائع </nowiki><b> -> </b><nowiki>شایَع</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[کٔلیوپیٹرا]] - ([[Special:Diff/148841|فَرَق]]) ==== # <nowiki> دعویٰ </nowiki><b> -> </b><nowiki>دعوا</nowiki> # <nowiki> ئین </nowiki><b> -> </b><nowiki>ئین</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[بز آلڈرن]] - ([[Special:Diff/148842|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جنوری </nowiki><b> -> </b><nowiki>جَنؤری</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ٹ. </nowiki><b> -> </b><nowiki>ٹ۔</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[لُژک]] - ([[Special:Diff/148843|فَرَق]]) ==== # <nowiki> آبادی </nowiki><b> -> </b><nowiki>آبٲدی</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> شہر </nowiki><b> -> </b><nowiki>شَہَر</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ز. </nowiki><b> -> </b><nowiki>ز۔</nowiki> ==== [[بویِنٛگ 777]] - ([[Special:Diff/148844|فَرَق]]) ==== # <nowiki> دُنیاہُک </nowiki><b> -> </b><nowiki>دُنؠ‌یاہُک</nowiki> # <nowiki> سۭتہِ </nowiki><b> -> </b><nowiki>سٟتہِ</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> ل. </nowiki><b> -> </b><nowiki>ل۔</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[بویِنٛگ]] - ([[Special:Diff/148845|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[بویِنٛگ کرِٛو فٕلایِٹ ٹؠسٹ]] - ([[Special:Diff/148846|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جنوب </nowiki><b> -> </b><nowiki>جۆنوٗب</nowiki> # <nowiki> ستمبر </nowiki><b> -> </b><nowiki>سَتَمبَر</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[بیری وِلمور]] - ([[Special:Diff/148847|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> دسمبر </nowiki><b> -> </b><nowiki>دَسَمبَر</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> گۄڈٕنیُک </nowiki><b> -> </b><nowiki>گۄڈنُیٛک</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> مجموعی </nowiki><b> -> </b><nowiki>سۆمبرُنی</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> لِہ </nowiki><b> -> </b><nowiki>لہِ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[اینیس کینٹر فرٛیڈم]] - ([[Special:Diff/148848|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> انسانی </nowiki><b> -> </b><nowiki>اِنسٲنی</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[عَلی ظَفَر]] - ([[Special:Diff/148849|فَرَق]]) ==== # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> ==== [[دپشکھا رائ]] - ([[Special:Diff/148850|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==10-8-2026== ==== [[وایلِن]] - ([[Special:Diff/148935|فَرَق]]) ==== # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> موسیقی </nowiki><b> -> </b><nowiki>موٗسیٖقی</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[انیتا ژوے]] - ([[Special:Diff/148936|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[وَن پیٖس]] - ([[Special:Diff/148937|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> دُنیاہَس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہَس</nowiki> # <nowiki> شائع </nowiki><b> -> </b><nowiki>شایَع</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[عَلا دیٖن]] - ([[Special:Diff/148938|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> سُند </nowiki><b> -> </b><nowiki>سُنٛد</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مجموعس </nowiki><b> -> </b><nowiki>سۆمبرُنس</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[نِنٛجا ہَتوڑی]] - ([[Special:Diff/148939|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> و. </nowiki><b> -> </b><nowiki>و۔</nowiki> ==== [[پوکیمون]] - ([[Special:Diff/148940|فَرَق]]) ==== # <nowiki> دُنیاہَس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہَس</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[کرٛیٚیون شِن چین]] - ([[Special:Diff/148941|فَرَق]]) ==== # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> ۭ </nowiki><b> -> </b><nowiki>ٟ</nowiki> ==== [[ڈوریمون]] - ([[Special:Diff/148942|فَرَق]]) ==== # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> ُ. </nowiki><b> -> </b><nowiki>ُ۔</nowiki> ==== [[ژُتومو شِبایاما]] - ([[Special:Diff/148943|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> ٹیلی ویژن </nowiki><b> -> </b><nowiki>ٹیلی وِجَن</nowiki> # <nowiki> ٹیلی ویژنُک </nowiki><b> -> </b><nowiki>ٹیلی وِجنُک</nowiki> # <nowiki> فلم </nowiki><b> -> </b><nowiki>فِلِم</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[مکہ اِکوَٹ بچاو معاہدٕ]] - ([[Special:Diff/148944|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==11-8-2026== ==== [[رنبیٖر کٔپوٗر]] - ([[Special:Diff/149011|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> دُنیا </nowiki><b> -> </b><nowiki>دُنؠ‌یا</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> ستمبر </nowiki><b> -> </b><nowiki>سَتَمبَر</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[سنجے دَت]] - ([[Special:Diff/149012|فَرَق]]) ==== # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> مخالف </nowiki><b> -> </b><nowiki>مُخٲلِف</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ۭ </nowiki><b> -> </b><nowiki>ٟ</nowiki> ==== [[میری کوم]] - ([[Special:Diff/149013|فَرَق]]) ==== # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> دنیاہک </nowiki><b> -> </b><nowiki>دُنؠ‌یاہک</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> کَھ </nowiki><b> -> </b><nowiki>کھَ</nowiki> # <nowiki> چِہ </nowiki><b> -> </b><nowiki>چہِ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ثانیہ مرزا]] - ([[Special:Diff/149014|فَرَق]]) ==== # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> جِہ </nowiki><b> -> </b><nowiki>جہِ</nowiki> # <nowiki> ٘ </nowiki><b> -> </b><nowiki>ٚ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[2026 کولمبیا بُنیُل]] - ([[Special:Diff/149015|فَرَق]]) ==== # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> شُروٗع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[جماد عثمان]] - ([[Special:Diff/149016|فَرَق]]) ==== # <nowiki> سہُ </nowiki><b> -> </b><nowiki>سُہ</nowiki> # <nowiki> سرکاری </nowiki><b> -> </b><nowiki> سرکاری</nowiki> # <nowiki> شُروٗع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> ہٕنز </nowiki><b> -> </b><nowiki>ہٕنٛز</nowiki> # <nowiki> یونیورسٹی </nowiki><b> -> </b><nowiki>یوٗنِوَرسِٹی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[کیپٹن ژُباسا]] - ([[Special:Diff/149017|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> امہ </nowiki><b> -> </b><nowiki>اَمہِ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> دنیاہَس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہَس</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مجموعی </nowiki><b> -> </b><nowiki>سۆمبرُنی</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[صوفیہ (روبوٹ)]] - ([[Special:Diff/149018|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> انسانی </nowiki><b> -> </b><nowiki>اِنسٲنی</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> دُنیاہَس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہَس</nowiki> # <nowiki> فروری </nowiki><b> -> </b><nowiki>فَرؤری</nowiki> # <nowiki> کٔرتھ </nowiki><b> -> </b><nowiki>کٔرِتھ</nowiki> # <nowiki> گۄڈٕنیُک </nowiki><b> -> </b><nowiki>گۄڈنُیٛک</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[مایِنکرٛافٹ]] - ([[Special:Diff/149019|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> تعاون </nowiki><b> -> </b><nowiki>سہکٲری</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[روبلوکس]] - ([[Special:Diff/149020|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> دنیا </nowiki><b> -> </b><nowiki>دُنؠ‌یا</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> فروری </nowiki><b> -> </b><nowiki>فَرؤری</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==12-8-2026== ==== [[کرگِل جَنٛگ]] - ([[Special:Diff/149121|فَرَق]]) ==== # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> سۭتہِ </nowiki><b> -> </b><nowiki>سٟتہِ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ہندوستٲنۍ </nowiki><b> -> </b><nowiki>ہِندوستٲنؠ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[مِنٛگ خاندان]] - ([[Special:Diff/149122|فَرَق]]) ==== # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> دارالحکومت </nowiki><b> -> </b><nowiki>رازدٲنؠ</nowiki> # <nowiki> مَنز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یِہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> یِہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> ==== [[شوٗش]] - ([[Special:Diff/149123|فَرَق]]) ==== # <nowiki> ہنز </nowiki><b> -> </b><nowiki>ہِنٛز</nowiki> # <nowiki> گ. </nowiki><b> -> </b><nowiki>گ۔</nowiki> ==== [[لویی ویٹون]] - ([[Special:Diff/149124|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> دُنیاہٕکؠ </nowiki><b> -> </b><nowiki>دُنؠ‌یاہٕکؠ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> قۭمتی </nowiki><b> -> </b><nowiki>قٟمتی</nowiki> # <nowiki> لگژری </nowiki><b> -> </b><nowiki>لَگجَری</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ِ. </nowiki><b> -> </b><nowiki>ِ۔</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[1964 الاسکا بُنیُل]] - ([[Special:Diff/149125|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> میٹر </nowiki><b> -> </b><nowiki>میٖٹَر</nowiki> # <nowiki> میل </nowiki><b> -> </b><nowiki>میٖل</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> ==== [[اورینٹل ایکسپریس]] - ([[Special:Diff/149126|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==13-8-2026== ==== [[صادیا]] - ([[Special:Diff/149205|فَرَق]]) ==== # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[بٔڑ سفید شارٕک]] - ([[Special:Diff/149206|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> انسان </nowiki><b> -> </b><nowiki>اِنسان</nowiki> # <nowiki> انواع </nowiki><b> -> </b><nowiki>زٲژ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مجموعو </nowiki><b> -> </b><nowiki>سۆمبرُنو</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[پی این ایس ہَنٛگور (ایس131)]] - ([[Special:Diff/149207|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[سعدی شیرازی]] - ([[Special:Diff/149208|فَرَق]]) ==== # <nowiki> تِہ </nowiki><b> -> </b><nowiki>تہِ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[اَے این ایس وِکرانٛت (1961)]] - ([[Special:Diff/149209|فَرَق]]) ==== # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> جنوری </nowiki><b> -> </b><nowiki>جَنؤری</nowiki> # <nowiki> جنگ </nowiki><b> -> </b><nowiki>جَنٛگ</nowiki> # <nowiki> گۄڈٕنیُک </nowiki><b> -> </b><nowiki>گۄڈنُیٛک</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[فرٛانٛسُک ؤزیٖرِ اعظم]] - ([[Special:Diff/149210|فَرَق]]) ==== # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[2024 فرٛانٛسی قونوٗن ساز چُناو]] - ([[Special:Diff/149211|فَرَق]]) ==== # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> دسمبر </nowiki><b> -> </b><nowiki>دَسَمبَر</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ؤ </nowiki><b> -> </b><nowiki>و</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئیل </nowiki><b> -> </b><nowiki>ئیل</nowiki> ==== [[ونہِ وار]] - ([[Special:Diff/149212|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[زُوٕلؠ]] - ([[Special:Diff/149213|فَرَق]]) ==== # <nowiki> امہ </nowiki><b> -> </b><nowiki>اَمہِ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> ==== [[گاشِرؠ مِلوَن]] - ([[Special:Diff/149214|فَرَق]]) ==== # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[وُڈٕر]] - ([[Special:Diff/149215|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[2025 سیبو بُنیُل]] - ([[Special:Diff/149216|فَرَق]]) ==== # <nowiki> مدد </nowiki><b> -> </b><nowiki>مَدَتھ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[چِنٛگ خاندان]] - ([[Special:Diff/149217|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> جنگس </nowiki><b> -> </b><nowiki>جَنٛگس</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> قائم </nowiki><b> -> </b><nowiki>قٲیِم</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ژولا ڈرٛیگویچیوا]] - ([[Special:Diff/149218|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==14-8-2026== ==== [[پورٹو ریکو]] - ([[Special:Diff/149378|فَرَق]]) ==== # <nowiki> آبادی </nowiki><b> -> </b><nowiki>آبٲدی</nowiki> # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> دارالحکومت </nowiki><b> -> </b><nowiki>رازدٲنؠ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> شہر </nowiki><b> -> </b><nowiki>شَہَر</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[پرِٛچارڈ کولون]] - ([[Special:Diff/149379|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ستمبر </nowiki><b> -> </b><nowiki>سَتَمبَر</nowiki> # <nowiki> کٔرتھ </nowiki><b> -> </b><nowiki>کٔرِتھ</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مدد </nowiki><b> -> </b><nowiki>مَدَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[پلوٗٹو]] - ([[Special:Diff/149380|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[مادیرا دٔرؠ‌یاو]] - ([[Special:Diff/149381|فَرَق]]) ==== # <nowiki> معاون </nowiki><b> -> </b><nowiki>سہارٕ</nowiki> # <nowiki> محیط </nowiki><b> -> </b><nowiki>پھٔہلِتھ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ایمیزون دٔرؠ‌یاو]] - ([[Special:Diff/149382|فَرَق]]) ==== # <nowiki> دُنیاہک </nowiki><b> -> </b><nowiki>دُنؠ‌یاہک</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ایٚٹلانٛٹِک سۆدُر]] - ([[Special:Diff/149383|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> دنیا </nowiki><b> -> </b><nowiki>دُنؠ‌یا</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مربع </nowiki><b> -> </b><nowiki>چَکور</nowiki> # <nowiki> محیط </nowiki><b> -> </b><nowiki>پھٔہلِتھ</nowiki> ==== [[ہیمِش ہارڈِنٛگ]] - ([[Special:Diff/149384|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ٹایٹن آبدوٗزُک پھَٹُن]] - ([[Special:Diff/149385|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مدد </nowiki><b> -> </b><nowiki>مَدَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ؠ مٕتؠ </nowiki><b> -> </b><nowiki>ؠ‌مٕتؠ</nowiki> ==== [[12 اگست 2026وُک گرٛؠہنہٕ ماتھ]] - ([[Special:Diff/149386|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[ووییجر 2]] - ([[Special:Diff/149387|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ہُند </nowiki><b> -> </b><nowiki>ہُنٛد</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[وَرُن]] - ([[Special:Diff/149388|فَرَق]]) ==== # <nowiki> ٹِھ </nowiki><b> -> </b><nowiki>ٹھِ</nowiki> ==== [[کنہٕ]] - ([[Special:Diff/149389|فَرَق]]) ==== # <nowiki> ==حوالہٕ== </nowiki><b> -> </b><nowiki>== حَوالہٕ ==</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> ن. </nowiki><b> -> </b><nowiki>ن۔</nowiki> # فرما ہَٹاوَن ==== [[ازلہٕ گرٛیٚنؠ]] - ([[Special:Diff/149390|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مدد </nowiki><b> -> </b><nowiki>مَدَتھ</nowiki> # <nowiki> س. </nowiki><b> -> </b><nowiki>س۔</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[پال-ہیٚنری نرجولیٹ]] - ([[Special:Diff/149391|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[جادٕ شيٖر]] - ([[Special:Diff/149392|فَرَق]]) ==== # <nowiki> د. </nowiki><b> -> </b><nowiki>د۔</nowiki> ==== [[نبہٕ دۆنٛد]] - ([[Special:Diff/149393|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[مال تار واو]] - ([[Special:Diff/149394|فَرَق]]) ==== # <nowiki> جنوبی </nowiki><b> -> </b><nowiki>جۆنوٗبی</nowiki> # <nowiki> جنوب </nowiki><b> -> </b><nowiki>جۆنوٗب</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[بَمَنٛز رٕکھ]] - ([[Special:Diff/149395|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جنوبی </nowiki><b> -> </b><nowiki>جۆنوٗبی</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[شہزادہ داوُد]] - ([[Special:Diff/149396|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> فروری </nowiki><b> -> </b><nowiki>فَرؤری</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> ==== [[سٹاکٹن رش]] - ([[Special:Diff/149397|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[نوبَل یَنام یافتہٕ مُسلمانَن ہٕنٛز فِہرِست]] - ([[Special:Diff/149398|فَرَق]]) ==== # <nowiki> گۄڈنیُٛک </nowiki><b> -> </b><nowiki>گۄڈنُیٛک</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[ونہِ وار]] - ([[Special:Diff/149399|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==== [[چِنٛگ خاندان]] - ([[Special:Diff/149400|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==== [[ژولا ڈرٛیگویچیوا]] - ([[Special:Diff/149401|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==15-8-2026== ==== [[کیپلر-452بی]] - ([[Special:Diff/149470|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # [[وِکیٖپیٖڈیا:حَوالہٕ|حَوالہٕ]] وَرٲے مَضموٗن ٹیگ کَران ==== [[یوٗری ژُنیماژُ]] - ([[Special:Diff/149471|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> ==== [[12 اگست 2026وُک گرٛؠہنہٕ ماتھ]] - ([[Special:Diff/149472|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==== [[جۆم تہٕ کٔشیٖر ہُنٛد نؠبٕرؠ خاکہٕ]] - ([[Special:Diff/149473|فَرَق]]) ==== # <nowiki> آبادی </nowiki><b> -> </b><nowiki>آبٲدی</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> میل </nowiki><b> -> </b><nowiki>میٖل</nowiki> # <nowiki> مربع </nowiki><b> -> </b><nowiki>چَکور</nowiki> # <nowiki> مجموعی </nowiki><b> -> </b><nowiki>سۆمبرُنی</nowiki> # <nowiki> وقت </nowiki><b> -> </b><nowiki>وَقٕت</nowiki> # <nowiki> ہندوستانی </nowiki><b> -> </b><nowiki>ہِندوستٲنؠ</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> ==== [[جموں اینٛڈ کشمیر سٹیٹ ویجیلنس کمیشن]] - ([[Special:Diff/149474|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> حکوٗمت </nowiki><b> -> </b><nowiki>حوٚکوٗمَتھ</nowiki> # <nowiki> خلاف </nowiki><b> -> </b><nowiki>خَلاف</nowiki> # <nowiki> ریاست </nowiki><b> -> </b><nowiki>رِیاسَتھ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> فروری </nowiki><b> -> </b><nowiki>فَرؤری</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ایٚلیکس ڈی مِنور]] - ([[Special:Diff/149475|فَرَق]]) ==== # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> دسمبر </nowiki><b> -> </b><nowiki>دَسَمبَر</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> ==== [[حسن پایکر]] - ([[Special:Diff/149476|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> تنقید </nowiki><b> -> </b><nowiki>تَنقیٖد</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئیل </nowiki><b> -> </b><nowiki>ئیل</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[2026 نیٖٹ تنازٕ]] - ([[Special:Diff/149477|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> تعلیم </nowiki><b> -> </b><nowiki>تٲلیٖم</nowiki> # <nowiki> تنقید </nowiki><b> -> </b><nowiki>تَنقیٖد</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[ووییجر 2]] - ([[Special:Diff/149478|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==== [[ازلہٕ گرٛیٚنؠ]] - ([[Special:Diff/149479|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==== [[پال-ہیٚنری نرجولیٹ]] - ([[Special:Diff/149480|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==== [[مال تار واو]] - ([[Special:Diff/149481|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==16-8-2026== ==== [[ایرِک ژٕنٛگ]] - ([[Special:Diff/149532|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> ٹیلی ویژن </nowiki><b> -> </b><nowiki>ٹیلی وِجَن</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[بَکِنٛگھَم میٚحل]] - ([[Special:Diff/149533|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[ڈوایِٹ مُحمد قَوی]] - ([[Special:Diff/149534|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> جنوری </nowiki><b> -> </b><nowiki>جَنؤری</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[مَیانمار خانہٕ جَنٛگی (2021-ازکال)]] - ([[Special:Diff/149535|فَرَق]]) ==== # <nowiki> آبادی </nowiki><b> -> </b><nowiki>آبٲدی</nowiki> # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اندروٗنی </nowiki><b> -> </b><nowiki>اۆنٛدروٗنی</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> شُروٗع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> ضِلعہٕ </nowiki><b> -> </b><nowiki>ضِلہٕ</nowiki> # <nowiki> فروری </nowiki><b> -> </b><nowiki>فَرؤری</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> گھر </nowiki><b> -> </b><nowiki>گرٕ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[لاو اَن]] - ([[Special:Diff/149536|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[چوٗ رونٛگجی]] - ([[Special:Diff/149537|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[کیپلر خلٲیی دوٗربیٖن]] - ([[Special:Diff/149538|فَرَق]]) ==== # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[جۆم تہٕ کٔشیٖر ہُنٛد نؠبٕرؠ خاکہٕ]] - ([[Special:Diff/149539|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==17-8-2026== ==== [[ایتھنز]] - ([[Special:Diff/149615|فَرَق]]) ==== # <nowiki> آبادی </nowiki><b> -> </b><nowiki>آبٲدی</nowiki> # <nowiki> دنیاہک </nowiki><b> -> </b><nowiki>دُنؠ‌یاہک</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> ==== [[جوب دٔرؠ‌یاو]] - ([[Special:Diff/149616|فَرَق]]) ==== # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[خیبر پختونخوا]] - ([[Special:Diff/149617|فَرَق]]) ==== # [[وِکیٖپیٖڈیا:حَوالہٕ|حَوالہٕ]] وَرٲے مَضموٗن ٹیگ کَران ==== [[جوب]] - ([[Special:Diff/149618|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> شہر </nowiki><b> -> </b><nowiki>شَہَر</nowiki> # <nowiki> ضِلعہٕ </nowiki><b> -> </b><nowiki>ضِلہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ٹِھ </nowiki><b> -> </b><nowiki>ٹھِ</nowiki> ==== [[جاں بدیٚل بۄکاسا]] - ([[Special:Diff/149619|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جنوری </nowiki><b> -> </b><nowiki>جَنؤری</nowiki> # <nowiki> فروری </nowiki><b> -> </b><nowiki>فَرؤری</nowiki> # <nowiki> قائم </nowiki><b> -> </b><nowiki>قٲیِم</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[جا جا گیبور]] - ([[Special:Diff/149620|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> دسمبر </nowiki><b> -> </b><nowiki>دَسَمبَر</nowiki> # <nowiki> فروری </nowiki><b> -> </b><nowiki>فَرؤری</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[2013 پٲکِستٲنؠ عام چُناو]] - ([[Special:Diff/149621|فَرَق]]) ==== # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[جیسن آرڈے]] - ([[Special:Diff/149622|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> تعلیٖم </nowiki><b> -> </b><nowiki>تٲلیٖم</nowiki> # <nowiki> کٔرۍمٕتۍ </nowiki><b> -> </b><nowiki>کٔرؠ‌مٕتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ۭ </nowiki><b> -> </b><nowiki>ٟ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ؠ مٕتؠ </nowiki><b> -> </b><nowiki>ؠ‌مٕتؠ</nowiki> ==== [[جۆم تہٕ کٔشیٖر مَنٛز سِیاسَتھ]] - ([[Special:Diff/149623|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> علاقہ </nowiki><b> -> </b><nowiki>علاقہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ؤ </nowiki><b> -> </b><nowiki>و</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[گگن دھاون]] - ([[Special:Diff/149624|فَرَق]]) ==== # <nowiki> ابتدائی </nowiki><b> -> </b><nowiki>اِبتدٲیی</nowiki> # <nowiki> بھارتی </nowiki><b> -> </b><nowiki>ہِندوستٲنؠ</nowiki> # <nowiki> پیدائش </nowiki><b> -> </b><nowiki>پٲدٲیِش</nowiki> # <nowiki> تعلیم </nowiki><b> -> </b><nowiki>تٲلیٖم</nowiki> # <nowiki> حاصل </nowiki><b> -> </b><nowiki>حٲصِل</nowiki> # <nowiki> زیادہ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> شامل </nowiki><b> -> </b><nowiki>شٲمِل</nowiki> # <nowiki> شائع </nowiki><b> -> </b><nowiki>شایَع</nowiki> # <nowiki> قائم </nowiki><b> -> </b><nowiki>قٲیِم</nowiki> # <nowiki> مدد </nowiki><b> -> </b><nowiki>مَدَتھ</nowiki> # <nowiki> محیط </nowiki><b> -> </b><nowiki>پھٔہلِتھ</nowiki> # <nowiki> ؤ </nowiki><b> -> </b><nowiki>و</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[جۆم تہٕ کٔشیٖر نیشنل پینتھرس پارٹی]] - ([[Special:Diff/149625|فَرَق]]) ==== # <nowiki> دُنیاہُک </nowiki><b> -> </b><nowiki>دُنؠ‌یاہُک</nowiki> ==== [[جۆم تہٕ کٔشیٖر ہُنٛد ہایی کورٹ]] - ([[Special:Diff/149626|فَرَق]]) ==== # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[عبدُل رحیٖم رٲتھٕر (1944 مَنٛز زامُت)]] - ([[Special:Diff/149627|فَرَق]]) ==== # <nowiki> یونیورسٹی </nowiki><b> -> </b><nowiki>یوٗنِوَرسِٹی</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[آبروٗ (1968 فِلِم)]] - ([[Special:Diff/149628|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> سۭتہِ </nowiki><b> -> </b><nowiki>سٟتہِ</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> فلم </nowiki><b> -> </b><nowiki>فِلِم</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> موسیقی </nowiki><b> -> </b><nowiki>موٗسیٖقی</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> گَھ </nowiki><b> -> </b><nowiki>گھَ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[جۆم تہٕ کٔشیٖر کؠن شہرن ہٕنٛز فِہرِست]] - ([[Special:Diff/149629|فَرَق]]) ==== # <nowiki> آبادی </nowiki><b> -> </b><nowiki>آبٲدی</nowiki> # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> امہ </nowiki><b> -> </b><nowiki>اَمہِ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مقامی </nowiki><b> -> </b><nowiki>مُقٲمی</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ن. </nowiki><b> -> </b><nowiki>ن۔</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==18-8-2026== ==== [[یَشووَتی]] - ([[Special:Diff/149727|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> حکوٗمت </nowiki><b> -> </b><nowiki>حوٚکوٗمَتھ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ہندوستٲنی </nowiki><b> -> </b><nowiki>ہِندوستٲنؠ</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ز. </nowiki><b> -> </b><nowiki>ز۔</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئید </nowiki><b> -> </b><nowiki>ئید</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ؠ مٕتؠ </nowiki><b> -> </b><nowiki>ؠ‌مٕتؠ</nowiki> # [[وِکیٖپیٖڈیا:حَوالہٕ|حَوالہٕ]] وَرٲے مَضموٗن ٹیگ کَران ==== [[رینفے کٕلاس 252]] - ([[Special:Diff/149728|فَرَق]]) ==== # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> ورژن </nowiki><b> -> </b><nowiki>ؤرجَن</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[زایرہ وسیم]] - ([[Special:Diff/149729|فَرَق]]) ==== # <nowiki> ==زٲتی زِندگی== </nowiki><b> -> </b><nowiki>== ذٲتی زِندگی ==</nowiki> # <nowiki> {{Stub}} </nowiki><b> -> </b><nowiki>{{نامُکَمَل مَضموٗن}}</nowiki> # <nowiki> {{Databox}} </nowiki><b> -> </b><nowiki>{{مولوٗماتھ}}</nowiki> # [[وِکیٖپیٖڈیا:حَوالہٕ|حَوالہٕ]] وَرٲے مَضموٗن ٹیگ کَران ==== [[گیری اولٛڈمین]] - ([[Special:Diff/149730|فَرَق]]) ==== # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> سُند </nowiki><b> -> </b><nowiki>سُنٛد</nowiki> # <nowiki> فلم </nowiki><b> -> </b><nowiki>فِلِم</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ۭ </nowiki><b> -> </b><nowiki>ٟ</nowiki> ==== [[جَنٛگژھُن سِٹیشن]] - ([[Special:Diff/149731|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[جاک دیریدا]] - ([[Special:Diff/149732|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پأنٹھ </nowiki><b> -> </b><nowiki>پٲٹھؠ</nowiki> # <nowiki> تنقید </nowiki><b> -> </b><nowiki>تَنقیٖد</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ؠ مٕتؠ </nowiki><b> -> </b><nowiki>ؠ‌مٕتؠ</nowiki> ==== [[جاں پال سارترَٛ]] - ([[Special:Diff/149733|فَرَق]]) ==== # <nowiki> آزادی </nowiki><b> -> </b><nowiki> آزادی</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> انسانی </nowiki><b> -> </b><nowiki>اِنسٲنی</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ہُند </nowiki><b> -> </b><nowiki>ہُنٛد</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[اسکا چیٛونٛگ]] - ([[Special:Diff/149734|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> موسیقی </nowiki><b> -> </b><nowiki>موٗسیٖقی</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[پرٛانہِ کالُک مَندَر، لَدُو]] - ([[Special:Diff/149735|فَرَق]]) ==== # <nowiki> تِہ </nowiki><b> -> </b><nowiki>تہِ</nowiki> ==== [[2026 فلوریس بُنیُل]] - ([[Special:Diff/149736|فَرَق]]) ==== # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[ہیڈن پینٹیٖیَر]] - ([[Special:Diff/149737|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> دسمبر </nowiki><b> -> </b><nowiki>دَسَمبَر</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ستمبر </nowiki><b> -> </b><nowiki>سَتَمبَر</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> فروری </nowiki><b> -> </b><nowiki>فَرؤری</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[پرَٛسُن]] - ([[Special:Diff/149738|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ن. </nowiki><b> -> </b><nowiki>ن۔</nowiki> ==== [[جَنٛگلی جانورن تہٕ کُلؠن کٹؠن ہٕنٛز خطرٕ زدٕ ژٲژ منٛز بین الاقوٲمی تِجارتُک معاہدٕ]] - ([[Special:Diff/149739|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[مَکاو]] - ([[Special:Diff/149740|فَرَق]]) ==== # <nowiki> دنیاہک </nowiki><b> -> </b><nowiki>دُنؠ‌یاہک</nowiki> # <nowiki> مربع </nowiki><b> -> </b><nowiki>چَکور</nowiki> ==== [[جاں بدیٚل بۄکاسا]] - ([[Special:Diff/149741|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==19-8-2026== ==== [[خانٛدَر]] - ([[Special:Diff/149830|فَرَق]]) ==== # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[عٔلمہِ آثار]] - ([[Special:Diff/149831|فَرَق]]) ==== # <nowiki> == حوالہٕ == </nowiki><b> -> </b><nowiki>== حَوالہٕ ==</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[بَشرِیات]] - ([[Special:Diff/149832|فَرَق]]) ==== # <nowiki> ن. </nowiki><b> -> </b><nowiki>ن۔</nowiki> # <nowiki> تُھ </nowiki><b> -> </b><nowiki>تھُ</nowiki> ==== [[ریسٹورَنٹ]] - ([[Special:Diff/149833|فَرَق]]) ==== # [[وِکیٖپیٖڈیا:حَوالہٕ|حَوالہٕ]] وَرٲے مَضموٗن ٹیگ کَران ==== [[سَمواَن زَبان]] - ([[Special:Diff/149834|فَرَق]]) ==== # <nowiki> آبادی </nowiki><b> -> </b><nowiki>آبٲدی</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> ==== [[چو گوانیوٗ]] - ([[Special:Diff/149835|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[جوسر سُنٛد اہرام]] - ([[Special:Diff/149836|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> گوڑنک </nowiki><b> -> </b><nowiki>گۄڈنُیٛک</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یِہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[چیٖنُک عٔظیٖم دؠوار]] - ([[Special:Diff/149837|فَرَق]]) ==== # <nowiki> دُنیاہک </nowiki><b> -> </b><nowiki>دُنؠ‌یاہک</nowiki> # <nowiki> یِہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[شِنجیٛانٛگ]] - ([[Special:Diff/149838|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> دارالحکومت </nowiki><b> -> </b><nowiki>رازدٲنؠ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[سبزار بھٹ]] - ([[Special:Diff/149839|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[حَمیٖد گاڈٕ]] - ([[Special:Diff/149840|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اسلٲمی </nowiki><b> -> </b><nowiki>اِسلٲمی</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> ہندوستٲنۍ </nowiki><b> -> </b><nowiki>ہِندوستٲنؠ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[2008 مُمبیی حملہٕ]] - ([[Special:Diff/149841|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اسلٲمی </nowiki><b> -> </b><nowiki>اِسلٲمی</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> ہندوستٲنۍ </nowiki><b> -> </b><nowiki>ہِندوستٲنؠ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ؠ مٕتؠ </nowiki><b> -> </b><nowiki>ؠ‌مٕتؠ</nowiki> ==== [[گاو کاو (اِمتِحان)]] - ([[Special:Diff/149842|فَرَق]]) ==== # <nowiki> دُنیاہَس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہَس</nowiki> # <nowiki> ؤ </nowiki><b> -> </b><nowiki>و</nowiki> # <nowiki> یوٗنیورسٹی </nowiki><b> -> </b><nowiki>یوٗنِوَرسِٹی</nowiki> # <nowiki> ھ. </nowiki><b> -> </b><nowiki>ھ۔</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[ایس ایم ایس شوابین]] - ([[Special:Diff/149843|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ستمبر </nowiki><b> -> </b><nowiki>سَتَمبَر</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مدد </nowiki><b> -> </b><nowiki>مَدَتھ</nowiki> # <nowiki> میٹر </nowiki><b> -> </b><nowiki>میٖٹَر</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> معاون </nowiki><b> -> </b><nowiki>سہارٕ</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> ==== [[لُوبنَا قرڈبہ]] - ([[Special:Diff/149844|فَرَق]]) ==== # <nowiki> چِہ </nowiki><b> -> </b><nowiki>چہِ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> ==== [[راج ترنگنی]] - ([[Special:Diff/149845|فَرَق]]) ==== # <nowiki> اِستعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> پأنٹھ </nowiki><b> -> </b><nowiki>پٲٹھؠ</nowiki> # <nowiki> سۭتہِ </nowiki><b> -> </b><nowiki>سٟتہِ</nowiki> # <nowiki> سٕنز </nowiki><b> -> </b><nowiki>سٟنٛز</nowiki> # <nowiki> سُند </nowiki><b> -> </b><nowiki>سُنٛد</nowiki> # <nowiki> مدد </nowiki><b> -> </b><nowiki>مَدَتھ</nowiki> # <nowiki> ہنز </nowiki><b> -> </b><nowiki>ہِنٛز</nowiki> # <nowiki> مِہ </nowiki><b> -> </b><nowiki>مہِ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئیس </nowiki><b> -> </b><nowiki>ئیس</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[جاک دیریدا]] - ([[Special:Diff/149846|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==== [[اسکا چیٛونٛگ]] - ([[Special:Diff/149847|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==20-8-2026== ==== [[ذاکِر رَشیٖد بھَٹ]] - ([[Special:Diff/149909|فَرَق]]) ==== # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> سٕندۍ </nowiki><b> -> </b><nowiki>سٟنٛدؠ</nowiki> # <nowiki> ضِلعہٕ </nowiki><b> -> </b><nowiki>ضِلہٕ</nowiki> # <nowiki> قتل </nowiki><b> -> </b><nowiki>قَتٕل</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ٕ. </nowiki><b> -> </b><nowiki>ٕ۔</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[وارفرین]] - ([[Special:Diff/149910|فَرَق]]) ==== # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> علاج </nowiki><b> -> </b><nowiki>یَلاج</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[اولانزاپین]] - ([[Special:Diff/149911|فَرَق]]) ==== # <nowiki> علاج </nowiki><b> -> </b><nowiki>یَلاج</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[بسوپرولول]] - ([[Special:Diff/149912|فَرَق]]) ==== # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> ==== [[سیلاین]] - ([[Special:Diff/149913|فَرَق]]) ==== # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> علاج </nowiki><b> -> </b><nowiki>یَلاج</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[کیلامین]] - ([[Special:Diff/149914|فَرَق]]) ==== # <nowiki> تقریبا </nowiki><b> -> </b><nowiki>تَقریٖبَن</nowiki> # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> دنیا </nowiki><b> -> </b><nowiki>دُنؠ‌یا</nowiki> # <nowiki> ہنز </nowiki><b> -> </b><nowiki>ہِنٛز</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ڈیکسٹرن 70]] - ([[Special:Diff/149915|فَرَق]]) ==== # <nowiki> دنیا </nowiki><b> -> </b><nowiki>دُنؠ‌یا</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ۭ </nowiki><b> -> </b><nowiki>ٟ</nowiki> ==== [[ریٹینول]] - ([[Special:Diff/149916|فَرَق]]) ==== # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> علاج </nowiki><b> -> </b><nowiki>یَلاج</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[وٹامن سی]] - ([[Special:Diff/149917|فَرَق]]) ==== # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> علاج </nowiki><b> -> </b><nowiki>یَلاج</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[زیٛادٕ خوٗنُک دَباو]] - ([[Special:Diff/149918|فَرَق]]) ==== # <nowiki> اِستعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> ؤ </nowiki><b> -> </b><nowiki>و</nowiki> # <nowiki> ہنز </nowiki><b> -> </b><nowiki>ہِنٛز</nowiki> # <nowiki> نہَ </nowiki><b> -> </b><nowiki>نَہ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ایبولا]] - ([[Special:Diff/149919|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اِستعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> علاج </nowiki><b> -> </b><nowiki>یَلاج</nowiki> # <nowiki> معاون </nowiki><b> -> </b><nowiki>سہارٕ</nowiki> # <nowiki> ہنز </nowiki><b> -> </b><nowiki>ہِنٛز</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ۭ </nowiki><b> -> </b><nowiki>ٟ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[نیپا وایرس انفیکشن]] - ([[Special:Diff/149920|فَرَق]]) ==== # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[میٚونٛد]] - ([[Special:Diff/149921|فَرَق]]) ==== # <nowiki> ابتدائی </nowiki><b> -> </b><nowiki>اِبتدٲیی</nowiki> # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> علاج </nowiki><b> -> </b><nowiki>یَلاج</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ایم پوکس]] - ([[Special:Diff/149922|فَرَق]]) ==== # <nowiki> تقریبا </nowiki><b> -> </b><nowiki>تَقریٖبَن</nowiki> # <nowiki> علاج </nowiki><b> -> </b><nowiki>یَلاج</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> ہنز </nowiki><b> -> </b><nowiki>ہِنٛز</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[گلیوبلوسٹوما]] - ([[Special:Diff/149923|فَرَق]]) ==== # <nowiki> علاجس </nowiki><b> -> </b><nowiki>یَلاجس</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> محیط </nowiki><b> -> </b><nowiki>پھٔہلِتھ</nowiki> ==== [[بیلز فالج]] - ([[Special:Diff/149924|فَرَق]]) ==== # <nowiki> تقریبا </nowiki><b> -> </b><nowiki>تَقریٖبَن</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[ۂٹؠ وِسُر]] - ([[Special:Diff/149925|فَرَق]]) ==== # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[واوٕ پتؠ]] - ([[Special:Diff/149926|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> سۭتہِ </nowiki><b> -> </b><nowiki>سٟتہِ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[شُتٕلؠ]] - ([[Special:Diff/149927|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> سۭتہِ </nowiki><b> -> </b><nowiki>سٟتہِ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ؠ مٕتؠ </nowiki><b> -> </b><nowiki>ؠ‌مٕتؠ</nowiki> ==== [[سٕٹیفانوس ژِژِپاس]] - ([[Special:Diff/149928|فَرَق]]) ==== # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ؠ مٕتؠ </nowiki><b> -> </b><nowiki>ؠ‌مٕتؠ</nowiki> ==== [[پَنٛچترنی]] - ([[Special:Diff/149929|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> میٹر </nowiki><b> -> </b><nowiki>میٖٹَر</nowiki> # <nowiki> میل </nowiki><b> -> </b><nowiki>میٖل</nowiki> # <nowiki> معاون </nowiki><b> -> </b><nowiki>سہارٕ</nowiki> # <nowiki> ہندوستٲنۍ </nowiki><b> -> </b><nowiki>ہِندوستٲنؠ</nowiki> # <nowiki> ٹِھ </nowiki><b> -> </b><nowiki>ٹھِ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[جۆم تہٕ کٔشیٖر ہُنٛد ٲییٖن]] - ([[Special:Diff/149930|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جنوری </nowiki><b> -> </b><nowiki>جَنؤری</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> حکوٗمت </nowiki><b> -> </b><nowiki>حوٚکوٗمَتھ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==21-8-2026== ==== [[2026 زیمبیا ہُک عام چُناو]] - ([[Special:Diff/150068|فَرَق]]) ==== # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[زُبہٕ صأب]] - ([[Special:Diff/150069|فَرَق]]) ==== # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> سۭتہِ </nowiki><b> -> </b><nowiki>سٟتہِ</nowiki> # <nowiki> ے. </nowiki><b> -> </b><nowiki>ے۔</nowiki> # <nowiki> پٔھ </nowiki><b> -> </b><nowiki>پھٔ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[میرواعظ عمر فاروق]] - ([[Special:Diff/150070|فَرَق]]) ==== # <nowiki> کِہ </nowiki><b> -> </b><nowiki>کہِ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[اشرف صحرایی]] - ([[Special:Diff/150071|فَرَق]]) ==== # <nowiki> تہ </nowiki><b> -> </b><nowiki>تہٕ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[2026 بَنٛگلہ دیٖشی صٔدرٲتی چُناو]] - ([[Special:Diff/150072|فَرَق]]) ==== # <nowiki> قائم </nowiki><b> -> </b><nowiki>قٲیِم</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ؤرۍ ین </nowiki><b> -> </b><nowiki>ؤرؠ‌یَن</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> ==== [[سَچِن بَنسَل]] - ([[Special:Diff/150073|فَرَق]]) ==== # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[سَید مُحَمَد عاصِم]] - ([[Special:Diff/150074|فَرَق]]) ==== # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[سنجے دھار]] - ([[Special:Diff/150075|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> حکوٗمت </nowiki><b> -> </b><nowiki>حوٚکوٗمَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[رایزِنٛگ کشمیٖر]] - ([[Special:Diff/150076|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> دُنیاہَس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہَس</nowiki> # <nowiki> ریاست </nowiki><b> -> </b><nowiki>رِیاسَتھ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ؠ مٕتؠ </nowiki><b> -> </b><nowiki>ؠ‌مٕتؠ</nowiki> ==== [[شُجاعت بُخاری]] - ([[Special:Diff/150077|فَرَق]]) ==== # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> فروری </nowiki><b> -> </b><nowiki>فَرؤری</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[شیخ سجاد گُل]] - ([[Special:Diff/150078|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[مُحَمَّد]] - ([[Special:Diff/150079|فَرَق]]) ==== # <nowiki> دنیاہس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہس</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[نمیرا سلیم]] - ([[Special:Diff/150080|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> حکوٗمت </nowiki><b> -> </b><nowiki>حوٚکوٗمَتھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[عبدالحمید خراسانی]] - ([[Special:Diff/150081|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> فروری </nowiki><b> -> </b><nowiki>فَرؤری</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[فاروق احمد ڈار]] - ([[Special:Diff/150082|فَرَق]]) ==== # <nowiki> ٹ. </nowiki><b> -> </b><nowiki>ٹ۔</nowiki> ==== [[رِیاض نایکوٗ]] - ([[Special:Diff/150083|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اسلٲمی </nowiki><b> -> </b><nowiki>اِسلٲمی</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ضلعہٕ </nowiki><b> -> </b><nowiki>ضِلہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==22-8-2026== ==== [[2024 پَنٛجاب صوٗبٲیی چُناو]] - ([[Special:Diff/150203|فَرَق]]) ==== # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> دسمبر </nowiki><b> -> </b><nowiki>دَسَمبَر</nowiki> # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> فروری </nowiki><b> -> </b><nowiki>فَرؤری</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مشترکہ </nowiki><b> -> </b><nowiki>مُشتَرکہٕ</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> یِہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> مِہ </nowiki><b> -> </b><nowiki>مہِ</nowiki> ==== [[2023 کَرناٹَک قونوٗن ساز ایٚسمبلی چُناو]] - ([[Special:Diff/150204|فَرَق]]) ==== # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> تنقید </nowiki><b> -> </b><nowiki>تَنقیٖد</nowiki> # <nowiki> جنوری </nowiki><b> -> </b><nowiki>جَنؤری</nowiki> # <nowiki> خلاف </nowiki><b> -> </b><nowiki>خَلاف</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> کٔرتھ </nowiki><b> -> </b><nowiki>کٔرِتھ</nowiki> # <nowiki> کرتھ </nowiki><b> -> </b><nowiki>کٔرِتھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مشترکہ </nowiki><b> -> </b><nowiki>مُشتَرکہٕ</nowiki> # <nowiki> ؤ </nowiki><b> -> </b><nowiki>و</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ۭ </nowiki><b> -> </b><nowiki>ٟ</nowiki> ==== [[پول دٟتھ]] - ([[Special:Diff/150205|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چھے </nowiki><b> -> </b><nowiki>چھےٚ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> خلاف </nowiki><b> -> </b><nowiki>خَلاف</nowiki> # <nowiki> سٕنز </nowiki><b> -> </b><nowiki>سٟنٛز</nowiki> # <nowiki> سُند </nowiki><b> -> </b><nowiki>سُنٛد</nowiki> # <nowiki> صحیح </nowiki><b> -> </b><nowiki>صٔحیٖح</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مدد </nowiki><b> -> </b><nowiki>مَدَتھ</nowiki> # <nowiki> ہٕنز </nowiki><b> -> </b><nowiki>ہٕنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ہاکینٛڈے ہِچیلیما]] - ([[Special:Diff/150206|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[شَہَرِ خاص]] - ([[Special:Diff/150207|فَرَق]]) ==== # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ڈیوِڈ بیکہم]] - ([[Special:Diff/150208|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[1999 ہِندوستٲنؠ عام چُناو جۆم تہٕ کٔشیٖر مَنٛز]] - ([[Special:Diff/150209|فَرَق]]) ==== # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[2004 ہِندوستٲنؠ عام چُناو جۆم تہٕ کٔشیٖر مَنٛز]] - ([[Special:Diff/150210|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[کیپلر-20ایٚف]] - ([[Special:Diff/150211|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[بِشَن ناراین ڈار]] - ([[Special:Diff/150212|فَرَق]]) ==== # <nowiki> تعلیٖم </nowiki><b> -> </b><nowiki>تٲلیٖم</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ؤرۍ یہِ </nowiki><b> -> </b><nowiki>ؤرؠ‌یہِ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ناصِر اسلم وانی]] - ([[Special:Diff/150213|فَرَق]]) ==== # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[أمرا کٔدٕل ایٚسمبلی حلقہٕ]] - ([[Special:Diff/150214|فَرَق]]) ==== # <nowiki> چٕھ </nowiki><b> -> </b><nowiki>چھٕ</nowiki> ==== [[اَنمول پُشجے گوئل]] - ([[Special:Diff/150215|فَرَق]]) ==== # <nowiki> بھارت </nowiki><b> -> </b><nowiki>ہِندوستان</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==23-8-2026== ==== [[فیصل ممتاز راٹھور]] - ([[Special:Diff/150259|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[خانٕقاہ معلیٰ]] - ([[Special:Diff/150260|فَرَق]]) ==== # <nowiki> ؤ </nowiki><b> -> </b><nowiki>و</nowiki> ==== [[رایِن تھامَس وایِٹ]] - ([[Special:Diff/150261|فَرَق]]) ==== # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ؠ مٕتؠ </nowiki><b> -> </b><nowiki>ؠ‌مٕتؠ</nowiki> ==== [[آزاد کٔشیٖر ہُنٛد ؤزیٖرِ اعظم]] - ([[Special:Diff/150262|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> جنوری </nowiki><b> -> </b><nowiki>جَنؤری</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> ==== [[کرِستوفَر مونیوز]] - ([[Special:Diff/150263|فَرَق]]) ==== # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[اووَل آفِس]] - ([[Special:Diff/150264|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جنوب </nowiki><b> -> </b><nowiki>جۆنوٗب</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> سٕنز </nowiki><b> -> </b><nowiki>سٟنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[نٹالی ہارپ]] - ([[Special:Diff/150265|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> ٹیلی ویژن </nowiki><b> -> </b><nowiki>ٹیلی وِجَن</nowiki> # <nowiki> جنوری </nowiki><b> -> </b><nowiki>جَنؤری</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> معاون </nowiki><b> -> </b><nowiki>سہارٕ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئین </nowiki><b> -> </b><nowiki>ئین</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[کیپلر-20ایٚف]] - ([[Special:Diff/150266|فَرَق]]) ==== # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> ==24-8-2026== ==== [[ایش کیچم]] - ([[Special:Diff/150349|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> دُنیاہَس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہَس</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> سٕنز </nowiki><b> -> </b><nowiki>سٟنٛز</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ۭ </nowiki><b> -> </b><nowiki>ٟ</nowiki> ==== [[پِکاچوٗ]] - ([[Special:Diff/150350|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> ٹیلی ویژن </nowiki><b> -> </b><nowiki>ٹیلی وِجَن</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ڈرٛیکو مالفاے]] - ([[Special:Diff/150351|فَرَق]]) ==== # <nowiki> سہُ </nowiki><b> -> </b><nowiki>سُہ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> ==== [[روبیوس ہیٛگرِڈ]] - ([[Special:Diff/150352|فَرَق]]) ==== # <nowiki> ہنز </nowiki><b> -> </b><nowiki>ہِنٛز</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[سِرِیَس بلیک]] - ([[Special:Diff/150353|فَرَق]]) ==== # <nowiki> سٕندؠ </nowiki><b> -> </b><nowiki>سٟنٛدؠ</nowiki> # <nowiki> ہنز </nowiki><b> -> </b><nowiki>ہِنٛز</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[مِنروا میک گوناگل]] - ([[Special:Diff/150354|فَرَق]]) ==== # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[البس ڈَمبَلڈور]] - ([[Special:Diff/150355|فَرَق]]) ==== # <nowiki> فلم </nowiki><b> -> </b><nowiki>فِلِم</nowiki> # <nowiki> ورژن </nowiki><b> -> </b><nowiki>ؤرجَن</nowiki> # <nowiki> ہنز </nowiki><b> -> </b><nowiki>ہِنٛز</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[لارٛڈ وولڈیمورٛٹ]] - ([[Special:Diff/150356|فَرَق]]) ==== # <nowiki> ہنز </nowiki><b> -> </b><nowiki>ہِنٛز</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ہرماینی گِرٛنجر]] - ([[Special:Diff/150358|فَرَق]]) ==== # <nowiki> مدد </nowiki><b> -> </b><nowiki>مَدَتھ</nowiki> # <nowiki> ورژنن </nowiki><b> -> </b><nowiki>ؤرجنن</nowiki> # <nowiki> ئی </nowiki><b> -> </b><nowiki>ئی</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[ہیری پوٹر (کردار)]] - ([[Special:Diff/150359|فَرَق]]) ==== # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[مٔدنہٕ اَل]] - ([[Special:Diff/150360|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> ==حوالہٕ== </nowiki><b> -> </b><nowiki>== حَوالہٕ ==</nowiki> # <nowiki> یِہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> ==== [[کھایی]] - ([[Special:Diff/150361|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==25-8-2026== ==== [[کاے، ایٖران]] - ([[Special:Diff/150451|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> ضلعہٕ </nowiki><b> -> </b><nowiki>ضِلہٕ</nowiki> # <nowiki> ضلع </nowiki><b> -> </b><nowiki>ضِلہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مجموعی </nowiki><b> -> </b><nowiki>سۆمبرُنی</nowiki> ==== [[شَنٛگھاے]] - ([[Special:Diff/150452|فَرَق]]) ==== # <nowiki> آبادی </nowiki><b> -> </b><nowiki>آبٲدی</nowiki> # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جنوبی </nowiki><b> -> </b><nowiki>جۆنوٗبی</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> دنیاہک </nowiki><b> -> </b><nowiki>دُنؠ‌یاہک</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> شہر </nowiki><b> -> </b><nowiki>شَہَر</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[فوٗ ژھونٛگ]] - ([[Special:Diff/150453|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> دسمبر </nowiki><b> -> </b><nowiki>دَسَمبَر</nowiki> # <nowiki> سنز </nowiki><b> -> </b><nowiki>سٟنٛز</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مشہور </nowiki><b> -> </b><nowiki>مَشہوٗر</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> موسیقی </nowiki><b> -> </b><nowiki>موٗسیٖقی</nowiki> ==== [[مَسعوٗد خان]] - ([[Special:Diff/150454|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اسلٲمی </nowiki><b> -> </b><nowiki>اِسلٲمی</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[جُلَے 2016 ہُک ڈھاکہ حملہٕ]] - ([[Special:Diff/150455|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پٮ۪ٹھٕ </nowiki><b> -> </b><nowiki>پؠٹھٕ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> سۭتہِ </nowiki><b> -> </b><nowiki>سٟتہِ</nowiki> # <nowiki> شُروٗع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یہ </nowiki><b> -> </b><nowiki>یہِ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئین </nowiki><b> -> </b><nowiki>ئین</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[1998 ہِندوستٲنؠ عام چُناو جۆم تہٕ کٔشیٖر مَنٛز]] - ([[Special:Diff/150456|فَرَق]]) ==== # <nowiki> فروری </nowiki><b> -> </b><nowiki>فَرؤری</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> ہُند </nowiki><b> -> </b><nowiki>ہُنٛد</nowiki> ==== [[لینَکس]] - ([[Special:Diff/150457|فَرَق]]) ==== # <nowiki> دُنیاہَس </nowiki><b> -> </b><nowiki>دُنؠ‌یاہَس</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # [[وِکیٖپیٖڈیا:حَوالہٕ|حَوالہٕ]] وَرٲے مَضموٗن ٹیگ کَران ==== [[2026 قازق قونوٗن ساز چُناو]] - ([[Special:Diff/150458|فَرَق]]) ==== # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> گۄڈٕنیُک </nowiki><b> -> </b><nowiki>گۄڈنُیٛک</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> يٖ </nowiki><b> -> </b><nowiki>یٖ</nowiki> ==== [[مِکی ماوُس]] - ([[Special:Diff/150459|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> فلم </nowiki><b> -> </b><nowiki>فِلِم</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> نومبر </nowiki><b> -> </b><nowiki>نَوَمبَر</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==26-8-2026== ==== [[چیٹ جی پی ٹی]] - ([[Special:Diff/150506|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[جۆم تہٕ کٔشیٖر منٛز قومی اہمیتٕکین یادگارن ہُنٛد فہرست]] - ([[Special:Diff/150507|فَرَق]]) ==== # <nowiki> آئی </nowiki><b> -> </b><nowiki>اَے</nowiki> # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[مرکزی یوٗنِوَرسِٹی کشمیر]] - ([[Special:Diff/150508|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[جۆم تہٕ کٔشیٖر منٛز رِیٲستی محفوٗظ یادگارن ہِنٛز فہرست]] - ([[Special:Diff/150509|فَرَق]]) ==== # <nowiki> آئی </nowiki><b> -> </b><nowiki>اَے</nowiki> # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[2006 کاتالونِیاہُک خۄدمۄختٲری حیثیتُک ریفرینڑم]] - ([[Special:Diff/150510|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جولائی </nowiki><b> -> </b><nowiki>جُلَے</nowiki> # <nowiki> چِھ </nowiki><b> -> </b><nowiki>چھِ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> شائع </nowiki><b> -> </b><nowiki>شایَع</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ۓ </nowiki><b> -> </b><nowiki>ۓ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ژٕکیمی]] - ([[Special:Diff/150511|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ستمبر </nowiki><b> -> </b><nowiki>سَتَمبَر</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[اَے او ایس]] - ([[Special:Diff/150512|فَرَق]]) ==== # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[مؠقناطیٖس تَصویٖر سٲزی]] - ([[Special:Diff/150513|فَرَق]]) ==== # <nowiki> ن. </nowiki><b> -> </b><nowiki>ن۔</nowiki> ==== [[ژوانا زَبان]] - ([[Special:Diff/150514|فَرَق]]) ==== # <nowiki> ِ. </nowiki><b> -> </b><nowiki>ِ۔</nowiki> ==== [[جۆم تہٕ کٔشیٖر ہُنٛد قونوٗن سٲزی ایٚسَمبلی]] - ([[Special:Diff/150515|فَرَق]]) ==== # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> ریاست </nowiki><b> -> </b><nowiki>رِیاسَتھ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[ڈولی پارٹن]] - ([[Special:Diff/150516|فَرَق]]) ==== # <nowiki> آئی </nowiki><b> -> </b><nowiki>اَے</nowiki> # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> انسان </nowiki><b> -> </b><nowiki>اِنسان</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> ٹیلی ویژنس </nowiki><b> -> </b><nowiki>ٹیلی وِجنس</nowiki> # <nowiki> جنوری </nowiki><b> -> </b><nowiki>جَنؤری</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> ساروی </nowiki><b> -> </b><nowiki>سارِوٕے</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> محیط </nowiki><b> -> </b><nowiki>پھٔہلِتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[جُلَے 2016 ہُک ڈھاکہ حملہٕ]] - ([[Special:Diff/150517|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[1957 جۆم تہٕ کٔشیٖر قونوٗن ساز ایٚسمبلی چُناو]] - ([[Special:Diff/150518|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[2026 قازق قونوٗن ساز چُناو]] - ([[Special:Diff/150519|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[ایش کیچم]] - ([[Special:Diff/150520|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[پِکاچوٗ]] - ([[Special:Diff/150521|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[کرِستوفَر مونیوز]] - ([[Special:Diff/150522|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[2024 پَنٛجاب صوٗبٲیی چُناو]] - ([[Special:Diff/150523|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[2023 کَرناٹَک قونوٗن ساز ایٚسمبلی چُناو]] - ([[Special:Diff/150524|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[ہاکینٛڈے ہِچیلیما]] - ([[Special:Diff/150525|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[1999 ہِندوستٲنؠ عام چُناو جۆم تہٕ کٔشیٖر مَنٛز]] - ([[Special:Diff/150526|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[2004 ہِندوستٲنؠ عام چُناو جۆم تہٕ کٔشیٖر مَنٛز]] - ([[Special:Diff/150528|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[2009 ہِندوستٲنؠ عام چُناو جۆم تہٕ کٔشیٖر مَنٛز]] - ([[Special:Diff/150529|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[ہیڈن پینٹیٖیَر]] - ([[Special:Diff/150530|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[اَنمول پُشجے گوئل]] - ([[Special:Diff/150531|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[زُبہٕ صأب]] - ([[Special:Diff/150532|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[2024 اَمریٖکی صٔدرٲتی چُناو]] - ([[Special:Diff/150533|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[2008 جۆم تہٕ کٔشیٖر قونوٗن ساز ایٚسمبلی چُناو]] - ([[Special:Diff/150534|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[مُحَمَّد]] - ([[Special:Diff/150536|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[نمیرا سلیم]] - ([[Special:Diff/150537|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[کیلامین]] - ([[Special:Diff/150538|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[وٹامن سی]] - ([[Special:Diff/150539|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[ریبیز]] - ([[Special:Diff/150540|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[میٚونٛد]] - ([[Special:Diff/150541|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[ایم پوکس]] - ([[Special:Diff/150542|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[جۆم تہٕ کٔشیٖر قونوٗن ساز کونسل]] - ([[Special:Diff/150543|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[ایس ایم ایس شوابین]] - ([[Special:Diff/150544|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[راج ترنگنی]] - ([[Special:Diff/150545|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[یَشووَتی]] - ([[Special:Diff/150546|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[رینفے کٕلاس 252]] - ([[Special:Diff/150547|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[یونٲنی اَچھَر]] - ([[Special:Diff/150548|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[پٲکِستٲنؠ فوج]] - ([[Special:Diff/150549|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[جۆم تہٕ کٔشیٖر کؠن شہرن ہٕنٛز فِہرِست]] - ([[Special:Diff/150550|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[بَکِنٛگھَم میٚحل]] - ([[Special:Diff/150551|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[12 اگست 2026وُک گرٛؠہنہٕ ماتھ]] - ([[Special:Diff/150553|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[2024 فرٛانٛسی قونوٗن ساز چُناو]] - ([[Special:Diff/150554|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[2025 سیبو بُنیُل]] - ([[Special:Diff/150555|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[کرگِل جَنٛگ]] - ([[Special:Diff/150556|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[مِنٛگ خاندان]] - ([[Special:Diff/150557|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[1964 الاسکا بُنیُل]] - ([[Special:Diff/150558|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[سنجے دَت]] - ([[Special:Diff/150559|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[میری کوم]] - ([[Special:Diff/150560|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[ثانیہ مرزا]] - ([[Special:Diff/150562|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[جماد عثمان]] - ([[Special:Diff/150563|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[صوفیہ (روبوٹ)]] - ([[Special:Diff/150564|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[وایلِن]] - ([[Special:Diff/150565|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==== [[کٔلیوپیٹرا]] - ([[Special:Diff/150566|فَرَق]]) ==== # <nowiki> آی </nowiki><b> -> </b><nowiki>آے</nowiki> ==27-8-2026== ==== [[2026 نؠپالس مَنٛز سٔہلاب]] - ([[Special:Diff/150625|فَرَق]]) ==== # <nowiki> اً </nowiki><b> -> </b><nowiki>ن</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> پٮ۪ٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> جنوبی </nowiki><b> -> </b><nowiki>جۆنوٗبی</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> سٕتؠ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> شہر </nowiki><b> -> </b><nowiki>شَہَر</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> وقت </nowiki><b> -> </b><nowiki>وَقٕت</nowiki> # <nowiki> ہندوستٲنۍ </nowiki><b> -> </b><nowiki>ہِندوستٲنؠ</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ۍ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئے </nowiki><b> -> </b><nowiki>ئے</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[اَلِف لیلہ]] - ([[Special:Diff/150626|فَرَق]]) ==== # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> شامل </nowiki><b> -> </b><nowiki>شٲمِل</nowiki> # <nowiki> شروع </nowiki><b> -> </b><nowiki>شۆروٗع</nowiki> # <nowiki> منز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مجموعہ </nowiki><b> -> </b><nowiki>سۆمبرُن</nowiki> # <nowiki> مجموعس </nowiki><b> -> </b><nowiki>سۆمبرُنس</nowiki> # [[وِکیٖپیٖڈیا:حَوالہٕ|حَوالہٕ]] وَرٲے مَضموٗن ٹیگ کَران ==== [[کاژُر ہاپُتھ]] - ([[Special:Diff/150627|فَرَق]]) ==== # <nowiki> ==حوالہٕ== </nowiki><b> -> </b><nowiki>== حَوالہٕ ==</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[چیٹ جی پی ٹی]] - ([[Special:Diff/150628|فَرَق]]) ==== # [[وِکیٖپیٖڈیا:حَوالہٕ|حَوالہٕ]] وَرٲے مَضموٗن ٹیگ کَران ==== [[جیٚمِنَے (چیٹ بوٹ)]] - ([[Special:Diff/150629|فَرَق]]) ==== # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ہیڈن پینٹیٖیَر]] - ([[Special:Diff/150630|فَرَق]]) ==== # <nowiki> اَی </nowiki><b> -> </b><nowiki>آے</nowiki> ==28-8-2026== ==== [[ہیٖرٕ]] - ([[Special:Diff/150685|فَرَق]]) ==== # <nowiki> اتھ </nowiki><b> -> </b><nowiki>اَتھ</nowiki> # <nowiki> استعمال </nowiki><b> -> </b><nowiki>اِستِمال</nowiki> # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> بیاکھ </nowiki><b> -> </b><nowiki>بیٛاکھ</nowiki> # <nowiki> پیٹھ </nowiki><b> -> </b><nowiki>پؠٹھ</nowiki> # <nowiki> چُھ </nowiki><b> -> </b><nowiki>چھُ</nowiki> # <nowiki> زیادٕ </nowiki><b> -> </b><nowiki>زیٛادٕ</nowiki> # <nowiki> کھوتہٕ </nowiki><b> -> </b><nowiki>کھۄتہٕ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> یتھ </nowiki><b> -> </b><nowiki>یَتھ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> ==== [[ہیرالڈ پوٗنٛژِم]] - ([[Special:Diff/150686|فَرَق]]) ==== # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> ==== [[میٛوٛٹوٗ]] - ([[Special:Diff/150687|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> دُنیاہُک </nowiki><b> -> </b><nowiki>دُنؠ‌یاہُک</nowiki> # <nowiki> سۭتۍ </nowiki><b> -> </b><nowiki>سٟتؠ</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> # <nowiki> یئ </nowiki><b> -> </b><nowiki>یئ</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> # <nowiki> ٮ۪ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[راتکو ملادیچ]] - ([[Special:Diff/150688|فَرَق]]) ==== # <nowiki> اکھ </nowiki><b> -> </b><nowiki>اَکھ</nowiki> # <nowiki> اگست </nowiki><b> -> </b><nowiki>اَگَست</nowiki> # <nowiki> منٛز </nowiki><b> -> </b><nowiki>مَنٛز</nowiki> # <nowiki> مارچ </nowiki><b> -> </b><nowiki>مارٕچ</nowiki> # <nowiki> ۍ </nowiki><b> -> </b><nowiki>ؠ</nowiki> ==== [[سُلیمان]] - ([[Special:Diff/150689|فَرَق]]) ==== # <nowiki> سۭتہِ </nowiki><b> -> </b><nowiki>سٟتہِ</nowiki> # <nowiki> سُند </nowiki><b> -> </b><nowiki>سُنٛد</nowiki> # <nowiki> ئیل </nowiki><b> -> </b><nowiki>ئیل</nowiki> # <nowiki> ئ </nowiki><b> -> </b><nowiki>ئ</nowiki> 4nf646jzfe0otg3ymhaqhx2q45ct0l5 بِشَن ناراین ڈار 0 32420 150718 150212 2026-08-29T06:17:43Z SakuraBot 9889 [[وپ:باٹ|باٹ]] چھُ صَفَس زٲژ پؠٹھ کٲم کَران. 150718 wikitext text/x-wiki {{Infobox person ca/catalan|carrec=[[ہِندوستٲنؠ قومی کانٛگرٛیس|اِنٛڈین نیشنَل کانٛگرٛیسُک]] صَدٕر|term_start=1911|term_end=؟}} پنڈت '''بِشَن ناراین ڈار''' (۱۸۶۴ - ۱۹ نَوَمبَر ۱۹۱۶) اوس اَکھ ہِنٛدُستٲنؠ سِیاسَت دان یِمو ۱۹۱۱ مَنٛز [[ہِندوستٲنؠ قومی کانٛگرٛیس|اِنٛڈین نیشنَل کانٛگرٛیسُک]] صَدٕر سٕنٛدِ حثیتہٕ خٕدمَت دِژمٕژ۔ ڈار سُنٛد تعلُق اوس لَکھنَو کِس أکِس مشہوٗر کٲشِر پنڈت خانٛدانس سٟتؠ ۔ أمؠ سُنٛد پیٚتٕر پنڈت شمبھو ناتھ اوس کلکتہ ہایی کورٹُک گۄڈنیُک ہندوستٲنہِ جج۔ ڈارَن کٔر [[لوہوٗر|لاہور]] کِس چرچ مشن ہایی سکول تہٕ کیننگ کالجَس مَنٛز تٲلیٖم حٲصِل۔<ref name="TIBD">{{Cite IBD1915|wstitle=Bishun Narayan Dhar, Pandit|volume=3.4|page=53|year=1915|short=1}}</ref> ڈار گوٚو [[اِنگلِستان]] ییٚتہِ تٔمہِ وکیل سٕندِ حیثیتہٕ پریکٹس کٔر۔ ہندوستان واپس یِنہٕ پتہٕ کٔر سُہ 1887 تھس مَنٛز انڈین نیشنل کانگریسس مَنٛز شٔموٗلِت۔ سُہ اوس 1911 ہَس مَنٛز مُتحَدٕ صُوبٲیی کانفرنسُک صدر تہٕ أتھؠ ؤرؠ‌یہِ [[ہِندوستٲنؠ قومی کانٛگرٛیس|انڈین نیشنل کانگریسُک]] صدر۔ 1914 مَنٛز، آو سُہ یکجہ صوبہٕ پیٚٹھٕ امپیریل قانون ساز کونسلُک رُکُن منتخب کرنہٕ۔ ==حَوالہٕ== [[زٲژ:کٲشِرؠ سِیاسَتدان]] [[زٲژ:کٲشِرؠ پنٛڈِت]] [[زٲژ:1864 پٲدٲیِش]] [[زٲژ:1916 وَفات]] 93bo03t8t4ieatu20xdbxgbkjlp20k6 راتکو ملادیچ 0 32517 150688 150643 2026-08-28T18:00:35Z Nadeemulhaqmir-bot 9480 باٹ چھُ غَلطی ٹھیٖکھ کَران [[وِکیٖپیٖڈیا:AutoWikiBrowser/Typos|غَلطی فِہرِست مُطٲبِق]] 150688 wikitext text/x-wiki {{Infobox person ca/catalan|تٲریٖخ پٲدٲیِش=12 مارٕچ 1942}} '''راتکو ملادیچ''' (12 مارٕچ 1942 - 27 اَگَست 2026) اوس اَکھ بوسنیٲیی سرب فوجی افسر یٔمؠ [[یوگوسلاو جَنٛگ|یوگوسلاو جنگن]] دوران ریپبلکا سرپسکا (VRS) فوجٕچ قیادت کٔر۔ بول چالہِ مَنٛز "بوسنیاہُک قصٲے" وننہٕ یِوان، سُہ آو 2017 مَنٛز سٲبقہٕ یوگوسلاویہ خٲطرٕ بین الاقوامی فوجداری ٹریبونل (ICTY) کہ طرفہٕ جَنٛگی جُرم، انسانیت خٕلاف جُرُم، تہٕ نسل کشی ہُنٛد قصوروار لبنہٕ۔ تٔمؠ کٔر 2026 مَنٛز پننِس مرنس تام ہیگس مَنٛز یمن جُرمَن خٲطرٕ عمر قید۔<ref>{{Cite web|date=27 August 2026|title=Preminuo general Ratko Mladić|url=https://www.euronews.rs/srbija/politika/219261/preminuo-general-ratko-mladic/vest|access-date=27 August 2026|website=Euronews.rs|language=sr}}</ref> == حَوالہٕ == [[زٲژ:بوسنیٲیی لوٗکھ]] [[زٲژ:1942 پٲدٲیِش]] [[زٲژ:2026 وَفات]] 33n6i1t0y4pzepm749mbu4h5jgiuytl ہیرالڈ پوٗنٛژِم 0 32518 150669 150657 2026-08-28T12:34:42Z Peter Ormond 7979 /* */ صَفٲیی پھشا 150669 wikitext text/x-wiki {{Infobox royalty/Wikidata}} ہیرالڈ V (21 فَرؤری 1937 - 28 اَگَست 2026) اوس 1991 پیٹھٕ 2026 منٛز پننِس مَرنَس تام [[ناروے ہُک بادشاہ]]۔ پننِس دورِ حَکوٗمَتَس دوران اوس ہیرالڈ صَحتٕکؠ واریاہ مَسلہٕ شِکار، تہٕ تٔمؠ سُنٛد نیٚچُو اوس 2003 تہٕ 2026 ہَس درمیان واریاہ لَٹہِ ریٖجَنٛٹ سٕنٛدِ حیثیَتہٕ کٲم کَران۔ ہیرالڈ بَنیٛۆو 2024 منٛز ناروے ہُک سارِوٕے کھۄتہٕ بُزَرَگ حُکُمران بادشاہ، یٔمؠ پننِس مٲلِس پَتھ تروو۔ 2022 منٛز [[ایٚلزبیٚتھ دۆیِم|ایٚلزبتھ II]] سٕنٛدِ مَرنہٕ پَتہٕ، بنیٛو ہیرالڈ [[یوٗرَپ|یوٗرپُک]] سارِوٕے کھۄتہٕ بُزَرَگ بادشاہ۔ ہیرالڈ گُزریۆو 2026 منٛز اوسلوہَس مَنٛز، 89 وٲنٛسہِ، تہٕ أمؠ پتہٕ بَنیٛۆو تٔمؠ سُنٛد نیٚچُو ہاکون ناروے ہُک بادشاہ۔<ref>{{Cite news|last=Henley|first=Jon|last2=correspondent|first2=Jon Henley Europe|date=2026-08-28|title=Norway’s King Harald dies aged 89|url=https://www.theguardian.com/world/2026/aug/28/norway-king-harald-dies-leaving-stormy-succession-mette-marit-crown-princesss-epstein-links|access-date=2026-08-28|work=The Guardian|language=en-GB|issn=0261-3077}}</ref> ==حَوالہٕ== [[زٲژ:ناروے ہُک رازٕ]] [[زٲژ:1937 پٲدٲیِش]] [[زٲژ:2026 وَفات]] 7cavme99w2yzysc2sgn13lgwff917rt 150686 150669 2026-08-28T18:00:25Z Nadeemulhaqmir-bot 9480 باٹ چھُ غَلطی ٹھیٖکھ کَران [[وِکیٖپیٖڈیا:AutoWikiBrowser/Typos|غَلطی فِہرِست مُطٲبِق]] 150686 wikitext text/x-wiki {{Infobox royalty/Wikidata}} ہیرالڈ V (21 فَرؤری 1937 - 28 اَگَست 2026) اوس 1991 پیٹھٕ 2026 مَنٛز پننِس مَرنَس تام [[ناروے ہُک بادشاہ]]۔ پننِس دورِ حَکوٗمَتَس دوران اوس ہیرالڈ صَحتٕکؠ واریاہ مَسلہٕ شِکار، تہٕ تٔمؠ سُنٛد نیٚچُو اوس 2003 تہٕ 2026 ہَس درمیان واریاہ لَٹہِ ریٖجَنٛٹ سٕنٛدِ حیثیَتہٕ کٲم کَران۔ ہیرالڈ بَنیٛۆو 2024 مَنٛز ناروے ہُک سارِوٕے کھۄتہٕ بُزَرَگ حُکُمران بادشاہ، یٔمؠ پننِس مٲلِس پَتھ تروو۔ 2022 مَنٛز [[ایٚلزبیٚتھ دۆیِم|ایٚلزبتھ II]] سٕنٛدِ مَرنہٕ پَتہٕ، بنیٛو ہیرالڈ [[یوٗرَپ|یوٗرپُک]] سارِوٕے کھۄتہٕ بُزَرَگ بادشاہ۔ ہیرالڈ گُزریۆو 2026 مَنٛز اوسلوہَس مَنٛز، 89 وٲنٛسہِ، تہٕ أمؠ پتہٕ بَنیٛۆو تٔمؠ سُنٛد نیٚچُو ہاکون ناروے ہُک بادشاہ۔<ref>{{Cite news|last=Henley|first=Jon|last2=correspondent|first2=Jon Henley Europe|date=2026-08-28|title=Norway’s King Harald dies aged 89|url=https://www.theguardian.com/world/2026/aug/28/norway-king-harald-dies-leaving-stormy-succession-mette-marit-crown-princesss-epstein-links|access-date=2026-08-28|work=The Guardian|language=en-GB|issn=0261-3077}}</ref> ==حَوالہٕ== [[زٲژ:ناروے ہُک رازٕ]] [[زٲژ:1937 پٲدٲیِش]] [[زٲژ:2026 وَفات]] ds6dn55lgjmayys8aj96epp54ctzesf میٛوٛٹوٗ 0 32521 150687 150666 2026-08-28T18:00:30Z Nadeemulhaqmir-bot 9480 باٹ چھُ غَلطی ٹھیٖکھ کَران [[وِکیٖپیٖڈیا:AutoWikiBrowser/Typos|غَلطی فِہرِست مُطٲبِق]] 150687 wikitext text/x-wiki {{Infobox character|nom_original=ミュウツ (میٛوٗژوٗ)|image=Cosplay of Mewto from Pokémon at Anime North 2013 (8860470787).jpg|before=[[میٛوٗ]]|after=[[ڈرٛیگنایِٹ]]}} '''میٛوٗٹوٗ''' ({{زَبان|Ja|ミュウツー|Myūtsū «میٛوٗژوٗ»}} چھِ اَکھ [[پوکیمون]] زٲژ پوکیمون سیریٖز تہٕ کھیلن مَنٛز یہِ آو سارِوٕے کھۄتہٕ گۄڈٕ ویٖڈیو گیم پوکیمون ریٚڈ تہٕ بلیوَس مَنٛز متعارف کرنہٕ، تہٕ پتہٕ آو پتہٕ ینہٕ والؠن سیکویلَن تہٕ سِپن آف عنوانن مَنٛز ظٲہِر۔ ویڈیو گیمَن مَنٛز چھُ کھلٲڑؠ میوٹوَس سٟتؠ لڑِتھ تہٕ رٔٹِتھ تاکہ پتہٕ یہِ باقی پوکیمونَن خٕلاف کھڑا کٔرِتھ۔ مُختٔلِف میڈیاہَس مَنٛز چھُ اَکثَر "دُنؠ‌یاہُک ساروٕے کھۄتہٕ مضبوٗط پوکیمون" وننہٕ یِوان، یہِ اوس بُنیٲدی شماریاتٕچ تَقسیٖم کہِ لحاظٕ اصلی کھیلَن مَنٛز ساروٕے کھۄتہٕ مضبوٗط۔ اِنسانن ہٕنٛدِ ذٔریعہٕ جینیٲتی طور انجینییَر کرنہٕ کہِ وجہہ سٟتؠ چھُ یہِ "'''جینیٲتی پوکیمون'''" وننہٕ یِوان۔<ref>{{cite magazine|last=Hilliard|first=Kyle|date=December 25, 2016|title=''Pokémon Red'' & ''Blue'' – A Look Back At The 20-Year Journey To Catch 'Em All|url=https://www.gameinformer.com/b/features/archive/2016/12/25/pok-233-mon-red-amp-blue-a-look-back-at-the-20-year-journey-to-catch-em-all.aspx|url-status=live|archive-url=https://web.archive.org/web/20231001192920/https://www.gameinformer.com/b/features/archive/2016/12/25/pok-233-mon-red-amp-blue-a-look-back-at-the-20-year-journey-to-catch-em-all.aspx|archive-date=October 1, 2023|access-date=January 22, 2024|magazine=[[Game Informer]]}}</ref> == حَوالہٕ == [[زٲژ:پوکیمون]] 2buqt86al2cgqx5j4dxvtzjjy1p9v5b ہیٖرٕ 0 32523 150675 2026-08-28T16:40:57Z آیات محراج 11062 "[[:en:Special:Redirect/revision/1369613202|Diamond]]" ضفُک اِنتدٲیی حِصُک تَرجَمہٕ طور تَخلیق کَرنہٕ آمُت 150675 wikitext text/x-wiki ہیٖرٕ 4ipzxw2ztzurz5u0fkft10rjooydael 150676 150675 2026-08-28T16:44:20Z آیات محراج 11062 /* */ . 150676 wikitext text/x-wiki ہیٖرٕ چُھ تۄتھ کاربنٕچ اکھ ٹھوس شکل یتھ منٛز امکۍ ایٹم کرِٛسٹل ڈانٛچس منٛز ترتیٖب دِنہٕ یوان چھِ یتھ ڈائمنڈ کیٛوٗبِک ونان چھِ۔ کمرٕک درجہٕ حرارت تہٕ دباوَس پیٹھ، کاربنٕچ بیاکھ ٹھوس شکل یتھ گریفائٹ ونان چھِ کیمیٲیی طور ڈَنٛجہِ شکلہِ مَنٛز آسان، مگر ہیٖرٕ چُھ اتھ منٛز انتہٲئی وارٕ وارٕ تبدیٖل گژھان۔ ہیٖرس منٛز چھ کُنہِ تہٕ قۄدرتی موادٕچ سارِوٕے کھوتہٕ زیادٕ سختی تہٕ تھرمل کنڈکٹیویٹی آسان، خصوصیات یم بٔڑن صنعتی استعمالن منٛز استعمال چھ یوان کرنہٕ یتھ کٔنۍ زَن ژٹنہٕ تہٕ پالش کرنُک اوزار چھِ۔ تم چھ جیمولوجی تہٕ زیورات منٛز اہم جواہرات تہٕ۔ ## Properties * Hardness: Highest rating of 10 on the Mohs scale. * Structure: Face-centered cubic lattice with covalent bonding. * Thermal Conductivity: Highest among all known solids. * Optical: High refractive index and high optical dispersion. ## Industry and Markets * Natural: Formed deep in Earth's mantle under high pressure and temperature. * Synthetic: Produced via High-Pressure High-Temperature (HPHT) or Chemical Vapor Deposition (CVD). * Gemological Grading: Evaluated globally using the "Four Cs": Carat, Cut, Color, and Clarity. qlxz92u7de7380b3e0c05ubjphn5dv0 150677 150676 2026-08-28T16:44:39Z آیات محراج 11062 /* */ 150677 wikitext text/x-wiki ہیٖرٕ چُھ تۄتھ کاربنٕچ اکھ ٹھوس شکل یتھ منٛز امکۍ ایٹم کرِٛسٹل ڈانٛچس منٛز ترتیٖب دِنہٕ یوان چھِ یتھ ڈائمنڈ کیٛوٗبِک ونان چھِ۔ کمرٕک درجہٕ حرارت تہٕ دباوَس پیٹھ، کاربنٕچ بیاکھ ٹھوس شکل یتھ گریفائٹ ونان چھِ کیمیٲیی طور ڈَنٛجہِ شکلہِ مَنٛز آسان، مگر ہیٖرٕ چُھ اتھ منٛز انتہٲئی وارٕ وارٕ تبدیٖل گژھان۔ ہیٖرس منٛز چھ کُنہِ تہٕ قۄدرتی موادٕچ سارِوٕے کھوتہٕ زیادٕ سختی تہٕ تھرمل کنڈکٹیویٹی آسان، خصوصیات یم بٔڑن صنعتی استعمالن منٛز استعمال چھ یوان کرنہٕ یتھ کٔنۍ زَن ژٹنہٕ تہٕ پالش کرنُک اوزار چھِ۔ تم چھ جیمولوجی تہٕ زیورات منٛز اہم جواہرات تہٕ۔ f735i6i5iv3u39fksb2qmrkmz96mtz6 150678 150677 2026-08-28T16:47:13Z آیات محراج 11062 150678 wikitext text/x-wiki {{infobox mineral}} ہیٖرٕ چُھ تۄتھ کاربنٕچ اکھ ٹھوس شکل یتھ منٛز امکۍ ایٹم کرِٛسٹل ڈانٛچس منٛز ترتیٖب دِنہٕ یوان چھِ یتھ ڈائمنڈ کیٛوٗبِک ونان چھِ۔ کمرٕک درجہٕ حرارت تہٕ دباوَس پیٹھ، کاربنٕچ بیاکھ ٹھوس شکل یتھ گریفائٹ ونان چھِ کیمیٲیی طور ڈَنٛجہِ شکلہِ مَنٛز آسان، مگر ہیٖرٕ چُھ اتھ منٛز انتہٲئی وارٕ وارٕ تبدیٖل گژھان۔ ہیٖرس منٛز چھ کُنہِ تہٕ قۄدرتی موادٕچ سارِوٕے کھوتہٕ زیادٕ سختی تہٕ تھرمل کنڈکٹیویٹی آسان، خصوصیات یم بٔڑن صنعتی استعمالن منٛز استعمال چھ یوان کرنہٕ یتھ کٔنۍ زَن ژٹنہٕ تہٕ پالش کرنُک اوزار چھِ۔ تم چھ جیمولوجی تہٕ زیورات منٛز اہم جواہرات تہٕ۔ hghjrax82ths5pqsbnoyn6qx52lqnr8 150684 150678 2026-08-28T17:59:55Z آیات محراج 11062 /* */ 150684 wikitext text/x-wiki {{infobox mineral}} ہیٖرٕ چُھ تۄتھ کاربنٕچ اکھ ٹھوس شکل یتھ منٛز امکۍ ایٹم کرِٛسٹل ڈانٛچس منٛز ترتیٖب دِنہٕ یوان چھِ یتھ ڈائمنڈ کیٛوٗبِک ونان چھِ۔ کمرٕک درجہٕ حرارت تہٕ دباوَس پیٹھ، کاربنٕچ بیاکھ ٹھوس شکل یتھ گریفائٹ ونان چھِ کیمیٲیی طور ڈَنٛجہِ شکلہِ مَنٛز آسان، مگر ہیٖرٕ چُھ اتھ منٛز انتہٲئی وارٕ وارٕ تبدیٖل گژھان۔ ہیٖرس منٛز چھ کُنہِ تہٕ قۄدرتی موادٕچ سارِوٕے کھوتہٕ زیادٕ سختی تہٕ تھرمل کنڈکٹیویٹی آسان، خصوصیات یم بٔڑن صنعتی استعمالن منٛز استعمال چھ یوان کرنہٕ یتھ کٔنۍ زَن ژٹنہٕ تہٕ پالش کرنُک اوزار چھِ۔ تم چھ جیمولوجی تہٕ زیورات منٛز اہم جواہرات تہٕ۔<ref>https://en.wikipedia.org/wiki/Diamond</ref> 86p0r1udlxi8i3thopwyw29v0jpl0rt 150685 150684 2026-08-28T18:00:20Z Nadeemulhaqmir-bot 9480 باٹ چھُ غَلطی ٹھیٖکھ کَران [[وِکیٖپیٖڈیا:AutoWikiBrowser/Typos|غَلطی فِہرِست مُطٲبِق]] 150685 wikitext text/x-wiki {{infobox mineral}} ہیٖرٕ چھُ تۄتھ کاربنٕچ اَکھ ٹھوس شکل یَتھ مَنٛز امکؠ ایٹم کرِٛسٹل ڈانٛچس مَنٛز ترتیٖب دِنہٕ یوان چھِ یَتھ ڈایمنڈ کیٛوٗبِک ونان چھِ۔ کمرٕک درجہٕ حرارت تہٕ دباوَس پؠٹھ، کاربنٕچ بیٛاکھ ٹھوس شکل یَتھ گریفایٹ ونان چھِ کیمیٲیی طور ڈَنٛجہِ شکلہِ مَنٛز آسان، مگر ہیٖرٕ چھُ اَتھ مَنٛز انتہٲیی وارٕ وارٕ تبدیٖل گژھان۔ ہیٖرس مَنٛز چھ کُنہِ تہٕ قۄدرتی موادٕچ سارِوٕے کھۄتہٕ زیٛادٕ سختی تہٕ تھرمل کنڈکٹیویٹی آسان، خصوصیات یم بٔڑن صنعتی استعمالن مَنٛز اِستِمال چھ یوان کرنہٕ یَتھ کٔنؠ زَن ژٹنہٕ تہٕ پالش کرنُک اوزار چھِ۔ تم چھ جیمولوجی تہٕ زیورات مَنٛز اہم جواہرات تہٕ۔<ref>https://en.wikipedia.org/wiki/Diamond</ref> 200f71s5oht196au8gvxd7tu12dng3p 150694 150685 2026-08-28T18:06:08Z آیات محراج 11062 /* */ 150694 wikitext text/x-wiki {{infobox mineral}} ہیٖرٕ چھُ تۄتھ کاربنٕچ اَکھ ٹھوس شکل یَتھ مَنٛز امکؠ ایٹم کرِٛسٹل ڈانٛچس مَنٛز ترتیٖب دِنہٕ یوان چھِ یَتھ ڈایمنڈ کیٛوٗبِک ونان چھِ۔ کمرٕک درجہٕ حرارت تہٕ دباوَس پؠٹھ، کاربنٕچ بیٛاکھ ٹھوس شکل یَتھ گریفایٹ ونان چھِ کیمیٲیی طور ڈَنٛجہِ شکلہِ مَنٛز آسان، مگر ہیٖرٕ چھُ اَتھ مَنٛز انتہٲیی وارٕ وارٕ تبدیٖل گژھان۔ ہیٖرس مَنٛز چھ کُنہِ تہٕ قۄدرتی موادٕچ سارِوٕے کھۄتہٕ زیٛادٕ سختی تہٕ تھرمل کنڈکٹیویٹی آسان، خصوصیات یم بٔڑن صنعتی استعمالن مَنٛز اِستِمال چھ یوان کرنہٕ یَتھ کٔنؠ زَن ژٹنہٕ تہٕ پالش کرنُک اوزار چھِ۔ تم چھ جیمولوجی تہٕ زیورات مَنٛز اہم جواہرات تہٕ۔<ref>https://en.wikipedia.org/wiki/Diamond</ref> == حَوالہٕ == ejnyiu6gr07hko6qey9z17pltn7vz73 فرما:Infobox mineral 10 32524 150679 2026-08-28T17:38:44Z آیات محراج 11062 Created page with "{{Infotaula | bodystyle = font-size:90%; | abovestyle = background-color:{{colors infotaules|ciència}}; | headerstyle = background-color:{{colors infotaules|ciència}}; | labelstyle = width:40%; padding:0.1em; background:#eeeeee; font-size:90%; | datastyle = width:60%; font-size:90%; | subheaderstyle = width:40%; padding:0.1em; font-size:90%; | above = <span style="float:left; margin-left: 3px;">[[فَیِل:Linecons diamond.svg|25px|Infotaula de mineral]]..." 150679 wikitext text/x-wiki {{Infotaula | bodystyle = font-size:90%; | abovestyle = background-color:{{colors infotaules|ciència}}; | headerstyle = background-color:{{colors infotaules|ciència}}; | labelstyle = width:40%; padding:0.1em; background:#eeeeee; font-size:90%; | datastyle = width:60%; font-size:90%; | subheaderstyle = width:40%; padding:0.1em; font-size:90%; | above = <span style="float:left; margin-left: 3px;">[[فَیِل:Linecons diamond.svg|25px|Infotaula de mineral]]</span>{{{nom|{{PAGENAME}}}}} | captionstyle= font-size:90%; | image = {{#if:{{{imatge|}}} | {{#invoke:InfoboxImage |InfoboxImage |image={{{imatge|}}} | size=300x300px | alt={{{alt|}}} }}<!-- -->{{#if:{{{peu|{{{peu_imatge|}}}}}} |<br /><small>{{{peu|{{{peu_imatge|}}}}}}</small> }} |{{if then show|{{#invoke:Wikidades | claim | property=P18 |qualifier=P2096 | formatting = table | list = false | rowformat= [[فَیِل:$0|300x300px]]<br /><small>$1</small>}} |{{#if:{{{tipus_plantilla|}}}|<!-- si hi ha tipus_plantilla, no exigir imatge -->|<includeonly>[[زٲژ:Articles de minerals que necessiten una imatge]]</includeonly>}} }} }} | subheader = {{#if:{{{tipus_plantilla|}}} |{{#switch: {{{tipus_plantilla|}}} | 0 = ''مسودٕ'' | 2 = [[انٹرنیشنل کھانٕز سٟتؠ مُتلِق ایسوسی ایشن|اَے ایٚم اے]] منظوٗر کٔرِتھ زٲژ | 3 = کھانٕز گرٛوپ | 4 = Varietat de: {{{varietat_de|}}} |}}<!-- -->}} | label3 = [[رسایٚن فارمولا]] | data3 = {{#invoke:Wikidades | claim | property=p274 | value={{{formula|}}} }} | label4 = ناو منسوٗبہٕ | data4 = {{#invoke:Wikidades | claim | property=p138 | value={{{ناو منسوٗبہٕ|{{{named_for|}}}}}} }} | label5 = [[IUPAC ناو]] | data5 = {{{IUPAC|}}} | label6 = دٔریافتُک ؤری | data6 = {{#invoke:Wikidades | claim | property=p575 | value={{{any_descobriment|{{{discovery date|{{{دٔریافتُک تٲریٖخ|}}}}}}}}} }} | label7 = دٔریافت کرن وول | data7 = {{#invoke:Wikidades | claim | property=p61 | value={{{descobridor|{{{discoverer|{{{دٔریافت کرن وول|}}}}}}}}} }} | label8 = [[قٕسٕم لوکلٹی (جیولوجی)|لوکیٹی ]] | data8 = {{#invoke:Wikidades | claim | property=p2695 | value={{{localitat|}}} }} | header9 = {{linktext|وَرگہٕ بَنٛدی}} | label10 = زٲژ | data10 = {{#if:{{{categoria|}}}|{{{categoria|}}}|<includeonly>[[کھانٕز]]</includeonly>}} | label11 = [[نِکل سٹرَٛنٛزُک درجہٕ بَنٛدی|نِکل-سٹرَٛنٛزُک، 10ہِم اؠڈیشن]] | data11 = {{#invoke:Wikidades | claim | property=p713 | value={{{strunz_10ed|{{{strunz|}}}}}} }} | label12 = نِکل-سٹرَٛنٛزُک، 9یِم اؠڈیشن | data12 = {{#invoke:Wikidades | claim | property=p712 | value={{{strunz_9ed|}}} }} | label13 = نِکل-سٹرَٛنٛزُک، 8ٹھِم اؠڈیشن | data13 = {{#invoke:Wikidades | claim | property=p711 | value={{{strunz_8ed|}}} }} | label14 = [[ڈینا ہُک دَرجہٕ بَنٛدی | ڈینا]] | data14 = {{#invoke:Wikidades | claim | property=p714 | value={{{dana|}}} }} | label15 = ہیز | data15 = {{{heys|}}} | header20 = خۄصوٗصِیَتھ | label21 = [[کرِٛسٹل لایِن سِسٹم]] | data21 = {{#invoke:Wikidades | claim | property=P556 | value={{{sistema|{{{system|}}}}}} }} | label22 = [[کرِٛسٹلٕچ عادتھ]] | data22 = {{#invoke:Wikidades | claim | property=p565 | value={{{habit|}}} }} | label23 = [[کرِٛسٹلُک ڈانٛچہٕ]] | data23 = {{{estructura_cristalina|{{{crystal_structure|{{{کرِٛسٹلُک_ڈانٛچہٕ|}}}}}}}}} | label24 = [[ہرمان-موگن نوٹیشن|H-M نوٹیشن]] | data24 = {{#invoke:Wikidades | claim | property=p1632 | value={{{hm|}}} }} | label25 = [[ہم آہَنٛگی ہُنٛد پۄیِنٛٹ گرٛوپ|پۄیِنٛٹ گرٛوپ]] | data25 = {{#invoke:Wikidades | claim | property=p589 | value={{{simetria|{{{symmetry|}}}}}} }} | label26 = [[خلٲیی گرٛوپ]] | data26 = {{#invoke:Wikidades | claim | property=p690 | value={{{grupespacial|{{{space_group|{{{خلٲیی گرٛوپ|}}}}}}}}} }} | label28 = [[مولر ماس]] | data28 = {{#invoke:Wikidades | claim | property=p2067 | value={{{massa_molar|{{{mass_molar|}}}}}} |formatting=unitcode }} | label29 = رَنٛگ | data29 = {{#invoke:Wikidades | claim | property=p462 | value={{{color|}}} }} | label30 = [[کرِٛسٹل جُڑواں| جُڑواں]] | data30 = {{#invoke:Wikidades | claim | property=p537 | value={{{macles|{{{twinning|{{{جُڑواں|}}}}}}}}} }} | label31 = [[ایٚکسفولِییشن (کھانٕز)| ایٚکسفولِییشن]] | data31 = {{#invoke:Wikidades | claim | property=p693 | value={{{exfoliacio|{{{exfoliation|}}}}}} }} | label32 = [[فرٛیکچر (معدنیات)|فرٛیکچر]] | data32 = {{#invoke:Wikidades | claim | property=p538 | value={{{fractura|{{{fracture|}}}}}} }} | label33 = [[دَرؠر]] | data33 = {{{tenacitat|{{{tenacity|{{{دَرؠر|}}}}}}}}} | label34 = [[موز پیمانہٕ|سختی (موز)]] | data34 = {{#invoke:Wikidades | claim | property=p1088 | value={{{duresa|{{{durability|{{{سختی|}}}}}}}}} }} | label35 = [[چمکُن]] | data35 = {{{lluissor|{{{shine|{{{چمک|}}}}}}}}} | label36 = رَنٛگ [[سٹریٖک (کھانزُت)|سٹریٖکُک]] | data36 = {{#invoke:Wikidades | claim | property=p534 | value={{{ratlla|{{{streak|{{{سٹریٖک|}}}}}}}}} }} | label37 = [[شفافیت|ڈایفنیٹی]] | data37 = {{{diafanitat|{{{diaphany|}}}}}} | label38 = [[Gravetat específica]] | data38 = {{{gravetat|}}} | label39 = [[Assaig de duresa Vickers|Duresa (Vickers)]] | data39 = {{{vickers|}}} | label40 = [[Densitat]] | data40 = {{#invoke:Wikidades | claim | property=p2054 | value={{{densitat|}}} }} | label41 = Lluïssor polida | data41 = {{{polit|}}} | label42 = Propietats òptiques | data42 = {{{prop_optiques|}}} | label43 = [[Índex de refracció]] | data43 = {{#invoke:Wikidades | claim | property=p1109 | value={{{refraccio|}}} }} | label44 = [[Birefringència]] | data44 = {{{birefringencia|}}} | label45 = [[Pleocroisme]] | data45 = {{{pleocroisme|}}} | label46 = [[Angle 2V]] | data46 = {{{2V|}}} | label47 = [[Dispersió òptica]] | data47 = {{{dispersio|}}} | label48 = [[Extinció (mineralogia)|Extinció]] | data48 = {{{extincio|}}} | label49 = Longitud ràpida/lenta | data49 = {{{longitud|}}} | label50 = [[Anisotropia]] | data50 = {{{anisotropia|}}} | label51 = [[Fluorescència]] | data51 = {{{fluorescencia|}}} | label52 = [[Espectre d'absorció]] | data52 = {{{absorcio|}}} | label53 = [[Punt de fusió]] | data53 = {{#invoke:Wikidades | claim | property=p2101 | value={{{fusio|}}} }} | label54 = [[Fusibilitat]] | data54 = {{{fusibilitat|}}} | label55 = Característiques de diagnòstic | data55 = {{{diagnostic|}}} | label56 = [[Solubilitat]] | data56 = {{#invoke:Wikidades | claim | property=p2177 | value={{{solubilitat|}}} }} | label57 = [[Magnetisme]] | data57 = {{{magnetisme|}}} | label58 = Impureses comunes | data58 = {{{impureses|}}} | label60 = S'altera amb | data60 = {{{alteracio|}}} | label61 = Altres característiques | data61 = {{{altres|}}} | label62 = {{{prop1}}} | data62 = {{{prop1text|}}} | label63 = {{{prop2}}} | data63 = {{{prop2text|}}} | header75 = {{#if:{{{var1|}}}|Varietats més comunes}} | label76 = {{{var1}}} | data76 = {{{var1text|}}} | label77 = {{{var2}}} | data77 = {{{var2text|}}} | label78 = {{{var3}}} | data78 = {{{var3text|}}} | label79 = {{{var4}}} | data79 = {{{var4text|}}} | label80 = {{{var5}}} | data80 = {{{var5text|}}} | label81 = {{{var6}}} | data81 = {{{var6text|}}} | header87 = {{#if:{{{radioactivitat|}}}|Mineral radioactiu [[Fitxer:Radioactive.svg|25px]]}} | label88 = [[Radioactivitat]] | data88 = {{#ifeq: {{{radioactivitat|}}} | sí | | {{{radioactivitat|}}}}} | header92 = {{#if:{{{referencies|{{{estatus_IMA|{{{IMA|{{{simbol|}}}}}}}}}}}}|Més informació}} | label93 = [[Estatus IMA]] | data93 = {{#invoke:Wikidades | claim | property=p579 | value={{{estatus_IMA|}}} }} | label94 = Codi [[Associació Mineralògica Internacional|IMA]] | data94 = {{#invoke:Wikidades | claim | property=p484 | value={{{IMA|}}} }} | label95 = Any d'aprovació | data95 = {{{any|}}} | label96 = Data de publicació | data96 = {{#invoke:Wikidades | claim | property=p577 | value={{{publicacio|}}} }} | label97 = Publicat a | data97 = {{{font_publicacio|}}} | label98 = [[Símbol mineral|Símbol]] | data98 = {{#invoke:Wikidades | claim | property=p10113 | value={{{simbol|}}} }} | label100 = Referències | data100 = {{{referencies|}}} }} {{#ifeq:{{{1}}}|NC||{{#if:{{{tipus_plantilla|}}} | {{#switch: {{{tipus_plantilla|}}} | 0 = <!--No categoritzar--> | 1 = <includeonly>[[زٲژ:Articles de minerals aprovats per l'IMA]]</includeonly> | 2 = <includeonly>[[زٲژ:Articles de minerals no aprovats]]</includeonly> | 3 = <includeonly>[[زٲژ:Articles de grups de minerals]]</includeonly> | 4 = <includeonly>[[زٲژ:Articles de varietats de minerals]]</includeonly> }} |<includeonly>[[Categoria:Articles de minerals aprovats per l'IMA]]</includeonly>}} <includeonly>[[Categoria:Articles de minerals]]</includeonly>}}<!-- rastreig provisional de paràmetres Format: {{ Condició | {{#invoke:utilitats|rastreig|nomplantilla/nomcondició}} }} -->{{#if:{{{imatge|}}} |{{#invoke:utilitats|rastreig|minerals/imatge}} }}<!--{{#ifeq:{{lc: {{{lluissor|}}} }}|adamantina|{{#invoke:utilitats|rastreig|minerals/adamantina}} }}--><!-- és Adamantina ? --><noinclude>{{Ús de la plantilla}}</noinclude> hy4u9lo6azlfks6kd40usf8z1ubk6ae 150680 150679 2026-08-28T17:57:20Z آیات محراج 11062 /* */ 150680 wikitext text/x-wiki {{Infotaula | bodystyle = font-size:90%; | abovestyle = background-color:{{colors infotaules|ciència}}; | headerstyle = background-color:{{colors infotaules|ciència}}; | labelstyle = width:40%; padding:0.1em; background:#eeeeee; font-size:90%; | datastyle = width:60%; font-size:90%; | subheaderstyle = width:40%; padding:0.1em; font-size:90%; | above = <span style="float:left; margin-left: 3px;">[[فَیِل:Linecons diamond.svg|25px|Infotaula de mineral]]</span>{{{nom|{{PAGENAME}}}}} | captionstyle= font-size:90%; | image = {{#if:{{{imatge|}}} | {{#invoke:InfoboxImage |InfoboxImage |image={{{imatge|}}} | size=300x300px | alt={{{alt|}}} }}<!-- -->{{#if:{{{peu|{{{peu_imatge|}}}}}} |<br /><small>{{{peu|{{{peu_imatge|}}}}}}</small> }} |{{if then show|{{#invoke:Wikidades | claim | property=P18 |qualifier=P2096 | formatting = table | list = false | rowformat= [[فَیِل:$0|300x300px]]<br /><small>$1</small>}} |{{#if:{{{tipus_plantilla|}}}|<!-- si hi ha tipus_plantilla, no exigir imatge -->|<includeonly>[[زٲژ:Articles de minerals que necessiten una imatge]]</includeonly>}} }} }} | subheader = {{#if:{{{tipus_plantilla|}}} |{{#switch: {{{tipus_plantilla|}}} | 0 = ''مسودٕ'' | 2 = [[انٹرنیشنل کھانٕز سٟتؠ مُتلِق ایسوسی ایشن|اَے ایٚم اے]] منظوٗر کٔرِتھ زٲژ | 3 = کھانٕز گرٛوپ | 4 = Varietat de: {{{varietat_de|}}} |}}<!-- -->}} | label3 = [[رسایٚن فارمولا]] | data3 = {{#invoke:Wikidades | claim | property=p274 | value={{{formula|}}} }} | label4 = ناو منسوٗبہٕ | data4 = {{#invoke:Wikidades | claim | property=p138 | value={{{ناو منسوٗبہٕ|{{{named_for|}}}}}} }} | label5 = [[IUPAC ناو]] | data5 = {{{IUPAC|}}} | label6 = دٔریافتُک ؤری | data6 = {{#invoke:Wikidades | claim | property=p575 | value={{{any_descobriment|{{{discovery date|{{{دٔریافتُک تٲریٖخ|}}}}}}}}} }} | label7 = دٔریافت کرن وول | data7 = {{#invoke:Wikidades | claim | property=p61 | value={{{descobridor|{{{discoverer|{{{دٔریافت کرن وول|}}}}}}}}} }} | label8 = [[قٕسٕم لوکلٹی (جیولوجی)|لوکیٹی ]] | data8 = {{#invoke:Wikidades | claim | property=p2695 | value={{{localitat|}}} }} | header9 = {{linktext|وَرگہٕ بَنٛدی}} | label10 = زٲژ | data10 = {{#if:{{{categoria|}}}|{{{categoria|}}}|<includeonly>[[کھانٕز]]</includeonly>}} | label11 = [[نِکل سٹرَٛنٛزُک درجہٕ بَنٛدی|نِکل-سٹرَٛنٛزُک، 10ہِم اؠڈیشن]] | data11 = {{#invoke:Wikidades | claim | property=p713 | value={{{strunz_10ed|{{{strunz|}}}}}} }} | label12 = نِکل-سٹرَٛنٛزُک، 9یِم اؠڈیشن | data12 = {{#invoke:Wikidades | claim | property=p712 | value={{{strunz_9ed|}}} }} | label13 = نِکل-سٹرَٛنٛزُک، 8ٹھِم اؠڈیشن | data13 = {{#invoke:Wikidades | claim | property=p711 | value={{{strunz_8ed|}}} }} | label14 = [[ڈینا ہُک دَرجہٕ بَنٛدی | ڈینا]] | data14 = {{#invoke:Wikidades | claim | property=p714 | value={{{dana|}}} }} | label15 = ہیز | data15 = {{{heys|}}} | header20 = خۄصوٗصِیَتھ | label21 = [[کرِٛسٹل لایِن سِسٹم]] | data21 = {{#invoke:Wikidades | claim | property=P556 | value={{{sistema|{{{system|}}}}}} }} | label22 = [[کرِٛسٹلٕچ عادتھ]] | data22 = {{#invoke:Wikidades | claim | property=p565 | value={{{habit|}}} }} | label23 = [[کرِٛسٹلُک ڈانٛچہٕ]] | data23 = {{{estructura_cristalina|{{{crystal_structure|{{{کرِٛسٹلُک_ڈانٛچہٕ|}}}}}}}}} | label24 = [[ہرمان-موگن نوٹیشن|H-M نوٹیشن]] | data24 = {{#invoke:Wikidades | claim | property=p1632 | value={{{hm|}}} }} | label25 = [[ہم آہَنٛگی ہُنٛد پۄیِنٛٹ گرٛوپ|پۄیِنٛٹ گرٛوپ]] | data25 = {{#invoke:Wikidades | claim | property=p589 | value={{{simetria|{{{symmetry|}}}}}} }} | label26 = [[خلٲیی گرٛوپ]] | data26 = {{#invoke:Wikidades | claim | property=p690 | value={{{grupespacial|{{{space_group|{{{خلٲیی گرٛوپ|}}}}}}}}} }} | label28 = [[مولر ماس]] | data28 = {{#invoke:Wikidades | claim | property=p2067 | value={{{massa_molar|{{{mass_molar|}}}}}} |formatting=unitcode }} | label29 = رَنٛگ | data29 = {{#invoke:Wikidades | claim | property=p462 | value={{{color|}}} }} | label30 = [[کرِٛسٹل جُڑواں| جُڑواں]] | data30 = {{#invoke:Wikidades | claim | property=p537 | value={{{macles|{{{twinning|{{{جُڑواں|}}}}}}}}} }} | label31 = [[ایٚکسفولِییشن (کھانٕز)| ایٚکسفولِییشن]] | data31 = {{#invoke:Wikidades | claim | property=p693 | value={{{exfoliacio|{{{exfoliation|}}}}}} }} | label32 = [[فرٛیکچر (معدنیات)|فرٛیکچر]] | data32 = {{#invoke:Wikidades | claim | property=p538 | value={{{fractura|{{{fracture|}}}}}} }} | label33 = [[دَرؠر]] | data33 = {{{tenacitat|{{{tenacity|{{{دَرؠر|}}}}}}}}} | label34 = [[موز پیمانہٕ|سختی (موز)]] | data34 = {{#invoke:Wikidades | claim | property=p1088 | value={{{duresa|{{{durability|{{{سختی|}}}}}}}}} }} | label35 = [[چمکُن]] | data35 = {{{lluissor|{{{shine|{{{چمک|}}}}}}}}} | label36 = رَنٛگ [[سٹریٖک (کھانزُت)|سٹریٖکُک]] | data36 = {{#invoke:Wikidades | claim | property=p534 | value={{{ratlla|{{{streak|{{{سٹریٖک|}}}}}}}}} }} | label37 = [[شفافیت|ڈایفنیٹی]] | data37 = {{{diafanitat|{{{diaphany|}}}}}} | label38 = [[مخصوٗص گرٛٲنؠ]] | data38 = {{{gravetat|{{{gravity|}}}}}} | label39 = [[وِکرز سختی ٹیسٹ|سختی (وِکرز)]] | data39 = {{{vickers|}}} | label40 = [[کثافت]] | data40 = {{#invoke:Wikidades | claim | property=p2054 | value={{{densitat|{{{density|}}}}}} }} | label41 = پٲلِش چمک | data41 = {{{polit|{{{polish|}}}}}} | label42 = آپٹیکل خۄصوٗصِیَتھ | data42 = {{{prop_optiques|}}} | label43 = [[ریفریکٹیو اِنڈیکس]] | data43 = {{#invoke:Wikidades | claim | property=p1109 | value={{{refraccio|{{{reflective_ index|}}}}}} }} | label44 = [[بریفنگنس]] | data44 = {{{birefringencia|birefringence}}} | label45 = [[پِلیٛوکرٛویِزٕم]] | data45 = {{{pleocroisme|}}} | label46 = [[اینٛگل 2V]] | data46 = {{{2V|}}} | label47 = [[آپٹیکل پھۄہلاو]] | data47 = {{{dispersio|{{{dispersion|}}}}}} | label48 = [[ختم گومُت (کھانزُت) | ختم گومُت]] | data48 = {{{extincio|{{{extinction|{{{ختم گومُت|}}}}}}}}} | label49 = تیز/سُست زیچھَر | data49 = {{{longitud|}}} | label50 = [[انیسوٹروپی]] | data50 = {{{anisotropia|}}} | label51 = [[فلوروسینس]] | data51 = {{{fluorescencia|}}} | label52 = [[جذب سپیکٹرم]] | data52 = {{{absorcio|}}} | label53 = [[گلنُک نۄقطہٕ]] | data53 = {{#invoke:Wikidades | claim | property=p2101 | value={{{fusio|{{{melting_point|{{{گلنُک_نۄقطہٕ|}}}}}}}}} }} | label54 = [[فزیبلٹی]] | data54 = {{{fusibilitat|}}} | label55 = تشخیصی خۄصوٗصِیَتھ | data55 = {{{diagnostic|}}} | label56 = [[حل پذیری]] | data56 = {{#invoke:Wikidades | claim | property=p2177 | value={{{solubilitat|{{{solubility|}}}}}} }} | label57 = [[میگنیٹزم]] | data57 = {{{magnetisme|}}} | label58 = عام ناپٲکی | data58 = {{{impureses|{{{impurities|}}}}}} | label60 = سٟتؠ تبدیٖل کرنہٕ یِوان | data60 = {{{alteracio|{{{alternate|}}}}}} | label61 = باقٕے خۄصوٗصِیَتھ | data61 = {{{altres|{{{alternative_property|}}}}}} | label62 = {{{prop1}}} | data62 = {{{prop1text|}}} | label63 = {{{prop2}}} | data63 = {{{prop2text|}}} | header75 = {{#if:{{{var1|}}}|سارِوٕے کھۄتہٕ زیٛادٕ عام قٕسمہٕ}} | label76 = {{{var1}}} | data76 = {{{var1text|}}} | label77 = {{{var2}}} | data77 = {{{var2text|}}} | label78 = {{{var3}}} | data78 = {{{var3text|}}} | label79 = {{{var4}}} | data79 = {{{var4text|}}} | label80 = {{{var5}}} | data80 = {{{var5text|}}} | label81 = {{{var6}}} | data81 = {{{var6text|}}} | header87 = {{#if:{{{radioactivitat|}}}|ریڈیو ایٚکتِو کھانٕز [[فَیِل:Radioactive.svg|25px]]}} | label88 = [[ریڈیو ایکٹیویٹیٹ]] | data88 = {{#ifeq: {{{radioactivitat|}}} | sí | | {{{radioactivitat|}}}}} | header92 = {{#if:{{{referencies|{{{estatus_IMA|{{{IMA|{{{simbol|}}}}}}}}}}}}|مذیٖد مولوٗماتھ}} | label93 = [[اَے ایٚم اے حیثیت]] | data93 = {{#invoke:Wikidades | claim | property=p579 | value={{{estatus_IMA|{{{IMA_status|}}}}}} }} | label94 = کوڈ [[اِنٹرنیشنل کھانٕز سٟتؠ مُتلِق ایسوسی ایشن|اَے ایٚم اے]]] | data94 = {{#invoke:Wikidades | claim | property=p484 | value={{{IMA|}}} }} | label95 = منظوٗری ہُنٛد ؤری | data95 = {{{any|{{{منظوٗری ہُنٛد ؤری|}}}}}} | label96 = اشاعتٕچ تٲریٖخ | data96 = {{#invoke:Wikidades | claim | property=p577 | value={{{publicacio|{{{publication|}}}}}} }} | label97 = شایع کٔرِتھ | data97 = {{{font_publicacio|}}} | label98 = [[کھانٕز نِشان|نِشان]] | data98 = {{#invoke:Wikidades | claim | property=p10113 | value={{{simbol|}}} }} | label100 = حَوالہٕ | data100 = {{{referencies|{{{references|{{{حَوالہٕ|}}}}}}}}} }} {{#ifeq:{{{1}}}|NC||{{#if:{{{tipus_plantilla|}}} | {{#switch: {{{tipus_plantilla|}}} | 0 = <!--No categoritzar--> | 1 = <includeonly>[[زٲژ:Articles de minerals aprovats per l'IMA]]</includeonly> | 2 = <includeonly>[[زٲژ:Articles de minerals no aprovats]]</includeonly> | 3 = <includeonly>[[زٲژ:Articles de grups de minerals]]</includeonly> | 4 = <includeonly>[[زٲژ:Articles de varietats de minerals]]</includeonly> }} |<includeonly>[[زٲژ:Articles de minerals aprovats per l'IMA]]</includeonly>}} <includeonly>[[Categoria:Articles de minerals]]</includeonly>}}<!-- rastreig provisional de paràmetres Format: {{ Condició | {{#invoke:utilitats|rastreig|nomplantilla/nomcondició}} }} -->{{#if:{{{imatge|}}} |{{#invoke:utilitats|rastreig|minerals/imatge}} }}<!--{{#ifeq:{{lc: {{{lluissor|}}} }}|adamantina|{{#invoke:utilitats|rastreig|minerals/adamantina}} }}--><!-- és Adamantina ? --><noinclude>{{Ús de la plantilla}}</noinclude> kukaye3n00trowxt8zuy0ad307or32p 150681 150680 2026-08-28T17:57:44Z آیات محراج 11062 /* */ 150681 wikitext text/x-wiki {{Infotaula | bodystyle = font-size:90%; | abovestyle = background-color:{{colors infotaules|ciència}}; | headerstyle = background-color:{{colors infotaules|ciència}}; | labelstyle = width:40%; padding:0.1em; background:#eeeeee; font-size:90%; | datastyle = width:60%; font-size:90%; | subheaderstyle = width:40%; padding:0.1em; font-size:90%; | above = <span style="float:left; margin-left: 3px;">[[فَیِل:Linecons diamond.svg|25px|Infotaula de mineral]]</span>{{{nom|{{PAGENAME}}}}} | captionstyle= font-size:90%; | image = {{#if:{{{imatge|}}} | {{#invoke:InfoboxImage |InfoboxImage |image={{{imatge|}}} | size=300x300px | alt={{{alt|}}} }}<!-- -->{{#if:{{{peu|{{{peu_imatge|}}}}}} |<br /><small>{{{peu|{{{peu_imatge|}}}}}}</small> }} |{{if then show|{{#invoke:Wikidades | claim | property=P18 |qualifier=P2096 | formatting = table | list = false | rowformat= [[فَیِل:$0|300x300px]]<br /><small>$1</small>}} |{{#if:{{{tipus_plantilla|}}}|<!-- si hi ha tipus_plantilla, no exigir imatge -->|<includeonly>[[زٲژ:Articles de minerals que necessiten una imatge]]</includeonly>}} }} }} | subheader = {{#if:{{{tipus_plantilla|}}} |{{#switch: {{{tipus_plantilla|}}} | 0 = ''مسودٕ'' | 2 = [[انٹرنیشنل کھانٕز سٟتؠ مُتلِق ایسوسی ایشن|اَے ایٚم اے]] منظوٗر کٔرِتھ زٲژ | 3 = کھانٕز گرٛوپ | 4 = Varietat de: {{{varietat_de|}}} |}}<!-- -->}} | label3 = [[رسایٚن فارمولا]] | data3 = {{#invoke:Wikidades | claim | property=p274 | value={{{formula|}}} }} | label4 = ناو منسوٗبہٕ | data4 = {{#invoke:Wikidades | claim | property=p138 | value={{{ناو منسوٗبہٕ|{{{named_for|}}}}}} }} | label5 = [[IUPAC ناو]] | data5 = {{{IUPAC|}}} | label6 = دٔریافتُک ؤری | data6 = {{#invoke:Wikidades | claim | property=p575 | value={{{any_descobriment|{{{discovery date|{{{دٔریافتُک تٲریٖخ|}}}}}}}}} }} | label7 = دٔریافت کرن وول | data7 = {{#invoke:Wikidades | claim | property=p61 | value={{{descobridor|{{{discoverer|{{{دٔریافت کرن وول|}}}}}}}}} }} | label8 = [[قٕسٕم لوکلٹی (جیولوجی)|لوکیٹی ]] | data8 = {{#invoke:Wikidades | claim | property=p2695 | value={{{localitat|}}} }} | header9 = {{linktext|وَرگہٕ بَنٛدی}} | label10 = زٲژ | data10 = {{#if:{{{categoria|}}}|{{{categoria|}}}|<includeonly>[[کھانٕز]]</includeonly>}} | label11 = [[نِکل سٹرَٛنٛزُک درجہٕ بَنٛدی|نِکل-سٹرَٛنٛزُک، 10ہِم اؠڈیشن]] | data11 = {{#invoke:Wikidades | claim | property=p713 | value={{{strunz_10ed|{{{strunz|}}}}}} }} | label12 = نِکل-سٹرَٛنٛزُک، 9یِم اؠڈیشن | data12 = {{#invoke:Wikidades | claim | property=p712 | value={{{strunz_9ed|}}} }} | label13 = نِکل-سٹرَٛنٛزُک، 8ٹھِم اؠڈیشن | data13 = {{#invoke:Wikidades | claim | property=p711 | value={{{strunz_8ed|}}} }} | label14 = [[ڈینا ہُک دَرجہٕ بَنٛدی | ڈینا]] | data14 = {{#invoke:Wikidades | claim | property=p714 | value={{{dana|}}} }} | label15 = ہیز | data15 = {{{heys|}}} | header20 = خۄصوٗصِیَتھ | label21 = [[کرِٛسٹل لایِن سِسٹم]] | data21 = {{#invoke:Wikidades | claim | property=P556 | value={{{sistema|{{{system|}}}}}} }} | label22 = [[کرِٛسٹلٕچ عادتھ]] | data22 = {{#invoke:Wikidades | claim | property=p565 | value={{{habit|}}} }} | label23 = [[کرِٛسٹلُک ڈانٛچہٕ]] | data23 = {{{estructura_cristalina|{{{crystal_structure|{{{کرِٛسٹلُک_ڈانٛچہٕ|}}}}}}}}} | label24 = [[ہرمان-موگن نوٹیشن|H-M نوٹیشن]] | data24 = {{#invoke:Wikidades | claim | property=p1632 | value={{{hm|}}} }} | label25 = [[ہم آہَنٛگی ہُنٛد پۄیِنٛٹ گرٛوپ|پۄیِنٛٹ گرٛوپ]] | data25 = {{#invoke:Wikidades | claim | property=p589 | value={{{simetria|{{{symmetry|}}}}}} }} | label26 = [[خلٲیی گرٛوپ]] | data26 = {{#invoke:Wikidades | claim | property=p690 | value={{{grupespacial|{{{space_group|{{{خلٲیی گرٛوپ|}}}}}}}}} }} | label28 = [[مولر ماس]] | data28 = {{#invoke:Wikidades | claim | property=p2067 | value={{{massa_molar|{{{mass_molar|}}}}}} |formatting=unitcode }} | label29 = رَنٛگ | data29 = {{#invoke:Wikidades | claim | property=p462 | value={{{color|}}} }} | label30 = [[کرِٛسٹل جُڑواں| جُڑواں]] | data30 = {{#invoke:Wikidades | claim | property=p537 | value={{{macles|{{{twinning|{{{جُڑواں|}}}}}}}}} }} | label31 = [[ایٚکسفولِییشن (کھانٕز)| ایٚکسفولِییشن]] | data31 = {{#invoke:Wikidades | claim | property=p693 | value={{{exfoliacio|{{{exfoliation|}}}}}} }} | label32 = [[فرٛیکچر (معدنیات)|فرٛیکچر]] | data32 = {{#invoke:Wikidades | claim | property=p538 | value={{{fractura|{{{fracture|}}}}}} }} | label33 = [[دَرؠر]] | data33 = {{{tenacitat|{{{tenacity|{{{دَرؠر|}}}}}}}}} | label34 = [[موز پیمانہٕ|سختی (موز)]] | data34 = {{#invoke:Wikidades | claim | property=p1088 | value={{{duresa|{{{durability|{{{سختی|}}}}}}}}} }} | label35 = [[چمکُن]] | data35 = {{{lluissor|{{{shine|{{{چمک|}}}}}}}}} | label36 = رَنٛگ [[سٹریٖک (کھانزُت)|سٹریٖکُک]] | data36 = {{#invoke:Wikidades | claim | property=p534 | value={{{ratlla|{{{streak|{{{سٹریٖک|}}}}}}}}} }} | label37 = [[شفافیت|ڈایفنیٹی]] | data37 = {{{diafanitat|{{{diaphany|}}}}}} | label38 = [[مخصوٗص گرٛٲنؠ]] | data38 = {{{gravetat|{{{gravity|}}}}}} | label39 = [[وِکرز سختی ٹیسٹ|سختی (وِکرز)]] | data39 = {{{vickers|}}} | label40 = [[کثافت]] | data40 = {{#invoke:Wikidades | claim | property=p2054 | value={{{densitat|{{{density|}}}}}} }} | label41 = پٲلِش چمک | data41 = {{{polit|{{{polish|}}}}}} | label42 = آپٹیکل خۄصوٗصِیَتھ | data42 = {{{prop_optiques|}}} | label43 = [[ریفریکٹیو اِنڈیکس]] | data43 = {{#invoke:Wikidades | claim | property=p1109 | value={{{refraccio|{{{reflective_ index|}}}}}} }} | label44 = [[بریفنگنس]] | data44 = {{{birefringencia|}}} | label45 = [[پِلیٛوکرٛویِزٕم]] | data45 = {{{pleocroisme|}}} | label46 = [[اینٛگل 2V]] | data46 = {{{2V|}}} | label47 = [[آپٹیکل پھۄہلاو]] | data47 = {{{dispersio|{{{dispersion|}}}}}} | label48 = [[ختم گومُت (کھانزُت) | ختم گومُت]] | data48 = {{{extincio|{{{extinction|{{{ختم گومُت|}}}}}}}}} | label49 = تیز/سُست زیچھَر | data49 = {{{longitud|}}} | label50 = [[انیسوٹروپی]] | data50 = {{{anisotropia|}}} | label51 = [[فلوروسینس]] | data51 = {{{fluorescencia|}}} | label52 = [[جذب سپیکٹرم]] | data52 = {{{absorcio|}}} | label53 = [[گلنُک نۄقطہٕ]] | data53 = {{#invoke:Wikidades | claim | property=p2101 | value={{{fusio|{{{melting_point|{{{گلنُک_نۄقطہٕ|}}}}}}}}} }} | label54 = [[فزیبلٹی]] | data54 = {{{fusibilitat|}}} | label55 = تشخیصی خۄصوٗصِیَتھ | data55 = {{{diagnostic|}}} | label56 = [[حل پذیری]] | data56 = {{#invoke:Wikidades | claim | property=p2177 | value={{{solubilitat|{{{solubility|}}}}}} }} | label57 = [[میگنیٹزم]] | data57 = {{{magnetisme|}}} | label58 = عام ناپٲکی | data58 = {{{impureses|{{{impurities|}}}}}} | label60 = سٟتؠ تبدیٖل کرنہٕ یِوان | data60 = {{{alteracio|{{{alternate|}}}}}} | label61 = باقٕے خۄصوٗصِیَتھ | data61 = {{{altres|{{{alternative_property|}}}}}} | label62 = {{{prop1}}} | data62 = {{{prop1text|}}} | label63 = {{{prop2}}} | data63 = {{{prop2text|}}} | header75 = {{#if:{{{var1|}}}|سارِوٕے کھۄتہٕ زیٛادٕ عام قٕسمہٕ}} | label76 = {{{var1}}} | data76 = {{{var1text|}}} | label77 = {{{var2}}} | data77 = {{{var2text|}}} | label78 = {{{var3}}} | data78 = {{{var3text|}}} | label79 = {{{var4}}} | data79 = {{{var4text|}}} | label80 = {{{var5}}} | data80 = {{{var5text|}}} | label81 = {{{var6}}} | data81 = {{{var6text|}}} | header87 = {{#if:{{{radioactivitat|}}}|ریڈیو ایٚکتِو کھانٕز [[فَیِل:Radioactive.svg|25px]]}} | label88 = [[ریڈیو ایکٹیویٹیٹ]] | data88 = {{#ifeq: {{{radioactivitat|}}} | sí | | {{{radioactivitat|}}}}} | header92 = {{#if:{{{referencies|{{{estatus_IMA|{{{IMA|{{{simbol|}}}}}}}}}}}}|مذیٖد مولوٗماتھ}} | label93 = [[اَے ایٚم اے حیثیت]] | data93 = {{#invoke:Wikidades | claim | property=p579 | value={{{estatus_IMA|{{{IMA_status|}}}}}} }} | label94 = کوڈ [[اِنٹرنیشنل کھانٕز سٟتؠ مُتلِق ایسوسی ایشن|اَے ایٚم اے]]] | data94 = {{#invoke:Wikidades | claim | property=p484 | value={{{IMA|}}} }} | label95 = منظوٗری ہُنٛد ؤری | data95 = {{{any|{{{منظوٗری ہُنٛد ؤری|}}}}}} | label96 = اشاعتٕچ تٲریٖخ | data96 = {{#invoke:Wikidades | claim | property=p577 | value={{{publicacio|{{{publication|}}}}}} }} | label97 = شایع کٔرِتھ | data97 = {{{font_publicacio|}}} | label98 = [[کھانٕز نِشان|نِشان]] | data98 = {{#invoke:Wikidades | claim | property=p10113 | value={{{simbol|}}} }} | label100 = حَوالہٕ | data100 = {{{referencies|{{{references|{{{حَوالہٕ|}}}}}}}}} }} {{#ifeq:{{{1}}}|NC||{{#if:{{{tipus_plantilla|}}} | {{#switch: {{{tipus_plantilla|}}} | 0 = <!--No categoritzar--> | 1 = <includeonly>[[زٲژ:Articles de minerals aprovats per l'IMA]]</includeonly> | 2 = <includeonly>[[زٲژ:Articles de minerals no aprovats]]</includeonly> | 3 = <includeonly>[[زٲژ:Articles de grups de minerals]]</includeonly> | 4 = <includeonly>[[زٲژ:Articles de varietats de minerals]]</includeonly> }} |<includeonly>[[زٲژ:Articles de minerals aprovats per l'IMA]]</includeonly>}} <includeonly>[[Categoria:Articles de minerals]]</includeonly>}}<!-- rastreig provisional de paràmetres Format: {{ Condició | {{#invoke:utilitats|rastreig|nomplantilla/nomcondició}} }} -->{{#if:{{{imatge|}}} |{{#invoke:utilitats|rastreig|minerals/imatge}} }}<!--{{#ifeq:{{lc: {{{lluissor|}}} }}|adamantina|{{#invoke:utilitats|rastreig|minerals/adamantina}} }}--><!-- és Adamantina ? --><noinclude>{{Ús de la plantilla}}</noinclude> bfm902rc3yunpt25r0evhlehfsk2580 150682 150681 2026-08-28T17:58:35Z آیات محراج 11062 /* */ 150682 wikitext text/x-wiki {{Infotaula | bodystyle = font-size:90%; | abovestyle = background-color:{{colors infotaules|ciència}}; | headerstyle = background-color:{{colors infotaules|ciència}}; | labelstyle = width:40%; padding:0.1em; background:#eeeeee; font-size:90%; | datastyle = width:60%; font-size:90%; | subheaderstyle = width:40%; padding:0.1em; font-size:90%; | above = <span style="float:left; margin-left: 3px;">[[فَیِل:Linecons diamond.svg|25px|Infotaula de mineral]]</span>{{{nom|{{PAGENAME}}}}} | captionstyle= font-size:90%; | image = {{#if:{{{imatge|}}} | {{#invoke:InfoboxImage |InfoboxImage |image={{{imatge|}}} | size=300x300px | alt={{{alt|}}} }}<!-- -->{{#if:{{{peu|{{{peu_imatge|}}}}}} |<br /><small>{{{peu|{{{peu_imatge|}}}}}}</small> }} |{{if then show|{{#invoke:Wikidades | claim | property=P18 |qualifier=P2096 | formatting = table | list = false | rowformat= [[فَیِل:$0|300x300px]]<br /><small>$1</small>}} |{{#if:{{{tipus_plantilla|}}}|<!-- si hi ha tipus_plantilla, no exigir imatge -->|<includeonly>[[زٲژ:Articles de minerals que necessiten una imatge]]</includeonly>}} }} }} | subheader = {{#if:{{{tipus_plantilla|}}} |{{#switch: {{{tipus_plantilla|}}} | 0 = ''مسودٕ'' | 2 = [[انٹرنیشنل کھانٕز سٟتؠ مُتلِق ایسوسی ایشن|اَے ایٚم اے]] منظوٗر کٔرِتھ زٲژ | 3 = کھانٕز گرٛوپ | 4 = Varietat de: {{{varietat_de|}}} |}}<!-- -->}} | label3 = [[رسایٚن فارمولا]] | data3 = {{#invoke:Wikidades | claim | property=p274 | value={{{formula|}}} }} | label4 = ناو منسوٗبہٕ | data4 = {{#invoke:Wikidades | claim | property=p138 | value={{{ناو منسوٗبہٕ|{{{named_for|}}}}}} }} | label5 = [[IUPAC ناو]] | data5 = {{{IUPAC|}}} | label6 = دٔریافتُک ؤری | data6 = {{#invoke:Wikidades | claim | property=p575 | value={{{any_descobriment|{{{discovery date|{{{دٔریافتُک تٲریٖخ|}}}}}}}}} }} | label7 = دٔریافت کرن وول | data7 = {{#invoke:Wikidades | claim | property=p61 | value={{{descobridor|{{{discoverer|{{{دٔریافت کرن وول|}}}}}}}}} }} | label8 = [[قٕسٕم لوکلٹی (جیولوجی)|لوکیٹی ]] | data8 = {{#invoke:Wikidades | claim | property=p2695 | value={{{localitat|}}} }} | header9 = {{linktext|وَرگہٕ بَنٛدی}} | label10 = زٲژ | data10 = {{#if:{{{categoria|}}}|{{{categoria|}}}|<includeonly>[[کھانٕز]]</includeonly>}} | label11 = [[نِکل سٹرَٛنٛزُک درجہٕ بَنٛدی|نِکل-سٹرَٛنٛزُک، 10ہِم اؠڈیشن]] | data11 = {{#invoke:Wikidades | claim | property=p713 | value={{{strunz_10ed|{{{strunz|}}}}}} }} | label12 = نِکل-سٹرَٛنٛزُک، 9یِم اؠڈیشن | data12 = {{#invoke:Wikidades | claim | property=p712 | value={{{strunz_9ed|}}} }} | label13 = نِکل-سٹرَٛنٛزُک، 8ٹھِم اؠڈیشن | data13 = {{#invoke:Wikidades | claim | property=p711 | value={{{strunz_8ed|}}} }} | label14 = [[ڈینا ہُک دَرجہٕ بَنٛدی | ڈینا]] | data14 = {{#invoke:Wikidades | claim | property=p714 | value={{{dana|}}} }} | label15 = ہیز | data15 = {{{heys|}}} | header20 = خۄصوٗصِیَتھ | label21 = [[کرِٛسٹل لایِن سِسٹم]] | data21 = {{#invoke:Wikidades | claim | property=P556 | value={{{sistema|{{{system|}}}}}} }} | label22 = [[کرِٛسٹلٕچ عادتھ]] | data22 = {{#invoke:Wikidades | claim | property=p565 | value={{{habit|}}} }} | label23 = [[کرِٛسٹلُک ڈانٛچہٕ]] | data23 = {{{estructura_cristalina|{{{crystal_structure|{{{کرِٛسٹلُک_ڈانٛچہٕ|}}}}}}}}} | label24 = [[ہرمان-موگن نوٹیشن|H-M نوٹیشن]] | data24 = {{#invoke:Wikidades | claim | property=p1632 | value={{{hm|}}} }} | label25 = [[ہم آہَنٛگی ہُنٛد پۄیِنٛٹ گرٛوپ|پۄیِنٛٹ گرٛوپ]] | data25 = {{#invoke:Wikidades | claim | property=p589 | value={{{simetria|{{{symmetry|}}}}}} }} | label26 = [[خلٲیی گرٛوپ]] | data26 = {{#invoke:Wikidades | claim | property=p690 | value={{{grupespacial|{{{space_group|{{{خلٲیی گرٛوپ|}}}}}}}}} }} | label28 = [[مولر ماس]] | data28 = {{#invoke:Wikidades | claim | property=p2067 | value={{{massa_molar|{{{mass_molar|}}}}}} |formatting=unitcode }} | label29 = رَنٛگ | data29 = {{#invoke:Wikidades | claim | property=p462 | value={{{color|}}} }} | label30 = [[کرِٛسٹل جُڑواں| جُڑواں]] | data30 = {{#invoke:Wikidades | claim | property=p537 | value={{{macles|{{{twinning|{{{جُڑواں|}}}}}}}}} }} | label31 = [[ایٚکسفولِییشن (کھانٕز)| ایٚکسفولِییشن]] | data31 = {{#invoke:Wikidades | claim | property=p693 | value={{{exfoliacio|{{{exfoliation|}}}}}} }} | label32 = [[فرٛیکچر (معدنیات)|فرٛیکچر]] | data32 = {{#invoke:Wikidades | claim | property=p538 | value={{{fractura|{{{fracture|}}}}}} }} | label33 = [[دَرؠر]] | data33 = {{{tenacitat|{{{tenacity|{{{دَرؠر|}}}}}}}}} | label34 = [[موز پیمانہٕ|سختی (موز)]] | data34 = {{#invoke:Wikidades | claim | property=p1088 | value={{{duresa|{{{durability|{{{سختی|}}}}}}}}} }} | label35 = [[چمکُن]] | data35 = {{{lluissor|{{{shine|{{{چمک|}}}}}}}}} | label36 = رَنٛگ [[سٹریٖک (کھانزُت)|سٹریٖکُک]] | data36 = {{#invoke:Wikidades | claim | property=p534 | value={{{ratlla|{{{streak|{{{سٹریٖک|}}}}}}}}} }} | label37 = [[شفافیت|ڈایفنیٹی]] | data37 = {{{diafanitat|{{{diaphany|}}}}}} | label38 = [[مخصوٗص گرٛٲنؠ]] | data38 = {{{gravetat|{{{gravity|}}}}}} | label39 = [[وِکرز سختی ٹیسٹ|سختی (وِکرز)]] | data39 = {{{vickers|}}} | label40 = [[کثافت]] | data40 = {{#invoke:Wikidades | claim | property=p2054 | value={{{densitat|{{{density|}}}}}} }} | label41 = پٲلِش چمک | data41 = {{{polit|{{{polish|}}}}}} | label42 = آپٹیکل خۄصوٗصِیَتھ | data42 = {{{prop_optiques|}}} | label43 = [[ریفریکٹیو اِنڈیکس]] | data43 = {{#invoke:Wikidades | claim | property=p1109 | value={{{refraccio|{{{reflective_ index|}}}}}} }} | label44 = [[بریفنگنس]] | data44 = {{{birefringencia|}}} | label45 = [[پِلیٛوکرٛویِزٕم]] | data45 = {{{pleocroisme|}}} | label46 = [[اینٛگل 2V]] | data46 = {{{2V|}}} | label47 = [[آپٹیکل پھۄہلاو]] | data47 = {{{dispersio|{{{dispersion|}}}}}} | label48 = [[ختم گومُت (کھانزُت) | ختم گومُت]] | data48 = {{{extincio|{{{extinction|{{{ختم گومُت|}}}}}}}}} | label49 = تیز/سُست زیچھَر | data49 = {{{longitud|}}} | label50 = [[انیسوٹروپی]] | data50 = {{{anisotropia|}}} | label51 = [[فلوروسینس]] | data51 = {{{fluorescencia|}}} | label52 = [[جذب سپیکٹرم]] | data52 = {{{absorcio|}}} | label53 = [[گلنُک نۄقطہٕ]] | data53 = {{#invoke:Wikidades | claim | property=p2101 | value={{{fusio|{{{melting_point|{{{گلنُک_نۄقطہٕ|}}}}}}}}} }} | label54 = [[فزیبلٹی]] | data54 = {{{fusibilitat|}}} | label55 = تشخیصی خۄصوٗصِیَتھ | data55 = {{{diagnostic|}}} | label56 = [[حل پذیری]] | data56 = {{#invoke:Wikidades | claim | property=p2177 | value={{{solubilitat|{{{solubility|}}}}}} }} | label57 = [[میگنیٹزم]] | data57 = {{{magnetisme|}}} | label58 = عام ناپٲکی | data58 = {{{impureses|{{{impurities|}}}}}} | label60 = سٟتؠ تبدیٖل کرنہٕ یِوان | data60 = {{{alteracio|{{{alternate|}}}}}} | label61 = باقٕے خۄصوٗصِیَتھ | data61 = {{{altres|{{{alternative_property|}}}}}} | label62 = {{{prop1}}} | data62 = {{{prop1text|}}} | label63 = {{{prop2}}} | data63 = {{{prop2text|}}} | header75 = {{#if:{{{var1|}}}|سارِوٕے کھۄتہٕ زیٛادٕ عام قٕسمہٕ}} | label76 = {{{var1}}} | data76 = {{{var1text|}}} | label77 = {{{var2}}} | data77 = {{{var2text|}}} | label78 = {{{var3}}} | data78 = {{{var3text|}}} | label79 = {{{var4}}} | data79 = {{{var4text|}}} | label80 = {{{var5}}} | data80 = {{{var5text|}}} | label81 = {{{var6}}} | data81 = {{{var6text|}}} | header87 = {{#if:{{{radioactivitat|}}}|ریڈیو ایٚکتِو کھانٕز [[فَیِل:Radioactive.svg|25px]]}} | label88 = [[ریڈیو ایکٹیویٹیٹ]] | data88 = {{#ifeq: {{{radioactivitat|}}} | sí | | {{{radioactivitat|}}}}} | header92 = {{#if:{{{referencies|{{{estatus_IMA|{{{IMA|{{{simbol|}}}}}}}}}}}}|مذیٖد مولوٗماتھ}} | label93 = [[اَے ایٚم اے حیثیت]] | data93 = {{#invoke:Wikidades | claim | property=p579 | value={{{estatus_IMA|{{{IMA_status|}}}}}} }} | label94 = کوڈ [[اِنٹرنیشنل کھانٕز سٟتؠ مُتلِق ایسوسی ایشن|اَے ایٚم اے]]] | data94 = {{#invoke:Wikidades | claim | property=p484 | value={{{IMA|}}} }} | label95 = منظوٗری ہُنٛد ؤری | data95 = {{{any|{{{منظوٗری ہُنٛد ؤری|}}}}}} | label96 = اشاعتٕچ تٲریٖخ | data96 = {{#invoke:Wikidades | claim | property=p577 | value={{{publicacio|{{{publication|}}}}}} }} | label97 = شایع کٔرِتھ | data97 = {{{font_publicacio|}}} | label98 = [[کھانٕز نِشان|نِشان]] | data98 = {{#invoke:Wikidades | claim | property=p10113 | value={{{simbol|}}} }} | label100 = حَوالہٕ | data100 = {{{referencies|{{{references|{{{حَوالہٕ|}}}}}}}}} }} {{#ifeq:{{{1}}}|NC||{{#if:{{{tipus_plantilla|}}} | {{#switch: {{{tipus_plantilla|}}} | 0 = <!--No categoritzar--> | 1 = <includeonly>[[زٲژ:Articles de minerals aprovats per l'IMA]]</includeonly> | 2 = <includeonly>[[زٲژ:Articles de minerals no aprovats]]</includeonly> | 3 = <includeonly>[[زٲژ:Articles de grups de minerals]]</includeonly> | 4 = <includeonly>[[زٲژ:Articles de varietats de minerals]]</includeonly> }} |<includeonly>[[زٲژ:Articles de minerals aprovats per l'IMA]]</includeonly>}} <includeonly>[[زٲژ:Articles de minerals]]</includeonly>}}<!-- rastreig provisional de paràmetres Format: {{ Condició | {{#invoke:utilitats|rastreig|nomplantilla/nomcondició}} }} -->{{#if:{{{imatge|}}} |{{#invoke:utilitats|rastreig|minerals/imatge}} }}<!--{{#ifeq:{{lc: {{{lluissor|}}} }}|adamantina|{{#invoke:utilitats|rastreig|minerals/adamantina}} }}--><!-- és Adamantina ? --><noinclude>{{Ús de la plantilla}}</noinclude> a5cz7v3rq5dj5y0m5ua9cxgisk93ea9 150683 150682 2026-08-28T17:59:00Z آیات محراج 11062 /* */ 150683 wikitext text/x-wiki {{Infotaula | bodystyle = font-size:90%; | abovestyle = background-color:{{colors infotaules|ciència}}; | headerstyle = background-color:{{colors infotaules|ciència}}; | labelstyle = width:40%; padding:0.1em; background:#eeeeee; font-size:90%; | datastyle = width:60%; font-size:90%; | subheaderstyle = width:40%; padding:0.1em; font-size:90%; | above = <span style="float:left; margin-left: 3px;">[[فَیِل:Linecons diamond.svg|25px|Infotaula de mineral]]</span>{{{nom|{{PAGENAME}}}}} | captionstyle= font-size:90%; | image = {{#if:{{{imatge|}}} | {{#invoke:InfoboxImage |InfoboxImage |image={{{imatge|}}} | size=300x300px | alt={{{alt|}}} }}<!-- -->{{#if:{{{peu|{{{peu_imatge|}}}}}} |<br /><small>{{{peu|{{{peu_imatge|}}}}}}</small> }} |{{if then show|{{#invoke:Wikidades | claim | property=P18 |qualifier=P2096 | formatting = table | list = false | rowformat= [[فَیِل:$0|300x300px]]<br /><small>$1</small>}} |{{#if:{{{tipus_plantilla|}}}|<!-- si hi ha tipus_plantilla, no exigir imatge -->|<includeonly>[[زٲژ:Articles de minerals que necessiten una imatge]]</includeonly>}} }} }} | subheader = {{#if:{{{tipus_plantilla|}}} |{{#switch: {{{tipus_plantilla|}}} | 0 = ''مسودٕ'' | 2 = [[انٹرنیشنل کھانٕز سٟتؠ مُتلِق ایسوسی ایشن|اَے ایٚم اے]] منظوٗر کٔرِتھ زٲژ | 3 = کھانٕز گرٛوپ | 4 = Varietat de: {{{varietat_de|}}} |}}<!-- -->}} | label3 = [[رسایٚن فارمولا]] | data3 = {{#invoke:Wikidades | claim | property=p274 | value={{{formula|}}} }} | label4 = ناو منسوٗبہٕ | data4 = {{#invoke:Wikidades | claim | property=p138 | value={{{ناو منسوٗبہٕ|{{{named_for|}}}}}} }} | label5 = [[IUPAC ناو]] | data5 = {{{IUPAC|}}} | label6 = دٔریافتُک ؤری | data6 = {{#invoke:Wikidades | claim | property=p575 | value={{{any_descobriment|{{{discovery date|{{{دٔریافتُک تٲریٖخ|}}}}}}}}} }} | label7 = دٔریافت کرن وول | data7 = {{#invoke:Wikidades | claim | property=p61 | value={{{descobridor|{{{discoverer|{{{دٔریافت کرن وول|}}}}}}}}} }} | label8 = [[قٕسٕم لوکلٹی (جیولوجی)|لوکیٹی ]] | data8 = {{#invoke:Wikidades | claim | property=p2695 | value={{{localitat|}}} }} | header9 = {{linktext|وَرگہٕ بَنٛدی}} | label10 = زٲژ | data10 = {{#if:{{{categoria|}}}|{{{categoria|}}}|<includeonly>[[کھانٕز]]</includeonly>}} | label11 = [[نِکل سٹرَٛنٛزُک درجہٕ بَنٛدی|نِکل-سٹرَٛنٛزُک، 10ہِم اؠڈیشن]] | data11 = {{#invoke:Wikidades | claim | property=p713 | value={{{strunz_10ed|{{{strunz|}}}}}} }} | label12 = نِکل-سٹرَٛنٛزُک، 9یِم اؠڈیشن | data12 = {{#invoke:Wikidades | claim | property=p712 | value={{{strunz_9ed|}}} }} | label13 = نِکل-سٹرَٛنٛزُک، 8ٹھِم اؠڈیشن | data13 = {{#invoke:Wikidades | claim | property=p711 | value={{{strunz_8ed|}}} }} | label14 = [[ڈینا ہُک دَرجہٕ بَنٛدی | ڈینا]] | data14 = {{#invoke:Wikidades | claim | property=p714 | value={{{dana|}}} }} | label15 = ہیز | data15 = {{{heys|}}} | header20 = خۄصوٗصِیَتھ | label21 = [[کرِٛسٹل لایِن سِسٹم]] | data21 = {{#invoke:Wikidades | claim | property=P556 | value={{{sistema|{{{system|}}}}}} }} | label22 = [[کرِٛسٹلٕچ عادتھ]] | data22 = {{#invoke:Wikidades | claim | property=p565 | value={{{habit|}}} }} | label23 = [[کرِٛسٹلُک ڈانٛچہٕ]] | data23 = {{{estructura_cristalina|{{{crystal_structure|{{{کرِٛسٹلُک_ڈانٛچہٕ|}}}}}}}}} | label24 = [[ہرمان-موگن نوٹیشن|H-M نوٹیشن]] | data24 = {{#invoke:Wikidades | claim | property=p1632 | value={{{hm|}}} }} | label25 = [[ہم آہَنٛگی ہُنٛد پۄیِنٛٹ گرٛوپ|پۄیِنٛٹ گرٛوپ]] | data25 = {{#invoke:Wikidades | claim | property=p589 | value={{{simetria|{{{symmetry|}}}}}} }} | label26 = [[خلٲیی گرٛوپ]] | data26 = {{#invoke:Wikidades | claim | property=p690 | value={{{grupespacial|{{{space_group|{{{خلٲیی گرٛوپ|}}}}}}}}} }} | label28 = [[مولر ماس]] | data28 = {{#invoke:Wikidades | claim | property=p2067 | value={{{massa_molar|{{{mass_molar|}}}}}} |formatting=unitcode }} | label29 = رَنٛگ | data29 = {{#invoke:Wikidades | claim | property=p462 | value={{{color|}}} }} | label30 = [[کرِٛسٹل جُڑواں| جُڑواں]] | data30 = {{#invoke:Wikidades | claim | property=p537 | value={{{macles|{{{twinning|{{{جُڑواں|}}}}}}}}} }} | label31 = [[ایٚکسفولِییشن (کھانٕز)| ایٚکسفولِییشن]] | data31 = {{#invoke:Wikidades | claim | property=p693 | value={{{exfoliacio|{{{exfoliation|}}}}}} }} | label32 = [[فرٛیکچر (معدنیات)|فرٛیکچر]] | data32 = {{#invoke:Wikidades | claim | property=p538 | value={{{fractura|{{{fracture|}}}}}} }} | label33 = [[دَرؠر]] | data33 = {{{tenacitat|{{{tenacity|{{{دَرؠر|}}}}}}}}} | label34 = [[موز پیمانہٕ|سختی (موز)]] | data34 = {{#invoke:Wikidades | claim | property=p1088 | value={{{duresa|{{{durability|{{{سختی|}}}}}}}}} }} | label35 = [[چمکُن]] | data35 = {{{lluissor|{{{shine|{{{چمک|}}}}}}}}} | label36 = رَنٛگ [[سٹریٖک (کھانزُت)|سٹریٖکُک]] | data36 = {{#invoke:Wikidades | claim | property=p534 | value={{{ratlla|{{{streak|{{{سٹریٖک|}}}}}}}}} }} | label37 = [[شفافیت|ڈایفنیٹی]] | data37 = {{{diafanitat|{{{diaphany|}}}}}} | label38 = [[مخصوٗص گرٛٲنؠ]] | data38 = {{{gravetat|{{{gravity|}}}}}} | label39 = [[وِکرز سختی ٹیسٹ|سختی (وِکرز)]] | data39 = {{{vickers|}}} | label40 = [[کثافت]] | data40 = {{#invoke:Wikidades | claim | property=p2054 | value={{{densitat|{{{density|}}}}}} }} | label41 = پٲلِش چمک | data41 = {{{polit|{{{polish|}}}}}} | label42 = آپٹیکل خۄصوٗصِیَتھ | data42 = {{{prop_optiques|}}} | label43 = [[ریفریکٹیو اِنڈیکس]] | data43 = {{#invoke:Wikidades | claim | property=p1109 | value={{{refraccio|{{{reflective_ index|}}}}}} }} | label44 = [[بریفنگنس]] | data44 = {{{birefringencia|}}} | label45 = [[پِلیٛوکرٛویِزٕم]] | data45 = {{{pleocroisme|}}} | label46 = [[اینٛگل 2V]] | data46 = {{{2V|}}} | label47 = [[آپٹیکل پھۄہلاو]] | data47 = {{{dispersio|{{{dispersion|}}}}}} | label48 = [[ختم گومُت (کھانزُت) | ختم گومُت]] | data48 = {{{extincio|{{{extinction|{{{ختم گومُت|}}}}}}}}} | label49 = تیز/سُست زیچھَر | data49 = {{{longitud|}}} | label50 = [[انیسوٹروپی]] | data50 = {{{anisotropia|}}} | label51 = [[فلوروسینس]] | data51 = {{{fluorescencia|}}} | label52 = [[جذب سپیکٹرم]] | data52 = {{{absorcio|}}} | label53 = [[گلنُک نۄقطہٕ]] | data53 = {{#invoke:Wikidades | claim | property=p2101 | value={{{fusio|{{{melting_point|{{{گلنُک_نۄقطہٕ|}}}}}}}}} }} | label54 = [[فزیبلٹی]] | data54 = {{{fusibilitat|}}} | label55 = تشخیصی خۄصوٗصِیَتھ | data55 = {{{diagnostic|}}} | label56 = [[حل پذیری]] | data56 = {{#invoke:Wikidades | claim | property=p2177 | value={{{solubilitat|{{{solubility|}}}}}} }} | label57 = [[میگنیٹزم]] | data57 = {{{magnetisme|}}} | label58 = عام ناپٲکی | data58 = {{{impureses|{{{impurities|}}}}}} | label60 = سٟتؠ تبدیٖل کرنہٕ یِوان | data60 = {{{alteracio|{{{alternate|}}}}}} | label61 = باقٕے خۄصوٗصِیَتھ | data61 = {{{altres|{{{alternative_property|}}}}}} | label62 = {{{prop1}}} | data62 = {{{prop1text|}}} | label63 = {{{prop2}}} | data63 = {{{prop2text|}}} | header75 = {{#if:{{{var1|}}}|سارِوٕے کھۄتہٕ زیٛادٕ عام قٕسمہٕ}} | label76 = {{{var1}}} | data76 = {{{var1text|}}} | label77 = {{{var2}}} | data77 = {{{var2text|}}} | label78 = {{{var3}}} | data78 = {{{var3text|}}} | label79 = {{{var4}}} | data79 = {{{var4text|}}} | label80 = {{{var5}}} | data80 = {{{var5text|}}} | label81 = {{{var6}}} | data81 = {{{var6text|}}} | header87 = {{#if:{{{radioactivitat|}}}|ریڈیو ایٚکتِو کھانٕز [[فَیِل:Radioactive.svg|25px]]}} | label88 = [[ریڈیو ایکٹیویٹیٹ]] | data88 = {{#ifeq: {{{radioactivitat|}}} | sí | | {{{radioactivitat|}}}}} | header92 = {{#if:{{{referencies|{{{estatus_IMA|{{{IMA|{{{simbol|}}}}}}}}}}}}|مذیٖد مولوٗماتھ}} | label93 = [[اَے ایٚم اے حیثیت]] | data93 = {{#invoke:Wikidades | claim | property=p579 | value={{{estatus_IMA|{{{IMA_status|}}}}}} }} | label94 = کوڈ [[اِنٹرنیشنل کھانٕز سٟتؠ مُتلِق ایسوسی ایشن|اَے ایٚم اے]]] | data94 = {{#invoke:Wikidades | claim | property=p484 | value={{{IMA|}}} }} | label95 = منظوٗری ہُنٛد ؤری | data95 = {{{any|{{{منظوٗری ہُنٛد ؤری|}}}}}} | label96 = اشاعتٕچ تٲریٖخ | data96 = {{#invoke:Wikidades | claim | property=p577 | value={{{publicacio|{{{publication|}}}}}} }} | label97 = شایع کٔرِتھ | data97 = {{{font_publicacio|}}} | label98 = [[کھانٕز نِشان|نِشان]] | data98 = {{#invoke:Wikidades | claim | property=p10113 | value={{{simbol|}}} }} | label100 = حَوالہٕ | data100 = {{{referencies|{{{references|{{{حَوالہٕ|}}}}}}}}} }} {{#ifeq:{{{1}}}|NC||{{#if:{{{tipus_plantilla|}}} | {{#switch: {{{tipus_plantilla|}}} | 0 = <!--No categoritzar--> | 1 = <includeonly>[[زٲژ:Articles de minerals aprovats per l'IMA]]</includeonly> | 2 = <includeonly>[[زٲژ:Articles de minerals no aprovats]]</includeonly> | 3 = <includeonly>[[زٲژ:Articles de grups de minerals]]</includeonly> | 4 = <includeonly>[[زٲژ:Articles de varietats de minerals]]</includeonly> }} |<includeonly>[[زٲژ:Articles de minerals aprovats per l'IMA]]</includeonly>}} <includeonly>[[زٲژ:کھانٕز]]</includeonly>}}<!-- rastreig provisional de paràmetres Format: {{ Condició | {{#invoke:utilitats|rastreig|nomplantilla/nomcondició}} }} -->{{#if:{{{imatge|}}} |{{#invoke:utilitats|rastreig|minerals/imatge}} }}<!--{{#ifeq:{{lc: {{{lluissor|}}} }}|adamantina|{{#invoke:utilitats|rastreig|minerals/adamantina}} }}--><!-- és Adamantina ? --><noinclude>{{Ús de la plantilla}}</noinclude> 9rxitvrjk80zvulqch9u4fqeyroauxn 150692 150683 2026-08-28T18:01:29Z آیات محراج 11062 /* */ 150692 wikitext text/x-wiki {{Infotaula | bodystyle = font-size:90%; | abovestyle = background-color:{{colors infotaules|ciència}}; | headerstyle = background-color:{{colors infotaules|ciència}}; | labelstyle = width:40%; padding:0.1em; background:#eeeeee; font-size:90%; | datastyle = width:60%; font-size:90%; | subheaderstyle = width:40%; padding:0.1em; font-size:90%; | above = <span style="float:left; margin-left: 3px;">[[فَیِل:Linecons diamond.svg|25px|Infotaula de mineral]]</span>{{{nom|{{PAGENAME}}}}} | captionstyle= font-size:90%; | image = {{#if:{{{imatge|}}} | {{#invoke:InfoboxImage |InfoboxImage |image={{{imatge|}}} | size=300x300px | alt={{{alt|}}} }}<!-- -->{{#if:{{{peu|{{{peu_imatge|}}}}}} |<br /><small>{{{peu|{{{peu_imatge|}}}}}}</small> }} |{{if then show|{{#invoke:Wikidades | claim | property=P18 |qualifier=P2096 | formatting = table | list = false | rowformat= [[فَیِل:$0|300x300px]]<br /><small>$1</small>}} |{{#if:{{{tipus_plantilla|}}}|<!-- si hi ha tipus_plantilla, no exigir imatge -->|<includeonly>[[زٲژ:Articles de minerals que necessiten una imatge]]</includeonly>}} }} }} | subheader = {{#if:{{{tipus_plantilla|}}} |{{#switch: {{{tipus_plantilla|}}} | 0 = ''مسودٕ'' | 2 = [[انٹرنیشنل کھانٕز سٟتؠ مُتلِق ایسوسی ایشن|اَے ایٚم اے]] منظوٗر کٔرِتھ زٲژ | 3 = کھانٕز گرٛوپ | 4 = Varietat de: {{{varietat_de|}}} |}}<!-- -->}} | label3 = [[رسایٚن فارمولا]] | data3 = {{#invoke:Wikidades | claim | property=p274 | value={{{formula|}}} }} | label4 = ناو منسوٗبہٕ | data4 = {{#invoke:Wikidades | claim | property=p138 | value={{{ناو منسوٗبہٕ|{{{named_for|}}}}}} }} | label5 = [[IUPAC ناو]] | data5 = {{{IUPAC|}}} | label6 = دٔریافتُک ؤری | data6 = {{#invoke:Wikidades | claim | property=p575 | value={{{any_descobriment|{{{discovery date|{{{دٔریافتُک تٲریٖخ|}}}}}}}}} }} | label7 = دٔریافت کرن وول | data7 = {{#invoke:Wikidades | claim | property=p61 | value={{{descobridor|{{{discoverer|{{{دٔریافت کرن وول|}}}}}}}}} }} | label8 = [[قٕسٕم لوکلٹی (جیولوجی)|لوکیٹی ]] | data8 = {{#invoke:Wikidades | claim | property=p2695 | value={{{localitat|}}} }} | header9 = [[وَرگہٕ بَنٛدی]] | label10 = زٲژ | data10 = {{#if:{{{categoria|}}}|{{{categoria|}}}|<includeonly>[[کھانٕز]]</includeonly>}} | label11 = [[نِکل سٹرَٛنٛزُک درجہٕ بَنٛدی|نِکل-سٹرَٛنٛزُک، 10ہِم اؠڈیشن]] | data11 = {{#invoke:Wikidades | claim | property=p713 | value={{{strunz_10ed|{{{strunz|}}}}}} }} | label12 = نِکل-سٹرَٛنٛزُک، 9یِم اؠڈیشن | data12 = {{#invoke:Wikidades | claim | property=p712 | value={{{strunz_9ed|}}} }} | label13 = نِکل-سٹرَٛنٛزُک، 8ٹھِم اؠڈیشن | data13 = {{#invoke:Wikidades | claim | property=p711 | value={{{strunz_8ed|}}} }} | label14 = [[ڈینا ہُک دَرجہٕ بَنٛدی | ڈینا]] | data14 = {{#invoke:Wikidades | claim | property=p714 | value={{{dana|}}} }} | label15 = ہیز | data15 = {{{heys|}}} | header20 = خۄصوٗصِیَتھ | label21 = [[کرِٛسٹل لایِن سِسٹم]] | data21 = {{#invoke:Wikidades | claim | property=P556 | value={{{sistema|{{{system|}}}}}} }} | label22 = [[کرِٛسٹلٕچ عادتھ]] | data22 = {{#invoke:Wikidades | claim | property=p565 | value={{{habit|}}} }} | label23 = [[کرِٛسٹلُک ڈانٛچہٕ]] | data23 = {{{estructura_cristalina|{{{crystal_structure|{{{کرِٛسٹلُک_ڈانٛچہٕ|}}}}}}}}} | label24 = [[ہرمان-موگن نوٹیشن|H-M نوٹیشن]] | data24 = {{#invoke:Wikidades | claim | property=p1632 | value={{{hm|}}} }} | label25 = [[ہم آہَنٛگی ہُنٛد پۄیِنٛٹ گرٛوپ|پۄیِنٛٹ گرٛوپ]] | data25 = {{#invoke:Wikidades | claim | property=p589 | value={{{simetria|{{{symmetry|}}}}}} }} | label26 = [[خلٲیی گرٛوپ]] | data26 = {{#invoke:Wikidades | claim | property=p690 | value={{{grupespacial|{{{space_group|{{{خلٲیی گرٛوپ|}}}}}}}}} }} | label28 = [[مولر ماس]] | data28 = {{#invoke:Wikidades | claim | property=p2067 | value={{{massa_molar|{{{mass_molar|}}}}}} |formatting=unitcode }} | label29 = رَنٛگ | data29 = {{#invoke:Wikidades | claim | property=p462 | value={{{color|}}} }} | label30 = [[کرِٛسٹل جُڑواں| جُڑواں]] | data30 = {{#invoke:Wikidades | claim | property=p537 | value={{{macles|{{{twinning|{{{جُڑواں|}}}}}}}}} }} | label31 = [[ایٚکسفولِییشن (کھانٕز)| ایٚکسفولِییشن]] | data31 = {{#invoke:Wikidades | claim | property=p693 | value={{{exfoliacio|{{{exfoliation|}}}}}} }} | label32 = [[فرٛیکچر (معدنیات)|فرٛیکچر]] | data32 = {{#invoke:Wikidades | claim | property=p538 | value={{{fractura|{{{fracture|}}}}}} }} | label33 = [[دَرؠر]] | data33 = {{{tenacitat|{{{tenacity|{{{دَرؠر|}}}}}}}}} | label34 = [[موز پیمانہٕ|سختی (موز)]] | data34 = {{#invoke:Wikidades | claim | property=p1088 | value={{{duresa|{{{durability|{{{سختی|}}}}}}}}} }} | label35 = [[چمکُن]] | data35 = {{{lluissor|{{{shine|{{{چمک|}}}}}}}}} | label36 = رَنٛگ [[سٹریٖک (کھانزُت)|سٹریٖکُک]] | data36 = {{#invoke:Wikidades | claim | property=p534 | value={{{ratlla|{{{streak|{{{سٹریٖک|}}}}}}}}} }} | label37 = [[شفافیت|ڈایفنیٹی]] | data37 = {{{diafanitat|{{{diaphany|}}}}}} | label38 = [[مخصوٗص گرٛٲنؠ]] | data38 = {{{gravetat|{{{gravity|}}}}}} | label39 = [[وِکرز سختی ٹیسٹ|سختی (وِکرز)]] | data39 = {{{vickers|}}} | label40 = [[کثافت]] | data40 = {{#invoke:Wikidades | claim | property=p2054 | value={{{densitat|{{{density|}}}}}} }} | label41 = پٲلِش چمک | data41 = {{{polit|{{{polish|}}}}}} | label42 = آپٹیکل خۄصوٗصِیَتھ | data42 = {{{prop_optiques|}}} | label43 = [[ریفریکٹیو اِنڈیکس]] | data43 = {{#invoke:Wikidades | claim | property=p1109 | value={{{refraccio|{{{reflective_ index|}}}}}} }} | label44 = [[بریفنگنس]] | data44 = {{{birefringencia|}}} | label45 = [[پِلیٛوکرٛویِزٕم]] | data45 = {{{pleocroisme|}}} | label46 = [[اینٛگل 2V]] | data46 = {{{2V|}}} | label47 = [[آپٹیکل پھۄہلاو]] | data47 = {{{dispersio|{{{dispersion|}}}}}} | label48 = [[ختم گومُت (کھانزُت) | ختم گومُت]] | data48 = {{{extincio|{{{extinction|{{{ختم گومُت|}}}}}}}}} | label49 = تیز/سُست زیچھَر | data49 = {{{longitud|}}} | label50 = [[انیسوٹروپی]] | data50 = {{{anisotropia|}}} | label51 = [[فلوروسینس]] | data51 = {{{fluorescencia|}}} | label52 = [[جذب سپیکٹرم]] | data52 = {{{absorcio|}}} | label53 = [[گلنُک نۄقطہٕ]] | data53 = {{#invoke:Wikidades | claim | property=p2101 | value={{{fusio|{{{melting_point|{{{گلنُک_نۄقطہٕ|}}}}}}}}} }} | label54 = [[فزیبلٹی]] | data54 = {{{fusibilitat|}}} | label55 = تشخیصی خۄصوٗصِیَتھ | data55 = {{{diagnostic|}}} | label56 = [[حل پذیری]] | data56 = {{#invoke:Wikidades | claim | property=p2177 | value={{{solubilitat|{{{solubility|}}}}}} }} | label57 = [[میگنیٹزم]] | data57 = {{{magnetisme|}}} | label58 = عام ناپٲکی | data58 = {{{impureses|{{{impurities|}}}}}} | label60 = سٟتؠ تبدیٖل کرنہٕ یِوان | data60 = {{{alteracio|{{{alternate|}}}}}} | label61 = باقٕے خۄصوٗصِیَتھ | data61 = {{{altres|{{{alternative_property|}}}}}} | label62 = {{{prop1}}} | data62 = {{{prop1text|}}} | label63 = {{{prop2}}} | data63 = {{{prop2text|}}} | header75 = {{#if:{{{var1|}}}|سارِوٕے کھۄتہٕ زیٛادٕ عام قٕسمہٕ}} | label76 = {{{var1}}} | data76 = {{{var1text|}}} | label77 = {{{var2}}} | data77 = {{{var2text|}}} | label78 = {{{var3}}} | data78 = {{{var3text|}}} | label79 = {{{var4}}} | data79 = {{{var4text|}}} | label80 = {{{var5}}} | data80 = {{{var5text|}}} | label81 = {{{var6}}} | data81 = {{{var6text|}}} | header87 = {{#if:{{{radioactivitat|}}}|ریڈیو ایٚکتِو کھانٕز [[فَیِل:Radioactive.svg|25px]]}} | label88 = [[ریڈیو ایکٹیویٹیٹ]] | data88 = {{#ifeq: {{{radioactivitat|}}} | sí | | {{{radioactivitat|}}}}} | header92 = {{#if:{{{referencies|{{{estatus_IMA|{{{IMA|{{{simbol|}}}}}}}}}}}}|مذیٖد مولوٗماتھ}} | label93 = [[اَے ایٚم اے حیثیت]] | data93 = {{#invoke:Wikidades | claim | property=p579 | value={{{estatus_IMA|{{{IMA_status|}}}}}} }} | label94 = کوڈ [[اِنٹرنیشنل کھانٕز سٟتؠ مُتلِق ایسوسی ایشن|اَے ایٚم اے]]] | data94 = {{#invoke:Wikidades | claim | property=p484 | value={{{IMA|}}} }} | label95 = منظوٗری ہُنٛد ؤری | data95 = {{{any|{{{منظوٗری ہُنٛد ؤری|}}}}}} | label96 = اشاعتٕچ تٲریٖخ | data96 = {{#invoke:Wikidades | claim | property=p577 | value={{{publicacio|{{{publication|}}}}}} }} | label97 = شایع کٔرِتھ | data97 = {{{font_publicacio|}}} | label98 = [[کھانٕز نِشان|نِشان]] | data98 = {{#invoke:Wikidades | claim | property=p10113 | value={{{simbol|}}} }} | label100 = حَوالہٕ | data100 = {{{referencies|{{{references|{{{حَوالہٕ|}}}}}}}}} }} {{#ifeq:{{{1}}}|NC||{{#if:{{{tipus_plantilla|}}} | {{#switch: {{{tipus_plantilla|}}} | 0 = <!--No categoritzar--> | 1 = <includeonly>[[زٲژ:Articles de minerals aprovats per l'IMA]]</includeonly> | 2 = <includeonly>[[زٲژ:Articles de minerals no aprovats]]</includeonly> | 3 = <includeonly>[[زٲژ:Articles de grups de minerals]]</includeonly> | 4 = <includeonly>[[زٲژ:Articles de varietats de minerals]]</includeonly> }} |<includeonly>[[زٲژ:Articles de minerals aprovats per l'IMA]]</includeonly>}} <includeonly>[[زٲژ:کھانٕز]]</includeonly>}}<!-- rastreig provisional de paràmetres Format: {{ Condició | {{#invoke:utilitats|rastreig|nomplantilla/nomcondició}} }} -->{{#if:{{{imatge|}}} |{{#invoke:utilitats|rastreig|minerals/imatge}} }}<!--{{#ifeq:{{lc: {{{lluissor|}}} }}|adamantina|{{#invoke:utilitats|rastreig|minerals/adamantina}} }}--><!-- és Adamantina ? --><noinclude>{{Ús de la plantilla}}</noinclude> hgcvorasexl9xeeldo13c8qjooo7u6y 150695 150692 2026-08-28T18:10:31Z آیات محراج 11062 /* */ 150695 wikitext text/x-wiki {{Infotaula | bodystyle = font-size:90%; | abovestyle = background-color:{{colors infotaules|ciència}}; | headerstyle = background-color:{{colors infotaules|ciència}}; | labelstyle = width:40%; padding:0.1em; background:#fafafa; font-size:90%; | datastyle = width:60%; font-size:90%; | subheaderstyle = width:40%; padding:0.1em; font-size:90%; | above = <span style="float:left; margin-left: 3px;">[[فَیِل:Linecons diamond.svg|25px|Infotaula de mineral]]</span>{{{nom|{{PAGENAME}}}}} | captionstyle= font-size:90%; | image = {{#if:{{{imatge|}}} | {{#invoke:InfoboxImage |InfoboxImage |image={{{imatge|}}} | size=300x300px | alt={{{alt|}}} }}<!-- -->{{#if:{{{peu|{{{peu_imatge|}}}}}} |<br /><small>{{{peu|{{{peu_imatge|}}}}}}</small> }} |{{if then show|{{#invoke:Wikidades | claim | property=P18 |qualifier=P2096 | formatting = table | list = false | rowformat= [[فَیِل:$0|300x300px]]<br /><small>$1</small>}} |{{#if:{{{tipus_plantilla|}}}|<!-- si hi ha tipus_plantilla, no exigir imatge -->|<includeonly>[[زٲژ:Articles de minerals que necessiten una imatge]]</includeonly>}} }} }} | subheader = {{#if:{{{tipus_plantilla|}}} |{{#switch: {{{tipus_plantilla|}}} | 0 = ''مسودٕ'' | 2 = [[انٹرنیشنل کھانٕز سٟتؠ مُتلِق ایسوسی ایشن|اَے ایٚم اے]] منظوٗر کٔرِتھ زٲژ | 3 = کھانٕز گرٛوپ | 4 = Varietat de: {{{varietat_de|}}} |}}<!-- -->}} | label3 = [[رسایٚن فارمولا]] | data3 = {{#invoke:Wikidades | claim | property=p274 | value={{{formula|}}} }} | label4 = ناو منسوٗبہٕ | data4 = {{#invoke:Wikidades | claim | property=p138 | value={{{ناو منسوٗبہٕ|{{{named_for|}}}}}} }} | label5 = [[IUPAC ناو]] | data5 = {{{IUPAC|}}} | label6 = دٔریافتُک ؤری | data6 = {{#invoke:Wikidades | claim | property=p575 | value={{{any_descobriment|{{{discovery date|{{{دٔریافتُک تٲریٖخ|}}}}}}}}} }} | label7 = دٔریافت کرن وول | data7 = {{#invoke:Wikidades | claim | property=p61 | value={{{descobridor|{{{discoverer|{{{دٔریافت کرن وول|}}}}}}}}} }} | label8 = [[قٕسٕم لوکلٹی (جیولوجی)|جاے قٕسٕم]] | data8 = {{#invoke:Wikidades | claim | property=p2695 | value={{{localitat|}}} }} | header9 = [[وَرگہٕ بَنٛدی]] | label10 = زٲژ | data10 = {{#if:{{{categoria|}}}|{{{categoria|}}}|<includeonly>[[کھانٕز]]</includeonly>}} | label11 = [[نِکل سٹرَٛنٛزُک درجہٕ بَنٛدی|نِکل-سٹرَٛنٛزُک، 10ہِم اؠڈیشن]] | data11 = {{#invoke:Wikidades | claim | property=p713 | value={{{strunz_10ed|{{{strunz|}}}}}} }} | label12 = نِکل-سٹرَٛنٛزُک، 9یِم اؠڈیشن | data12 = {{#invoke:Wikidades | claim | property=p712 | value={{{strunz_9ed|}}} }} | label13 = نِکل-سٹرَٛنٛزُک، 8ٹھِم اؠڈیشن | data13 = {{#invoke:Wikidades | claim | property=p711 | value={{{strunz_8ed|}}} }} | label14 = [[ڈینا ہُک دَرجہٕ بَنٛدی | ڈینا]] | data14 = {{#invoke:Wikidades | claim | property=p714 | value={{{dana|}}} }} | label15 = ہیز | data15 = {{{heys|}}} | header20 = خۄصوٗصِیَتھ | label21 = [[کرِٛسٹل لایِن سِسٹم]] | data21 = {{#invoke:Wikidades | claim | property=P556 | value={{{sistema|{{{system|}}}}}} }} | label22 = [[کرِٛسٹلٕچ عادتھ]] | data22 = {{#invoke:Wikidades | claim | property=p565 | value={{{habit|}}} }} | label23 = [[کرِٛسٹلُک ڈانٛچہٕ]] | data23 = {{{estructura_cristalina|{{{crystal_structure|{{{کرِٛسٹلُک_ڈانٛچہٕ|}}}}}}}}} | label24 = [[ہرمان-موگن نوٹیشن|H-M نوٹیشن]] | data24 = {{#invoke:Wikidades | claim | property=p1632 | value={{{hm|}}} }} | label25 = [[ہم آہَنٛگی ہُنٛد پۄیِنٛٹ گرٛوپ|پۄیِنٛٹ گرٛوپ]] | data25 = {{#invoke:Wikidades | claim | property=p589 | value={{{simetria|{{{symmetry|}}}}}} }} | label26 = [[خلٲیی گرٛوپ]] | data26 = {{#invoke:Wikidades | claim | property=p690 | value={{{grupespacial|{{{space_group|{{{خلٲیی گرٛوپ|}}}}}}}}} }} | label28 = [[مولر ماس]] | data28 = {{#invoke:Wikidades | claim | property=p2067 | value={{{massa_molar|{{{mass_molar|}}}}}} |formatting=unitcode }} | label29 = رَنٛگ | data29 = {{#invoke:Wikidades | claim | property=p462 | value={{{color|}}} }} | label30 = [[کرِٛسٹل جُڑواں| جُڑواں]] | data30 = {{#invoke:Wikidades | claim | property=p537 | value={{{macles|{{{twinning|{{{جُڑواں|}}}}}}}}} }} | label31 = [[ایٚکسفولِییشن (کھانٕز)| ایٚکسفولِییشن]] | data31 = {{#invoke:Wikidades | claim | property=p693 | value={{{exfoliacio|{{{exfoliation|}}}}}} }} | label32 = [[فرٛیکچر (معدنیات)|فرٛیکچر]] | data32 = {{#invoke:Wikidades | claim | property=p538 | value={{{fractura|{{{fracture|}}}}}} }} | label33 = [[دَرؠر]] | data33 = {{{tenacitat|{{{tenacity|{{{دَرؠر|}}}}}}}}} | label34 = [[موز پیمانہٕ|سختی (موز)]] | data34 = {{#invoke:Wikidades | claim | property=p1088 | value={{{duresa|{{{durability|{{{سختی|}}}}}}}}} }} | label35 = [[چمکُن]] | data35 = {{{lluissor|{{{shine|{{{چمک|}}}}}}}}} | label36 = رَنٛگ [[سٹریٖک (کھانزُت)|سٹریٖکُک]] | data36 = {{#invoke:Wikidades | claim | property=p534 | value={{{ratlla|{{{streak|{{{سٹریٖک|}}}}}}}}} }} | label37 = [[شفافیت|ڈایفنیٹی]] | data37 = {{{diafanitat|{{{diaphany|}}}}}} | label38 = [[مخصوٗص گرٛٲنؠ]] | data38 = {{{gravetat|{{{gravity|}}}}}} | label39 = [[وِکرز سختی ٹیسٹ|سختی (وِکرز)]] | data39 = {{{vickers|}}} | label40 = [[کثافت]] | data40 = {{#invoke:Wikidades | claim | property=p2054 | value={{{densitat|{{{density|}}}}}} }} | label41 = پٲلِش چمک | data41 = {{{polit|{{{polish|}}}}}} | label42 = آپٹیکل خۄصوٗصِیَتھ | data42 = {{{prop_optiques|}}} | label43 = [[ریفریکٹیو اِنڈیکس]] | data43 = {{#invoke:Wikidades | claim | property=p1109 | value={{{refraccio|{{{reflective_ index|}}}}}} }} | label44 = [[بریفنگنس]] | data44 = {{{birefringencia|}}} | label45 = [[پِلیٛوکرٛویِزٕم]] | data45 = {{{pleocroisme|}}} | label46 = [[اینٛگل 2V]] | data46 = {{{2V|}}} | label47 = [[آپٹیکل پھۄہلاو]] | data47 = {{{dispersio|{{{dispersion|}}}}}} | label48 = [[ختم گومُت (کھانزُت) | ختم گومُت]] | data48 = {{{extincio|{{{extinction|{{{ختم گومُت|}}}}}}}}} | label49 = تیز/سُست زیچھَر | data49 = {{{longitud|}}} | label50 = [[انیسوٹروپی]] | data50 = {{{anisotropia|}}} | label51 = [[فلوروسینس]] | data51 = {{{fluorescencia|}}} | label52 = [[جذب سپیکٹرم]] | data52 = {{{absorcio|}}} | label53 = [[گلنُک نۄقطہٕ]] | data53 = {{#invoke:Wikidades | claim | property=p2101 | value={{{fusio|{{{melting_point|{{{گلنُک_نۄقطہٕ|}}}}}}}}} }} | label54 = [[فزیبلٹی]] | data54 = {{{fusibilitat|}}} | label55 = تشخیصی خۄصوٗصِیَتھ | data55 = {{{diagnostic|}}} | label56 = [[حل پذیری]] | data56 = {{#invoke:Wikidades | claim | property=p2177 | value={{{solubilitat|{{{solubility|}}}}}} }} | label57 = [[میگنیٹزم]] | data57 = {{{magnetisme|}}} | label58 = عام ناپٲکی | data58 = {{{impureses|{{{impurities|}}}}}} | label60 = سٟتؠ تبدیٖل کرنہٕ یِوان | data60 = {{{alteracio|{{{alternate|}}}}}} | label61 = باقٕے خۄصوٗصِیَتھ | data61 = {{{altres|{{{alternative_property|}}}}}} | label62 = {{{prop1}}} | data62 = {{{prop1text|}}} | label63 = {{{prop2}}} | data63 = {{{prop2text|}}} | header75 = {{#if:{{{var1|}}}|سارِوٕے کھۄتہٕ زیٛادٕ عام قٕسمہٕ}} | label76 = {{{var1}}} | data76 = {{{var1text|}}} | label77 = {{{var2}}} | data77 = {{{var2text|}}} | label78 = {{{var3}}} | data78 = {{{var3text|}}} | label79 = {{{var4}}} | data79 = {{{var4text|}}} | label80 = {{{var5}}} | data80 = {{{var5text|}}} | label81 = {{{var6}}} | data81 = {{{var6text|}}} | header87 = {{#if:{{{radioactivitat|}}}|ریڈیو ایٚکتِو کھانٕز [[فَیِل:Radioactive.svg|25px]]}} | label88 = [[ریڈیو ایکٹیویٹیٹ]] | data88 = {{#ifeq: {{{radioactivitat|}}} | sí | | {{{radioactivitat|}}}}} | header92 = {{#if:{{{referencies|{{{estatus_IMA|{{{IMA|{{{simbol|}}}}}}}}}}}}|مذیٖد مولوٗماتھ}} | label93 = [[اَے ایٚم اے حیثیت]] | data93 = {{#invoke:Wikidades | claim | property=p579 | value={{{estatus_IMA|{{{IMA_status|}}}}}} }} | label94 = کوڈ [[اِنٹرنیشنل کھانٕز سٟتؠ مُتلِق ایسوسی ایشن|اَے ایٚم اے]]] | data94 = {{#invoke:Wikidades | claim | property=p484 | value={{{IMA|}}} }} | label95 = منظوٗری ہُنٛد ؤری | data95 = {{{any|{{{منظوٗری ہُنٛد ؤری|}}}}}} | label96 = اشاعتٕچ تٲریٖخ | data96 = {{#invoke:Wikidades | claim | property=p577 | value={{{publicacio|{{{publication|}}}}}} }} | label97 = شایع کٔرِتھ | data97 = {{{font_publicacio|}}} | label98 = [[کھانٕز نِشان|نِشان]] | data98 = {{#invoke:Wikidades | claim | property=p10113 | value={{{simbol|}}} }} | label100 = حَوالہٕ | data100 = {{{referencies|{{{references|{{{حَوالہٕ|}}}}}}}}} }} {{#ifeq:{{{1}}}|NC||{{#if:{{{tipus_plantilla|}}} | {{#switch: {{{tipus_plantilla|}}} | 0 = <!--No categoritzar--> | 1 = <includeonly>[[زٲژ:Articles de minerals aprovats per l'IMA]]</includeonly> | 2 = <includeonly>[[زٲژ:Articles de minerals no aprovats]]</includeonly> | 3 = <includeonly>[[زٲژ:Articles de grups de minerals]]</includeonly> | 4 = <includeonly>[[زٲژ:Articles de varietats de minerals]]</includeonly> }} |<includeonly>[[زٲژ:Articles de minerals aprovats per l'IMA]]</includeonly>}} <includeonly>[[زٲژ:کھانٕز]]</includeonly>}}<!-- rastreig provisional de paràmetres Format: {{ Condició | {{#invoke:utilitats|rastreig|nomplantilla/nomcondició}} }} -->{{#if:{{{imatge|}}} |{{#invoke:utilitats|rastreig|minerals/imatge}} }}<!--{{#ifeq:{{lc: {{{lluissor|}}} }}|adamantina|{{#invoke:utilitats|rastreig|minerals/adamantina}} }}--><!-- és Adamantina ? --><noinclude>{{Ús de la plantilla}}</noinclude> jo4hcn6awt8spwdrvzfqnjn2n1leh84 زٲژ:کھانٕز 14 32525 150693 2026-08-28T18:04:50Z آیات محراج 11062 /* */ 150693 wikitext text/x-wiki phoiac9h4m842xq45sp7s6u21eteeq1 فرما:Infobox mineral/doc 10 32526 150696 2026-08-28T18:11:13Z آیات محراج 11062 Created page with "یہِ چھُ کاتالان وِکیٖپیٖڈیا پؠٹھ کاپی کٔرِتھ. Template ٹُک ڈانٛچہٕ آسنہٕ اَنٛگریٖزؠ وِکیٖپیٖڈیا ہیو کینٛہہ تہِ یہِ چھُ پوٗرٕ پٲٹھؠ وِکیٖڈیٹا پؠٹھ کٲم کران." 150696 wikitext text/x-wiki یہِ چھُ کاتالان وِکیٖپیٖڈیا پؠٹھ کاپی کٔرِتھ. Template ٹُک ڈانٛچہٕ آسنہٕ اَنٛگریٖزؠ وِکیٖپیٖڈیا ہیو کینٛہہ تہِ یہِ چھُ پوٗرٕ پٲٹھؠ وِکیٖڈیٹا پؠٹھ کٲم کران. aqwggekwo0uw9h9k6wuz3wthlck7kpr 150697 150696 2026-08-28T18:11:27Z آیات محراج 11062 /* */ 150697 wikitext text/x-wiki یہِ چھُ [[کاتالان وِکیٖپیٖڈیا]] پؠٹھ کاپی کٔرِتھ. Template ٹُک ڈانٛچہٕ آسنہٕ اَنٛگریٖزؠ وِکیٖپیٖڈیا ہیو کینٛہہ تہِ یہِ چھُ پوٗرٕ پٲٹھؠ وِکیٖڈیٹا پؠٹھ کٲم کران. 9bdej60k868x92xy37twg1l1e7wgxfz گرٛیفایِٹ 0 32527 150699 2026-08-28T18:23:54Z آیات محراج 11062 "[[:en:Special:Redirect/revision/1368880035|Graphite]]" ضفُک اِنتدٲیی حِصُک تَرجَمہٕ طور تَخلیق کَرنہٕ آمُت 150699 wikitext text/x-wiki . 6t9fg2gmch401ldtk8m7pyzz632ixbb 150700 150699 2026-08-28T18:30:58Z آیات محراج 11062 150700 wikitext text/x-wiki '''گرٛیفایِٹ''' چھِ [[کاربن]] تہٕ امچ [[ایٚلوٹرٛاپ]] ہٕنٛز اکھ قۄدرتی شکل ۔ یہِ چھُ اکھ نرم، تیز سرمیی پیٹھہٕ کرٛیٚہنہِ [[معدنیات]] یتھ منٛز دٲتی چمک چھےٚ۔ گریفائٹس چھِ اکھ تہہ دار ڈانٛچہٕ آسان یتھ منٛز کاربن ایٹم چھِ ہیکساگونل نموٗنن منٛز ترتیٖب دنہٕ یوان۔ تہہ چھِ اکھ أکس پیٚٹھٕ کھٔسِتھ، ییٚمہ سۭتۍ گریفائٹ نرم چھِ بناوان تہٕ اتھ اصل {{مانے|پِشجارٕچ|lubricating}} خۄصوٗصِیَتھ دِوان۔ گریفائٹ چُھ بجلی تہٕ گرمی ہُنٛد اکھ اصل کنڈکٹر تہٕ یہِ ہیکہِ تھدِ درجہٕ حرارتُک مقابلہٕ کٔرِتھ۔ گریفائٹُک چھُ واریاہ صنعتی استعمال۔ یہِ چھُ [[پینسل]] کور، لیوبریکنٹ، ریفریکٹری مواد، الیکٹروڈ، بیٹری تہٕ کیٚنٛہن الیکٹرک اجزاہن منٛز استعمال گژھان۔ یہِ چھُ خاص طور [[لیتھیم ایان بیٹری]] منٛز اہم، ییٚتہِ یہِ عام طور اینوڈ موادٕ پٲٹھۍ استعمال گژھان چھُ۔ قۄدرتی گریفایٹ چھُ بنیٲدی طور گریفائٹ تھاون واجنہِ کَنہِ ہٕنٛز کان کنی سۭتۍ حٲصل کرنہٕ یِوان۔ یہِ چھُ واریاہَن شکلَن منٛز لبنہٕ یِوان، یِمَن منٛز فلیک گریفائٹ، امورفوس گریفائٹ، تہٕ رگ گریفائٹ شٲمِل چھِ۔ مصنوعی گریفائٹ چھُ کاربن سۭتۍ بھرپور موادٕ سۭتۍ تہِ اعلیٰ تاپمان چہِ پروسیسِنٛگ ذٔریعہٕ تیار کٔرِتھ۔ == بیٚیہِ وُچھِو == * [[کاربن]] * [[ہیٖرٕ]] == حَوالہٕ == iwadi5dgmrf5uwbu83947h5lpyx92b4 150701 150700 2026-08-28T18:31:57Z آیات محراج 11062 /* */ 150701 wikitext text/x-wiki '''گرٛیفایِٹ''' چھِ [[کاربن]] تہٕ امچ [[ایٚلوٹرٛاپ]] ہٕنٛز اکھ قۄدرتی شکل ۔ یہِ چھُ اکھ نرم، تیز سرمیی پیٹھہٕ کرٛیٚہنہِ [[معدنیات]] یتھ منٛز دٲتی چمک چھےٚ۔ گریفائٹس چھِ اکھ تہہ دار ڈانٛچہٕ آسان یتھ منٛز کاربن ایٹم چھِ ہیکساگونل نموٗنن منٛز ترتیٖب دنہٕ یوان۔ تہہ چھِ اکھ أکس پیٚٹھٕ کھٔسِتھ، ییٚمہ سۭتۍ گریفائٹ نرم چھِ بناوان تہٕ اتھ اصل {{مانے|پِشجارٕچ|lubricating}} خۄصوٗصِیَتھ دِوان۔ گریفائٹ چُھ بجلی تہٕ گرمی ہُنٛد اکھ اصل کنڈکٹر تہٕ یہِ ہیکہِ تھدِ درجہٕ حرارتُک مقابلہٕ کٔرِتھ۔ گریفائٹُک چھُ واریاہ صنعتی استعمال۔ یہِ چھُ [[پینسل]] کور، لیوبریکنٹ، ریفریکٹری مواد، الیکٹروڈ، بیٹری تہٕ کیٚنٛہن الیکٹرک اجزاہن منٛز استعمال گژھان۔ یہِ چھُ خاص طور [[لیتھیم ایان بیٹری]] منٛز اہم، ییٚتہِ یہِ عام طور اینوڈ موادٕ پٲٹھۍ استعمال گژھان چھُ۔ قۄدرتی گریفایٹ چھُ بنیٲدی طور گریفائٹ تھاون واجنہِ کَنہِ ہٕنٛز کان کنی سۭتۍ حٲصل کرنہٕ یِوان۔ یہِ چھُ واریاہَن شکلَن منٛز لبنہٕ یِوان، یِمَن منٛز فلیک گریفائٹ، امورفوس گریفائٹ، تہٕ رگ گریفائٹ شٲمِل چھِ۔ آرٹِفِشَل گریفائٹ چھُ کاربن سۭتۍ بھرپور موادٕ سۭتۍ تہِ اعلیٰ تاپمان چہِ پروسیسِنٛگ ذٔریعہٕ تیار کٔرِتھ۔ == بیٚیہِ وُچھِو == * [[کاربن]] * [[ہیٖرٕ]] == حَوالہٕ == fqrstfct0w8672o2tnh8xiy55enedza 150702 150701 2026-08-28T18:32:53Z آیات محراج 11062 /* */ 150702 wikitext text/x-wiki '''گرٛیفایِٹ''' چھِ [[کاربن]] تہٕ امچ [[ایٚلوٹرٛاپ]] ہٕنٛز اکھ قۄدرتی شکل ۔ یہِ چھُ اکھ نرم، تیز سرمیی پیٹھہٕ کرٛیٚہنہِ [[معدنیات]] یتھ منٛز دٲتی چمک چھےٚ۔ گریفائٹس چھِ اکھ تہہ دار ڈانٛچہٕ آسان یتھ منٛز کاربن ایٹم چھِ ہیکساگونل نموٗنن منٛز ترتیٖب دنہٕ یوان۔ تہہ چھِ اکھ أکس پیٚٹھٕ کھٔسِتھ، ییٚمہ سۭتۍ گریفائٹ نرم چھِ بناوان تہٕ اتھ اصل {{مانے|پِشجارٕچ|lubricating}} خۄصوٗصِیَتھ دِوان۔ گریفائٹ چُھ بجلی تہٕ گرمی ہُنٛد اکھ اصل کنڈکٹر تہٕ یہِ ہیکہِ تھدِ درجہٕ حرارتُک مقابلہٕ کٔرِتھ۔ گریفائٹُک چھُ واریاہ صنعتی استعمال۔ یہِ چھُ [[پینسل]] کور، لیوبریکنٹ، ریفریکٹری مواد، الیکٹروڈ، بیٹری تہٕ کیٚنٛہن الیکٹرک اجزاہن منٛز استعمال گژھان۔ یہِ چھُ خاص طور [[لیتھیم ایان بیٹری]] منٛز اہم، ییٚتہِ یہِ عام طور اینوڈ موادٕ پٲٹھۍ استعمال گژھان چھُ۔ قۄدرتی گریفایٹ چھُ بنیٲدی طور گریفائٹ تھاون واجنہِ کَنہِ ہٕنٛز کان کنی سۭتۍ حٲصل کرنہٕ یِوان۔ یہِ چھُ واریاہَن شکلَن منٛز لبنہٕ یِوان، یِمَن منٛز فلیک گریفائٹ، امورفوس گریفائٹ، تہٕ رگ گریفائٹ شٲمِل چھِ۔ پانہٕ بَنٲومٕتؠ گریفائٹ چھُ کاربن سۭتۍ بھرپور موادٕ سۭتۍ تہِ اعلیٰ تاپمان چہِ پروسیسِنٛگ ذٔریعہٕ تیار کٔرِتھ۔ == بیٚیہِ وُچھِو == * [[کاربن]] * [[ہیٖرٕ]] == حَوالہٕ == 54xicd3j1ugsiae6f3dbxv6q85tq41s 150703 150702 2026-08-28T18:34:37Z آیات محراج 11062 /* */ 150703 wikitext text/x-wiki {{Infobox mineral}} '''گرٛیفایِٹ''' چھِ [[کاربن]] تہٕ امچ [[ایٚلوٹرٛاپ]] ہٕنٛز اکھ قۄدرتی شکل ۔ یہِ چھُ اکھ نرم، تیز سرمیی پیٹھہٕ کرٛیٚہنہِ [[معدنیات]] یتھ منٛز دٲتی چمک چھےٚ۔ گریفائٹس چھِ اکھ تہہ دار ڈانٛچہٕ آسان یتھ منٛز کاربن ایٹم چھِ ہیکساگونل نموٗنن منٛز ترتیٖب دنہٕ یوان۔ تہہ چھِ اکھ أکس پیٚٹھٕ کھٔسِتھ، ییٚمہ سۭتۍ گریفائٹ نرم چھِ بناوان تہٕ اتھ اصل {{مانے|پِشجارٕچ|lubricating}} خۄصوٗصِیَتھ دِوان۔ گریفائٹ چُھ بجلی تہٕ گرمی ہُنٛد اکھ اصل کنڈکٹر تہٕ یہِ ہیکہِ تھدِ درجہٕ حرارتُک مقابلہٕ کٔرِتھ۔ گریفائٹُک چھُ واریاہ صنعتی استعمال۔ یہِ چھُ [[پینسل]] کور، لیوبریکنٹ، ریفریکٹری مواد، الیکٹروڈ، بیٹری تہٕ کیٚنٛہن الیکٹرک اجزاہن منٛز استعمال گژھان۔ یہِ چھُ خاص طور [[لیتھیم ایان بیٹری]] منٛز اہم، ییٚتہِ یہِ عام طور اینوڈ موادٕ پٲٹھۍ استعمال گژھان چھُ۔ قۄدرتی گریفایٹ چھُ بنیٲدی طور گریفائٹ تھاون واجنہِ کَنہِ ہٕنٛز کان کنی سۭتۍ حٲصل کرنہٕ یِوان۔ یہِ چھُ واریاہَن شکلَن منٛز لبنہٕ یِوان، یِمَن منٛز فلیک گریفائٹ، امورفوس گریفائٹ، تہٕ رگ گریفائٹ شٲمِل چھِ۔ پانہٕ بَنٲومٕتؠ گریفائٹ چھُ کاربن سۭتۍ بھرپور موادٕ سۭتۍ تہِ اعلیٰ تاپمان چہِ پروسیسِنٛگ ذٔریعہٕ تیار کٔرِتھ۔<ref name="USGS_PP1802J">{{cite journal|last1=Robinson|first1=Gilpin R.|last2=Hammarstrom|first2=Jane M.|last3=Olson|first3=Donald W.|date=2017|title=Graphite|journal=USGS Report|page=3|bibcode=2017usgs.rept....3R|doi=10.3133/pp1802J|editor-first1=Klaus J.|editor-first2=John H.|editor-first3=Robert R.|editor-first4=Dwight C.|editor-last1=Schulz|editor-last2=Deyoung|editor-last3=Seal|editor-last4=Bradley}}{{source-attribution}}</ref> == بیٚیہِ وُچھِو == * [[کاربن]] * [[ہیٖرٕ]] == حَوالہٕ == hx1xv9ty7mw91o8ppcjyf8lk7alzndp زینون گیس ایم آر آئی 0 32528 150705 2026-08-28T18:36:47Z آیات محراج 11062 [[زینون گیس ایم آر آئی]] صَفہٕ آو پَکناونہٕ [[زینون گیس ایم آر اَے]] جاے، پَکناوَن وول صٲرف آیات محراج : ئ isn't used in kashmiri orthography 150705 wikitext text/x-wiki #REDIRECT [[زینون گیس ایم آر اَے]] t9ca3ag7dg6mwzzuzkx8b2pvvonnfw0 زٲژ:معدنی 14 32529 150710 2026-08-28T18:46:40Z آیات محراج 11062 Created page with "[[زٲژ: کھانٕز]]" 150710 wikitext text/x-wiki [[زٲژ: کھانٕز]] 57ij3ipparx0mz6dqr9ikif2f3j4n8h لیتھیم-ایان بیٹری 0 32530 150711 2026-08-28T18:53:11Z آیات محراج 11062 "[[:en:Special:Redirect/revision/1371593406|Lithium-ion battery]]" ضفُک اِنتدٲیی حِصُک تَرجَمہٕ طور تَخلیق کَرنہٕ آمُت 150711 wikitext text/x-wiki لیتھیم ایان بیٹری یا لی ایان بیٹری چھِ اَکہِ قٕسمٕچ ریچارج ایبل بیٹری یۄس توانٲیی ذخیرٕ کرنہٕ خٲطرٕ الیکٹرانِک طور ٹھوس چیزن منٛز لیتھیم آئنن (Li+) ہٕنٛز ریورسبل انٹرکلیشنُک استعمال کران چھِ۔ واریاہ مُختٔلِف قٕسٕم چھِ، یِم عام طور کیتھوڈَس منٛز استعمال گژھَن وٲلۍ موادَن ہٕنٛدِ ذٔریعہٕ درجہٕ بندی چھِ یِوان کرنہٕ۔ باقٕے ریچارج ایبل بیٹری قٕسمَن ہٕنٛدِس مُقابلَس منٛز چھِ یِمَن عام طور پٲٹھۍ زِیٛادٕ مخصوٗص توانائی، توانٲیی ہٕنٛز کثافت، تہٕ توانٲیی ہٕنٛز کارکردگی تہٕ زیٖٹھۍ سائیکل زندگی تہٕ کیلنڈر زندگی آسان۔1991 منٛز لی ایان بیٹری گۄڈنِچہِ لَٹہِ کٕننہٕ پتہٕ ترٛٮ۪ن ؤرِین منٛز گٔیہِ تِہٕنٛز والیومیٹرِک توانٲیی ہُنٛد کثافت ترےٚ گنہٕ ہُریر ییٚلہِ زَن یِہُنٛد قٟمتھ گٔیہِ دَہ گُنہٕ۔ 2024 کِس ٲخرَس منٛز گٔیہِ عالمی مَنٛگ فی ؤری 1 ٹیرا واٹ گھنٹہٕ، ییٚلہِ زَن پٲداوارٕچ صلٲحیت ٲس امہِ کھۄتہٕ دۄگنہٕ کھۄتہٕ زیادٕ۔<ref>{{cite web|last1=Rayner|first1=Tristan|date=2 January 2025|title=The battery boom of 2024 as one of five trends in renewables|url=https://www.ess-news.com/2025/01/02/the-battery-boom-of-2024-as-one-of-five-trends-in-renewables/|url-status=live|archive-url=https://web.archive.org/web/20250114123647/https://www.ess-news.com/2025/01/02/the-battery-boom-of-2024-as-one-of-five-trends-in-renewables/|archive-date=14 January 2025|access-date=4 January 2025|website=Energy Storage}}</ref> qqza9hp4rk5505h37wenlcjrwsjeijc 150712 150711 2026-08-28T18:55:08Z آیات محراج 11062 /* */ 150712 wikitext text/x-wiki '''لیتھیم ایان بیٹری''' یا '''لی ایان بیٹری''' چھِ اَکہِ قٕسمٕچ ریچارج ایبل بیٹری یۄس توانٲیی ذخیرٕ کرنہٕ خٲطرٕ الیکٹرانِک طور ٹھوس چیٖزن منٛز لیتھیم ایانن (Li+) ہٕنٛز ریورسبل انٹرکلیشنُک استعمال کران چھِ۔ واریاہ مُختٔلِف قٕسٕم چھِ، یِم عام طور کیتھوڈَس منٛز استعمال گژھَن وٲلۍ موادَن ہٕنٛدِ ذٔریعہٕ درجہٕ بندی چھِ یِوان کرنہٕ۔ باقٕے ریچارج ایبل بیٹری قٕسمَن ہٕنٛدِس مُقابلَس منٛز چھِ یِمَن عام طور پٲٹھۍ زِیٛادٕ مخصوٗص توانائی، توانٲیی ہٕنٛز کثافت، تہٕ توانٲیی ہٕنٛز کارکردگی تہٕ زیٖٹھۍ سائیکل زندگی تہٕ کیلنڈر زندگی آسان۔1991 منٛز لی ایان بیٹری گۄڈنِچہِ لَٹہِ کٕننہٕ پتہٕ ترٛٮ۪ن ؤرِین منٛز گٔیہِ تِہٕنٛز والیومیٹرِک توانٲیی ہُنٛد کثافت ترےٚ گنہٕ ہُریر ییٚلہِ زَن یِہُنٛد قٟمتھ گٔیہِ دَہ گُنہٕ۔ 2024 کِس ٲخرَس منٛز گٔیہِ عالمی مَنٛگ فی ؤری 1 ٹیرا واٹ گھنٹہٕ، ییٚلہِ زَن پٲداوارٕچ صلٲحیت ٲس امہِ کھۄتہٕ دۄگنہٕ کھۄتہٕ زیادٕ۔<ref>{{cite web|last1=Rayner|first1=Tristan|date=2 January 2025|title=The battery boom of 2024 as one of five trends in renewables|url=https://www.ess-news.com/2025/01/02/the-battery-boom-of-2024-as-one-of-five-trends-in-renewables/|url-status=live|archive-url=https://web.archive.org/web/20250114123647/https://www.ess-news.com/2025/01/02/the-battery-boom-of-2024-as-one-of-five-trends-in-renewables/|archive-date=14 January 2025|access-date=4 January 2025|website=Energy Storage}}</ref> k0mu1yezkmjtd80t7ldiz7emx975mxx 150713 150712 2026-08-28T18:59:43Z آیات محراج 11062 150713 wikitext text/x-wiki {{Infobox battery | image = File:Li ion laptop battery.jpg | caption = A lithium-ion battery pack from a [[Laptop|laptop computer]] | EtoW = Standard: {{cvt|160|-|300|W.h/kg|kJ/kg}}<ref name="EVEMall20P">{{cite web | url = https://www.evemall.com/en/consumer-battery/cylindrical-ncm-cell/18650-20p | title = 18650 20P-Cylindrical NCM Cell | publisher = [[EVE Energy]] | access-date = 21 February 2026 }}{{Dead link|date=May 2026 |bot=InternetArchiveBot }}</ref><ref name="FEBHighCapacitryBatteryLineup">{{cite web | url = https://en.febbattery.com/Uploads/keditor/file/20231123/20231123131924_57703.pdf | title = HIGH CAPACITY BATTERY | publisher = Far East Battery | access-date = 21 February 2026 | archive-date = 16 January 2026 | archive-url = https://web.archive.org/web/20260116230602/https://en.febbattery.com/Uploads/keditor/file/20231123/20231123131924_57703.pdf | url-status = live }}</ref><br />Specialty: up to {{cvt|450|W.h/kg|kJ/kg}}<ref name="Amprius2024ProductPortfolio">{{cite web | url = https://amprius.com/documents/Amprius_Product_Portfolio_0824_website.pdf | title = Silicon Anode Li-Ion Cell Product Portfolio | publisher = Amprius | access-date = 21 February 2026 | archive-date = 18 September 2024 | archive-url = https://web.archive.org/web/20240918163649/https://amprius.com/documents/Amprius_Product_Portfolio_0824_website.pdf | url-status = live }}</ref> | EtoS = Standard: {{cvt|250|–|842<!-- Calculation: 14.26/(((1.82/2)^2*3.14159*6.51)/1000)-->|W.h/L|J/cm3}}<ref>{{cite web | url = https://www.orbtronic.com/content/NCR18650B-Datasheet-Panasonic-Specifications.pdf | title = NCR18650B |publisher=Panasonic |access-date=7 October 2016 |archive-url=https://web.archive.org/web/20180817085228/https://na.industrial.panasonic.com/sites/default/pidsa/files/ncr18650b.pdf |archive-date=17 August 2018 }}</ref><ref>{{cite web | url = https://cdn.shopify.com/s/files/1/0674/3651/files/panasonic-ncr18650-ga-spec-sheet.pdf | title = NCR18650GA | access-date = 2 July 2017 | archive-date = 8 March 2021 | archive-url = https://web.archive.org/web/20210308084905/https://cdn.shopify.com/s/files/1/0674/3651/files/panasonic-ncr18650-ga-spec-sheet.pdf | url-status = live }}</ref><ref>{{Cite web |last=腾讯网 |date=2023-10-25 |title=18650容量天花板,远东 FEB 18650-4000mAh 电芯评测_腾讯新闻 |url=https://news.qq.com/rain/a/20231025A05JQ400 |access-date=2026-02-21 |website=news.qq.com |language=zh-CN}}</ref><br />Specialty: up to {{cvt|1100|W.h/L|J/cm3}}<ref name="Amprius2024ProductPortfolio"/> | PtoW={{nowrap|1–10,000 W/kg}}<ref name="mw"/> |CtoDE=80–90%<ref name="Valøen-2007">{{cite conference |last1=Valøen |first1=Lars Ole |last2=Shoesmith |first2=Mark I. |url=http://www.pluginhighway.ca/PHEV2007/proceedings/PluginHwy_PHEV2007_PaperReviewed_Valoen.pdf |title=The effect of PHEV and HEV duty cycles on battery and battery pack performance |conference=Proceedings of the Plug-in Highway Electric Vehicle Conference |date=1–2 November 2007|archive-url=https://web.archive.org/web/20090326150713/http://www.pluginhighway.ca/PHEV2007/proceedings/PluginHwy_PHEV2007_PaperReviewed_Valoen.pdf |archive-date=26 March 2009 }}</ref> | EtoCP= {{cvt|108|$/kW.h|disp=comma}}<ref>{{cite web | url = https://about.bnef.com/insights/clean-transport/lithium-ion-battery-pack-prices-fall-to-108-per-kilowatt-hour-despite-rising-metal-prices-bloombergnef/ | title = Lithium-Ion Battery Pack Prices Fall to $108 Per Kilowatt-Hour, Despite Rising Metal Prices: BloombergNEF | date = 9 December 2025 | access-date = 21 February 2026 | publisher = Bloomberg New Energy Finance}}</ref> | SDR=0.35% to 2.5% per month depending on state of charge<ref name="Redondo-Iglesias-2016">{{cite book |doi=10.1109/VPPC.2016.7791723 |chapter=Measuring Reversible and Irreversible Capacity Losses on Lithium-Ion Batteries |title=2016 IEEE Vehicle Power and Propulsion Conference (VPPC) |page=7 |year=2016 |last1=Redondo-Iglesias |first1=Eduardo |last2=Venet |first2=Pascal |last3=Pelissier |first3=Serge |isbn=978-1-5090-3528-1 |chapter-url=https://hal.archives-ouvertes.fr/hal-01393614/document |url=https://hal.archives-ouvertes.fr/hal-01393614 |access-date=20 October 2017 |archive-date=28 April 2021 |archive-url=https://web.archive.org/web/20210428034748/https://hal.archives-ouvertes.fr/hal-01393614 |url-status=live }}</ref><!--when full. Near zero when partial--> | CD={{nowrap|400–1,200 [[Battery cycle|cycles]]}}<ref>{{cite web |url=http://www.thermoanalytics.com/support/publications/batterytypesdoc.html |title=Battery Types and Characteristics for HEV |date=2007 |website=ThermoAnalytics |archive-url=https://web.archive.org/web/20150520021436/http://www.thermoanalytics.com/support/publications/batterytypesdoc.html |archive-date=20 May 2015 |url-status=dead |access-date=11 June 2010}}</ref> | NomV={{nowrap|3.6 / 3.7 / 3.8 / 3.85 [[Volts|V]],}} {{nowrap|{{chem|Li|Fe|PO|4}} {{val|3.2|ul=V}},}} {{nowrap|{{chem|Li|4|Ti|5|O|12}} {{val|2.3|ul=V}}}} }} '''لیتھیم ایان بیٹری''' یا '''لی ایان بیٹری''' چھِ اَکہِ قٕسمٕچ ریچارج ایبل بیٹری یۄس توانٲیی ذخیرٕ کرنہٕ خٲطرٕ الیکٹرانِک طور ٹھوس چیٖزن منٛز لیتھیم ایانن (Li+) ہٕنٛز ریورسبل انٹرکلیشنُک استعمال کران چھِ۔ واریاہ مُختٔلِف قٕسٕم چھِ، یِم عام طور کیتھوڈَس منٛز استعمال گژھَن وٲلۍ موادَن ہٕنٛدِ ذٔریعہٕ درجہٕ بندی چھِ یِوان کرنہٕ۔ باقٕے ریچارج ایبل بیٹری قٕسمَن ہٕنٛدِس مُقابلَس منٛز چھِ یِمَن عام طور پٲٹھۍ زِیٛادٕ مخصوٗص توانائی، توانٲیی ہٕنٛز کثافت، تہٕ توانٲیی ہٕنٛز کارکردگی تہٕ زیٖٹھۍ سائیکل زندگی تہٕ کیلنڈر زندگی آسان۔1991 منٛز لی ایان بیٹری گۄڈنِچہِ لَٹہِ کٕننہٕ پتہٕ ترٛٮ۪ن ؤرِین منٛز گٔیہِ تِہٕنٛز والیومیٹرِک توانٲیی ہُنٛد کثافت ترےٚ گنہٕ ہُریر ییٚلہِ زَن یِہُنٛد قٟمتھ گٔیہِ دَہ گُنہٕ۔ 2024 کِس ٲخرَس منٛز گٔیہِ عالمی مَنٛگ فی ؤری 1 ٹیرا واٹ گھنٹہٕ، ییٚلہِ زَن پٲداوارٕچ صلٲحیت ٲس امہِ کھۄتہٕ دۄگنہٕ کھۄتہٕ زیادٕ۔<ref>{{cite web|last1=Rayner|first1=Tristan|date=2 January 2025|title=The battery boom of 2024 as one of five trends in renewables|url=https://www.ess-news.com/2025/01/02/the-battery-boom-of-2024-as-one-of-five-trends-in-renewables/|url-status=live|archive-url=https://web.archive.org/web/20250114123647/https://www.ess-news.com/2025/01/02/the-battery-boom-of-2024-as-one-of-five-trends-in-renewables/|archive-date=14 January 2025|access-date=4 January 2025|website=Energy Storage}}</ref> == حَوالہٕ == gc587nj9msnko5wyu5xefhuf8lkgw7v 150714 150713 2026-08-28T19:00:03Z آیات محراج 11062 مِلاوُن [[زٲژ:بیٹری]] تٔژ زٲژ کِہ مَرَتھہٕ سٲتؠ 150714 wikitext text/x-wiki {{Infobox battery | image = File:Li ion laptop battery.jpg | caption = A lithium-ion battery pack from a [[Laptop|laptop computer]] | EtoW = Standard: {{cvt|160|-|300|W.h/kg|kJ/kg}}<ref name="EVEMall20P">{{cite web | url = https://www.evemall.com/en/consumer-battery/cylindrical-ncm-cell/18650-20p | title = 18650 20P-Cylindrical NCM Cell | publisher = [[EVE Energy]] | access-date = 21 February 2026 }}{{Dead link|date=May 2026 |bot=InternetArchiveBot }}</ref><ref name="FEBHighCapacitryBatteryLineup">{{cite web | url = https://en.febbattery.com/Uploads/keditor/file/20231123/20231123131924_57703.pdf | title = HIGH CAPACITY BATTERY | publisher = Far East Battery | access-date = 21 February 2026 | archive-date = 16 January 2026 | archive-url = https://web.archive.org/web/20260116230602/https://en.febbattery.com/Uploads/keditor/file/20231123/20231123131924_57703.pdf | url-status = live }}</ref><br />Specialty: up to {{cvt|450|W.h/kg|kJ/kg}}<ref name="Amprius2024ProductPortfolio">{{cite web | url = https://amprius.com/documents/Amprius_Product_Portfolio_0824_website.pdf | title = Silicon Anode Li-Ion Cell Product Portfolio | publisher = Amprius | access-date = 21 February 2026 | archive-date = 18 September 2024 | archive-url = https://web.archive.org/web/20240918163649/https://amprius.com/documents/Amprius_Product_Portfolio_0824_website.pdf | url-status = live }}</ref> | EtoS = Standard: {{cvt|250|–|842<!-- Calculation: 14.26/(((1.82/2)^2*3.14159*6.51)/1000)-->|W.h/L|J/cm3}}<ref>{{cite web | url = https://www.orbtronic.com/content/NCR18650B-Datasheet-Panasonic-Specifications.pdf | title = NCR18650B |publisher=Panasonic |access-date=7 October 2016 |archive-url=https://web.archive.org/web/20180817085228/https://na.industrial.panasonic.com/sites/default/pidsa/files/ncr18650b.pdf |archive-date=17 August 2018 }}</ref><ref>{{cite web | url = https://cdn.shopify.com/s/files/1/0674/3651/files/panasonic-ncr18650-ga-spec-sheet.pdf | title = NCR18650GA | access-date = 2 July 2017 | archive-date = 8 March 2021 | archive-url = https://web.archive.org/web/20210308084905/https://cdn.shopify.com/s/files/1/0674/3651/files/panasonic-ncr18650-ga-spec-sheet.pdf | url-status = live }}</ref><ref>{{Cite web |last=腾讯网 |date=2023-10-25 |title=18650容量天花板,远东 FEB 18650-4000mAh 电芯评测_腾讯新闻 |url=https://news.qq.com/rain/a/20231025A05JQ400 |access-date=2026-02-21 |website=news.qq.com |language=zh-CN}}</ref><br />Specialty: up to {{cvt|1100|W.h/L|J/cm3}}<ref name="Amprius2024ProductPortfolio"/> | PtoW={{nowrap|1–10,000 W/kg}}<ref name="mw"/> |CtoDE=80–90%<ref name="Valøen-2007">{{cite conference |last1=Valøen |first1=Lars Ole |last2=Shoesmith |first2=Mark I. |url=http://www.pluginhighway.ca/PHEV2007/proceedings/PluginHwy_PHEV2007_PaperReviewed_Valoen.pdf |title=The effect of PHEV and HEV duty cycles on battery and battery pack performance |conference=Proceedings of the Plug-in Highway Electric Vehicle Conference |date=1–2 November 2007|archive-url=https://web.archive.org/web/20090326150713/http://www.pluginhighway.ca/PHEV2007/proceedings/PluginHwy_PHEV2007_PaperReviewed_Valoen.pdf |archive-date=26 March 2009 }}</ref> | EtoCP= {{cvt|108|$/kW.h|disp=comma}}<ref>{{cite web | url = https://about.bnef.com/insights/clean-transport/lithium-ion-battery-pack-prices-fall-to-108-per-kilowatt-hour-despite-rising-metal-prices-bloombergnef/ | title = Lithium-Ion Battery Pack Prices Fall to $108 Per Kilowatt-Hour, Despite Rising Metal Prices: BloombergNEF | date = 9 December 2025 | access-date = 21 February 2026 | publisher = Bloomberg New Energy Finance}}</ref> | SDR=0.35% to 2.5% per month depending on state of charge<ref name="Redondo-Iglesias-2016">{{cite book |doi=10.1109/VPPC.2016.7791723 |chapter=Measuring Reversible and Irreversible Capacity Losses on Lithium-Ion Batteries |title=2016 IEEE Vehicle Power and Propulsion Conference (VPPC) |page=7 |year=2016 |last1=Redondo-Iglesias |first1=Eduardo |last2=Venet |first2=Pascal |last3=Pelissier |first3=Serge |isbn=978-1-5090-3528-1 |chapter-url=https://hal.archives-ouvertes.fr/hal-01393614/document |url=https://hal.archives-ouvertes.fr/hal-01393614 |access-date=20 October 2017 |archive-date=28 April 2021 |archive-url=https://web.archive.org/web/20210428034748/https://hal.archives-ouvertes.fr/hal-01393614 |url-status=live }}</ref><!--when full. Near zero when partial--> | CD={{nowrap|400–1,200 [[Battery cycle|cycles]]}}<ref>{{cite web |url=http://www.thermoanalytics.com/support/publications/batterytypesdoc.html |title=Battery Types and Characteristics for HEV |date=2007 |website=ThermoAnalytics |archive-url=https://web.archive.org/web/20150520021436/http://www.thermoanalytics.com/support/publications/batterytypesdoc.html |archive-date=20 May 2015 |url-status=dead |access-date=11 June 2010}}</ref> | NomV={{nowrap|3.6 / 3.7 / 3.8 / 3.85 [[Volts|V]],}} {{nowrap|{{chem|Li|Fe|PO|4}} {{val|3.2|ul=V}},}} {{nowrap|{{chem|Li|4|Ti|5|O|12}} {{val|2.3|ul=V}}}} }} '''لیتھیم ایان بیٹری''' یا '''لی ایان بیٹری''' چھِ اَکہِ قٕسمٕچ ریچارج ایبل بیٹری یۄس توانٲیی ذخیرٕ کرنہٕ خٲطرٕ الیکٹرانِک طور ٹھوس چیٖزن منٛز لیتھیم ایانن (Li+) ہٕنٛز ریورسبل انٹرکلیشنُک استعمال کران چھِ۔ واریاہ مُختٔلِف قٕسٕم چھِ، یِم عام طور کیتھوڈَس منٛز استعمال گژھَن وٲلۍ موادَن ہٕنٛدِ ذٔریعہٕ درجہٕ بندی چھِ یِوان کرنہٕ۔ باقٕے ریچارج ایبل بیٹری قٕسمَن ہٕنٛدِس مُقابلَس منٛز چھِ یِمَن عام طور پٲٹھۍ زِیٛادٕ مخصوٗص توانائی، توانٲیی ہٕنٛز کثافت، تہٕ توانٲیی ہٕنٛز کارکردگی تہٕ زیٖٹھۍ سائیکل زندگی تہٕ کیلنڈر زندگی آسان۔1991 منٛز لی ایان بیٹری گۄڈنِچہِ لَٹہِ کٕننہٕ پتہٕ ترٛٮ۪ن ؤرِین منٛز گٔیہِ تِہٕنٛز والیومیٹرِک توانٲیی ہُنٛد کثافت ترےٚ گنہٕ ہُریر ییٚلہِ زَن یِہُنٛد قٟمتھ گٔیہِ دَہ گُنہٕ۔ 2024 کِس ٲخرَس منٛز گٔیہِ عالمی مَنٛگ فی ؤری 1 ٹیرا واٹ گھنٹہٕ، ییٚلہِ زَن پٲداوارٕچ صلٲحیت ٲس امہِ کھۄتہٕ دۄگنہٕ کھۄتہٕ زیادٕ۔<ref>{{cite web|last1=Rayner|first1=Tristan|date=2 January 2025|title=The battery boom of 2024 as one of five trends in renewables|url=https://www.ess-news.com/2025/01/02/the-battery-boom-of-2024-as-one-of-five-trends-in-renewables/|url-status=live|archive-url=https://web.archive.org/web/20250114123647/https://www.ess-news.com/2025/01/02/the-battery-boom-of-2024-as-one-of-five-trends-in-renewables/|archive-date=14 January 2025|access-date=4 January 2025|website=Energy Storage}}</ref> == حَوالہٕ == [[زٲژ:بیٹری]] 7dizhh8dkis0ixr0t5dxagy8pod622s 150727 150714 2026-08-29T09:45:04Z آیات محراج 11062 /* */ 150727 wikitext text/x-wiki {{Infobox battery | image = File:Li ion laptop battery.jpg | EtoW = Standard: {{cvt|160|-|300|W.h/kg|kJ/kg}}<ref name="EVEMall20P">{{cite web | url = https://www.evemall.com/en/consumer-battery/cylindrical-ncm-cell/18650-20p | title = 18650 20P-Cylindrical NCM Cell | publisher = [[EVE Energy]] | access-date = 21 February 2026 }}{{Dead link|date=May 2026 |bot=InternetArchiveBot }}</ref><ref name="FEBHighCapacitryBatteryLineup">{{cite web | url = https://en.febbattery.com/Uploads/keditor/file/20231123/20231123131924_57703.pdf | title = HIGH CAPACITY BATTERY | publisher = Far East Battery | access-date = 21 February 2026 | archive-date = 16 January 2026 | archive-url = https://web.archive.org/web/20260116230602/https://en.febbattery.com/Uploads/keditor/file/20231123/20231123131924_57703.pdf | url-status = live }}</ref><br />Specialty: up to {{cvt|450|W.h/kg|kJ/kg}}<ref name="Amprius2024ProductPortfolio">{{cite web | url = https://amprius.com/documents/Amprius_Product_Portfolio_0824_website.pdf | title = Silicon Anode Li-Ion Cell Product Portfolio | publisher = Amprius | access-date = 21 February 2026 | archive-date = 18 September 2024 | archive-url = https://web.archive.org/web/20240918163649/https://amprius.com/documents/Amprius_Product_Portfolio_0824_website.pdf | url-status = live }}</ref> | EtoS = Standard: {{cvt|250|–|842<!-- Calculation: 14.26/(((1.82/2)^2*3.14159*6.51)/1000)-->|W.h/L|J/cm3}}<ref>{{cite web | url = https://www.orbtronic.com/content/NCR18650B-Datasheet-Panasonic-Specifications.pdf | title = NCR18650B |publisher=Panasonic |access-date=7 October 2016 |archive-url=https://web.archive.org/web/20180817085228/https://na.industrial.panasonic.com/sites/default/pidsa/files/ncr18650b.pdf |archive-date=17 August 2018 }}</ref><ref>{{cite web | url = https://cdn.shopify.com/s/files/1/0674/3651/files/panasonic-ncr18650-ga-spec-sheet.pdf | title = NCR18650GA | access-date = 2 July 2017 | archive-date = 8 March 2021 | archive-url = https://web.archive.org/web/20210308084905/https://cdn.shopify.com/s/files/1/0674/3651/files/panasonic-ncr18650-ga-spec-sheet.pdf | url-status = live }}</ref><ref>{{Cite web |last=腾讯网 |date=2023-10-25 |title=18650容量天花板,远东 FEB 18650-4000mAh 电芯评测_腾讯新闻 |url=https://news.qq.com/rain/a/20231025A05JQ400 |access-date=2026-02-21 |website=news.qq.com |language=zh-CN}}</ref><br />Specialty: up to {{cvt|1100|W.h/L|J/cm3}}<ref name="Amprius2024ProductPortfolio"/> | PtoW={{nowrap|1–10,000 W/kg}}<ref name="mw"/> |CtoDE=80–90%<ref name="Valøen-2007">{{cite conference |last1=Valøen |first1=Lars Ole |last2=Shoesmith |first2=Mark I. |url=http://www.pluginhighway.ca/PHEV2007/proceedings/PluginHwy_PHEV2007_PaperReviewed_Valoen.pdf |title=The effect of PHEV and HEV duty cycles on battery and battery pack performance |conference=Proceedings of the Plug-in Highway Electric Vehicle Conference |date=1–2 November 2007|archive-url=https://web.archive.org/web/20090326150713/http://www.pluginhighway.ca/PHEV2007/proceedings/PluginHwy_PHEV2007_PaperReviewed_Valoen.pdf |archive-date=26 March 2009 }}</ref> | EtoCP= {{cvt|108|$/kW.h|disp=comma}}<ref>{{cite web | url = https://about.bnef.com/insights/clean-transport/lithium-ion-battery-pack-prices-fall-to-108-per-kilowatt-hour-despite-rising-metal-prices-bloombergnef/ | title = Lithium-Ion Battery Pack Prices Fall to $108 Per Kilowatt-Hour, Despite Rising Metal Prices: BloombergNEF | date = 9 December 2025 | access-date = 21 February 2026 | publisher = Bloomberg New Energy Finance}}</ref> | SDR=0.35% to 2.5% per month depending on state of charge<ref name="Redondo-Iglesias-2016">{{cite book |doi=10.1109/VPPC.2016.7791723 |chapter=Measuring Reversible and Irreversible Capacity Losses on Lithium-Ion Batteries |title=2016 IEEE Vehicle Power and Propulsion Conference (VPPC) |page=7 |year=2016 |last1=Redondo-Iglesias |first1=Eduardo |last2=Venet |first2=Pascal |last3=Pelissier |first3=Serge |isbn=978-1-5090-3528-1 |chapter-url=https://hal.archives-ouvertes.fr/hal-01393614/document |url=https://hal.archives-ouvertes.fr/hal-01393614 |access-date=20 October 2017 |archive-date=28 April 2021 |archive-url=https://web.archive.org/web/20210428034748/https://hal.archives-ouvertes.fr/hal-01393614 |url-status=live }}</ref><!--when full. Near zero when partial--> | CD={{nowrap|400–1,200 [[Battery cycle|cycles]]}}<ref>{{cite web |url=http://www.thermoanalytics.com/support/publications/batterytypesdoc.html |title=Battery Types and Characteristics for HEV |date=2007 |website=ThermoAnalytics |archive-url=https://web.archive.org/web/20150520021436/http://www.thermoanalytics.com/support/publications/batterytypesdoc.html |archive-date=20 May 2015 |url-status=dead |access-date=11 June 2010}}</ref> | NomV={{nowrap|3.6 / 3.7 / 3.8 / 3.85 [[Volts|V]],}} {{nowrap|{{chem|Li|Fe|PO|4}} {{val|3.2|ul=V}},}} {{nowrap|{{chem|Li|4|Ti|5|O|12}} {{val|2.3|ul=V}}}} }} '''لیتھیم ایان بیٹری''' یا '''لی ایان بیٹری''' چھِ اَکہِ قٕسمٕچ ریچارج ایبل بیٹری یۄس توانٲیی ذخیرٕ کرنہٕ خٲطرٕ الیکٹرانِک طور ٹھوس چیٖزن منٛز لیتھیم ایانن (Li+) ہٕنٛز ریورسبل انٹرکلیشنُک استعمال کران چھِ۔ واریاہ مُختٔلِف قٕسٕم چھِ، یِم عام طور کیتھوڈَس منٛز استعمال گژھَن وٲلۍ موادَن ہٕنٛدِ ذٔریعہٕ درجہٕ بندی چھِ یِوان کرنہٕ۔ باقٕے ریچارج ایبل بیٹری قٕسمَن ہٕنٛدِس مُقابلَس منٛز چھِ یِمَن عام طور پٲٹھۍ زِیٛادٕ مخصوٗص توانائی، توانٲیی ہٕنٛز کثافت، تہٕ توانٲیی ہٕنٛز کارکردگی تہٕ زیٖٹھۍ سائیکل زندگی تہٕ کیلنڈر زندگی آسان۔1991 منٛز لی ایان بیٹری گۄڈنِچہِ لَٹہِ کٕننہٕ پتہٕ ترٛٮ۪ن ؤرِین منٛز گٔیہِ تِہٕنٛز والیومیٹرِک توانٲیی ہُنٛد کثافت ترےٚ گنہٕ ہُریر ییٚلہِ زَن یِہُنٛد قٟمتھ گٔیہِ دَہ گُنہٕ۔ 2024 کِس ٲخرَس منٛز گٔیہِ عالمی مَنٛگ فی ؤری 1 ٹیرا واٹ گھنٹہٕ، ییٚلہِ زَن پٲداوارٕچ صلٲحیت ٲس امہِ کھۄتہٕ دۄگنہٕ کھۄتہٕ زیادٕ۔<ref>{{cite web|last1=Rayner|first1=Tristan|date=2 January 2025|title=The battery boom of 2024 as one of five trends in renewables|url=https://www.ess-news.com/2025/01/02/the-battery-boom-of-2024-as-one-of-five-trends-in-renewables/|url-status=live|archive-url=https://web.archive.org/web/20250114123647/https://www.ess-news.com/2025/01/02/the-battery-boom-of-2024-as-one-of-five-trends-in-renewables/|archive-date=14 January 2025|access-date=4 January 2025|website=Energy Storage}}</ref> == حَوالہٕ == [[زٲژ:بیٹری]] i1613oze0o5sfn7yw3hcp1ows8r5c0i 150729 150727 2026-08-29T09:50:41Z آیات محراج 11062 /* */ 150729 wikitext text/x-wiki {{Infobox battery | image = File:Li ion laptop battery.jpg | EtoW = معیٲری: {{cvt|160|-|300|W.h/kg|kJ/kg}}<ref name="EVEMall20P">{{cite web | url = https://www.evemall.com/en/consumer-battery/cylindrical-ncm-cell/18650-20p | title = 18650 20P-Cylindrical NCM Cell | publisher = [[EVE Energy]] | access-date = 21 February 2026 }}{{Dead link|date=May 2026 |bot=InternetArchiveBot }}</ref><ref name="FEBHighCapacitryBatteryLineup">{{cite web | url = https://en.febbattery.com/Uploads/keditor/file/20231123/20231123131924_57703.pdf | title = HIGH CAPACITY BATTERY | publisher = Far East Battery | access-date = 21 February 2026 | archive-date = 16 January 2026 | archive-url = https://web.archive.org/web/20260116230602/https://en.febbattery.com/Uploads/keditor/file/20231123/20231123131924_57703.pdf | url-status = live }}</ref><br />خاصیت: {{cvt|450|W.h/kg|kJ/kg}} تام<ref name="Amprius2024ProductPortfolio">{{cite web | url = https://amprius.com/documents/Amprius_Product_Portfolio_0824_website.pdf | title = Silicon Anode Li-Ion Cell Product Portfolio | publisher = Amprius | access-date = 21 February 2026 | archive-date = 18 September 2024 | archive-url = https://web.archive.org/web/20240918163649/https://amprius.com/documents/Amprius_Product_Portfolio_0824_website.pdf | url-status = live }}</ref> | EtoS = معیٲری: {{cvt|250|–|842<!-- Calculation: 14.26/(((1.82/2)^2*3.14159*6.51)/1000)-->|W.h/L|J/cm3}} تام<ref>{{cite web | url = https://www.orbtronic.com/content/NCR18650B-Datasheet-Panasonic-Specifications.pdf | title = NCR18650B |publisher=Panasonic |access-date=7 October 2016 |archive-url=https://web.archive.org/web/20180817085228/https://na.industrial.panasonic.com/sites/default/pidsa/files/ncr18650b.pdf |archive-date=17 August 2018 }}</ref><ref>{{cite web | url = https://cdn.shopify.com/s/files/1/0674/3651/files/panasonic-ncr18650-ga-spec-sheet.pdf | title = NCR18650GA | access-date = 2 July 2017 | archive-date = 8 March 2021 | archive-url = https://web.archive.org/web/20210308084905/https://cdn.shopify.com/s/files/1/0674/3651/files/panasonic-ncr18650-ga-spec-sheet.pdf | url-status = live }}</ref><ref>{{Cite web |last=腾讯网 |date=2023-10-25 |title=18650容量天花板,远东 FEB 18650-4000mAh 电芯评测_腾讯新闻 |url=https://news.qq.com/rain/a/20231025A05JQ400 |access-date=2026-02-21 |website=news.qq.com |language=zh-CN}}</ref><br />خاصیت: {{cvt|1100|W.h/L|J/cm3}} تام<ref name="Amprius2024ProductPortfolio"/> | PtoW={{nowrap|1–10,000 W/kg}}<ref name="mw"/> |CtoDE=80–90%<ref name="Valøen-2007">{{cite conference |last1=Valøen |first1=Lars Ole |last2=Shoesmith |first2=Mark I. |url=http://www.pluginhighway.ca/PHEV2007/proceedings/PluginHwy_PHEV2007_PaperReviewed_Valoen.pdf |title=The effect of PHEV and HEV duty cycles on battery and battery pack performance |conference=Proceedings of the Plug-in Highway Electric Vehicle Conference |date=1–2 November 2007|archive-url=https://web.archive.org/web/20090326150713/http://www.pluginhighway.ca/PHEV2007/proceedings/PluginHwy_PHEV2007_PaperReviewed_Valoen.pdf |archive-date=26 March 2009 }}</ref> | EtoCP= {{cvt|108|$/kW.h|disp=comma}}<ref>{{cite web | url = https://about.bnef.com/insights/clean-transport/lithium-ion-battery-pack-prices-fall-to-108-per-kilowatt-hour-despite-rising-metal-prices-bloombergnef/ | title = Lithium-Ion Battery Pack Prices Fall to $108 Per Kilowatt-Hour, Despite Rising Metal Prices: BloombergNEF | date = 9 December 2025 | access-date = 21 February 2026 | publisher = Bloomberg New Energy Finance}}</ref> | SDR=چارجٕچ حالت حِسابہٕ فی رؠتہٕ 0.35٪ پؠٹھٕ 2.5٪ تام۔<ref name="Redondo-Iglesias-2016">{{cite book |doi=10.1109/VPPC.2016.7791723 |chapter=Measuring Reversible and Irreversible Capacity Losses on Lithium-Ion Batteries |title=2016 IEEE Vehicle Power and Propulsion Conference (VPPC) |page=7 |year=2016 |last1=Redondo-Iglesias |first1=Eduardo |last2=Venet |first2=Pascal |last3=Pelissier |first3=Serge |isbn=978-1-5090-3528-1 |chapter-url=https://hal.archives-ouvertes.fr/hal-01393614/document |url=https://hal.archives-ouvertes.fr/hal-01393614 |access-date=20 October 2017 |archive-date=28 April 2021 |archive-url=https://web.archive.org/web/20210428034748/https://hal.archives-ouvertes.fr/hal-01393614 |url-status=live }}</ref><!--when full. Near zero when partial--> | CD={{nowrap|400–1,200 [[بیٹری چکر | چکر]]}}<ref>{{cite web |url=http://www.thermoanalytics.com/support/publications/batterytypesdoc.html |title=Battery Types and Characteristics for HEV |date=2007 |website=ThermoAnalytics |archive-url=https://web.archive.org/web/20150520021436/http://www.thermoanalytics.com/support/publications/batterytypesdoc.html |archive-date=20 May 2015 |url-status=dead |access-date=11 June 2010}}</ref> | NomV={{nowrap|3.6 / 3.7 / 3.8 / 3.85 [[Volts|V]],}} {{nowrap|{{chem|Li|Fe|PO|4}} {{val|3.2|ul=V}},}} {{nowrap|{{chem|Li|4|Ti|5|O|12}} {{val|2.3|ul=V}}}} }} '''لیتھیم ایان بیٹری''' یا '''لی ایان بیٹری''' چھِ اَکہِ قٕسمٕچ ریچارج ایبل بیٹری یۄس توانٲیی ذخیرٕ کرنہٕ خٲطرٕ الیکٹرانِک طور ٹھوس چیٖزن منٛز لیتھیم ایانن (Li+) ہٕنٛز ریورسبل انٹرکلیشنُک استعمال کران چھِ۔ واریاہ مُختٔلِف قٕسٕم چھِ، یِم عام طور کیتھوڈَس منٛز استعمال گژھَن وٲلۍ موادَن ہٕنٛدِ ذٔریعہٕ درجہٕ بندی چھِ یِوان کرنہٕ۔ باقٕے ریچارج ایبل بیٹری قٕسمَن ہٕنٛدِس مُقابلَس منٛز چھِ یِمَن عام طور پٲٹھۍ زِیٛادٕ مخصوٗص توانائی، توانٲیی ہٕنٛز کثافت، تہٕ توانٲیی ہٕنٛز کارکردگی تہٕ زیٖٹھۍ سائیکل زندگی تہٕ کیلنڈر زندگی آسان۔1991 منٛز لی ایان بیٹری گۄڈنِچہِ لَٹہِ کٕننہٕ پتہٕ ترٛٮ۪ن ؤرِین منٛز گٔیہِ تِہٕنٛز والیومیٹرِک توانٲیی ہُنٛد کثافت ترےٚ گنہٕ ہُریر ییٚلہِ زَن یِہُنٛد قٟمتھ گٔیہِ دَہ گُنہٕ۔ 2024 کِس ٲخرَس منٛز گٔیہِ عالمی مَنٛگ فی ؤری 1 ٹیرا واٹ گھنٹہٕ، ییٚلہِ زَن پٲداوارٕچ صلٲحیت ٲس امہِ کھۄتہٕ دۄگنہٕ کھۄتہٕ زیادٕ۔<ref>{{cite web|last1=Rayner|first1=Tristan|date=2 January 2025|title=The battery boom of 2024 as one of five trends in renewables|url=https://www.ess-news.com/2025/01/02/the-battery-boom-of-2024-as-one-of-five-trends-in-renewables/|url-status=live|archive-url=https://web.archive.org/web/20250114123647/https://www.ess-news.com/2025/01/02/the-battery-boom-of-2024-as-one-of-five-trends-in-renewables/|archive-date=14 January 2025|access-date=4 January 2025|website=Energy Storage}}</ref> == حَوالہٕ == [[زٲژ:بیٹری]] o77y2p7g3q72iz3nhcb1a9a99qbwkst زٲژ:بیٹری 14 32531 150715 2026-08-28T19:00:13Z آیات محراج 11062 Created blank page 150715 wikitext text/x-wiki phoiac9h4m842xq45sp7s6u21eteeq1 فرما:Infobox battery 10 32532 150716 2026-08-28T19:01:21Z آیات محراج 11062 Content copied from English wiki 150716 wikitext text/x-wiki {{Infobox | title = {{{name<includeonly>|{{PAGENAMEBASE}}</includeonly>}}} | image = {{#invoke:InfoboxImage|InfoboxImage|image={{{image<includeonly>|</includeonly>}}}|size={{{image_size|}}}|sizedefault=frameless|alt={{{alt|}}}}} | caption = {{{caption<includeonly>|</includeonly>}}} | label1 = [[Specific energy]] | data1 = {{{EtoW}}} | label2 = [[Energy density]] | data2 = {{{EtoS}}} | label3 = [[Power-to-weight ratio|Specific power]] | data3 = {{{PtoW<includeonly>|</includeonly>}}} | label4 = Energy efficiency | data4 = {{{EE<includeonly>|</includeonly>}}} | label5 = Charge/discharge efficiency | data5 = {{{CtoDE<includeonly>|</includeonly>}}} | label6 = Energy/consumer-price | data6 = {{{EtoCP<includeonly>|</includeonly>}}} | label7 = Self-discharge rate | data7 = {{{SDR<includeonly>|</includeonly>}}} | label8 = Time durability | data8 = {{{TD<includeonly>|</includeonly>}}} | label9 = Cycle durability | data9 = {{{CD<includeonly>|</includeonly>}}} | label10 = Nominal cell voltage | data10 = {{{NomV<includeonly>|</includeonly>}}} | label11 = Operating temperature interval | data11 = {{{OTI<includeonly>|</includeonly>}}} | label12 = Charge temperature interval | data12 = {{{CTI<includeonly>|</includeonly>}}} }}<noinclude>{{documentation}}<!-- Add cats and interwikis to the /doc subpage, not here! --></noinclude> nz9ef5wpu07dyokmau6myhx3rjekno0 150717 150716 2026-08-28T19:05:57Z آیات محراج 11062 /* */ 150717 wikitext text/x-wiki {{Infobox | title = {{{name<includeonly>|{{PAGENAMEBASE}}</includeonly>}}} | image = {{#invoke:InfoboxImage|InfoboxImage|image={{{image<includeonly>|</includeonly>}}}|size={{{image_size|}}}|sizedefault=frameless|alt={{{alt|}}}}} | caption = {{{caption<includeonly>|</includeonly>}}} | label1 = [[مخصوٗص توانٲیی]] | data1 = {{{EtoW}}} | label2 = [[توانٲیی ہِنٛز کثافت]] | data2 = {{{EtoS}}} | label3 = [[طاقتھ پؠٹھہٕ وَزنُک تناسب|مخصوٗص طاقتھ]] | data3 = {{{PtoW<includeonly>|</includeonly>}}} | label4 = توانٲیی ہِنٛز کارکردگی | data4 = {{{EE<includeonly>|</includeonly>}}} | label5 = چارٕج/ڈِسچارٕج کارکردگی | data5 = {{{CtoDE<includeonly>|</includeonly>}}} | label6 = توانٲیی/صارفیٖنن ہِنٛز قٟمتھ | data6 = {{{EtoCP<includeonly>|</includeonly>}}} | label7 = خۄد ڈِسچارجُک شرح | data7 = {{{SDR<includeonly>|</includeonly>}}} | label8 = کالس روزِ | data8 = {{{TD<includeonly>|</includeonly>}}} | label9 = چَکرس روزِ | data9 = {{{CD<includeonly>|</includeonly>}}} | label10 = براے ناو سیل وولٹیج | data10 = {{{NomV<includeonly>|</includeonly>}}} | label11 = آپریٹِنٛگ درجہٕ حرارتُک وقفہٕ | data11 = {{{OTI<includeonly>|</includeonly>}}} | label12 = چارٕج درجہٕ حرارتُک وقفہٕ | data12 = {{{CTI<includeonly>|</includeonly>}}} }}<noinclude>{{documentation}}<!-- Add cats and interwikis to the /doc subpage, not here! --></noinclude> ddsomk3cr0boa6n63d249v50cl722cf 150730 150717 2026-08-29T09:52:03Z آیات محراج 11062 /* */ 150730 wikitext text/x-wiki {{Infobox | title = {{{name<includeonly>|{{PAGENAMEBASE}}</includeonly>}}} | image = {{#invoke:InfoboxImage|InfoboxImage|image={{{image<includeonly>|</includeonly>}}}|size={{{image_size|}}}|sizedefault=frameless|alt={{{alt|}}}}} | caption = {{{caption<includeonly>|</includeonly>}}} | label1 = [[مخصوٗص توانٲیی]] | data1 = {{{EtoW}}} | label2 = [[توانٲیی ہِنٛز کثافت]] | data2 = {{{EtoS}}} | label3 = [[طاقتھ پؠٹھہٕ وَزنُک تناسب|مخصوٗص طاقتھ]] | data3 = {{{PtoW<includeonly>|</includeonly>}}} | label4 = توانٲیی ہِنٛز کارکردگی | data4 = {{{EE<includeonly>|</includeonly>}}} | label5 = چارٕج/ڈِسچارٕج کارکردگی | data5 = {{{CtoDE<includeonly>|</includeonly>}}} | label6 = توانٲیی/صارفیٖنن ہِنٛز قٟمتھ | data6 = {{{EtoCP<includeonly>|</includeonly>}}} | label7 = خۄد ڈِسچارجُک شرح | data7 = {{{SDR<includeonly>|</includeonly>}}} | label8 = کالس روزِ | data8 = {{{TD<includeonly>|</includeonly>}}} | label9 = چَکرَن روزِ | data9 = {{{CD<includeonly>|</includeonly>}}} | label10 = براے ناو سیل وولٹیج | data10 = {{{NomV<includeonly>|</includeonly>}}} | label11 = آپریٹِنٛگ درجہٕ حرارتُک وقفہٕ | data11 = {{{OTI<includeonly>|</includeonly>}}} | label12 = چارٕج درجہٕ حرارتُک وقفہٕ | data12 = {{{CTI<includeonly>|</includeonly>}}} }}<noinclude>{{documentation}}<!-- Add cats and interwikis to the /doc subpage, not here! --></noinclude> db45v8qimywakkt58iqnxellv335zi2 Module:Val/units 828 32533 150720 2026-08-29T09:14:07Z آیات محراج 11062 Created page with "-- Definitions for units known to val -- File format is two strings and a return statement with them in it: -- string in quotes [=[ ... builtin_units ... ]=]. -- string in quotes [=[ ... builtin_units_long_scale ... ]=]. -- First string, builtin_units, is short-scale, second string is long scale. -- Entry format: -- One record per line, starting in first column, having 2-4 fields. -- Field separator: two or more spaces -- Between first and second fields: two or more spa..." 150720 Scribunto text/plain -- Definitions for units known to val -- File format is two strings and a return statement with them in it: -- string in quotes [=[ ... builtin_units ... ]=]. -- string in quotes [=[ ... builtin_units_long_scale ... ]=]. -- First string, builtin_units, is short-scale, second string is long scale. -- Entry format: -- One record per line, starting in first column, having 2-4 fields. -- Field separator: two or more spaces -- Between first and second fields: two or more spaces -- Between all other fields: two or more spaces, or one or more tabs -- Entries without two spaces in them are ignored. -- There must be a blank line before the first entry and after the last. -- I.e. the first two and last two characters of the string must be newlines. -- Format of entry. Two record types: -- -- One record type is a wikilink: -- Unit-code [[ pagename | Symbol-accepts-HTML-only ]] -- Text-field separator is still two spaces. Two spaces not allowed in wikilink. -- -- The other record type is all fields: -- Unit-code symbol-accepts-HTML-only pagename#section-OK -- -- Plus there is an optional field that goes at the end after two or more spaces. -- Whether it is a number or an equation or the letters SI, -- any of these three has the same function: a wikitable sorting "scale". -- It is for sorting, and it works for either record type. -- Difference is SI can't accept HTML. But SI correctly scales any SI prefix. -- (Optional fields ALIAS and NOSPACE and ANGLE are for advanced users.) -- "Invalid unit" error: -- Using SI requires that the symbol equal unit-code, so never allows HTML. -- Any difference between SI or symbol must be an SI prefix, such as k, M, or G. -- A space at the end of an entry is an error. No space at each EOL. local builtin_units = [=[ == Test == Foo [[Hz|<samp>Foo</samp>]] Baz [[Hertz|baz<sub>0</sub>]] Baz [[Kelvins|baz<sub>0</sub>]] Bar [[Foobar|bar<abbr title="super duper">0</abbr>]] quux [[Foobar|<span title="super duper 2">bar0</span>]] == Unsorted units == c0 [[Speed of light#Numerical value, notation, and units|''c''<sub>0</sub>]] lbf [[Pound (force)|<span title="pound-force">lb<sub>F</sub></span>]] N.s [[Newton-second|N&sdot;s]] J.K-1 [[Joule per kelvin|J&sdot;K<sup>−1</sup>]] C.mol-1 [[Faraday constant|C&sdot;mol<sup>−1</sup>]] C/mol [[Faraday constant|C/mol]] C.kg-1 [[Roentgen (unit)|C&sdot;kg<sup>−1</sup>]] C/kg [[Roentgen (unit)|C/kg]] F.m-1 [[vacuum permittivity|F&sdot;m<sup>−1</sup>]] F/m [[vacuum permittivity|F/m]] e [[Elementary charge|''e'']] kB [[Kilobyte|kB]] 8e3 KB [[Kilobyte|KB]] 8e3 MB [[Megabyte|MB]] 8e6 GB [[Gigabyte|GB]] 8e9 TB [[Terabyte|TB]] 8e12 lx [[Lux (unit)|lx]] nat [[nat (unit)|nat]] == Time and frequency == byte/s [[Data rate units|byte/s]] 8 kB/s [[Data rate units#Kilobyte per second|<span title="Kilobytes per second">kB/s</span>]] 8e3 MB/s [[Data rate units#Megabyte per second|<span title="Megabytes per second">MB/s</span>]] 8e6 GB/s [[Data rate units#Gigabyte per second|<span title="Gigabytes per second">GB/s</span>]] 8e9 TB/s [[Data rate units#Terabyte per second|<span title="Terabytes per second">TB/s</span>]] 8e12 bit/s [[Bit per second|bit/s]] 1 bps [[Bit per second|bit/s]] 1 kbit/s [[Kilobit per second|kbit/s]] 1e3 Mbit/s [[Megabit per second|Mbit/s]] 1e6 Gbit/s [[Gigabit per second|Gbit/s]] 1e9 Tbit/s [[Terabit per second|Tbit/s]] 1e12 kT/s [[Transfer (computing)|<span title="Kilotransfers per second">kT/s</span>]] 1e3 MT/s [[Transfer (computing)|<span title="Megatransfers per second">MT/s</span>]] 1e6 GT/s [[Transfer (computing)|<span title="Gigatransfers per second">GT/s</span>]] 1e9 year [[Year|year]] 31557600 years [[Year|years]] 31557600 yr [[Year#Symbols and abbreviations|yr]] 31557600 y [[Year|y]] 31557600 a [[Annum|a]] 31557600 Ga [[Gigaannum|Ga]] 31557600000000000 Ma [[Megaannum|Ma]] 31557600000000 ka [[Kiloannum|ka]] 31557600000 kyr [[kyr|kyr]] 31557600000 kya [[kyr|kya]] 31557600000 myr [[myr|myr]] 31557600000000 mya [[Mya (unit)|mya]] 31557600000000 byr [[Billion years|byr]] 31557600000000000 bya [[Billion years ago|bya]] 31557600000000000 Gyr [[billion years|Gyr]] 31557600000000000 BP [[Before present|BP]] uBP [[Radiocarbon dating#Calibration|<sup>14</sup>C yr BP]] BC [[Before Christ|BC]] -1 AD [[Anno Domini|AD]] 1 BCE [[Before the Common Era|BCE]] -1 CE [[Common Era|CE]] 1 JD [[Julian date|JD]] 1 MJD [[Modified Julian date|MJD]] 1 s-1 [[Second|s<sup>−1</sup>]] s-2 [[Second|s<sup>−2</sup>]] s2 [[Second|s<sup>2</sup>]] s [[Second|s]] SI as [[Attosecond|s]] SI cs [[Second|s]] SI das [[Second|s]] SI ds [[Second|s]] SI Es [[Second|s]] SI fs [[Femtosecond|s]] SI Gs [[Second|s]] SI hs [[Second|s]] SI ks [[Second|s]] SI ms [[Millisecond|s]] SI µs [[Microsecond|s]] SI us [[Microsecond|s]] SI Ms [[Second|s]] SI ns [[Nanosecond|s]] SI ps [[Picosecond|s]] SI Ps [[Second|s]] SI Ts [[Second|s]] SI Ys [[Second|s]] SI ys [[Yoctosecond|s]] SI Zs [[Second|s]] SI zs [[Zeptosecond|s]] SI Hz [[Hertz|Hz]] SI aHz [[Hertz|Hz]] SI cHz [[Hertz|Hz]] SI daHz [[Hertz|Hz]] SI dHz [[Hertz|Hz]] SI EHz [[Hertz|Hz]] SI fHz [[Hertz|Hz]] SI hHz [[Hertz|Hz]] SI GHz [[Gigahertz|Hz]] SI kHz [[Kilohertz|Hz]] SI MHz [[Megahertz|Hz]] SI mHz [[Hertz|Hz]] SI uHz [[Hertz|Hz]] SI µHz [[Hertz|Hz]] SI nHz [[Hertz|Hz]] SI pHz [[Hertz|Hz]] SI PHz [[Hertz|Hz]] SI THz [[Hertz|Hz]] SI yHz [[Hertz|Hz]] SI YHz [[Hertz|Hz]] SI zHz [[Hertz|Hz]] SI ZHz [[Hertz|Hz]] SI ips [[Inch per second|ips]] == Length, area, volume == Å3 [[Ångström|Å<sup>3</sup>]] fb-1 [[Barn (unit)#Inverse femtobarn|fb<sup>−1</sup>]] m-1 [[Metre|m<sup>−1</sup>]] m-2 [[Square metre|m<sup>−2</sup>]] m-3 [[Cubic metre|m<sup>−3</sup>]] km2 [[Square kilometre|km<sup>2</sup>]] km3 [[Cubic kilometre|km<sup>3</sup>]] µm2 [[Square metre|μm<sup>2</sup>]] um2 [[Square metre|μm<sup>2</sup>]] am2 [[Square metre|am<sup>2</sup>]] cm2 [[Square centimetre|cm<sup>2</sup>]] dam2 [[Square metre|dam<sup>2</sup>]] dm2 [[Square metre|dm<sup>2</sup>]] Em2 [[Square metre|Em<sup>2</sup>]] fm2 [[Square metre|fm<sup>2</sup>]] Gm2 [[Square metre|Gm<sup>2</sup>]] hm2 [[Square metre|hm<sup>2</sup>]] mm2 [[Square metre|mm<sup>2</sup>]] Mm2 [[Square metre|Mm<sup>2</sup>]] nm2 [[Square metre|nm<sup>2</sup>]] pm2 [[Square metre|pm<sup>2</sup>]] Pm2 [[Square metre|Pm<sup>2</sup>]] Tm2 [[Square metre|Tm<sup>2</sup>]] ym2 [[Square metre|ym<sup>2</sup>]] Ym2 [[Square metre|Ym<sup>2</sup>]] zm2 [[Square metre|zm<sup>2</sup>]] Zm2 [[Square metre|Zm<sup>2</sup>]] gal [[Gallon|gal]] Gal [[Gal (unit)|Gal]] uGal [[Gal (unit)|μGal]] µGal [[Gal (unit)|μGal]] mGal [[Gal (unit)|mGal]] b [[Barn (unit)|b]] SI ab [[Barn (unit)|b]] SI cb [[Barn (unit)|b]] SI dab [[Barn (unit)|b]] SI db [[Barn (unit)|b]] SI Eb [[Barn (unit)|b]] SI fb [[Barn (unit)|b]] SI Gb [[Barn (unit)|b]] SI hb [[Barn (unit)|b]] SI kb [[Barn (unit)|b]] SI mb [[Barn (unit)|b]] SI µb [[Barn (unit)|b]] SI ub [[Barn (unit)|b]] SI Mb [[Barn (unit)|b]] SI nb [[Barn (unit)|b]] SI pb [[Barn (unit)|b]] SI Pb [[Barn (unit)|b]] SI Tb [[Barn (unit)|b]] SI Yb [[Barn (unit)|b]] SI yb [[Barn (unit)|b]] SI Zb [[Barn (unit)|b]] SI zb [[Barn (unit)|b]] SI == Velocity and acceleration == m.s-2 [[Metre per second squared|m&sdot;s<sup>−2</sup>]] m/s2 [[Metre per second squared|m/s<sup>2</sup>]] m.s-1 [[Metre per second|m&sdot;s<sup>−1</sup>]] m/s [[Metre per second|m/s]] km.s-1 [[Metre per second|km&sdot;s<sup>−1</sup>]] km/s [[Metre per second|km/s]] == Mass and energy == lbm [[Pound (mass)|<span title="pound-mass">lb<sub>m</sub></span>]] uJ [[Joule|μJ]] J.s [[Joule-second|J&sdot;s]] kWh [[Kilowatt-hour|kWh]] kW.h [[Kilowatt-hour|kW&sdot;h]] J/C [[Volt|J/C]] J/kg [[Joule|J/kg]] Da [[Dalton (unit)|Da]] SI EDa [[Dalton (unit)|Da]] SI PDa [[Dalton (unit)|Da]] SI TDa [[Dalton (unit)|Da]] SI GDa [[Dalton (unit)|Da]] SI MDa [[Dalton (unit)|Da]] SI kDa [[Dalton (unit)|Da]] SI mDa [[Dalton (unit)|Da]] SI uDa [[Dalton (unit)|Da]] SI μDa [[Dalton (unit)|Da]] SI nDa [[Dalton (unit)|Da]] SI pDa [[Dalton (unit)|Da]] SI fDa [[Dalton (unit)|Da]] SI aDa [[Dalton (unit)|Da]] SI g [[Gram|g]] SI ag [[Attogram|g]] SI cg [[Centigram|g]] SI dag [[Gram|g]] SI dg [[Decigram|g]] SI Eg [[Exagram|g]] SI fg [[Femtogram|g]] SI Gg [[Gigagram|g]] SI hg [[Kilogram#SI multiples|g]] SI kg [[Kilogram|g]] SI mcg [[Microgram|g]] SI Mg [[Megagram|g]] SI mg [[Milligram|g]] SI ug [[Microgram|g]] SI µg [[Microgram|g]] SI ng [[Nanogram|g]] SI Pg [[Petagram|g]] SI pg [[Picogram|g]] SI Tg [[Tonne|g]] SI yg [[Yoctogram|g]] SI Yg [[Yottagram|g]] SI zg [[Zeptogram|g]] SI Zg [[Zettagram|g]] SI == Pressure and density == psi [[Pounds per square inch|psi]] g.cm-3 [[Gram per cubic centimetre|g&sdot;cm<sup>−3</sup>]] g/cm3 [[Gram per cubic centimetre|g/cm<sup>3</sup>]] kg.m-3 [[Kilogram per cubic metre|kg&sdot;m<sup>−3</sup>]] kg/m3 [[Kilogram per cubic metre|kg/m<sup>3</sup>]] kg/cm3 [[Density#Formula and common units|kg/cm<sup>3</sup>]] g/L [[Gram per litre|g/L]] g/l [[Gram per litre|g/l]] mcg/dL [[Gram per litre|μg/dL]] mcg/dl [[Gram per litre|μg/dl]] mg/mL [[Gram per litre|mg/mL]] mg/ml [[Gram per litre|mg/ml]] ug/dL [[Gram per litre|μg/dL]] ug/dl [[Gram per litre|μg/dl]] μg/dL [[Gram per litre|μg/dL]] μg/dl [[Gram per litre|μg/dl]] mg.L-1 [[Gram per litre|<abbr title="milligrams per liter">mg/L</abbr>]] mg/L [[Gram per litre|<abbr title="milligrams per liter">mg/L</abbr>]] mg.l-1 [[Gram per litre|<abbr title="milligrams per liter">mg/l</abbr>]] mg/l [[Gram per litre|<abbr title="milligrams per liter">mg/l</abbr>]] == Fracture toughness == MPa.m.5 [[Fracture toughness|MPa&sdot;m<sup>1/2</sup>]] kPa.m.5 [[Fracture toughness|kPa&sdot;m<sup>1/2</sup>]] Pa.m.5 [[Fracture toughness|Pa&sdot;m<sup>1/2</sup>]] == Temperature == degC °C ALIAS degF °F ALIAS degR °R ALIAS K [[Kelvin|K]] SI YK [[Yottakelvin|K]] SI ZK [[Zettakelvin|K]] SI EK [[Kelvin|K]] SI PK [[Petakelvin|K]] SI TK [[Terakelvin|K]] SI GK [[Gigakelvin|K]] SI MK [[Megakelvin|K]] SI kK [[Kilokelvin|K]] SI hK [[Hectokelvin|K]] SI daK [[Decakelvin|K]] SI dK [[Decikelvin|K]] SI cK [[Centikelvin|K]] SI mK [[Millikelvin|K]] SI µK [[Microkelvin|K]] SI uK [[Microkelvin|K]] SI nK [[Nanokelvin|K]] SI pK [[Picokelvin|K]] SI fK [[Femtokelvin|K]] SI aK [[Attokelvin|K]] SI zK [[Zeptokelvin|K]] SI yK [[Yoctokelvin|K]] SI == Electromagnetism == Wb [[Weber (unit)|Wb]] N.A-2 [[Permeability (electromagnetism)|N&sdot;A<sup>−2</sup>]] H.m-1 [[Permeability (electromagnetism)|H&sdot;m<sup>−1</sup>]] V.m-1 [[Electric field|V&sdot;m<sup>−1</sup>]] V/m [[Electric field|V/m]] C [[Coulomb|C]] SI YC [[Coulomb|C]] SI ZC [[Coulomb|C]] SI EC [[Coulomb|C]] SI PC [[Coulomb|C]] SI TC [[Coulomb|C]] SI GC [[Coulomb|C]] SI MC [[Coulomb|C]] SI kC [[Coulomb|C]] SI hC [[Coulomb|C]] SI daC [[Coulomb|C]] SI dC [[Coulomb|C]] SI cC [[Coulomb|C]] SI mC [[Coulomb|C]] SI µC [[Coulomb|C]] SI uC [[Coulomb|C]] SI nC [[Coulomb|C]] SI pC [[Coulomb|C]] SI fC [[Coulomb|C]] SI aC [[Coulomb|C]] SI zC [[Coulomb|C]] SI yC [[Coulomb|C]] SI F [[Farad|F]] SI YF [[Farad|F]] SI ZF [[Farad|F]] SI EF [[Farad|F]] SI PF [[Farad|F]] SI TF [[Farad|F]] SI GF [[Farad|F]] SI MF [[Farad|F]] SI kF [[Farad|F]] SI hF [[Farad|F]] SI daF [[Farad|F]] SI dF [[Farad|F]] SI cF [[Farad|F]] SI mF [[Farad|F]] SI µF [[Farad|F]] SI uF [[Farad|F]] SI nF [[Farad|F]] SI pF [[Farad|F]] SI fF [[Farad|F]] SI aF [[Farad|F]] SI zF [[Farad|F]] SI yF [[Farad|F]] SI H [[Henry (unit)|H]] SI YH [[Henry (unit)|H]] SI ZH [[Henry (unit)|H]] SI EH [[Henry (unit)|H]] SI PH [[Henry (unit)|H]] SI TH [[Henry (unit)|H]] SI GH [[Henry (unit)|H]] SI MH [[Henry (unit)|H]] SI kH [[Henry (unit)|H]] SI hH [[Henry (unit)|H]] SI daH [[Henry (unit)|H]] SI dH [[Henry (unit)|H]] SI cH [[Henry (unit)|H]] SI mH [[Henry (unit)|H]] SI µH [[Henry (unit)|H]] SI uH [[Henry (unit)|H]] SI nH [[Henry (unit)|H]] SI pH [[Henry (unit)|H]] SI fH [[Henry (unit)|H]] SI aH [[Henry (unit)|H]] SI zH [[Henry (unit)|H]] SI yH [[Henry (unit)|H]] SI A [[Ampere|A]] SI YA [[Ampere|A]] SI ZA [[Ampere|A]] SI EA [[Ampere|A]] SI PA [[Ampere|A]] SI TA [[Ampere|A]] SI GA [[Ampere|A]] SI MA [[Ampere|A]] SI kA [[Ampere|A]] SI hA [[Ampere|A]] SI daA [[Ampere|A]] SI dA [[Ampere|A]] SI cA [[Ampere|A]] SI mA [[Ampere|A]] SI µA [[Ampere|A]] SI uA [[Ampere|A]] SI nA [[Ampere|A]] SI pA [[Ampere|A]] SI fA [[Ampere|A]] SI aA [[Ampere|A]] SI zA [[Ampere|A]] SI yA [[Ampere|A]] SI V [[Volt|V]] SI YV [[Volt|V]] SI ZV [[Volt|V]] SI EV [[Volt|V]] SI PV [[Volt|V]] SI TV [[Volt|V]] SI GV [[Volt|V]] SI MV [[Volt|V]] SI kV [[Volt|V]] SI hV [[Volt|V]] SI daV [[Volt|V]] SI dV [[Volt|V]] SI cV [[Volt|V]] SI mV [[Volt|V]] SI µV [[Volt|V]] SI uV [[Volt|V]] SI nV [[Volt|V]] SI pV [[Volt|V]] SI fV [[Volt|V]] SI aV [[Volt|V]] SI zV [[Volt|V]] SI yV [[Volt|V]] SI VA [[Volt-ampere|VA]] SI YVA [[Volt-ampere|VA]] SI ZVA [[Volt-ampere|VA]] SI EVA [[Volt-ampere|VA]] SI PVA [[Volt-ampere|VA]] SI TVA [[Volt-ampere|VA]] SI GVA [[Volt-ampere|VA]] SI MVA [[Volt-ampere|VA]] SI kVA [[Volt-ampere|VA]] SI hVA [[Volt-ampere|VA]] SI daVA [[Volt-ampere|VA]] SI dVA [[Volt-ampere|VA]] SI cVA [[Volt-ampere|VA]] SI mVA [[Volt-ampere|VA]] SI µVA [[Volt-ampere|VA]] SI uVA [[Volt-ampere|VA]] SI nVA [[Volt-ampere|VA]] SI pVA [[Volt-ampere|VA]] SI fVA [[Volt-ampere|VA]] SI aVA [[Volt-ampere|VA]] SI zVA [[Volt-ampere|VA]] SI yVA [[Volt-ampere|VA]] SI Ω [[Ohm|Ω]] SI GΩ [[Ohm|Ω]] SI MΩ [[Ohm|Ω]] SI kΩ [[Ohm|Ω]] SI mΩ [[Ohm|Ω]] SI μΩ [[Ohm|Ω]] SI uΩ [[Ohm|Ω]] SI nΩ [[Ohm|Ω]] SI ohm [[Ohm|Ω]] Gohm [[Ohm|GΩ]] 1e9 Mohm [[Ohm|MΩ]] 1e6 kohm [[Ohm|kΩ]] 1e3 mohm [[Ohm|mΩ]] 1e-3 μohm [[Ohm|μΩ]] 1e-6 uohm [[Ohm|μΩ]] 1e-6 nohm [[Ohm|nΩ]] 1e-9 YΩ.m [[Electrical resistivity and conductivity#Definition|YΩ&sdot;m]] 1e24 ZΩ.m [[Electrical resistivity and conductivity#Definition|ZΩ&sdot;m]] 1e21 EΩ.m [[Electrical resistivity and conductivity#Definition|EΩ&sdot;m]] 1e18 PΩ.m [[Electrical resistivity and conductivity#Definition|PΩ&sdot;m]] 1e15 TΩ.m [[Electrical resistivity and conductivity#Definition|TΩ&sdot;m]] 1e12 GΩ.m [[Electrical resistivity and conductivity#Definition|GΩ&sdot;m]] 1e9 MΩ.m [[Electrical resistivity and conductivity#Definition|MΩ&sdot;m]] 1e6 kΩ.m [[Electrical resistivity and conductivity#Definition|kΩ&sdot;m]] 1e3 Ω.m [[Electrical resistivity and conductivity#Definition|Ω&sdot;m]] 1 mΩ.m [[Electrical resistivity and conductivity#Definition|mΩ&sdot;m]] 1e-3 µΩ.m [[Electrical resistivity and conductivity#Definition|μΩ&sdot;m]] 1e-6 uΩ.m [[Electrical resistivity and conductivity#Definition|μΩ&sdot;m]] 1e-6 nΩ.m [[Electrical resistivity and conductivity#Definition|nΩ&sdot;m]] 1e-9 pΩ.m [[Electrical resistivity and conductivity#Definition|pΩ&sdot;m]] 1e-12 fΩ.m [[Electrical resistivity and conductivity#Definition|fΩ&sdot;m]] 1e-15 aΩ.m [[Electrical resistivity and conductivity#Definition|aΩ&sdot;m]] 1e-18 zΩ.m [[Electrical resistivity and conductivity#Definition|zΩ&sdot;m]] 1e-21 yΩ.m [[Electrical resistivity and conductivity#Definition|yΩ&sdot;m]] 1e-24 R [[Rayleigh (unit)|R]] SI G [[Gauss (unit)|G]] SI aG [[Attogauss|G]] SI cG [[Centigauss|G]] SI daG [[Decagauss|G]] SI dG [[Decigauss|G]] SI EG [[Exagauss|G]] SI fG [[Femtogauss|G]] SI GG [[Gigagauss|G]] SI hG [[Hectogauss|G]] SI kG [[Kilogauss|G]] SI MG [[Megagauss|G]] SI mG [[Milligauss|G]] SI uG [[Microgauss|G]] SI µG [[Microgauss|G]] SI nG [[Nanogauss|G]] SI PG [[Petagauss|G]] SI pG [[Picogauss|G]] SI TG [[Teragauss|G]] SI yG [[Yoctogauss|G]] SI YG [[Yottagauss|G]] SI zG [[Zeptogauss|G]] SI ZG [[Zettagauss|G]] SI T [[Tesla (unit)|T]] SI aT [[Attotesla|T]] SI cT [[Centitesla|T]] SI daT [[Decatesla|T]] SI dT [[Decitesla|T]] SI ET [[Exatesla|T]] SI fT [[Femtotesla|T]] SI GT [[Gigatesla|T]] SI hT [[Hectotesla|T]] SI kT [[Kilotesla|T]] SI MT [[Megatesla|T]] SI mT [[Millitesla|T]] SI uT [[Microtesla|T]] SI µT [[Microtesla|T]] SI nT [[Nanotesla|T]] SI PT [[Petatesla|T]] SI pT [[Picotesla|T]] SI TT [[Teratesla|T]] SI yT [[Yoctotesla|T]] SI YT [[Yottatesla|T]] SI zT [[Zeptotesla|T]] SI ZT [[Zettatesla|T]] SI == Astrophysics == au [[Astronomical unit|au]] c [[Speed of light|''c'']] ly [[Light-year|ly]] Earth mass [[Earth mass|''M''<sub>🜨</sub>]] Earth radius [[Earth radius|''R''<sub>🜨</sub>]] M_Earth [[Earth mass|''M''<sub>🜨</sub>]] R_Earth [[Earth radius|''R''<sub>🜨</sub>]] M+ [[Earth mass|''M''<sub>🜨</sub>]] R+ [[Earth radius|''R''<sub>🜨</sub>]] Jupiter mass [[Jupiter mass|''M''<sub>J</sub>]] Jupiter radius [[Jupiter radius|''R''<sub>J</sub>]] Jy [[Jansky|Jy]] M_Jupiter [[Jupiter mass|''M''<sub>J</sub>]] R_Jupiter [[Jupiter radius|''R''<sub>J</sub>]] Solar mass [[Solar mass|''M''<sub>&#x2609;</sub>]] solar mass [[Solar mass|''M''<sub>&#x2609;</sub>]] M_Solar [[Solar mass|''M''<sub>&#x2609;</sub>]] M_solar [[Solar mass|''M''<sub>&#x2609;</sub>]] R_Solar [[Solar radius|''R''<sub>&#x2609;</sub>]] R_solar [[Solar radius|''R''<sub>&#x2609;</sub>]] Solar radius [[Solar radius|''R''<sub>&#x2609;</sub>]] solar radius [[Solar radius|''R''<sub>&#x2609;</sub>]] Solar luminosity [[Solar luminosity|''L''<sub>&#x2609;</sub>]] solar luminosity [[Solar luminosity|''L''<sub>&#x2609;</sub>]] L_solar [[Solar luminosity|''L''<sub>&#x2609;</sub>]] L_Solar [[Solar luminosity|''L''<sub>&#x2609;</sub>]] Lo [[Solar luminosity|''L''<sub>&#x2609;</sub>]] pc2 [[Parsec|pc<sup>2</sup>]] pc3 [[Parsec|pc<sup>3</sup>]] kpc2 [[Parsec#Parsecs and kiloparsecs|kpc<sup>2</sup>]] kpc3 [[Parsec#Parsecs and kiloparsecs|kpc<sup>3</sup>]] kpc [[Parsec#Parsecs and kiloparsecs|kpc]] Mpc2 [[Parsec#Megaparsecs and gigaparsecs|Mpc<sup>2</sup>]] Mpc3 [[Parsec#Megaparsecs and gigaparsecs|Mpc<sup>3</sup>]] Mpc [[Parsec#Megaparsecs and gigaparsecs|Mpc]] Gpc2 [[Parsec#Megaparsecs and gigaparsecs|Gpc<sup>2</sup>]] Gpc3 [[Parsec#Megaparsecs and gigaparsecs|Gpc<sup>3</sup>]] Gpc [[Parsec#Megaparsecs and gigaparsecs|Gpc]] == Physics and chemistry == cm-1 [[Wavenumber|cm<sup>−1</sup>]] u [[Unified atomic mass unit|u]] osmol [[Osmole (unit)|osmol]] Osm [[Osmole (unit)|Osm]] M [[Molarity|M]] TM [[Molarity|M]] SI GM [[Molarity|M]] SI MM [[Molarity|M]] SI kM [[Molarity|M]] SI hM [[Molarity|M]] SI daM [[Molarity|M]] SI dM [[Molarity|M]] SI cM [[Molarity|M]] SI mM [[Molarity|M]] SI uM [[Molarity|M]] 1e-6 nM [[Molarity|M]] SI pM [[Molarity|M]] SI kg.mol-1 [[Molar mass|kg&sdot;mol<sup>−1</sup>]] kg/mol [[Molar mass|kg/mol]] g.mol-1 [[Molar mass|g&sdot;mol<sup>−1</sup>]] g/mol [[Molar mass|g/mol]] eV/c2 [[Electronvolt#Mass|eV/''c''<sup>2</sup>]] keV/c2 [[Electronvolt#Mass|keV/''c''<sup>2</sup>]] MeV/c2 [[Electronvolt#Mass|MeV/''c''<sup>2</sup>]] GeV/c2 [[Electronvolt#Mass|GeV/''c''<sup>2</sup>]] TeV/c2 [[Electronvolt#Mass|TeV/''c''<sup>2</sup>]] eV [[Electronvolt|eV]] meV [[Electronvolt|meV]] keV [[Electronvolt|keV]] MeV [[Electronvolt|MeV]] GeV [[Electronvolt|GeV]] TeV [[Electronvolt|TeV]] mol-1 [[Avogadro constant|mol<sup>−1</sup>]] J.mol-1 [[Joule per mole|J&sdot;mol<sup>−1</sup>]] J/mol [[Joule per mole|J/mol]] kJ.mol-1 [[Joule per mole|kJ&sdot;mol<sup>−1</sup>]] kJ/mol [[Joule per mole|kJ/mol]] MJ.mol-1 [[Joule per mole|MJ&sdot;mol<sup>−1</sup>]] MJ/mol [[Joule per mole|MJ/mol]] GJ.mol-1 [[Joule per mole|GJ&sdot;mol<sup>−1</sup>]] GJ/mol [[Joule per mole|GJ/mol]] TJ.mol-1 [[Joule per mole|TJ&sdot;mol<sup>−1</sup>]] TJ/mol [[Joule per mole|TJ/mol]] μB [[Bohr magneton|''μ''<sub>B</sub>]] J.mol-1.K-1 [[Molar heat capacity|J&sdot;mol<sup>−1</sup>&sdot;K<sup>−1</sup>]] J/mol.K [[Molar heat capacity|J/(mol&sdot;K)]] J.K-1.mol-1 [[Molar heat capacity|J&sdot;K<sup>−1</sup>&sdot;mol<sup>−1</sup>]] J/K.mol [[Molar heat capacity|J/(K&sdot;mol)]] J.mol-1.degC-1 [[Molar heat capacity|J&sdot;mol<sup>−1</sup>&sdot;°C<sup>−1</sup>]] J/mol.degC [[Molar heat capacity|J/(mol&sdot;°C)]] J.degC-1.mol-1 [[Molar heat capacity|J&sdot;°C<sup>−1</sup>&sdot;mol<sup>−1</sup>]] J/degC.mol [[Molar heat capacity|J/(°C&sdot;mol)]] μPa.s [[Viscosity#Units|μPa&sdot;s]] mPa.s [[Viscosity#Units|mPa&sdot;s]] Pa.s [[Viscosity#Units|Pa&sdot;s]] kPa.s [[Viscosity#Units|kPa&sdot;s]] == Numbers and phrases == pp [[Page (paper)|pp]] ppb [[Parts per billion|ppb]] 1e-9 ppm [[Parts per million|ppm]] 1e-6 ppq [[Parts per quadrillion|ppq]] 1e-15 ppt [[Parts per trillion|ppt]] 1e-12 billiard [[Orders of magnitude (numbers)#1015|billiard]] 1e15 billion [[1,000,000,000|billion]] 1e9 billionth [[1,000,000,000|billionth]] 1e-9 billionths [[1,000,000,000|billionths]] 1e-9 decilliard [[Orders of magnitude (numbers)#1063|decilliard]] 1e63 decillion [[Orders of magnitude (numbers)#1033|decillion]] 1e33 decillionth [[Orders of magnitude (numbers)#1033|decillionth]] 1e-33 decillionths [[Orders of magnitude (numbers)#1033|decillionths]] 1e-33 milliard [[1,000,000,000|milliard]] 1e9 million [[Million|million]] 1e6 millionth [[Million|millionth]] 1e-6 millionths [[Million|millionths]] 1e-6 nonilliard [[Orders of magnitude (numbers)#1057|nonilliard]] 1e57 nonillion [[Orders of magnitude (numbers)#1030|nonillion]] 1e30 nonillionth [[Orders of magnitude (numbers)#1030|nonillionth]] 1e-30 nonillionths [[Orders of magnitude (numbers)#1030|nonillionths]] 1e-30 octilliard [[Orders of magnitude (numbers)#1051|octilliard]] 1e51 octillion [[Orders of magnitude (numbers)#1027|octillion]] 1e27 octillionth [[Orders of magnitude (numbers)#1027|octillionth]] 1e-27 octillionths [[Orders of magnitude (numbers)#1027|octillionths]] 1e-27 quadrilliard [[Orders of magnitude (numbers)#1027|quadrilliard]] 1e27 quadrillion [[Orders of magnitude (numbers)#1015|quadrillion]] 1e15 quadrillionth [[Orders of magnitude (numbers)#1015|quadrillionth]] 1e-15 quadrillionths [[Orders of magnitude (numbers)#1015|quadrillionths]] 1e-15 quintilliard [[Orders of magnitude (numbers)#1033|quintilliard]] 1e33 quintillion [[Orders of magnitude (numbers)#1018|quintillion]] 1e18 quintillionth [[Orders of magnitude (numbers)#1018|quintillionth]] 1e-18 quintillionths [[Orders of magnitude (numbers)#1018|quintillionths]] 1e-18 septilliard [[Orders of magnitude (numbers)#1045|septilliard]] 1e45 septillion [[Orders of magnitude (numbers)#1024|septillion]] 1e24 septillionth [[Orders of magnitude (numbers)#1024|septillionth]] 1e-24 septillionths [[Orders of magnitude (numbers)#1024|septillionths]] 1e-24 sextilliard [[Orders of magnitude (numbers)#1039|sextilliard]] 1e39 sextillion [[Orders of magnitude (numbers)#1021|sextillion]] 1e21 sextillionth [[Orders of magnitude (numbers)#1021|sextillionth]] 1e-21 sextillionths [[Orders of magnitude (numbers)#1021|sextillionths]] 1e-21 trilliard [[Orders of magnitude (numbers)#1021|trilliard]] 1e21 trillion [[Orders of magnitude (numbers)#1012|trillion]] 1e12 trillionth [[Orders of magnitude (numbers)#1012|trillionth]] 1e-12 trillionths [[Orders of magnitude (numbers)#1012|trillionths]] 1e-12 == Angle and square angle == % % Percent ANGLE 0.01 percent % Percent ANGLE 0.01 per cent % Percent ANGLE 0.01 ‰ ‰ Per mil ANGLE 1e-3 per mil ‰ Per mil ANGLE 1e-3 per mill ‰ Per mil ANGLE 1e-3 per mille ‰ Per mil ANGLE 1e-3 permil ‰ Per mil ANGLE 1e-3 permill ‰ Per mil ANGLE 1e-3 permille ‰ Per mil ANGLE 1e-3 ° ° Degree (angle) ANGLE pi/180 deg ° Degree (angle) ANGLE pi/180 degree ° Degree (angle) NOSPACE pi/180 -- for a degree symbol that does not repeat ' ′ Minute of arc ANGLE pi/10800 ′ ′ Minute of arc ANGLE pi/10800 arcmin ′ Minute of arc ANGLE pi/10800 arcminute ′ Minute of arc ANGLE pi/10800 " ″ Second of arc ANGLE pi/648000 ″ ″ Second of arc ANGLE pi/648000 arcsec ″ Second of arc ANGLE pi/648000 arcsecond ″ Second of arc ANGLE pi/648000 mas [[Milliarcsecond|mas]] pi/648000000 uas [[Microarcsecond|μas]] pi/648000000000 μas [[Microarcsecond|μas]] pi/648000000000 sr [[Steradian|sr]] SI Ysr [[Steradian|sr]] SI Zsr [[Steradian|sr]] SI Esr [[Steradian|sr]] SI Psr [[Steradian|sr]] SI Tsr [[Steradian|sr]] SI Gsr [[Steradian|sr]] SI Msr [[Steradian|sr]] SI ksr [[Steradian|sr]] SI hsr [[Steradian|sr]] SI dasr [[Steradian|sr]] SI dsr [[Steradian|sr]] SI csr [[Steradian|sr]] SI msr [[Steradian|sr]] SI usr [[Steradian|sr]] SI μsr [[Steradian|sr]] SI nsr [[Steradian|sr]] SI psr [[Steradian|sr]] SI fsr [[Steradian|sr]] SI asr [[Steradian|sr]] SI zsr [[Steradian|sr]] SI ysr [[Steradian|sr]] SI -- next three symbols from [[MNRAS]] (https://academic.oup.com/mnras/pages/general_instructions) deg2 [[Square degree|deg<sup>2</sup>]] arcmin2 [[Square degree|arcmin<sup>2</sup>]] arcsec2 [[Square degree|arcsec<sup>2</sup>]] mas2 [[Square degree|mas<sup>2</sup>]] uas2 [[Square degree|μas<sup>2</sup>]] μas2 [[Square degree|μas<sup>2</sup>]] ]=] -- If val has "|long scale=on" the following definitions are used -- (then, if not found here, the normal definitions are used). -- Unit code [[Link|Symbol]] Flags/Scale local builtin_units_long_scale = [=[ == Long scale numbers and phrases == billion [[Orders of magnitude (numbers)#1012|billion]] 1e12 billionth [[Orders of magnitude (numbers)#1012|billionth]] 1e-12 billionths [[Orders of magnitude (numbers)#1012|billionths]] 1e-12 decillion [[Orders of magnitude (numbers)#1060|decillion]] 1e60 decillionth [[Orders of magnitude (numbers)#1060|decillionth]] 1e-60 decillionths [[Orders of magnitude (numbers)#1060|decillionths]] 1e-60 nonillion [[Orders of magnitude (numbers)#1054|nonillion]] 1e54 nonillionth [[Orders of magnitude (numbers)#1054|nonillionth]] 1e-54 nonillionths [[Orders of magnitude (numbers)#1054|nonillionths]] 1e-54 octillion [[Orders of magnitude (numbers)#1048|octillion]] 1e48 octillionth [[Orders of magnitude (numbers)#1048|octillionth]] 1e-48 octillionths [[Orders of magnitude (numbers)#1048|octillionths]] 1e-48 quadrillion [[Orders of magnitude (numbers)#1024|quadrillion]] 1e24 quadrillionth [[Orders of magnitude (numbers)#1024|quadrillionth]] 1e-24 quadrillionths [[Orders of magnitude (numbers)#1024|quadrillionths]] 1e-24 quintillion [[Orders of magnitude (numbers)#1030|quintillion]] 1e30 quintillionth [[Orders of magnitude (numbers)#1030|quintillionth]] 1e-30 quintillionths [[Orders of magnitude (numbers)#1030|quintillionths]] 1e-30 septillion [[Orders of magnitude (numbers)#1042|septillion]] 1e42 septillionth [[Orders of magnitude (numbers)#1042|septillionth]] 1e-42 septillionths [[Orders of magnitude (numbers)#1042|septillionths]] 1e-42 sextillion [[Orders of magnitude (numbers)#1036|sextillion]] 1e36 sextillionth [[Orders of magnitude (numbers)#1036|sextillionth]] 1e-36 sextillionths [[Orders of magnitude (numbers)#1036|sextillionths]] 1e-36 trillion [[Orders of magnitude (numbers)#1018|trillion]] 1e18 trillionth [[Orders of magnitude (numbers)#1018|trillionth]] 1e-18 trillionths [[Orders of magnitude (numbers)#1018|trillionths]] 1e-18 ]=] return { builtin_units = builtin_units, builtin_units_long_scale = builtin_units_long_scale } tuw24uoe4ak9akydma28mtuor0fl0p4 فرما:Chem 10 32534 150722 2026-08-29T09:38:12Z آیات محراج 11062 Content copied from English wiki 150722 wikitext text/x-wiki <span class="chemf nowrap">{{chem/link |link={{{link|}}} |{{#if:{{{2|}}}{{{3|}}} |{{#ifeq:{{lc:{{{1}}}}}|{{#switch:{{{1|}}}|(|)|[|]|=X|{{{1}}}}} |{{#ifeq:{{lc:{{{2}}}}}|{{#switch:{{{2|}}}|(|)|[|]|=X|{{{2}}}}} |{{#ifexpr:{{#iferror:{{#expr:{{{1}}}}} |1 |{{#iferror:{{#expr:{{{2}}}}} |0 |{{{1}}}>{{{2}}} }} }} |{{su|lh=1em|a=r|p={{{1}}}|b={{{2}}}}} |{{su|lh=1em|a=r|p={{{2}}}|b={{{1}}}}} }}<!-- end #ifexpr:{{{1}}}>{{{2}}} --> |{{su|lh=1em|va=0.5em|p={{{1}}}}}{{chem/atom|{{{2|}}}|{{{3|}}}|{{{4|}}}}} }}<!-- end #ifeq:{{lc:{{{2}}}}}|{{#switch:{{{2|}}}|(|)|[|]|=X|{{{2}}}}} --> |{{chem/atom|{{{1|}}}|{{{2|}}}|{{{3|}}}}}{{chem/atom|{{{2|}}}|{{{3|}}}|{{{4|}}}}} }}{{#if: {{{3|}}} {{{4|}}}|{{chem/atom|{{{3|}}}|{{{4|}}}|{{{5|}}}}}<!-- -->{{#if: {{{4|}}} {{{5|}}}|{{chem/atom|{{{4|}}}|{{{5|}}}|{{{6|}}}}}<!-- -->{{#if: {{{5|}}} {{{6|}}}|{{chem/atom|{{{5|}}}|{{{6|}}}|{{{7|}}}}}<!-- -->{{#if: {{{6|}}} {{{7|}}}|{{chem/atom|{{{6|}}}|{{{7|}}}|{{{8|}}}}}<!-- -->{{#if: {{{7|}}} {{{8|}}}|{{chem/atom|{{{7|}}}|{{{8|}}}|{{{9|}}}}}<!-- -->{{#if: {{{8|}}} {{{9|}}}|{{chem/atom|{{{8|}}}|{{{9|}}}|{{{10|}}}}}<!-- -->{{#if: {{{9|}}}{{{10|}}}|{{chem/atom|{{{9|}}}|{{{10|}}}|{{{11|}}}}}<!-- -->{{#if:{{{10|}}}{{{11|}}}|{{chem/atom|{{{10|}}}|{{{11|}}}|{{{12|}}}}}<!-- -->{{#if:{{{11|}}}{{{12|}}}|{{chem/atom|{{{11|}}}|{{{12|}}}|{{{13|}}}}}<!-- -->{{#if:{{{12|}}}{{{13|}}}|{{chem/atom|{{{12|}}}|{{{13|}}}|{{{14|}}}}}<!-- -->{{#if:{{{13|}}}{{{14|}}}|{{chem/atom|{{{13|}}}|{{{14|}}}|{{{15|}}}}}<!-- -->{{#if:{{{14|}}}{{{15|}}}|{{chem/atom|{{{14|}}}|{{{15|}}}|{{{16|}}}}}<!-- -->{{#if:{{{15|}}}{{{16|}}}|{{chem/atom|{{{15|}}}|{{{16|}}}|{{{17|}}}}}<!-- -->{{#if:{{{16|}}}{{{17|}}}|{{chem/atom|{{{16|}}}|{{{17|}}}|{{{18|}}}}}<!-- -->{{#if:{{{17|}}}{{{18|}}}|{{chem/atom|{{{17|}}}|{{{18|}}}|{{{19|}}}}}<!-- -->{{#if:{{{18|}}}{{{19|}}}|{{chem/atom|{{{18|}}}|{{{19|}}}|{{{20|}}}}}<!-- -->{{#if:{{{19|}}}{{{20|}}}|{{chem/atom|{{{19|}}}|{{{20|}}}|{{{21|}}}}}<!-- -->{{#if:{{{20|}}}{{{21|}}}|{{chem/atom|{{{20|}}}|{{{21|}}}|{{{22|}}}}}<!-- -->{{#if:{{{21|}}}{{{22|}}}|{{chem/atom|{{{21|}}}|{{{22|}}}|{{{23|}}}}}<!-- -->{{#if:{{{22|}}}{{{23|}}}|{{chem/atom|{{{22|}}}|{{{23|}}}|{{{24|}}}}}<!-- -->{{#if:{{{23|}}}{{{24|}}}|{{chem/atom|{{{23|}}}|{{{24|}}}|{{{25|}}}}}<!-- -->{{#if:{{{24|}}}{{{25|}}}|{{chem/atom|{{{24|}}}|{{{25|}}}|{{{26|}}}}}<!-- -->{{#if:{{{25|}}}{{{26|}}}|{{chem/atom|{{{25|}}}|{{{26|}}}|{{{27|}}}}}<!-- -->{{#if:{{{26|}}}{{{27|}}}|{{chem/atom|{{{26|}}}|{{{27|}}}|{{{28|}}}}}<!-- -->{{#if:{{{27|}}}{{{28|}}}|{{chem/atom|{{{27|}}}|{{{28|}}}|{{{29|}}}}}<!-- -->{{#if:{{{28|}}}{{{29|}}}|{{chem/atom|{{{28|}}}|{{{29|}}}|{{{30|}}}}}<!-- -->}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}} |{{{1|}}} }} }}</span><noinclude>{{documentation}}</noinclude> dymua9qho3rhk98fxk54q5s1z0xwd8a فرما:Chem/link 10 32535 150723 2026-08-29T09:39:51Z آیات محراج 11062 Created page with "<onlyinclude>{{#if:{{{link|}}}|[[{{{link}}}|{{#if:{{{1|}}}|{{{1}}}|{{{link}}}}}]]|{{{1|}}}}}</onlyinclude> This creates a link if and only if the link parameter is specified. [[Category:Subtemplates of Template Chem]]" 150723 wikitext text/x-wiki <onlyinclude>{{#if:{{{link|}}}|[[{{{link}}}|{{#if:{{{1|}}}|{{{1}}}|{{{link}}}}}]]|{{{1|}}}}}</onlyinclude> This creates a link if and only if the link parameter is specified. [[Category:Subtemplates of Template Chem]] q8kuw1lcrckhhbz9668le4491b87e1k فرما:Chem/doc 10 32536 150724 2026-08-29T09:40:40Z آیات محراج 11062 Created page with "== TemplateData == {{TemplateData header}} {{collapse top|title=Template data|bg=#ccc}} <templatedata> { "params": { "1": {}, "2": {}, "3": {}, "4": {}, "5": {}, "6": {}, "7": {}, "8": {}, "9": {}, "10": {}, "11": {}, "12": {}, "13": {}, "14": {}, "15": {}, "16": {}, "17": {}, "18": {}, "19": {}, "20": {}, "21": {}, "22": {}, "23": {}, "24": {}, "link": { "label": "Link", "description": "Make the formula link to an..." 150724 wikitext text/x-wiki == TemplateData == {{TemplateData header}} {{collapse top|title=Template data|bg=#ccc}} <templatedata> { "params": { "1": {}, "2": {}, "3": {}, "4": {}, "5": {}, "6": {}, "7": {}, "8": {}, "9": {}, "10": {}, "11": {}, "12": {}, "13": {}, "14": {}, "15": {}, "16": {}, "17": {}, "18": {}, "19": {}, "20": {}, "21": {}, "22": {}, "23": {}, "24": {}, "link": { "label": "Link", "description": "Make the formula link to an article", "example": "Water", "type": "wiki-page-name" } }, "description": "Render chemical formulas using HTML. Alternatively, you can use <chem>...</chem>, using mhchem LaTeX notation to generate formulas.\n\nUp to 25 unnamed ordered parameters can be used with automatic detection of subscripts and superscripts.", "format": "inline", "paramOrder": [ "link", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24" ] } </templatedata> {{collapse bottom}} <includeonly>{{sandbox other|| [[Category:Text-specific formatting and function templates]] [[Category:Chemistry formatting and function templates]] [[Category:Superscript and subscript templates]] }}</includeonly> 1418suh6lf0gpk5wjgn9nh300ys3f0s فرما:Chem/atom 10 32537 150726 2026-08-29T09:43:53Z آیات محراج 11062 Created page with "<onlyinclude>{{#ifeq:{{lc:{{{1}}}}}|{{#switch:{{{1|}}}|(|)|[|]|=X|{{{1}}}}} | |{{{1|}}}{{#ifeq:{{lc:{{{2}}}}}|{{#switch:{{{2|}}}|(|)|[|]|=X|{{{2}}}}} |{{#ifeq:{{lc:{{{3}}}}}|{{#switch:{{{3|}}}|(|)|[|]|=X|{{{3}}}}} |{{#iferror:{{#expr:1/(0*0{{{2}}}1)}} |{{#invoke:su|invoke_main|lh=1em|b={{{2|}}}|p={{#iferror:{{#expr:{{{3}}}0}} |{{{3|}}} |{{#ifexpr:abs{{{3|}}}0>1|{{#expr:{{{3|}}}0}}}}{{#ifexpr:0*0{{{3|}}}1>0|+|..." 150726 wikitext text/x-wiki <onlyinclude>{{#ifeq:{{lc:{{{1}}}}}|{{#switch:{{{1|}}}|(|)|[|]|=X|{{{1}}}}} | |{{{1|}}}{{#ifeq:{{lc:{{{2}}}}}|{{#switch:{{{2|}}}|(|)|[|]|=X|{{{2}}}}} |{{#ifeq:{{lc:{{{3}}}}}|{{#switch:{{{3|}}}|(|)|[|]|=X|{{{3}}}}} |{{#iferror:{{#expr:1/(0*0{{{2}}}1)}} |{{#invoke:su|invoke_main|lh=1em|b={{{2|}}}|p={{#iferror:{{#expr:{{{3}}}0}} |{{{3|}}} |{{#ifexpr:abs{{{3|}}}0>1|{{#expr:{{{3|}}}0}}}}{{#ifexpr:0*0{{{3|}}}1>0|+|−}} }} }} |{{#invoke:su|invoke_main|lh=1em|b={{{3|}}}|p={{#iferror:{{#expr:{{{2}}}0}} |{{{2|}}} |{{#ifexpr:abs{{{2|}}}0>1|{{#expr:{{{2|}}}0}}}}{{#ifexpr:0*0{{{2|}}}1>0|+|−}} }} }} }} |{{#iferror:{{#expr:1/(0*0{{{2}}}1)}} |{{#invoke:su|invoke_main|lh=1em|b={{{2|}}}}} |{{#invoke:su|invoke_main|lh=1em|p={{#ifexpr:abs{{{2|}}}0>1|{{#expr:{{{2|}}}0}}}}{{#ifexpr:0*0{{{2|}}}1>0|+|−}}}} }} }} }} }}</onlyinclude> [[Category:Subtemplates of Template Chem]] 57jrlyglachgmeojij7nwfgoqjhfxe0 Module:Su 828 32538 150728 2026-08-29T09:46:16Z آیات محراج 11062 Content copied from en wiki 150728 Scribunto text/plain -- This module implements {{su}}. local p = {} function p.main(frame) -- Use arguments from the parent frame only, and remove any blank arguments. -- We don't need to trim whitespace from any arguments, as this module only -- uses named arguments, and whitespace is trimmed from them automatically. local origArgs = frame:getParent().args local args = {} for k, v in pairs(origArgs) do if v ~= '' then args[k] = v end end -- Define the variables to pass to luaMain. local sup = args.p local sub = args.b local options = { align = args.a, fontSize = args.w, lineHeight = args.lh, verticalAlign = args.va } return p._main(sup, sub, options) end function p.invoke_main(frame) -- entry point for invocation using frame arguments local origArgs = frame.args local args = {} for k, v in pairs(origArgs) do if v ~= '' then args[k] = v end end -- Define the variables to pass to luaMain. local sup = args.p local sub = args.b local options = { align = args.a, fontSize = args.w, lineHeight = args.lh, verticalAlign = args.va } return p._main(sup, sub, options) end function p._main(sup, sub, options) options = options or {} local span = mw.html.create('span') -- Set the styles. span:css{ ['display'] = 'inline-block', ['margin-bottom'] = '-0.3em', ['vertical-align'] = options.verticalAlign or sub and '-0.4em' or '0.8em', ['line-height'] = options.lineHeight or '1.2em' } if options.fontSize == 'f' or options.fontSize == 'fixed' then span:css{ ['font-family'] = 'monospace', ['font-size'] = '80%' } else span:css('font-size', options.fontSize or '80%') end if options.align == 'r' or options.align == 'right' then span:css('text-align', 'right') elseif options.align == 'c' or options.align == 'center' then span:css('text-align', 'center') else span:css('text-align', 'left') end -- Add the wikitext. span :tag('sup') :css('font-size', 'inherit') :css('line-height', 'inherit') :css('vertical-align', 'baseline') :wikitext(sup) :done() :tag('br', {selfClosing = true}):done() :tag('sub') :css('font-size', 'inherit') :css('line-height', 'inherit') :css('vertical-align', 'baseline') :wikitext(sub) return '<span class="nowrap">' .. tostring(span) .. '</span>' end return p bph4xbdqec2fv9k8h1ll28fiyt9ke58 نیٖلم 0 32539 150731 2026-08-29T10:00:28Z آیات محراج 11062 . 150731 wikitext text/x-wiki نیٖلم چھُ اکھ 4eygnebh4ra3wos19ev2l8fsxhumwrh 150732 150731 2026-08-29T10:07:21Z آیات محراج 11062 /* */ 150732 wikitext text/x-wiki نیٖلم یا سیٚفایِر (Sapphire) چھُ اکھ قٟمتی تہِ زبردست چمکدار رَتن۔ [[کھانٕز]]: یہِ چھُ کورنڈم [[معدنیات|معدنیاتُک]] اکھ قٕسٕم۔ مضبوٗطی: [[ہیٖرٕ]] پَتہِ چھُ یہِ دُنیاہَس مَنٛز سارِوے کھۄتہِ سَخت تہٕ مَضبوٗط رَتن۔ رَنٛگ: نیٛوٗل، لیٛۆدُر، گۄلٲبؠ، تہِ سَپھید۔ یہِ چھُ عام طور پٲٹھؠ نیٖلؠ رَنٛگُک آسان، مگر یہِ ہیٚکہِ باقے رَنٛگن مَنٛز تہِ مِلِتھ۔ اَمِچ سارِوے کھۄتہِ مَشہوٗر تہِ اعلیٰ قٕسمٕچ زاتھ چھِ کٔشِیرِ ہِنٛدِس پادَر، کشتواڑ علاقَس مَنٛز مِلان، یَتھ '''کٲشُر نیٖلم''' وَنان چھِ۔ kxsml5s5fe3mjsjlfwf977mfv69qlvk 150733 150732 2026-08-29T10:08:37Z آیات محراج 11062 /* */ 150733 wikitext text/x-wiki '''نیٖلم''' یا '''سیٚفایِر''' ('''Sapphire''') چھُ اکھ قٟمتی تہِ زبردست چمکدار رَتن۔ [[کھانٕز]]: یہِ چھُ کورنڈم [[معدنیات|معدنیاتُک]] اکھ قٕسٕم۔ مضبوٗطی: [[ہیٖرٕ]] پَتہِ چھُ یہِ دُنیاہَس مَنٛز سارِوے کھۄتہِ سَخت تہٕ مَضبوٗط رَتن۔ [[رنٛگ|رَنٛگ]]: [[نیوٗل|نیٛوٗل]]، [[لیۆدُر (رنٛگ)|لیٛۆدُر]]، [[گۄلٲبؠ (رنٛگ)|گۄلٲبؠ]]، تہِ [[سَفیٖد|سَپھید]]۔ یہِ چھُ عام طور پٲٹھؠ نیٖلؠ رَنٛگُک آسان، مگر یہِ ہیٚکہِ باقے رَنٛگن مَنٛز تہِ مِلِتھ۔ اَمِچ سارِوے کھۄتہِ مَشہوٗر تہِ اعلیٰ قٕسمٕچ زاتھ چھِ کٔشِیرِ ہِنٛدِس پادَر، کشتواڑ علاقَس مَنٛز مِلان، یَتھ '''کٲشُر نیٖلم''' وَنان چھِ۔ mj10rubh1hnah70zlxml057ls7auzju 150734 150733 2026-08-29T10:11:59Z آیات محراج 11062 150734 wikitext text/x-wiki '''نیٖلم''' یا '''سیٚفایِر''' ('''Sapphire''') چھُ اکھ قٟمتی تہِ زبردست چمکدار رَتن۔ [[کھانٕز]]: یہِ چھُ کورنڈم [[معدنیات|معدنیاتُک]] اکھ قٕسٕم۔ مضبوٗطی: [[ہیٖرٕ]] پَتہِ چھُ یہِ دُنیاہَس مَنٛز سارِوے کھۄتہِ سَخت تہٕ مَضبوٗط رَتن۔ [[رنٛگ|رَنٛگ]]: [[نیوٗل|نیٛوٗل]]، [[لیۆدُر (رنٛگ)|لیٛۆدُر]]، [[گۄلٲبؠ (رنٛگ)|گۄلٲبؠ]]، تہِ [[سَفیٖد|سَپھید]]۔ یہِ چھُ عام طور پٲٹھؠ نیٖلؠ رَنٛگُک آسان، مگر یہِ ہیٚکہِ باقے رَنٛگن مَنٛز تہِ مِلِتھ۔ اَمِچ سارِوے کھۄتہِ مَشہوٗر تہِ اعلیٰ قٕسمٕچ زاتھ چھِ کٔشِیرِ ہِنٛدِس پادَر، کشتواڑ علاقَس مَنٛز مِلان، یَتھ '''کٲشُر نیٖلم''' وَنان چھِ۔ == تَصویٖرٕ == <gallery> فَیِل:Sapphire Gem.jpg فَیِل:Sapphire - Voda Shaqen.jpg فَیِل:Logan Sapphire, National Museum of Natural History, Washington DC.jpg فَیِل:Sapphire ring.jpg|نیٖلمٕچ وٲج </gallery> 9zwwuv0q4t6kzz1zc5xy5hit5xtjhvi 150735 150734 2026-08-29T10:12:40Z آیات محراج 11062 /* */ 150735 wikitext text/x-wiki {{infobox mineral}} '''نیٖلم''' یا '''سیٚفایِر''' ('''Sapphire''') چھُ اکھ قٟمتی تہِ زبردست چمکدار رَتن۔ [[کھانٕز]]: یہِ چھُ کورنڈم [[معدنیات|معدنیاتُک]] اکھ قٕسٕم۔ مضبوٗطی: [[ہیٖرٕ]] پَتہِ چھُ یہِ دُنیاہَس مَنٛز سارِوے کھۄتہِ سَخت تہٕ مَضبوٗط رَتن۔ [[رنٛگ|رَنٛگ]]: [[نیوٗل|نیٛوٗل]]، [[لیۆدُر (رنٛگ)|لیٛۆدُر]]، [[گۄلٲبؠ (رنٛگ)|گۄلٲبؠ]]، تہِ [[سَفیٖد|سَپھید]]۔ یہِ چھُ عام طور پٲٹھؠ نیٖلؠ رَنٛگُک آسان، مگر یہِ ہیٚکہِ باقے رَنٛگن مَنٛز تہِ مِلِتھ۔ اَمِچ سارِوے کھۄتہِ مَشہوٗر تہِ اعلیٰ قٕسمٕچ زاتھ چھِ کٔشِیرِ ہِنٛدِس پادَر، کشتواڑ علاقَس مَنٛز مِلان، یَتھ '''کٲشُر نیٖلم''' وَنان چھِ۔ == تَصویٖرٕ == <gallery> فَیِل:Sapphire Gem.jpg فَیِل:Sapphire - Voda Shaqen.jpg فَیِل:Logan Sapphire, National Museum of Natural History, Washington DC.jpg فَیِل:Sapphire ring.jpg|نیٖلمٕچ وٲج </gallery> fdipl3xxgqu08157u29hi86seyea0qx 150736 150735 2026-08-29T10:22:52Z آیات محراج 11062 /* */ 150736 wikitext text/x-wiki {{infobox mineral}} '''نیٖلم''' یا '''سیٚفایِر''' ('''Sapphire''') چھُ اکھ قٟمتی تہِ زبردست چمکدار رَتن۔ [[کھانٕز]]: یہِ چھُ کورنڈم [[معدنیات|معدنیاتُک]] اکھ قٕسٕم۔ مضبوٗطی: [[ہیٖرٕ]] پَتہِ چھُ یہِ دُنیاہَس مَنٛز سارِوے کھۄتہِ سَخت تہٕ مَضبوٗط رَتن۔ [[رنٛگ|رَنٛگ]]: [[نیوٗل|نیٛوٗل]]، [[لیۆدُر (رنٛگ)|لیٛۆدُر]]، [[گۄلٲبؠ (رنٛگ)|گۄلٲبؠ]]، تہِ [[سَفیٖد|سَپھید]]۔ یہِ چھُ عام طور پٲٹھؠ نیٖلؠ رَنٛگُک آسان، مگر یہِ ہیٚکہِ باقے رَنٛگن مَنٛز تہِ مِلِتھ۔ اَمِچ سارِوے کھۄتہِ مَشہوٗر تہِ اعلیٰ قٕسمٕچ زاتھ چھِ کٔشِیرِ ہِنٛدِس [[پاڈَر وادی]]، کشتواڑ علاقَس مَنٛز مِلان، یَتھ '''کٲشُر نیٖلم''' وَنان چھِ۔ ==کٔشیٖر مَنٛز== کٔشیٖرِ ہٕنٛدِ نیلم ذخیرٕ چھِ جواہرات صنعتس منٛز مشہوٗر، حالانٛکہِ یِہُنٛد ساروٕے کھۄتہٕ زیٛادٕ پٲداوار سپُد کُنوُہمہِ صٔدی ہِنٛدِس ٲخرس تہٕ وُہمہِ صٔدی کِس شُروٗعاتس منٛز نسبتاً کم وقتَس منٛز۔ یِم ذخیرٕ چھِ ہِنٛدُستانس منٛز جموں و کشمیر کِس جموں خطہٕ کِس [[پاڈَر وادی]] منٛز واقع۔[37] یِمن ہُند رنٛگ چھُ اَکھ پُراسرار تہٕ لگ بھگ نِندرِ ہُند رنٛگ تہٕ یِمن ہُند کینہہ شوقیٖن چھُ "نیوٗل مخمل" وَنان۔ کٔشیٖرِ ہُند اصل چھُ نیلم ہٕندِس قدرس منز معنی خیز کردار ادا کٔرِتھ، تہٕ کٔشیٖرِ ہٕندِس زیادٕ تر کورنڈم چھِ امکہِ خصوٗصی ریشمی شکلہٕ تہٕ غٲر معمولی رنگہٕ سٍتۍ آسٲنی سان پرزناونہٕ یِوان۔[38][37] کُنہِ تہِ قٕسمٕک گاشہٕ سٍتۍ چھُ منفرد نیلم چمکدار باسان یُس اتھ مقابلس منز واگن یا سوٗرِ رنگ باسِتھ۔ سوتھبیز چھُ پوٗرٕ دُنیاہس منز کٔشیٖرِ نیلم ہٕندِس ریکارڈ پھٔٹراوَن والٮ۪ن ہٕنز نگرٲنی کٔرِتھ سارِوٕے کھۄتہٕ برٛونٛہہ۔اکتوبر 2014 منٛز، سوتھیبی ہانگ کانگَن کٔر کٔشیٖرِ نیٖلم خٲطرٕ لگاتار فی قیراط قۭمتُک ریکارڈ حٲصِل- گۄڑٕ 12.00 قیراط کارٹیئر نیلم رِنٛگ 193,975 امریکی ڈالر فی قیراط، پتہٕ 17.16 قیراط نیلم 236,404 امریٖکی ڈالرَس پیٹھ، تہٕ پتہٕ جوٗن 2015 منٛز ییٚلہِ فی قیراط نیلمُک رِکارڈ 240,205 امریٖکی ڈالر قٲیِم آو کرنہٕ۔ وُنکینَس چھُ نیٖلمَس منٛز نیلم فی قیراط عالمی ریکارڈ أکِس رِنٛگَس منٛز کٔشیٖرِ ہُنٛد نیلم تھاوان، یُس اکتوبر 2015 منٛز تقریباً 242,000 امریکی ڈالر فی قیراط (کُل HK$52,280,000، بشمول خٔریٖدارَن ہُنٛد پریمیم، یا 6.74 ملین امریکی ڈالر کھۄتہٕ زیادٕ) کٕننہٕ آو۔ == تَصویٖرٕ == <gallery> فَیِل:Sapphire Gem.jpg فَیِل:Sapphire - Voda Shaqen.jpg فَیِل:Logan Sapphire, National Museum of Natural History, Washington DC.jpg فَیِل:Sapphire ring.jpg|نیٖلمٕچ وٲج </gallery> tcfqn0ctjjb4f6f4im9olaow22ofz3m 150737 150736 2026-08-29T10:24:01Z آیات محراج 11062 150737 wikitext text/x-wiki {{infobox mineral}} '''نیٖلم''' یا '''سیٚفایِر''' ('''Sapphire''') چھُ اکھ قٟمتی تہِ زبردست چمکدار رَتن۔ [[کھانٕز]]: یہِ چھُ کورنڈم [[معدنیات|معدنیاتُک]] اکھ قٕسٕم۔ مضبوٗطی: [[ہیٖرٕ]] پَتہِ چھُ یہِ دُنیاہَس مَنٛز سارِوے کھۄتہِ سَخت تہٕ مَضبوٗط رَتن۔ [[رنٛگ|رَنٛگ]]: [[نیوٗل|نیٛوٗل]]، [[لیۆدُر (رنٛگ)|لیٛۆدُر]]، [[گۄلٲبؠ (رنٛگ)|گۄلٲبؠ]]، تہِ [[سَفیٖد|سَپھید]]۔ یہِ چھُ عام طور پٲٹھؠ نیٖلؠ رَنٛگُک آسان، مگر یہِ ہیٚکہِ باقے رَنٛگن مَنٛز تہِ مِلِتھ۔ اَمِچ سارِوے کھۄتہِ مَشہوٗر تہِ اعلیٰ قٕسمٕچ زاتھ چھِ کٔشِیرِ ہِنٛدِس [[پاڈَر وادی]]، کشتواڑ علاقَس مَنٛز مِلان، یَتھ '''کٲشُر نیٖلم''' وَنان چھِ۔ ==کٔشیٖر مَنٛز== کٔشیٖرِ ہٕنٛدِ نیلم ذخیرٕ چھِ جواہرات صنعتس منٛز مشہوٗر، حالانٛکہِ یِہُنٛد ساروٕے کھۄتہٕ زیٛادٕ پٲداوار سپُد کُنوُہمہِ صٔدی ہِنٛدِس ٲخرس تہٕ وُہمہِ صٔدی کِس شُروٗعاتس منٛز نسبتاً کم وقتَس منٛز۔ یِم ذخیرٕ چھِ ہِنٛدُستانس منٛز جموں و کشمیر کِس جموں خطہٕ کِس [[پاڈَر وادی]] منٛز واقع۔ یِمن ہُند رنٛگ چھُ اَکھ پُراسرار تہٕ لگ بھگ نِندرِ ہُند رنٛگ تہٕ یِمن ہُند کینہہ شوقیٖن چھُ "نیوٗل مخمل" وَنان۔ کٔشیٖرِ ہُند اصل چھُ نیلم ہٕندِس قدرس منز معنی خیز کردار ادا کٔرِتھ، تہٕ کٔشیٖرِ ہٕندِس زیادٕ تر کورنڈم چھِ امکہِ خصوٗصی ریشمی شکلہٕ تہٕ غٲر معمولی رنگہٕ سٍتۍ آسٲنی سان پرزناونہٕ یِوان۔ کُنہِ تہِ قٕسمٕک گاشہٕ سٍتۍ چھُ الگ نیٖلم چمکدار باسان یُس اتھ مقابلس منز واگن یا سوٗرِ رنگ باسِتھ۔ سوتھبیز چھُ پوٗرٕ دُنیاہس منز کٔشیٖرِ نیلم ہٕندِس ریکارڈ پھٔٹراوَن والٮ۪ن ہٕنز نگرٲنی کٔرِتھ سارِوٕے کھۄتہٕ برٛونٛہہ۔ اکتوبر 2014 منٛز، سوتھیبی ہانگ کانگَن کٔر کٔشیٖرِ نیٖلم خٲطرٕ لگاتار فی قیراط قۭمتُک ریکارڈ حٲصِل- گۄڑٕ 12.00 قیراط کارٹیئر نیلم رِنٛگ 193,975 امریکی ڈالر فی قیراط، پتہٕ 17.16 قیراط نیلم 236,404 امریٖکی ڈالرَس پیٹھ، تہٕ پتہٕ جوٗن 2015 منٛز ییٚلہِ فی قیراط نیلمُک رِکارڈ 240,205 امریٖکی ڈالر قٲیِم آو کرنہٕ۔ وُنکینَس چھُ نیٖلمَس منٛز نیلم فی قیراط عالمی ریکارڈ أکِس رِنٛگَس منٛز کٔشیٖرِ ہُنٛد نیلم تھاوان، یُس اکتوبر 2015 منٛز تقریباً 242,000 امریکی ڈالر فی قیراط (کُل HK$52,280,000، بشمول خٔریٖدارَن ہُنٛد پریمیم، یا 6.74 ملین امریکی ڈالر کھۄتہٕ زیادٕ) کٕننہٕ آو۔ == تَصویٖرٕ == <gallery> فَیِل:Sapphire Gem.jpg فَیِل:Sapphire - Voda Shaqen.jpg فَیِل:Logan Sapphire, National Museum of Natural History, Washington DC.jpg فَیِل:Sapphire ring.jpg|نیٖلمٕچ وٲج </gallery> 8phi7qmt028fquz31a1wlxcnz5itzos 150738 150737 2026-08-29T10:24:45Z آیات محراج 11062 150738 wikitext text/x-wiki {{infobox mineral}} '''نیٖلم''' یا '''سیٚفایِر''' ('''Sapphire''') چھُ اکھ قٟمتی تہِ زبردست چمکدار رَتن۔ [[کھانٕز]]: یہِ چھُ کورنڈم [[معدنیات|معدنیاتُک]] اکھ قٕسٕم۔ مضبوٗطی: [[ہیٖرٕ]] پَتہِ چھُ یہِ دُنیاہَس مَنٛز سارِوے کھۄتہِ سَخت تہٕ مَضبوٗط رَتن۔ [[رنٛگ|رَنٛگ]]: [[نیوٗل|نیٛوٗل]]، [[لیۆدُر (رنٛگ)|لیٛۆدُر]]، [[گۄلٲبؠ (رنٛگ)|گۄلٲبؠ]]، تہِ [[سَفیٖد|سَپھید]]۔ یہِ چھُ عام طور پٲٹھؠ نیٖلؠ رَنٛگُک آسان، مگر یہِ ہیٚکہِ باقے رَنٛگن مَنٛز تہِ مِلِتھ۔ اَمِچ سارِوے کھۄتہِ مَشہوٗر تہِ اعلیٰ قٕسمٕچ زاتھ چھِ کٔشِیرِ ہِنٛدِس [[پاڈَر وادی]]، کشتواڑ علاقَس مَنٛز مِلان، یَتھ '''کٲشُر نیٖلم''' وَنان چھِ۔ ==کٔشیٖر مَنٛز== کٔشیٖرِ ہٕنٛدِ نیلم ذخیرٕ چھِ جواہرات صنعتس منٛز مشہوٗر، حالانٛکہِ یِہُنٛد ساروٕے کھۄتہٕ زیٛادٕ پٲداوار سپُد کُنوُہمہِ صٔدی ہِنٛدِس ٲخرس تہٕ وُہمہِ صٔدی کِس شُروٗعاتس منٛز نسبتاً کم وقتَس منٛز۔ یِم ذخیرٕ چھِ ہِنٛدُستانس منٛز جموں و کشمیر کِس جموں خطہٕ کِس [[پاڈَر وادی]] منٛز واقع۔ یِمن ہُند رنٛگ چھُ اَکھ پُراسرار تہٕ لگ بگ نِندرِ ہُند رنٛگ تہٕ یِمن ہُند کینہہ شوقیٖن چھُ "نیٛوٗل مخمل" وَنان۔ کٔشیٖرِ ہُند اصل چھُ نیلم ہٕندِس قدرس منز معنی خیز کردار ادا کٔرِتھ، تہٕ کٔشیٖرِ ہٕندِس زیادٕ تر کورنڈم چھِ امکہِ خصوٗصی ریشمی شکلہٕ تہٕ غٲر معمولی رنگہٕ سٍتۍ آسٲنی سان پرَٛزناونہٕ یِوان۔ کُنہِ تہِ قٕسمٕک گاشہٕ سٍتۍ چھُ الگ نیٖلم چمکدار باسان یُس اتھ مقابلس منز واگن یا سوٗرِ رنگ باسِتھ۔ سوتھبیز چھُ پوٗرٕ دُنیاہس منز کٲشِرؠ نیٖلم ہٕندِس ریکارڈ پھٔٹراوَن والٮ۪ن ہٕنز نگرٲنی کٔرِتھ سارِوٕے کھۄتہٕ برٛونٛہہ۔ اکتوبر 2014 منٛز، سوتھیبی ہانگ کانگَن کٔر کٔشیٖرِ نیٖلم خٲطرٕ لگاتار فی قیراط قۭمتُک ریکارڈ حٲصِل- گۄڑٕ 12.00 قیراط کارٹیئر نیلم رِنٛگ 193,975 امریکی ڈالر فی قیراط، پتہٕ 17.16 قیراط نیلم 236,404 امریٖکی ڈالرَس پیٹھ، تہٕ پتہٕ جوٗن 2015 منٛز ییٚلہِ فی قیراط نیلمُک رِکارڈ 240,205 امریٖکی ڈالر قٲیِم آو کرنہٕ۔ وُنکینَس چھُ نیٖلمَس منٛز نیلم فی قیراط عالمی ریکارڈ أکِس رِنٛگَس منٛز کٔشیٖرِ ہُنٛد نیلم تھاوان، یُس اکتوبر 2015 منٛز تقریباً 242,000 امریکی ڈالر فی قیراط (کُل HK$52,280,000، بشمول خٔریٖدارَن ہُنٛد پریمیم، یا 6.74 ملین امریکی ڈالر کھۄتہٕ زیادٕ) کٕننہٕ آو۔ == تَصویٖرٕ == <gallery> فَیِل:Sapphire Gem.jpg فَیِل:Sapphire - Voda Shaqen.jpg فَیِل:Logan Sapphire, National Museum of Natural History, Washington DC.jpg فَیِل:Sapphire ring.jpg|نیٖلمٕچ وٲج </gallery> 50hbs8daagcqrurx8y91m0s4bp9t3s2 150739 150738 2026-08-29T10:26:05Z آیات محراج 11062 150739 wikitext text/x-wiki {{infobox mineral}} '''نیٖلم''' یا '''سیٚفایِر''' ('''Sapphire''') چھُ اکھ قٟمتی تہِ زبردست چمکدار رَتن۔ [[کھانٕز]]: یہِ چھُ کورنڈم [[معدنیات|معدنیاتُک]] اکھ قٕسٕم۔ مضبوٗطی: [[ہیٖرٕ]] پَتہِ چھُ یہِ دُنیاہَس مَنٛز سارِوے کھۄتہِ سَخت تہٕ مَضبوٗط رَتن۔ [[رنٛگ|رَنٛگ]]: [[نیوٗل|نیٛوٗل]]، [[لیۆدُر (رنٛگ)|لیٛۆدُر]]، [[گۄلٲبؠ (رنٛگ)|گۄلٲبؠ]]، تہِ [[سَفیٖد|سَپھید]]۔ یہِ چھُ عام طور پٲٹھؠ نیٖلؠ رَنٛگُک آسان، مگر یہِ ہیٚکہِ باقے رَنٛگن مَنٛز تہِ مِلِتھ۔ اَمِچ سارِوے کھۄتہِ مَشہوٗر تہِ اعلیٰ قٕسمٕچ زاتھ چھِ کٔشِیرِ ہِنٛدِس [[پاڈَر وادی]]، کشتواڑ علاقَس مَنٛز مِلان، یَتھ '''کٲشُر نیٖلم''' وَنان چھِ۔ ==کٔشیٖر مَنٛز== کٔشیٖرِ ہٕنٛدِ نیلم ذخیرٕ چھِ جواہرات صنعتس منٛز مشہوٗر، حالانٛکہِ یِہُنٛد ساروٕے کھۄتہٕ زیٛادٕ پٲداوار سپُد کُنوُہمہِ صٔدی ہِنٛدِس ٲخرس تہٕ وُہمہِ صٔدی کِس شُروٗعاتس منٛز نسبتاً کم وقتَس منٛز۔ یِم ذخیرٕ چھِ ہِنٛدُستانس منٛز جموں و کشمیر کِس جموں خطہٕ کِس [[پاڈَر وادی]] منٛز واقع۔ یِمن ہُند رنٛگ چھُ اَکھ پُراسرار تہٕ لگ بگ نِندرِ ہُند رنٛگ تہٕ یِمن ہُند کینہہ شوقیٖن چھُ "نیٛوٗل مخمل" وَنان۔ کٔشیٖرِ ہُند اصل چھُ نیلم ہٕندِس قدرس منز معنی خیز کردار ادا کٔرِتھ، تہٕ کٔشیٖرِ ہٕندِس زیادٕ تر کورنڈم چھِ امکہِ خصوٗصی ریشمی شکلہٕ تہٕ غٲر معمولی رنگہٕ سٍتۍ آسٲنی سان پرَٛزناونہٕ یِوان۔ کُنہِ تہِ قٕسمٕک گاشہٕ سٍتۍ چھُ الگ نیٖلم چمکدار باسان یُس اتھ مقابلس منز واگن یا سوٗرِ رنگ باسِتھ۔ سوتھبیز چھُ پوٗرٕ دُنیاہس منز کٲشِرؠ نیٖلم ہٕندِس ریکارڈ پھٔٹراوَن والٮ۪ن ہٕنز نگرٲنی کٔرِتھ سارِوٕے کھۄتہٕ برٛونٛہہ۔ اکتوبر 2014 منٛز، سوتھیبی ہانگ کانگَن کٔر کٔشیٖرِ نیٖلم خٲطرٕ لگاتار فی قیراط قۭمتُک ریکارڈ حٲصِل- گۄڑٕ 12.00 قیراط کارٹیئر نیلم رِنٛگ 193,975 امریکی ڈالر فی قیراط، پتہٕ 17.16 قیراط نیلم 236,404 امریٖکی ڈالرَس پیٹھ، تہٕ پتہٕ جوٗن 2015 منٛز ییٚلہِ فی قیراط نیلمُک رِکارڈ 240,205 امریٖکی ڈالر قٲیِم آو کرنہٕ۔ وُنکینَس چھُ نیٖلمَس منٛز نیلم فی قیراط عالمی ریکارڈ أکِس رِنٛگَس منٛز کٔشیٖرِ ہُنٛد نیلم تھاوان، یُس اکتوبر 2015 منٛز تقریباً 242,000 امریکی ڈالر فی قیراط (کُل HK$52,280,000، بشمول خٔریٖدارَن ہُنٛد پریمیم، یا 6.74 ملین امریکی ڈالر کھۄتہٕ زیادٕ) کٕننہٕ آو۔ == تَصویٖرٕ == <gallery> فَیِل:Sapphire Gem.jpg فَیِل:Sapphire - Voda Shaqen.jpg فَیِل:Logan Sapphire, National Museum of Natural History, Washington DC.jpg فَیِل:Sapphire ring.jpg|نیٖلمٕچ وٲج </gallery> ==حَوالہٕ== bi2h3eqnf6tqim46zgt8dpdbr3cpagb 150740 150739 2026-08-29T10:26:23Z آیات محراج 11062 150740 wikitext text/x-wiki {{infobox mineral}} '''نیٖلم''' یا '''سیٚفایِر''' ('''Sapphire''') چھُ اکھ قٟمتی تہِ زبردست چمکدار رَتن۔ [[کھانٕز]]: یہِ چھُ کورنڈم [[معدنیات|معدنیاتُک]] اکھ قٕسٕم۔ مضبوٗطی: [[ہیٖرٕ]] پَتہِ چھُ یہِ دُنیاہَس مَنٛز سارِوے کھۄتہِ سَخت تہٕ مَضبوٗط رَتن۔ [[رنٛگ|رَنٛگ]]: [[نیوٗل|نیٛوٗل]]، [[لیۆدُر (رنٛگ)|لیٛۆدُر]]، [[گۄلٲبؠ (رنٛگ)|گۄلٲبؠ]]، تہِ [[سَفیٖد|سَپھید]]۔ یہِ چھُ عام طور پٲٹھؠ نیٖلؠ رَنٛگُک آسان، مگر یہِ ہیٚکہِ باقے رَنٛگن مَنٛز تہِ مِلِتھ۔ اَمِچ سارِوے کھۄتہِ مَشہوٗر تہِ اعلیٰ قٕسمٕچ زاتھ چھِ کٔشِیرِ ہِنٛدِس [[پاڈَر وادی]]، کشتواڑ علاقَس مَنٛز مِلان، یَتھ '''کٲشُر نیٖلم''' وَنان چھِ۔ ==کٔشیٖر مَنٛز== کٔشیٖرِ ہٕنٛدِ نیلم ذخیرٕ چھِ جواہرات صنعتس منٛز مشہوٗر، حالانٛکہِ یِہُنٛد ساروٕے کھۄتہٕ زیٛادٕ پٲداوار سپُد کُنوُہمہِ صٔدی ہِنٛدِس ٲخرس تہٕ وُہمہِ صٔدی کِس شُروٗعاتس منٛز نسبتاً کم وقتَس منٛز۔ یِم ذخیرٕ چھِ ہِنٛدُستانس منٛز جموں و کشمیر کِس جموں خطہٕ کِس [[پاڈَر وادی]] منٛز واقع۔ یِمن ہُند رنٛگ چھُ اَکھ پُراسرار تہٕ لگ بگ نِندرِ ہُند رنٛگ تہٕ یِمن ہُند کینہہ شوقیٖن چھُ "نیٛوٗل مخمل" وَنان۔ کٔشیٖرِ ہُند اصل چھُ نیلم ہٕندِس قدرس منز معنی خیز کردار ادا کٔرِتھ، تہٕ کٔشیٖرِ ہٕندِس زیادٕ تر کورنڈم چھِ امکہِ خصوٗصی ریشمی شکلہٕ تہٕ غٲر معمولی رنگہٕ سٍتۍ آسٲنی سان پرَٛزناونہٕ یِوان۔ کُنہِ تہِ قٕسمٕک گاشہٕ سٍتۍ چھُ الگ نیٖلم چمکدار باسان یُس اتھ مقابلس منز واگن یا سوٗرِ رنگ باسِتھ۔ سوتھبیز چھُ پوٗرٕ دُنیاہس منز کٲشِرؠ نیٖلم ہٕندِس ریکارڈ پھٔٹراوَن والٮ۪ن ہٕنز نگرٲنی کٔرِتھ سارِوٕے کھۄتہٕ برٛونٛہہ۔ اکتوبر 2014 منٛز، سوتھیبی ہانگ کانگَن کٔر کٔشیٖرِ نیٖلم خٲطرٕ لگاتار فی قیراط قۭمتُک ریکارڈ حٲصِل- گۄڑٕ 12.00 قیراط کارٹیئر نیلم رِنٛگ 193,975 امریکی ڈالر فی قیراط، پتہٕ 17.16 قیراط نیلم 236,404 امریٖکی ڈالرَس پیٹھ، تہٕ پتہٕ جوٗن 2015 منٛز ییٚلہِ فی قیراط نیلمُک رِکارڈ 240,205 امریٖکی ڈالر قٲیِم آو کرنہٕ۔ وُنکینَس چھُ نیٖلمَس منٛز نیلم فی قیراط عالمی ریکارڈ أکِس رِنٛگَس منٛز کٔشیٖرِ ہُنٛد نیلم تھاوان، یُس اکتوبر 2015 منٛز تقریباً 242,000 امریکی ڈالر فی قیراط (کُل HK$52,280,000، یتھ مَنٛز خٔریٖدارَن ہُنٛد پریمیم، یا 6.74 ملین امریکی ڈالر کھۄتہٕ زیادٕ) کٕننہٕ آو۔ == تَصویٖرٕ == <gallery> فَیِل:Sapphire Gem.jpg فَیِل:Sapphire - Voda Shaqen.jpg فَیِل:Logan Sapphire, National Museum of Natural History, Washington DC.jpg فَیِل:Sapphire ring.jpg|نیٖلمٕچ وٲج </gallery> ==حَوالہٕ== 34qq68niyw7jx09zoxrb533btces666 150742 150740 2026-08-29T10:46:40Z آیات محراج 11062 /* */ 150742 wikitext text/x-wiki {{infobox mineral|imatge=File:Logan Sapphire 10956420 cropped.png}} '''نیٖلم''' یا '''سیٚفایِر''' ('''Sapphire''') چھُ اکھ قٟمتی تہِ زبردست چمکدار رَتن۔ [[کھانٕز]]: یہِ چھُ کورنڈم [[معدنیات|معدنیاتُک]] اکھ قٕسٕم۔ مضبوٗطی: [[ہیٖرٕ]] پَتہِ چھُ یہِ دُنیاہَس مَنٛز سارِوے کھۄتہِ سَخت تہٕ مَضبوٗط رَتن۔ [[رنٛگ|رَنٛگ]]: [[نیوٗل|نیٛوٗل]]، [[لیۆدُر (رنٛگ)|لیٛۆدُر]]، [[گۄلٲبؠ (رنٛگ)|گۄلٲبؠ]]، تہِ [[سَفیٖد|سَپھید]]۔ یہِ چھُ عام طور پٲٹھؠ نیٖلؠ رَنٛگُک آسان، مگر یہِ ہیٚکہِ باقے رَنٛگن مَنٛز تہِ مِلِتھ۔ اَمِچ سارِوے کھۄتہِ مَشہوٗر تہِ اعلیٰ قٕسمٕچ زاتھ چھِ کٔشِیرِ ہِنٛدِس [[پاڈَر وادی]]، کشتواڑ علاقَس مَنٛز مِلان، یَتھ '''کٲشُر نیٖلم''' وَنان چھِ۔ ==کٔشیٖر مَنٛز== کٔشیٖرِ ہٕنٛدِ نیلم ذخیرٕ چھِ جواہرات صنعتس منٛز مشہوٗر، حالانٛکہِ یِہُنٛد ساروٕے کھۄتہٕ زیٛادٕ پٲداوار سپُد کُنوُہمہِ صٔدی ہِنٛدِس ٲخرس تہٕ وُہمہِ صٔدی کِس شُروٗعاتس منٛز نسبتاً کم وقتَس منٛز۔ یِم ذخیرٕ چھِ ہِنٛدُستانس منٛز جموں و کشمیر کِس جموں خطہٕ کِس [[پاڈَر وادی]] منٛز واقع۔ یِمن ہُند رنٛگ چھُ اَکھ پُراسرار تہٕ لگ بگ نِندرِ ہُند رنٛگ تہٕ یِمن ہُند کینہہ شوقیٖن چھُ "نیٛوٗل مخمل" وَنان۔ کٔشیٖرِ ہُند اصل چھُ نیلم ہٕندِس قدرس منز معنی خیز کردار ادا کٔرِتھ، تہٕ کٔشیٖرِ ہٕندِس زیادٕ تر کورنڈم چھِ امکہِ خصوٗصی ریشمی شکلہٕ تہٕ غٲر معمولی رنگہٕ سٍتۍ آسٲنی سان پرَٛزناونہٕ یِوان۔ کُنہِ تہِ قٕسمٕک گاشہٕ سٍتۍ چھُ الگ نیٖلم چمکدار باسان یُس اتھ مقابلس منز واگن یا سوٗرِ رنگ باسِتھ۔ سوتھبیز چھُ پوٗرٕ دُنیاہس منز کٲشِرؠ نیٖلم ہٕندِس ریکارڈ پھٔٹراوَن والٮ۪ن ہٕنز نگرٲنی کٔرِتھ سارِوٕے کھۄتہٕ برٛونٛہہ۔ اکتوبر 2014 منٛز، سوتھیبی ہانگ کانگَن کٔر کٔشیٖرِ نیٖلم خٲطرٕ لگاتار فی قیراط قۭمتُک ریکارڈ حٲصِل- گۄڑٕ 12.00 قیراط کارٹیئر نیلم رِنٛگ 193,975 امریکی ڈالر فی قیراط، پتہٕ 17.16 قیراط نیلم 236,404 امریٖکی ڈالرَس پیٹھ، تہٕ پتہٕ جوٗن 2015 منٛز ییٚلہِ فی قیراط نیلمُک رِکارڈ 240,205 امریٖکی ڈالر قٲیِم آو کرنہٕ۔ وُنکینَس چھُ نیٖلمَس منٛز نیلم فی قیراط عالمی ریکارڈ أکِس رِنٛگَس منٛز کٔشیٖرِ ہُنٛد نیلم تھاوان، یُس اکتوبر 2015 منٛز تقریباً 242,000 امریکی ڈالر فی قیراط (کُل HK$52,280,000، یتھ مَنٛز خٔریٖدارَن ہُنٛد پریمیم، یا 6.74 ملین امریکی ڈالر کھۄتہٕ زیادٕ) کٕننہٕ آو۔ == تَصویٖرٕ == <gallery> فَیِل:Sapphire Gem.jpg فَیِل:Sapphire - Voda Shaqen.jpg فَیِل:Logan Sapphire, National Museum of Natural History, Washington DC.jpg فَیِل:Sapphire ring.jpg|نیٖلمٕچ وٲج </gallery> ==حَوالہٕ== iloyqgefgo3ijnz8p1v921gmhchv0g9 سیٚفایِر 0 32540 150741 2026-08-29T10:26:43Z آیات محراج 11062 رَجوٗع مُکَرر تَخلیٖق کَران 150741 wikitext text/x-wiki #REDIRECT [[نیٖلم]] 9hv307es9hi70ysjtmr1meis0q69sgq