ವಿಕಿಪೀಡಿಯ tcywiki https://tcy.wikipedia.org/wiki/%E0%B2%AE%E0%B3%81%E0%B2%96%E0%B3%8D%E0%B2%AF_%E0%B2%AA%E0%B3%81%E0%B2%9F MediaWiki 1.47.0-wmf.10 first-letter ಮಾದ್ಯಮೊ ವಿಸೇಸೊ ಪಾತೆರ ಬಳಕೆದಾರೆ ಬಳಕೆದಾರೆ ಪಾತೆರ ವಿಕಿಪೀಡಿಯ ವಿಕಿಪೀಡಿಯ ಪಾತೆರ ಫೈಲ್ ಫೈಲ್ ಪಾತೆರ ಮಾದ್ಯಮೊವಿಕಿ ಮಾದ್ಯಮೊವಿಕಿ ಪಾತೆರ ಟೆಂಪ್ಲೇಟ್ ಟೆಂಪ್ಲೇಟ್ ಪಾತೆರ ಸಕಾಯೊ ಸಕಾಯೊ ಪಾತೆರ ವರ್ಗೊ ವರ್ಗೊ ಪಾತೆರ ತಡ್ಯ ತಡ್ಯ ಪಾತೆರ ಕರಡು ಕರಡು ಪಾತೆರ TimedText TimedText talk ಮೋಡ್ಯೂಲ್ ಮೋಡ್ಯೂಲ್ ಪಾತೆರ Event Event talk ಮಾದ್ಯಮೊವಿಕಿ:Sitenotice 8 6544 362618 361098 2026-07-09T15:47:31Z ChiK 1136 /* */ 362618 wikitext text/x-wiki <div style="background: linear-gradient(135deg, #fff5f8 0%, #ffe3ec 100%); color: #60001f; border: 1px solid #d4a3b3; border-left: 6px solid #800000; border-radius: 12px; padding: 1.2em; margin: 1em 0; box-shadow: 0 2px 8px rgba(0,0,0,0.05); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5em;"> <div style="flex: 0 1 auto; text-align: center;">[[File:Tulu Wikipedia 10 short lockup logo.svg|70px|link=ವಿಕಿಪೀಡಿಯ:10ನೇ ವರ್ಸಂತಿಗೆದ ಬರವು ಪಂತೊ]]</div> [[ವಿಕಿಪೀಡಿಯ:10ನೇ ವರ್ಸಂತಿಗೆದ ಬರವು ಪಂತೊ|<div style="flex: 1 1 450px; text-align: center;"><div style="font-size: 1.05em; color: #4a0013; line-height: 1.4;">ವಿಕಿಪೀಡಿಯ 10ನೇ ವರ್ಸಂತಿಗೆದ ಬರವು ಪಂತೊ ಜೂನ್ ೦೫ ಡ್ದ್ ಅಗೊಸ್ಟ್ ೦೪ ಮುಟ್ಟ ನಡತೊಂಡ್. <span style="background: #ffb7ce; padding: 0.1em 0.4em; border-radius: 4px; font-weight: bold; color: #500014;">ಗೇನೊನ್ ಪಟ್ಟ್‌‍ದ್ ಇನಾಮ್ ಗೆಂದ್‌ಲೆ!]] </div></div></div> b214d7nm33su86j4nwjaj1glj4mqm5h ಮೋಡ್ಯೂಲ್:Params 828 18080 362619 362039 2026-07-09T20:02:10Z Grufo 6930 [[:mw:Module:Params|Upstream]] updates 362619 Scribunto text/plain require[[strict]] --- --- --- PRIVATE ENVIRONMENT --- --- ________________________________ --- --- --- --[[ Abstract utilities ]]-- ---------------------------- -- Helper function for `string.gsub()` (for managing zero-padded numbers) local function zero_padded (str) return ('%03d%s'):format(#str, str) end -- Helper function for `table.sort()` (for natural sorting) local function natural_sort (var1, var2) return var1:gsub('%d+', zero_padded) < var2:gsub('%d+', zero_padded) end -- Return a copy or a reference to a table local function copy_or_ref_table (src, refonly) if refonly then return src end local newtab = {} for key, val in pairs(src) do newtab[key] = val end return newtab end -- Remove some numeric elements from a table, shifting everything to the left local function remove_numeric_keys (tbl, idx, len) local cache, tmp = {}, idx + len - 1 for key, val in pairs(tbl) do if type(key) == 'number' and key >= idx then if key > tmp then cache[key - len] = val end tbl[key] = nil end end for key, val in pairs(cache) do tbl[key] = val end end -- Make a reduced copy of a table (shifting in both directions if necessary) local function copy_table_reduced (tbl, idx, len) local ret, tmp = {}, idx + len - 1 if idx > 0 then for key, val in pairs(tbl) do if type(key) ~= 'number' or key < idx then ret[key] = val elseif key > tmp then ret[key - len] = val end end elseif tmp > 0 then local nshift = 1 - idx for key, val in pairs(tbl) do if type(key) ~= 'number' then ret[key] = val elseif key > tmp then ret[key - tmp] = val elseif key < idx then ret[key + nshift] = val end end else for key, val in pairs(tbl) do if type(key) ~= 'number' or key > tmp then ret[key] = val elseif key < idx then ret[key + len] = val end end end return ret end -- Make an expanded copy of a table (shifting in both directions if necessary) local function copy_table_expanded (tbl, idx, len) local ret, tmp = {}, idx + len - 1 if idx > 0 then for key, val in pairs(tbl) do if type(key) ~= 'number' or key < idx then ret[key] = val else ret[key + len] = val end end elseif tmp > 0 then local nshift = idx - 1 for key, val in pairs(tbl) do if type(key) ~= 'number' then ret[key] = val elseif key > 0 then ret[key + tmp] = val elseif key < 1 then ret[key + nshift] = val end end else for key, val in pairs(tbl) do if type(key) ~= 'number' or key > tmp then ret[key] = val else ret[key - len] = val end end end return ret end -- Given a table, create two new tables containing the sorted list of keys local function get_key_list_sorted (tbl, sort_fn) local nums, words, nn, nw = {}, {}, 0, 0 for key, val in pairs(tbl) do if type(key) == 'number' then nn = nn + 1 nums[nn] = key else nw = nw + 1 words[nw] = key end end table.sort(nums) table.sort(words, sort_fn) return nums, words, nn, nw end -- Parse a parameter name string and return it as a string or a number local function get_parameter_name (par_str) local ret = par_str:match'^%s*(.-)%s*$' if ret ~= '0' and ret:find'^%-?[1-9]%d*$' == nil then return ret end return tonumber(ret) end -- Move a key from a table to another, but only if under a different name and -- always parsing numeric strings as numbers local function steal_if_renamed (val, src, skey, dest, dkey) local realkey = get_parameter_name(dkey) if skey ~= realkey then dest[realkey] = val src[skey] = nil end end --[[ Public strings ]]-- ------------------------ -- Special match keywords (functions and modifiers MUST avoid these names) local mkeywords = { ['or'] = 0, pattern = 1, plain = 2, strict = 3 } -- Sort functions (functions and modifiers MUST avoid these names) local sortfunctions = { alphabetically = false, naturally = natural_sort } -- Callback styles for the `mapping_*` and `renaming_*` class of modifiers -- (functions and modifiers MUST avoid these names) --[[ Meanings of the columns: col[1] = Loop type (0-3) col[2] = Number of module arguments that the style requires (1-3) col[3] = Minimum number of sequential parameters passed to the callback col[4] = Name of the callback parameter where to place each parameter name col[5] = Name of the callback parameter where to place each parameter value col[6] = Argument in the modifier's invocation that will override `col[4]` col[7] = Argument in the modifier's invocation that will override `col[5]` A value of `-1` indicates that no meaningful value is stored (i.e. `nil`) ]]-- local mapping_styles = { names_and_values = { 3, 2, 2, 1, 2, -1, -1 }, values_and_names = { 3, 2, 2, 2, 1, -1, -1 }, values_only = { 1, 2, 1, -1, 1, -1, -1 }, names_only = { 2, 2, 1, 1, -1, -1, -1 }, names_and_values_as = { 3, 4, 0, -1, -1, 2, 3 }, names_only_as = { 2, 3, 0, -1, -1, 2, -1 }, values_only_as = { 1, 3, 0, -1, -1, -1, 2 }, blindly = { 0, 2, 0, -1, -1, -1, -1 } } -- Memory slots (functions and modifiers MUST avoid these names) local memoryslots = { h = 'header', f = 'footer', i = 'itersep', l = 'lastsep', n = 'ifngiven', p = 'pairsep', s = 'oxfordsep' } -- Possible trimming modes for the `parsing` modifier local trim_parse_opts = { trim_none = { false, false }, trim_positional = { false, true }, trim_named = { true, false }, trim_all = { true, true } } -- Possible string modes for the iteration separator in the `parsing` and -- `reinterpreting` modifiers local isep_parse_opts = { splitter_pattern = false, splitter_string = true } -- Possible string modes for the key-value separator in the `parsing` and -- `reinterpreting` modifiers local psep_parse_opts = { setter_pattern = false, setter_string = true } -- Possible position references for the `splicing` modifier local position_references = { add_nothing = 0, add_smallest_number = 1, add_last_of_sequence = 2, add_largest_number = 3 } -- Functions and modifiers MUST avoid these names too: `let`, `here`, -- `in_substack`, `without_sorting` --[[ Private constants ]]-- --------------------------- -- Hard-coded name of the module (to avoid going through `frame:getTitle()`) local modulename = 'Module:Params' -- The functions listed here declare that they don't need the `frame.args` -- metatable to be copied into a regular table; if they are modifiers they also -- guarantee that they will make their own (modified) copy available local refpipe = { call_for_each_group = true, --coins = true, count = true, evaluating = true, for_each = true, list = true, list_values = true, list_maybe_with_names = true, value_of = true } -- The functions listed here declare that they don't need the -- `frame:getParent().args` metatable to be copied into a regular table; if -- they are modifiers they also guarantee that they will make their own -- (modified) copy available local refparams = { call_for_each_group = true, combining = true, combining_by_calling = true, combining_values = true, concat_and_call = true, concat_and_invoke = true, concat_and_magic = true, count = true, grouping_by_calling = true, mixing_names_and_values = true, renaming_by_mixing = true, renaming_to_sequence = true, renaming_to_uppercase = true, renaming_to_lowercase = true, --renaming_to_values = true, shifting = true, splicing = true, --swapping_names_and_values = true, value_of = true, with_name_matching = true } -- Maximum number of numeric parameters that can be filled, if missing (we -- chose an arbitrary number for this constant; you can discuss about its -- optimal value at Module talk:Params) local maxfill = 1024 -- The private table of functions local library = {} -- Functions and modifiers that can only be invoked in first position local static_iface = {} --[[ Private functions ]]-- --------------------------- -- Create a new context local function context_new (child_frame) local ctx = {} ctx.frame = child_frame:getParent() ctx.opipe = child_frame.args ctx.oparams = ctx.frame.args ctx.firstposonly = static_iface ctx.iterfunc = pairs ctx.sorttype = 0 ctx.n_parents = 0 ctx.n_children = 0 ctx.n_available = maxfill return ctx end -- Move to the next action within the user-given list local function context_iterate (ctx, n_forward) local nextfn if ctx.pipe[n_forward] ~= nil then nextfn = ctx.pipe[n_forward]:match'^%s*(.*%S)' end if nextfn == nil then error(modulename .. ': You must specify a function to call', 0) end if library[nextfn] == nil then if ctx.firstposonly[nextfn] == nil then error(modulename .. ': The function ‘' .. nextfn .. '’ does not exist', 0) else error(modulename .. ': The ‘' .. nextfn .. '’ directive can only appear in first position', 0) end end remove_numeric_keys(ctx.pipe, 1, n_forward) return library[nextfn] end -- Main loop local function main_loop (ctx, start_with) local fn = start_with repeat fn = fn(ctx) until not fn if ctx.n_parents > 0 then error(modulename .. ': One or more ‘merging_substack’ directives are missing', 0) end if ctx.n_children > 0 then error(modulename .. ', For some of the snapshots either the ‘flushing’ directive is missing or a group has not been properly closed with ‘merging_substack’', 0) end end -- Load a `setting`-like directive string into the `dest` table local function set_strings (dest, opts, start_from) local cmd if opts[start_from] == nil then return start_from - 1 end cmd = opts[start_from]:gsub('%s+', ''):gsub('/+', '/') :match'^/*(.*[^/])' if cmd == nil then return start_from end local amap, sep, argc = {}, string.byte('/'), start_from + 1 local vname local chr for idx = 1, #cmd do chr = cmd:byte(idx) if chr == sep then for key, val in ipairs(amap) do dest[val] = opts[argc] amap[key] = nil end argc = argc + 1 else vname = memoryslots[string.char(chr)] if vname == nil then error(modulename .. ', ‘setting’: Unknown slot ‘' .. string.char(chr) .. '’', 0) end table.insert(amap, vname) end end for key, val in ipairs(amap) do dest[val] = opts[argc] end return argc end -- Add a new stack of parameters to `ctx.children` local function new_substack (ctx) local newparams = {} local currsnap = ctx.n_children + 1 if ctx.children == nil then ctx.children = { newparams } else ctx.children[currsnap] = newparams end ctx.n_children = currsnap return newparams end -- Parse a raw argument containing a `sortfunctions` directive, or -- `'without_sorting'`, or `nil` local function load_sort_opt (raw_arg) if raw_arg == nil then return nil, 1, false end local tmp = raw_arg:match'^%s*(.-)%s*$' if tmp == 'without_sorting' then return nil, 2, false end tmp = sortfunctions[tmp] if tmp == nil then return nil, 1, false end return tmp or nil, 2, true end -- Parse optional user arguments of type `...|[let]|[...][number of additional -- parameters]|[parameter 1]|[parameter 2]|[...]` local function load_child_opts (src, start_from, append_after) local tbl, pin = {}, start_from local tnamed while src[pin] ~= nil and src[pin]:match'^%s*let%s*$' and src[pin + 1] ~= nil and src[pin + 2] ~= nil do tbl[get_parameter_name(src[pin + 1])] = src[pin + 2] pin = pin + 3 end if pin ~= start_from then tnamed, tbl = tbl, {} end local tmp = tonumber(src[pin]) if tmp ~= nil and math.floor(tmp) == tmp then if tmp < 0 then tmp = -1 end local shf = append_after - pin for idx = pin + 1, pin + tmp do tbl[idx + shf] = src[idx] end pin = pin + tmp + 1 end if tnamed ~= nil then for key, val in pairs(tnamed) do tbl[key] = val end end return tbl, pin end -- Load the optional arguments of some of the `mapping_*` and `renaming_*` -- class of modifiers local function load_callback_opts (src, n_skip, default_style) local style local shf local tmp = src[n_skip + 1] if tmp ~= nil then style = mapping_styles[tmp:match'^%s*(.-)%s*$'] end if style == nil then style, shf = default_style, n_skip - 1 else shf = n_skip end local n_exist, karg, varg = style[3], style[4], style[5] tmp = style[6] if tmp > -1 then karg = src[tmp + shf]:match'^%s*(.-)%s*$' if karg == '0' or karg:find'^%-?[1-9]%d*$' ~= nil then karg = tonumber(karg) n_exist = math.max(n_exist, karg) end end tmp = style[7] if tmp > -1 then varg = src[tmp + shf]:match'^%s*(.-)%s*$' if varg == '0' or varg:find'^%-?[1-9]%d*$' ~= nil then varg = tonumber(varg) n_exist = math.max(n_exist, varg) end end local dest, nargs = load_child_opts(src, style[2] + shf, n_exist) tmp = style[1] if (tmp == 3 or tmp == 2) and dest[karg] ~= nil then tmp = tmp - 2 end if (tmp == 3 or tmp == 1) and dest[varg] ~= nil then tmp = tmp - 1 end return dest, nargs, tmp, karg, varg end -- Parse the arguments of some of the `mapping_*` and `renaming_*` class of -- modifiers local function load_replace_args (opts, whoami) if opts[1] == nil then error(modulename .. ', ‘' .. whoami .. '’: No pattern string was given', 0) end if opts[2] == nil then error(modulename .. ', ‘' .. whoami .. '’: No replacement string was given', 0) end local ptn, repl, nmax, argc = opts[1], opts[2], tonumber(opts[3]), 3 if nmax ~= nil or (opts[3] or ''):match'^%s*$' ~= nil then argc = 4 end local flg = opts[argc] if flg ~= nil then flg = mkeywords[flg:match'^%s*(.-)%s*$'] end if flg == 0 then flg = nil elseif flg ~= nil then argc = argc + 1 end return ptn, repl, nmax, flg, argc, (nmax ~= nil and nmax < 1) or (flg == 3 and ptn == repl) end -- Parse the arguments of the `with_*_matching` class of modifiers local function load_pattern_args (opts, whoami) local ptns, state, nptns, cnt = {}, 0, 0, 1 local keyw for _, val in ipairs(opts) do if state == 0 then nptns, state = nptns + 1, -1 ptns[nptns] = { val, false, false } else keyw = val:match'^%s*(.*%S)' if keyw == nil or mkeywords[keyw] == nil or ( state > 0 and mkeywords[keyw] > 0 ) then break else state = mkeywords[keyw] if state > 1 then ptns[nptns][2] = true end if state == 3 then ptns[nptns][3] = true end end end cnt = cnt + 1 end if state == 0 then error(modulename .. ', ‘' .. whoami .. '’: No pattern was given', 0) end return ptns, nptns, cnt end -- Load the optional arguments of the `parsing`, `reinterpreting` and -- `evaluating` modifiers local function load_parse_opts (opts, start_from, isp, psp) local tmp local optslots, noptslots, argc = { true, true, true }, 3, start_from local trimn, trimu, iplain, pplain = true, false, true, true repeat noptslots, tmp = noptslots - 1, opts[argc] if tmp == nil then break end tmp = tmp:match'^%s*(.-)%s*$' if optslots[1] ~= nil and trim_parse_opts[tmp] ~= nil then tmp = trim_parse_opts[tmp] trimn, trimu = tmp[1], tmp[2] optslots[1] = nil elseif optslots[2] ~= nil and isep_parse_opts[tmp] ~= nil then argc = argc + 1 iplain, isp = isep_parse_opts[tmp], opts[argc] optslots[2] = nil elseif optslots[3] ~= nil and psep_parse_opts[tmp] ~= nil then argc = argc + 1 pplain, psp = psep_parse_opts[tmp], opts[argc] optslots[3] = nil else break end argc = argc + 1 until noptslots < 1 return isp, iplain, psp, pplain, trimn, trimu, argc end -- Map parameters' values using a custom callback and a referenced table local value_maps = { [0] = function (tbl, margs, karg, varg, fn) for key in pairs(tbl) do tbl[key] = fn() end end, [1] = function (tbl, margs, karg, varg, fn) for key, val in pairs(tbl) do margs[varg] = val tbl[key] = fn() end end, [2] = function (tbl, margs, karg, varg, fn) for key in pairs(tbl) do margs[karg] = key tbl[key] = fn() end end, [3] = function (tbl, margs, karg, varg, fn) for key, val in pairs(tbl) do margs[karg] = key margs[varg] = val tbl[key] = fn() end end } -- Private table for `map_names()` local name_thieves = { [0] = function (cache, tbl, rargs, karg, varg, fn) for key, val in pairs(tbl) do steal_if_renamed(val, tbl, key, cache, fn()) end end, [1] = function (cache, tbl, rargs, karg, varg, fn) for key, val in pairs(tbl) do rargs[varg] = val steal_if_renamed(val, tbl, key, cache, fn()) end end, [2] = function (cache, tbl, rargs, karg, varg, fn) for key, val in pairs(tbl) do rargs[karg] = key steal_if_renamed(val, tbl, key, cache, fn()) end end, [3] = function (cache, tbl, rargs, karg, varg, fn) for key, val in pairs(tbl) do rargs[karg] = key rargs[varg] = val steal_if_renamed(val, tbl, key, cache, fn()) end end } -- Map parameters' names using a custom callback and a referenced table local function map_names (tbl, rargs, karg, varg, looptype, fn) local cache = {} name_thieves[looptype](cache, tbl, rargs, karg, varg, fn) for key, val in pairs(cache) do tbl[key] = val end end -- Return a new table that contains `src` regrouped according to the numeric -- suffixes in its keys local function make_groups (src) -- NOTE: `src` might be the original metatable! local prefix local gid local groups = {} for key, val in pairs(src) do -- `key` must only be a string or a number... if type(key) == 'string' then prefix, gid = key:match'^%s*(.-)%s*(%-?%d*)%s*$' gid = tonumber(gid) or '' else prefix = '' gid = key end if groups[gid] == nil then groups[gid] = {} end if prefix == '0' or prefix:find'^%-?[1-9]%d*$' ~= nil then prefix = tonumber(prefix) if prefix < 1 then prefix = prefix - 1 end end groups[gid][prefix] = val end return groups end -- Split into parts a string containing the `$#` and `$@` placeholders and -- return the information as a skeleton table, a canvas table and a length local function parse_placeholder_string (target) local skel = {} local canvas = {} local idx = 1 local s_pos = 1 local e_pos = string.find(target, '%$[@#]', 1, false) while e_pos ~= nil do canvas[idx] = target:sub(s_pos, e_pos - 1) skel[idx + 1] = target:sub(e_pos, e_pos + 1) == '$@' idx = idx + 2 s_pos = e_pos + 2 e_pos = string.find(target, '%$[@#]', s_pos, false) end if (s_pos > target:len()) then idx = idx - 1 else canvas[idx] = target:sub(s_pos) end return skel, canvas, idx end -- Populate a table by parsing a parameter string (heavy lifting for `parsing`, -- `reinterpreting` and `evaluating`) local function parse_parameter_string (tbl, str, isp, ipl, psp, ppl, trn, tru) local key local val local spos1 local spos2 local pos1 local pos2 local pos3 = 0 local idx = 1 local lenplone = #str + 1 if isp == nil or isp == '' then if psp == nil or psp == '' then if tru then tbl[idx] = str:match'^%s*(.-)%s*$' else tbl[idx] = str end return idx end spos1, spos2 = str:find(psp, 1, ppl) if spos1 == nil then key = idx if tru then val = str:match'^%s*(.-)%s*$' else val = str end idx = idx + 1 else key = get_parameter_name(str:sub(1, spos1 - 1)) val = str:sub(spos2 + 1) if trn then val = val:match'^%s*(.-)%s*$' end end tbl[key] = val return idx end if psp == nil or psp == '' then repeat pos1 = pos3 + 1 pos2, pos3 = str:find(isp, pos1, ipl) val = str:sub(pos1, (pos2 or lenplone) - 1) if tru then val = val:match'^%s*(.-)%s*$' end tbl[idx] = val idx = idx + 1 until pos2 == nil return idx end repeat pos1 = pos3 + 1 pos2, pos3 = str:find(isp, pos1, ipl) val = str:sub(pos1, (pos2 or lenplone) - 1) spos1, spos2 = val:find(psp, 1, ppl) if spos1 == nil then key = idx if tru then val = val:match'^%s*(.-)%s*$' end idx = idx + 1 else key = get_parameter_name(val:sub(1, spos1 - 1)) val = val:sub(spos2 + 1) if trn then val = val:match'^%s*(.-)%s*$' end end tbl[key] = val until pos2 == nil return idx end -- Heavy lifting for `combining` and `combining_values` local function combine_parameters (ctx, keyval_fn, whoami) -- NOTE: `ctx.params` might be the original metatable! This function -- MUST create a copy of it before returning local opts = ctx.pipe if ctx.pipe[1] == nil then error(modulename .. ', ‘' .. whoami .. '’: No parameter name was provided', 0) end local tbl = ctx.params local vars = {} local sortfn, tmp, do_sort = load_sort_opt(opts[2]) local argc = set_strings(vars, opts, tmp + 1) if argc < tmp then error(modulename .. ', ‘' .. whoami .. '’: No setting directive was given', 0) end if next(tbl) == nil then if vars.ifngiven ~= nil then ctx.params = { [get_parameter_name(ctx.pipe[1])] = vars.ifngiven } elseif tbl == ctx.oparams then ctx.params = {} end return argc end local cache local len if do_sort then local words cache, words, len, tmp = get_key_list_sorted(tbl, sortfn) for idx = 1, tmp do cache[len + idx] = words[idx] end len = len + tmp else cache = {} len = 0 for key in pairs(tbl) do len = len + 1 cache[len] = key end end local pmap, nss, kvs, pps = {}, 0, vars.pairsep or '', vars.itersep or '' for idx = 1, len do tmp = cache[idx] pmap[nss + 1] = pps pmap[nss + 2] = keyval_fn(tmp, tbl[tmp], kvs) nss = nss + 2 end tmp = vars.oxfordsep or vars.lastsep if tmp ~= nil and nss > 4 then pmap[nss - 1] = tmp elseif nss > 2 and vars.lastsep ~= nil then pmap[nss - 1] = vars.lastsep end pmap[1] = vars.header or '' if vars.footer ~= nil then pmap[nss + 1] = vars.footer end ctx.params = { [get_parameter_name(ctx.pipe[1])] = table.concat(pmap) } return argc end -- Concatenate the numeric keys from the table of parameters to the numeric -- keys from the table of options; non-numeric keys from the table of options -- will prevail over colliding non-numeric keys from the table of parameters local function concat_params (ctx) local retval, tbl, nmax = {}, ctx.params, table.maxn(ctx.pipe) if ctx.subset == 1 then -- We need only the sequence for key, val in ipairs(tbl) do retval[key + nmax] = val end else if ctx.subset == -1 then for key in ipairs(tbl) do tbl[key] = nil end end for key, val in pairs(tbl) do if type(key) == 'number' and key > 0 then retval[key + nmax] = val else retval[key] = val end end end for key, val in pairs(ctx.pipe) do retval[key] = val end return retval end -- Flush the parameters by calling a custom function for each value (after this -- function has been invoked `ctx.params` will be no longer usable) local function flush_params (ctx, fn) local tbl = ctx.params if ctx.subset == 1 then for key, val in ipairs(tbl) do fn(key, val) end return end if ctx.subset == -1 then for key, val in ipairs(tbl) do tbl[key] = nil end end if ctx.sorttype > 0 then local nums, words, nn, nw = get_key_list_sorted(tbl, natural_sort) if ctx.sorttype == 2 then for idx = 1, nw do fn(words[idx], tbl[words[idx]]) end for idx = 1, nn do fn(nums[idx], tbl[nums[idx]]) end return end for idx = 1, nn do fn(nums[idx], tbl[nums[idx]]) end for idx = 1, nw do fn(words[idx], tbl[words[idx]]) end return end if ctx.subset ~= -1 then for key, val in ipairs(tbl) do fn(key, val) tbl[key] = nil end end for key, val in pairs(tbl) do fn(key, val) end end -- Flush the parameters by calling one of two custom functions for each value -- (after this function has been invoked `ctx.params` will be no longer usable) local function mixed_flush_params (ctx, fn_seq, fn_oth) if ctx.subset == 1 then for key, val in ipairs(ctx.params) do fn_seq(key, val) end return end if ctx.subset == -1 then flush_params(ctx, fn_oth) return end local tbl = ctx.params if ctx.sorttype > 0 then local nums, words, nn, nw = get_key_list_sorted(tbl, natural_sort) local sequence = {} for key, val in ipairs(tbl) do sequence[key] = val end if ctx.sorttype == 2 then for idx = 1, nw do fn_oth(words[idx], tbl[words[idx]]) end end for idx = 1, nn do if sequence[nums[idx]] then fn_seq(nums[idx], sequence[nums[idx]]) else fn_oth(nums[idx], tbl[nums[idx]]) end end if ctx.sorttype ~= 2 then for idx = 1, nw do fn_oth(words[idx], tbl[words[idx]]) end end return end for key, val in ipairs(tbl) do fn_seq(key, val) tbl[key] = nil end for key, val in pairs(tbl) do fn_oth(key, val) end end -- Finalize and return a concatenated list local function finalize_and_return_concatenated_list (ctx, lst, len, modsize) if len > 0 then local tmp = ctx.oxfordsep or ctx.lastsep if tmp ~= nil and len > modsize * 2 then lst[len - modsize + 1] = tmp elseif len > modsize and ctx.lastsep ~= nil then lst[len - modsize + 1] = ctx.lastsep end lst[1] = ctx.header or '' if ctx.footer ~= nil then lst[len + 1] = ctx.footer end ctx.text = table.concat(lst) else ctx.text = ctx.ifngiven or '' end end --- --- --- PUBLIC ENVIRONMENT --- --- ________________________________ --- --- --- --[[ Modifiers ]]-- ------------------- -- Syntax: #invoke:params|sequential|pipe to library.sequential = function (ctx) if ctx.subset == 1 then error(modulename .. ': The ‘sequential’ directive has been provided more than once', 0) end if ctx.subset == -1 then error(modulename .. ': The two directives ‘non-sequential’ and ‘sequential’ are in contradiction with each other', 0) end if ctx.sorttype > 0 then error(modulename .. ': The ‘all_sorted’ and ‘reassorted’ directives are redundant when followed by ‘sequential’', 0) end ctx.iterfunc = ipairs ctx.subset = 1 return context_iterate(ctx, 1) end -- Syntax: #invoke:params|non-sequential|pipe to library['non-sequential'] = function (ctx) if ctx.subset == -1 then error(modulename .. ': The ‘non-sequential’ directive has been provided more than once', 0) end if ctx.subset == 1 then error(modulename .. ': The two directives ‘sequential’ and ‘non-sequential’ are in contradiction with each other', 0) end ctx.iterfunc = pairs ctx.subset = -1 return context_iterate(ctx, 1) end -- Syntax: #invoke:params|all_sorted|pipe to library.all_sorted = function (ctx) if ctx.sorttype == 1 then error(modulename .. ': The ‘all_sorted’ directive has been provided more than once', 0) end if ctx.subset == 1 then error(modulename .. ': The ‘all_sorted’ directive is redundant after ‘sequential’', 0) end if ctx.sorttype == 2 then error(modulename .. ': The two directives ‘reassorted’ and ‘sequential’ are in contradiction with each other', 0) end ctx.sorttype = 1 return context_iterate(ctx, 1) end -- Syntax: #invoke:params|reassorted|pipe to library.reassorted = function (ctx) if ctx.sorttype == 2 then error(modulename .. ': The ‘reassorted’ directive has been provided more than once', 0) end if ctx.subset == 1 then error(modulename .. ': The ‘reassorted’ directive is redundant after ‘sequential’', 0) end if ctx.sorttype == 1 then error(modulename .. ': The two directives ‘sequential’ and ‘reassorted’ are in contradiction with each other', 0) end ctx.sorttype = 2 return context_iterate(ctx, 1) end -- Syntax: #invoke:params|setting|directives|...|pipe to library.setting = function (ctx) local argc = set_strings(ctx, ctx.pipe, 1) if argc < 2 then error(modulename .. ', ‘setting’: No directive was given', 0) end return context_iterate(ctx, argc + 1) end -- Syntax: #invoke:params|scoring|new parameter name|[container]|pipe to library.scoring = function (ctx) if ctx.pipe[1] == nil then error(modulename .. ', ‘scoring’: No parameter name was provided', 0) end local tmp local retval, opts = 0, ctx.pipe for _ in pairs(ctx.params) do retval = retval + 1 end if opts[2] ~= nil then tmp = opts[2]:match'^%s*(.*%S)' end if tmp == 'here' then ctx.params[get_parameter_name(opts[1])] = tostring(retval) return context_iterate(ctx, 3) end new_substack(ctx)[get_parameter_name(opts[1])] = tostring(retval) return context_iterate(ctx, tmp == 'in_substack' and 3 or 2) end -- Syntax: #invoke:params|squeezing|pipe to library.squeezing = function (ctx) local store, indices, tbl, newlen = {}, {}, ctx.params, 0 for key, val in pairs(tbl) do if type(key) == 'number' then newlen = newlen + 1 indices[newlen] = key store[key] = val tbl[key] = nil end end table.sort(indices) for idx = 1, newlen do tbl[idx] = store[indices[idx]] end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|filling_the_gaps|pipe to library.filling_the_gaps = function (ctx) local tbl, tmp, nmin, nmax, nnums = ctx.params, {}, 1, nil, -1 for key, val in pairs(tbl) do if type(key) == 'number' then if nmax == nil then if key < nmin then nmin = key end nmax = key elseif key > nmax then nmax = key elseif key < nmin then nmin = key end nnums = nnums + 1 tmp[key] = val end end if nmax ~= nil and nmax - nmin > nnums then ctx.n_available = ctx.n_available + nmin + nnums - nmax if ctx.n_available < 0 then error(modulename .. ', ‘filling_the_gaps’: It is possible to fill at most ' .. tostring(maxfill) .. ' parameters', 0) end for idx = nmin, nmax, 1 do tbl[idx] = '' end for key, val in pairs(tmp) do tbl[key] = val end end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|clearing|pipe to library.clearing = function (ctx) local tbl = ctx.params local numerics = {} for key, val in pairs(tbl) do if type(key) == 'number' then numerics[key] = val tbl[key] = nil end end for key, val in ipairs(numerics) do tbl[key] = val end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|cutting|left cut|right cut|pipe to library.cutting = function (ctx) local lcut = tonumber(ctx.pipe[1]) if lcut == nil or math.floor(lcut) ~= lcut then error(modulename .. ', ‘cutting’: Left cut must be an integer number', 0) end local rcut = tonumber(ctx.pipe[2]) if rcut == nil or math.floor(rcut) ~= rcut then error(modulename .. ', ‘cutting’: Right cut must be an integer number', 0) end local tbl = ctx.params local len = #tbl if lcut < 0 then lcut = len + lcut end if rcut < 0 then rcut = len + rcut end local tot = lcut + rcut if tot > 0 then local cache = {} if tot >= len then for key in ipairs(tbl) do tbl[key] = nil end tot = len else for idx = len - rcut + 1, len, 1 do tbl[idx] = nil end for idx = 1, lcut, 1 do tbl[idx] = nil end end for key, val in pairs(tbl) do if type(key) == 'number' and key > 0 then if key > len then cache[key - tot] = val else cache[key - lcut] = val end tbl[key] = nil end end for key, val in pairs(cache) do tbl[key] = val end end return context_iterate(ctx, 3) end -- Syntax: #invoke:params|cropping|left crop|right crop|pipe to library.cropping = function (ctx) local lcut = tonumber(ctx.pipe[1]) if lcut == nil or math.floor(lcut) ~= lcut then error(modulename .. ', ‘cropping’: Left crop must be an integer number', 0) end local rcut = tonumber(ctx.pipe[2]) if rcut == nil or math.floor(rcut) ~= rcut then error(modulename .. ', ‘cropping’: Right crop must be an integer number', 0) end local tbl = ctx.params local nmin local nmax for key in pairs(tbl) do if type(key) == 'number' then if nmin == nil then nmin, nmax = key, key elseif key > nmax then nmax = key elseif key < nmin then nmin = key end end end if nmin ~= nil then local len = nmax - nmin + 1 if lcut < 0 then lcut = len + lcut end if rcut < 0 then rcut = len + rcut end if lcut + rcut - len > -1 then for key in pairs(tbl) do if type(key) == 'number' then tbl[key] = nil end end elseif lcut + rcut > 0 then for idx = nmax - rcut + 1, nmax do tbl[idx] = nil end for idx = nmin, nmin + lcut - 1 do tbl[idx] = nil end local lshift = nmin + lcut - 1 if lshift > 0 then for idx = lshift + 1, nmax, 1 do tbl[idx - lshift] = tbl[idx] tbl[idx] = nil end end end end return context_iterate(ctx, 3) end -- Syntax: #invoke:params|purging|start offset|length|pipe to library.purging = function (ctx) local idx = tonumber(ctx.pipe[1]) if idx == nil or math.floor(idx) ~= idx then error(modulename .. ', ‘purging’: Start offset must be an integer number', 0) end local len = tonumber(ctx.pipe[2]) if len == nil or math.floor(len) ~= len then error(modulename .. ', ‘purging’: Length must be an integer number', 0) end local tbl = ctx.params if len < 1 then len = len + table.maxn(tbl) if idx > len then return context_iterate(ctx, 3) end len = len - idx + 1 end ctx.params = copy_table_reduced(tbl, idx, len) return context_iterate(ctx, 3) end -- Syntax: #invoke:params|backpurging|start offset|length|pipe to library.backpurging = function (ctx) local last = tonumber(ctx.pipe[1]) if last == nil or math.floor(last) ~= last then error(modulename .. ', ‘backpurging’: Start offset must be an integer number', 0) end local len = tonumber(ctx.pipe[2]) if len == nil or math.floor(len) ~= len then error(modulename .. ', ‘backpurging’: Length must be an integer number', 0) end local idx local tbl = ctx.params if len > 0 then idx = last - len + 1 else for key in pairs(tbl) do if type(key) == 'number' and (idx == nil or key < idx) then idx = key end end if idx == nil then return context_iterate(ctx, 3) end idx = idx - len if last < idx then return context_iterate(ctx, 3) end len = last - idx + 1 end ctx.params = copy_table_reduced(ctx.params, idx, len) return context_iterate(ctx, 3) end -- Syntax: #invoke:params|shifting|addend|pipe to library.shifting = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local nshift = tonumber(ctx.pipe[1]) if nshift == nil or nshift == 0 or math.floor(nshift) ~= nshift then error(modulename .. ', ‘shifting’: A non-zero integer number must be provided', 0) end local tbl = {} for key, val in pairs(ctx.params) do if type(key) == 'number' then tbl[key + nshift] = val else tbl[key] = val end end ctx.params = tbl return context_iterate(ctx, 2) end -- Syntax: #invoke:params|reversing_numeric_names|pipe to library.reversing_numeric_names = function (ctx) local tbl, numerics, nmax = ctx.params, {}, 0 for key, val in pairs(tbl) do if type(key) == 'number' then numerics[key] = val tbl[key] = nil if key > nmax then nmax = key end end end for key, val in pairs(numerics) do tbl[nmax - key + 1] = val end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|pivoting_numeric_names|pipe to --[[ library.pivoting_numeric_names = function (ctx) local tbl = ctx.params local shift = #tbl + 1 if shift < 2 then return library.reversing_numeric_names(ctx) end local numerics = {} for key, val in pairs(tbl) do if type(key) == 'number' then numerics[key] = val tbl[key] = nil end end for key, val in pairs(numerics) do tbl[shift - key] = val end return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|mirroring_numeric_names|pipe to --[[ library.mirroring_numeric_names = function (ctx) local tbl, numerics = ctx.params, {} local nmax local nmin for key, val in pairs(tbl) do if type(key) == 'number' then numerics[key] = val tbl[key] = nil if nmax == nil then nmin, nmax = key, key elseif key > nmax then nmax = key elseif key < nmin then nmin = key end end end for key, val in pairs(numerics) do tbl[nmax + nmin - key] = val end return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|swapping_numeric_names|pipe to --[[ library.swapping_numeric_names = function (ctx) local tbl, cache, nsize = ctx.params, {}, 0 local tmp for key in pairs(tbl) do if type(key) == 'number' then nsize = nsize + 1 cache[nsize] = key end end table.sort(cache) for idx = math.floor(nsize / 2), 1, -1 do tmp = tbl[cache[idx] ] tbl[cache[idx] ] = tbl[cache[nsize - idx + 1] ] tbl[cache[nsize - idx + 1] ] = tmp end return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|sorting_sequential_values|[criterion]|pipe to library.sorting_sequential_values = function (ctx) local sortfn if ctx.pipe[1] ~= nil then sortfn = sortfunctions[ctx.pipe[1]:match'^%s*(.-)%s*$'] end if sortfn then table.sort(ctx.params, sortfn) else table.sort(ctx.params) end -- i.e. either `false` or `nil` if sortfn == nil then return context_iterate(ctx, 1) end return context_iterate(ctx, 2) end -- Syntax: #invoke:params|splicing|[add to position]|position|increment| -- [number of elements to write]|...|pipe to library.splicing = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local opts, tbl = ctx.pipe, ctx.params local tmp1 = opts[1] local tmp2 local argc local pos local refp if tmp1 ~= nil then tmp2 = tonumber(tmp1) if tmp2 == nil or math.floor(tmp2) ~= tmp2 then pos, argc, tmp2 = tonumber(opts[2]), 4, tmp1:match'^%s*(.*%S)' if tmp2 ~= nil then refp = position_references[tmp2] if refp == nil then error(modulename .. ', ‘splicing’: ‘' .. tostring(tmp2) .. '’ is not a valid first argument', 0) end else refp = 0 end else pos, argc, refp = tmp2, 3, 0 end else pos, argc, refp = tonumber(opts[2]), 4, 0 end if pos == nil or math.floor(pos) ~= pos then error(modulename .. ', ‘splicing’: The position must be an integer number', 0) end local len = tonumber(opts[argc - 1]) if len == nil or math.floor(len) ~= len then error(modulename .. ', ‘splicing’: The increment must be an integer number', 0) end if refp == 2 then for _ in ipairs(tbl) do pos = pos + 1 end refp = 0 end tmp1, tmp2 = nil, nil if refp ~= 0 or len ~= 0 then for key, val in pairs(tbl) do if type(key) == 'number' then if tmp1 == nil then tmp1, tmp2 = key, key elseif key < tmp1 then tmp1 = key elseif key > tmp2 then tmp2 = key end end end end if tmp2 == nil then len = 0 elseif refp == 3 then pos = pos + tmp2 elseif refp == 1 then pos = pos + tmp1 end if len > 0 and pos + len > tmp1 and pos <= tmp2 then tbl = copy_table_expanded(tbl, pos, len) elseif len < 0 and pos - len > tmp1 and pos <= tmp2 then tbl = copy_table_reduced(tbl, pos, -len) else tbl = copy_or_ref_table(tbl, tbl ~= ctx.oparams) end ctx.params = tbl tmp1 = tonumber(opts[argc]) if len == 0 and (tmp1 == nil or tmp1 < 1) then error(modulename .. ', ‘splicing’: When the increment is zero the number of elements to add cannot be zero', 0) end if tmp1 == nil or tmp1 < 0 or math.floor(tmp1) ~= tmp1 then return context_iterate(ctx, argc) end tmp2 = argc - pos + 1 for key = pos, pos + tmp1 - 1 do tbl[key] = opts[key + tmp2] end return context_iterate(ctx, argc + tmp1 + 1) end -- Syntax: #invoke:params|imposing|name|value|pipe to library.imposing = function (ctx) if ctx.pipe[1] == nil then error(modulename .. ', ‘imposing’: Missing parameter name to impose', 0) end ctx.params[get_parameter_name(ctx.pipe[1])] = ctx.pipe[2] return context_iterate(ctx, 3) end -- Syntax: #invoke:params|providing|name|value|pipe to library.providing = function (ctx) if ctx.pipe[1] == nil then error(modulename .. ', ‘providing’: Missing parameter name to provide', 0) end local key = get_parameter_name(ctx.pipe[1]) if ctx.params[key] == nil then ctx.params[key] = ctx.pipe[2] end return context_iterate(ctx, 3) end -- Syntax: #invoke:params|discarding|name|[how many]|pipe to library.discarding = function (ctx) if ctx.pipe[1] == nil then error(modulename .. ', ‘discarding’: Missing parameter name to discard', 0) end local len = tonumber(ctx.pipe[2]) if len == nil then ctx.params[get_parameter_name(ctx.pipe[1])] = nil return context_iterate(ctx, 2) end local key = tonumber(ctx.pipe[1]) if key == nil or math.floor(key) ~= key then error(modulename .. ', ‘discarding’: A range was provided, but the initial parameter name is not an integer number', 0) end if len < 1 or math.floor(len) ~= len then error(modulename .. ', ‘discarding’: A range can only be an integer number greater than zero', 0) end for idx = key, key + len - 1 do ctx.params[idx] = nil end return context_iterate(ctx, 3) end -- Syntax: #invoke:params|excluding_non-numeric_names|pipe to library['excluding_non-numeric_names'] = function (ctx) local tmp = ctx.params for key, val in pairs(tmp) do if type(key) ~= 'number' then tmp[key] = nil end end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|excluding_numeric_names|pipe to library.excluding_numeric_names = function (ctx) local tmp = ctx.params for key, val in pairs(tmp) do if type(key) == 'number' then tmp[key] = nil end end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|with_name_matching|target 1|[plain flag 1]|[or] -- |[target 2]|[plain flag 2]|[or]|[...]|[target N]|[plain flag -- N]|pipe to library.with_name_matching = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local targets, nptns, argc = load_pattern_args(ctx.pipe, 'with_name_matching') local tmp local ptn local tbl = ctx.params local newparams = {} for idx = 1, nptns do ptn = targets[idx] if ptn[3] then tmp = ptn[1] if tmp == '0' or tmp:find'^%-?[1-9]%d*$' ~= nil then tmp = tonumber(tmp) end newparams[tmp] = tbl[tmp] else for key, val in pairs(tbl) do if tostring(key):find(ptn[1], 1, ptn[2]) then newparams[key] = val end end end end ctx.params = newparams return context_iterate(ctx, argc) end -- Syntax: #invoke:params|with_name_not_matching|target 1|[plain flag 1] -- |[and]|[target 2]|[plain flag 2]|[and]|[...]|[target N]|[plain -- flag N]|pipe to library.with_name_not_matching = function (ctx) local targets, nptns, argc = load_pattern_args(ctx.pipe, 'with_name_not_matching') local tbl = ctx.params if nptns == 1 and targets[1][3] then local tmp = targets[1][1] if tmp == '0' or tmp:find'^%-?[1-9]%d*$' ~= nil then tbl[tonumber(tmp)] = nil else tbl[tmp] = nil end return context_iterate(ctx, argc) end local yesmatch local ptn for key in pairs(tbl) do yesmatch = true for idx = 1, nptns do ptn = targets[idx] if ptn[3] then if tostring(key) ~= ptn[1] then yesmatch = false break end elseif not tostring(key):find(ptn[1], 1, ptn[2]) then yesmatch = false break end end if yesmatch then tbl[key] = nil end end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|with_value_matching|target 1|[plain flag 1]|[or] -- |[target 2]|[plain flag 2]|[or]|[...]|[target N]|[plain flag -- N]|pipe to library.with_value_matching = function (ctx) local tbl = ctx.params local targets, nptns, argc = load_pattern_args(ctx.pipe, 'with_value_matching') local nomatch local ptn for key, val in pairs(tbl) do nomatch = true for idx = 1, nptns do ptn = targets[idx] if ptn[3] then if val == ptn[1] then nomatch = false break end elseif val:find(ptn[1], 1, ptn[2]) then nomatch = false break end end if nomatch then tbl[key] = nil end end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|with_value_not_matching|target 1|[plain flag 1] -- |[and]|[target 2]|[plain flag 2]|[and]|[...]|[target N]|[plain -- flag N]|pipe to library.with_value_not_matching = function (ctx) local tbl = ctx.params local targets, nptns, argc = load_pattern_args(ctx.pipe, 'with_value_not_matching') local yesmatch local ptn for key, val in pairs(tbl) do yesmatch = true for idx = 1, nptns do ptn = targets[idx] if ptn[3] then if val ~= ptn[1] then yesmatch = false break end elseif not val:find(ptn[1], 1, ptn[2]) then yesmatch = false break end end if yesmatch then tbl[key] = nil end end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|trimming_values|pipe to library.trimming_values = function (ctx) local tbl = ctx.params for key, val in pairs(tbl) do tbl[key] = val:match'^%s*(.-)%s*$' end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|mapping_to_lowercase|pipe to library.mapping_to_lowercase = function (ctx) local tbl = ctx.params for key, val in pairs(tbl) do tbl[key] = val:lower() end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|mapping_to_uppercase|pipe to library.mapping_to_uppercase = function (ctx) local tbl = ctx.params for key, val in pairs(tbl) do tbl[key] = val:upper() end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|mapping_by_calling|template name|[call -- style]|[let]|[...][number of additional parameters]|[parameter -- 1]|[parameter 2]|[...]|[parameter N]|pipe to library.mapping_by_calling = function (ctx) local opts = ctx.pipe local tname if opts[1] ~= nil then tname = opts[1]:match'^%s*(.*%S)' end if tname == nil then error(modulename .. ', ‘mapping_by_calling’: No template name was provided', 0) end local margs, argc, looptype, karg, varg = load_callback_opts(opts, 1, mapping_styles.values_only) local model = { title = tname, args = margs } value_maps[looptype](ctx.params, margs, karg, varg, function () return ctx.frame:expandTemplate(model) end) return context_iterate(ctx, argc) end -- Syntax: #invoke:params|mapping_by_invoking|module name|function -- name|[call style]|[let]|[...]|[number of additional -- arguments]|[argument 1]|[argument 2]|[...]|[argument N]|pipe to library.mapping_by_invoking = function (ctx) local opts = ctx.pipe local mname local fname if opts[1] ~= nil then mname = opts[1]:match'^%s*(.*%S)' end if mname == nil then error(modulename .. ', ‘mapping_by_invoking’: No module name was provided', 0) end if opts[2] ~= nil then fname = opts[2]:match'^%s*(.*%S)' end if fname == nil then error(modulename .. ', ‘mapping_by_invoking’: No function name was provided', 0) end local margs, argc, looptype, karg, varg = load_callback_opts(opts, 2, mapping_styles.values_only) local model = { title = 'Module:' .. mname, args = margs } local mfunc = require(model.title)[fname] if mfunc == nil then error(modulename .. ', ‘mapping_by_invoking’: The function ‘' .. fname .. '’ does not exist', 0) end value_maps[looptype](ctx.params, margs, karg, varg, function () return tostring(mfunc(ctx.frame:newChild(model))) end) return context_iterate(ctx, argc) end -- Syntax: #invoke:params|mapping_by_magic|parser function|[call -- style]|[let]|[...][number of additional arguments]|[argument -- 1]|[argument 2]|[...]|[argument N]|pipe to library.mapping_by_magic = function (ctx) local opts = ctx.pipe local magic if opts[1] ~= nil then magic = opts[1]:match'^%s*(.*%S)' end if magic == nil then error(modulename .. ', ‘mapping_by_magic’: No parser function was provided', 0) end local margs, argc, looptype, karg, varg = load_callback_opts(opts, 1, mapping_styles.values_only) value_maps[looptype](ctx.params, margs, karg, varg, function () return ctx.frame:callParserFunction(magic, margs) end) return context_iterate(ctx, argc) end -- Syntax: #invoke:params|mapping_by_replacing|target|replace|[count]|[plain -- flag]|pipe to library.mapping_by_replacing = function (ctx) local ptn, repl, nmax, flg, argc, die = load_replace_args(ctx.pipe, 'mapping_by_replacing') if die then return context_iterate(ctx, argc) end local tbl = ctx.params if flg == 3 then for key, val in pairs(tbl) do if val == ptn then tbl[key] = repl end end else if flg == 2 then -- Copied from Module:String's `str._escapePattern()` ptn = ptn:gsub('[%(%)%.%%%+%-%*%?%[%^%$%]]', '%%%0') end for key, val in pairs(tbl) do tbl[key] = val:gsub(ptn, repl, nmax) end end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|mapping_by_mixing|mixing string|pipe to library.mapping_by_mixing = function (ctx) if ctx.pipe[1] == nil then error(modulename .. ', ‘mapping_by_mixing’: No mixing string was provided', 0) end local mix = ctx.pipe[1] local tbl = ctx.params if mix == '$#' then for key in pairs(tbl) do tbl[key] = tostring(key) end return context_iterate(ctx, 2) end local skel, cnv, n_parts = parse_placeholder_string(mix) for key, val in pairs(tbl) do for idx = 2, n_parts, 2 do if skel[idx] then cnv[idx] = val else cnv[idx] = tostring(key) end end tbl[key] = table.concat(cnv) end return context_iterate(ctx, 2) end -- Syntax: #invoke:params|mapping_to_names|pipe to --[[ library.mapping_to_names = function (ctx) local tbl = ctx.params for key in pairs(tbl) do tbl[key] = tostring(key) end return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|renaming_to_lowercase|pipe to library.renaming_to_lowercase = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local cache = {} for key, val in pairs(ctx.params) do if type(key) == 'string' then cache[key:lower()] = val else cache[key] = val end end ctx.params = cache return context_iterate(ctx, 1) end -- Syntax: #invoke:params|renaming_to_uppercase|pipe to library.renaming_to_uppercase = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local cache = {} for key, val in pairs(ctx.params) do if type(key) == 'string' then cache[key:upper()] = val else cache[key] = val end end ctx.params = cache return context_iterate(ctx, 1) end -- Syntax: #invoke:params|renaming_to_sequence|[sort order]|pipe to library.renaming_to_sequence = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local tbl = ctx.params local sortfn, argc, do_sort = load_sort_opt(ctx.pipe[1]) local cache local len if do_sort then local words local wl cache, words, len, wl = get_key_list_sorted(tbl, sortfn) for idx = 1, len do cache[idx] = tbl[cache[idx]] end for idx = 1, wl do cache[len + idx] = tbl[words[idx]] end else cache = {} len = 0 for _, val in pairs(tbl) do len = len + 1 cache[len] = val end end ctx.params = cache return context_iterate(ctx, argc) end -- Syntax: #invoke:params|renaming_by_calling|template name|[call -- style]|[let]|[...][number of additional parameters]|[parameter -- 1]|[parameter 2]|[...]|[parameter N]|pipe to library.renaming_by_calling = function (ctx) local opts = ctx.pipe local tname if opts[1] ~= nil then tname = opts[1]:match'^%s*(.*%S)' end if tname == nil then error(modulename .. ', ‘renaming_by_calling’: No template name was provided', 0) end local rargs, argc, looptype, karg, varg = load_callback_opts(opts, 1, mapping_styles.names_only) local model = { title = tname, args = rargs } map_names(ctx.params, rargs, karg, varg, looptype, function () return ctx.frame:expandTemplate(model) end) return context_iterate(ctx, argc) end -- Syntax: #invoke:params|renaming_by_invoking|module name|function -- name|[call style]|[let]|[...]|[number of additional -- arguments]|[argument 1]|[argument 2]|[...]|[argument N]|pipe to library.renaming_by_invoking = function (ctx) local opts = ctx.pipe local mname local fname if opts[1] ~= nil then mname = opts[1]:match'^%s*(.*%S)' end if mname == nil then error(modulename .. ', ‘renaming_by_invoking’: No module name was provided', 0) end if opts[2] ~= nil then fname = opts[2]:match'^%s*(.*%S)' end if fname == nil then error(modulename .. ', ‘renaming_by_invoking’: No function name was provided', 0) end local rargs, argc, looptype, karg, varg = load_callback_opts(opts, 2, mapping_styles.names_only) local model = { title = 'Module:' .. mname, args = rargs } local mfunc = require(model.title)[fname] if mfunc == nil then error(modulename .. ', ‘renaming_by_invoking’: The function ‘' .. fname .. '’ does not exist', 0) end map_names(ctx.params, rargs, karg, varg, looptype, function () return tostring(mfunc(ctx.frame:newChild(model))) end) return context_iterate(ctx, argc) end -- Syntax: #invoke:params|renaming_by_magic|parser function|[call -- style]|[let]|[...][number of additional arguments]|[argument -- 1]|[argument 2]|[...]|[argument N]|pipe to library.renaming_by_magic = function (ctx) local opts = ctx.pipe local magic if opts[1] ~= nil then magic = opts[1]:match'^%s*(.*%S)' end if magic == nil then error(modulename .. ', ‘renaming_by_magic’: No parser function was provided', 0) end local rargs, argc, looptype, karg, varg = load_callback_opts(opts, 1, mapping_styles.names_only) map_names(ctx.params, rargs, karg, varg, looptype, function () return ctx.frame:callParserFunction(magic, rargs) end) return context_iterate(ctx, argc) end -- Syntax: #invoke:params|renaming_by_replacing|target|replace|[count]|[plain -- flag]|pipe to library.renaming_by_replacing = function (ctx) local ptn, repl, nmax, flg, argc, die = load_replace_args(ctx.pipe, 'renaming_by_replacing') if die then return context_iterate(ctx, argc) end local tbl = ctx.params if flg == 3 then ptn = get_parameter_name(ptn) local val = tbl[ptn] if val ~= nil then tbl[ptn] = nil tbl[get_parameter_name(repl)] = val end else if flg == 2 then -- Copied from Module:String's `str._escapePattern()` ptn = ptn:gsub('[%(%)%.%%%+%-%*%?%[%^%$%]]', '%%%0') end local cache = {} for key, val in pairs(tbl) do steal_if_renamed(val, tbl, key, cache, tostring(key):gsub(ptn, repl, nmax)) end for key, val in pairs(cache) do tbl[key] = val end end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|renaming_by_mixing|mixing string|pipe to library.renaming_by_mixing = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning if ctx.pipe[1] == nil then error(modulename .. ', ‘renaming_by_mixing’: No mixing string was provided', 0) end local mix = ctx.pipe[1]:match'^%s*(.-)%s*$' local cache = {} if mix == '$@' then for _, val in pairs(ctx.params) do cache[get_parameter_name(val)] = val end else local skel, canvas, n_parts = parse_placeholder_string(mix) for key, val in pairs(ctx.params) do for idx = 2, n_parts, 2 do if skel[idx] then canvas[idx] = val else canvas[idx] = tostring(key) end end cache[get_parameter_name(table.concat(canvas))] = val end end ctx.params = cache return context_iterate(ctx, 2) end -- Syntax: #invoke:params|renaming_to_values|pipe to --[[ library.renaming_to_values = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local cache = {} for _, val in pairs(ctx.params) do cache[val] = val end ctx.params = cache return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|grouping_by_calling|template -- name|[let]|[...]|[number of additional arguments]|[argument -- 1]|[argument 2]|[...]|[argument N]|pipe to library.grouping_by_calling = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local opts = ctx.pipe local tmp if opts[1] ~= nil then tmp = opts[1]:match'^%s*(.*%S)' end if tmp == nil then error(modulename .. ', ‘grouping_by_calling’: No template name was provided', 0) end local model = { title = tmp } local argc tmp, argc = load_child_opts(opts, 2, 0) local gargs = {} for key, val in pairs(tmp) do if type(key) == 'number' and key < 1 then gargs[key - 1] = val else gargs[key] = val end end local groups = make_groups(ctx.params) for gid, group in pairs(groups) do for key, val in pairs(gargs) do group[key] = val end group[0] = gid model.args = group groups[gid] = ctx.frame:expandTemplate(model) end ctx.params = groups return context_iterate(ctx, argc) end -- Syntax: #invoke:params|parsing|string to parse|[trim flag]|[iteration -- delimiter setter]|[...]|[key-value delimiter setter]|[...]|pipe to library.parsing = function (ctx) local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘parsing’: No string to parse was provided', 0) end local isep, iplain, psep, pplain, trimnamed, trimunnamed, argc = load_parse_opts(opts, 2, '|', '=') parse_parameter_string(ctx.params, opts[1], isep, iplain, psep, pplain, trimnamed, trimunnamed) return context_iterate(ctx, argc) end -- Syntax: #invoke:params|reinterpreting|parameter to reinterpret|[trim -- flag]|[iteration delimiter setter]|[...]|[key-value delimiter -- setter]|[...]|pipe to library.reinterpreting = function (ctx) local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘reinterpreting’: No parameter to reinterpret was provided', 0) end local isep, iplain, psep, pplain, trimnamed, trimunnamed, argc = load_parse_opts(opts, 2, '|', '=') local tbl, tmp = ctx.params, get_parameter_name(opts[1]) local str = tbl[tmp] if str ~= nil then tbl[tmp] = nil parse_parameter_string(tbl, str, isep, iplain, psep, pplain, trimnamed, trimunnamed) end return context_iterate(ctx, argc) end -- Syntax: #invoke:params|evaluating|string to parse|[trim flag]|[iteration -- delimiter setter]|[...]|[key-value delimiter setter]|[...]|pipe to library.evaluating = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘evaluating’: No string to parse was provided', 0) end local isep, iplain, psep, pplain, trimnamed, trimunnamed, argc = load_parse_opts(opts, 2, '!', ':') if opts[1]:match'^%s*(.*%S)' == nil then ctx.pipe = copy_or_ref_table(opts, opts ~= ctx.opipe) return context_iterate(ctx, argc) end local new_opts, cache = {}, {} local shift = parse_parameter_string(cache, opts[1], isep, iplain, psep, pplain, trimnamed, trimunnamed) - argc for key, val in pairs(opts) do if type(key) ~= 'number' or key < 1 then new_opts[key] = val elseif key >= argc then new_opts[key + shift] = val end end for key, val in pairs(cache) do new_opts[key] = val end ctx.pipe = new_opts return context_iterate(ctx, 1) end -- Syntax: #invoke:params|mixing_names_and_values|mixing string|pipe to library.mixing_names_and_values = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning if ctx.pipe[1] == nil then error(modulename .. ', ‘mixing_names_and_values’: No mixing string was provided for parameter names', 0) end if ctx.pipe[2] == nil then error(modulename .. ', ‘mixing_names_and_values’: No mixing string was provided for parameter values', 0) end local cache = {} local mix_k, mix_v = ctx.pipe[1]:match'^%s*(.-)%s*$', ctx.pipe[2] local tmp if mix_k == '$@' and mix_v == '$@' then for _, val in pairs(ctx.params) do cache[get_parameter_name(val)] = val end elseif mix_k == '$@' and mix_v == '$#' then for key, val in pairs(ctx.params) do cache[get_parameter_name(val)] = tostring(key) end elseif mix_k == '$#' and mix_v == '$#' then for key in pairs(ctx.params) do cache[key] = tostring(key) end else local skel_k, cnv_k, n_parts_k = parse_placeholder_string(mix_k) local skel_v, cnv_v, n_parts_v = parse_placeholder_string(mix_v) for key, val in pairs(ctx.params) do tmp = tostring(key) for idx = 2, n_parts_k, 2 do if skel_k[idx] then cnv_k[idx] = val else cnv_k[idx] = tmp end end for idx = 2, n_parts_v, 2 do if skel_v[idx] then cnv_v[idx] = val else cnv_v[idx] = tmp end end cache[get_parameter_name(table.concat(cnv_k))] = table.concat(cnv_v) end end ctx.params = cache return context_iterate(ctx, 3) end -- Syntax: #invoke:params|swapping_names_and_values|pipe to --[[ library.swapping_names_and_values = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local cache = {} for key, val in pairs(ctx.params) do cache[val] = key end ctx.params = cache return context_iterate(ctx, 1) end ]]-- -- Syntax: #invoke:params|combining|new parameter name|[sort order]|setting -- directives|...|pipe to library.combining = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning return context_iterate(ctx, combine_parameters( ctx, function (key, val, kvs) return key .. kvs .. val end, 'combining' ) + 1) end -- Syntax: #invoke:params|combining_values|new parameter name|[sort -- order]|setting directives|...|pipe to library.combining_values = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning return context_iterate(ctx, combine_parameters( ctx, function (key, val, kvs) return val end, 'combining_values' ) + 1) end -- Syntax: #invoke:params|combining_by_calling|template name|new parameter -- name|pipe to library.combining_by_calling = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local tname = ctx.pipe[1] if tname ~= nil then tname = tname:match'^%s*(.*%S)' else error(modulename .. ', ‘combining_by_calling’: No template name was provided', 0) end if ctx.pipe[2] == nil then error(modulename .. ', ‘combining_by_calling’: No parameter name was provided', 0) end ctx.params = { [get_parameter_name(ctx.pipe[2])] = ctx.frame:expandTemplate{ title = tname, args = ctx.params } } return context_iterate(ctx, 3) end -- Syntax: #invoke:params|combining_by_invoking|module name|function name|new -- parameter name|pipe to library.combining_by_invoking = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local mname = ctx.pipe[1] if mname ~= nil then mname = mname:match'^%s*(.*%S)' else error(modulename .. ', ‘combining_by_invoking’: No module name was provided', 0) end local fname = ctx.pipe[2] if fname ~= nil then fname = fname:match'^%s*(.*%S)' else error(modulename .. ', ‘combining_by_invoking’: No function name was provided', 0) end if ctx.pipe[3] == nil then error(modulename .. ', ‘combining_by_invoking’: No parameter name was provided', 0) end local model = { title = 'Module:' .. mname, args = ctx.params } local mfunc = require(model.title)[fname] if mfunc == nil then error(modulename .. ', ‘mapping_by_invoking’: The function ‘' .. fname .. '’ does not exist', 0) end ctx.params = { [get_parameter_name(ctx.pipe[3])] = tostring(mfunc(ctx.frame:newChild(model))) } return context_iterate(ctx, 4) end -- Syntax: #invoke:params|combining_by_magic|parser function|new parameter -- name|pipe to library.combining_by_magic = function (ctx) -- NOTE: `ctx.params` might be the original metatable! As a modifier, -- this function MUST create a copy of it before returning local magic = ctx.pipe[1] if magic ~= nil then magic = magic:match'^%s*(.*%S)' else error(modulename .. ', ‘combining_by_magic’: No parser function was provided', 0) end if ctx.pipe[2] == nil then error(modulename .. ', ‘combining_by_magic’: No parameter name was provided', 0) end ctx.params = { [get_parameter_name(ctx.pipe[2])] = ctx.frame:callParserFunction(magic, ctx.params) } return context_iterate(ctx, 3) end -- Syntax: #invoke:params|snapshotting|pipe to library.snapshotting = function (ctx) local stack = new_substack(ctx) for key, val in pairs(ctx.params) do stack[key] = val end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|remembering|pipe to library.remembering = function (ctx) local stack = new_substack(ctx) for key, val in pairs(ctx.oparams) do stack[key] = val end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|entering_substack|[new]|pipe to library.entering_substack = function (ctx) local tbl = ctx.params local ncurrparent = ctx.n_parents + 1 if ctx.parents == nil then ctx.parents = { tbl } else ctx.parents[ncurrparent] = tbl end ctx.n_parents = ncurrparent if ctx.pipe[1] ~= nil and ctx.pipe[1]:match'^%s*new%s*$' then ctx.params = {} return context_iterate(ctx, 2) end local currsnap = ctx.n_children if currsnap > 0 then ctx.params = ctx.children[currsnap] ctx.children[currsnap] = nil ctx.n_children = currsnap - 1 else local newparams = {} for key, val in pairs(tbl) do newparams[key] = val end ctx.params = newparams end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|pulling|parameter name|pipe to library.pulling = function (ctx) local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘pulling’: No parameter to pull was provided', 0) end local parent local tmp = ctx.n_parents if tmp < 1 then parent = ctx.oparams else parent = ctx.parents[tmp] end tmp = get_parameter_name(opts[1]) if parent[tmp] ~= nil then ctx.params[tmp] = parent[tmp] end return context_iterate(ctx, 2) end -- Syntax: #invoke:params|detaching_substack|pipe to library.detaching_substack = function (ctx) local ncurrparent = ctx.n_parents if ncurrparent < 1 then error(modulename .. ', ‘detaching_substack’: No substack has been created', 0) end local parent = ctx.parents[ncurrparent] for key in pairs(ctx.params) do parent[key] = nil end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|dropping_substack|pipe to library.dropping_substack = function (ctx) local ncurrparent = ctx.n_parents if ncurrparent < 1 then error(modulename .. ', ‘dropping_substack’: No substack has been created', 0) end ctx.params = ctx.parents[ncurrparent] ctx.parents[ncurrparent] = nil ctx.n_parents = ncurrparent - 1 return context_iterate(ctx, 1) end -- Syntax: #invoke:params|leaving_substack|pipe to library.leaving_substack = function (ctx) local ncurrparent = ctx.n_parents if ncurrparent < 1 then error(modulename .. ', ‘leaving_substack’: No substack has been created', 0) end local currsnap = ctx.n_children + 1 if ctx.children == nil then ctx.children = { ctx.params } else ctx.children[currsnap] = ctx.params end ctx.params = ctx.parents[ncurrparent] ctx.parents[ncurrparent] = nil ctx.n_parents = ncurrparent - 1 ctx.n_children = currsnap return context_iterate(ctx, 1) end -- Syntax: #invoke:params|merging_substack|pipe to library.merging_substack = function (ctx) local ncurrparent = ctx.n_parents if ncurrparent < 1 then error(modulename .. ', ‘merging_substack’: No substack has been created', 0) end local parent = ctx.parents[ncurrparent] local child = ctx.params ctx.params = parent ctx.parents[ncurrparent] = nil ctx.n_parents = ncurrparent - 1 for key, val in pairs(child) do parent[key] = val end return context_iterate(ctx, 1) end -- Syntax: #invoke:params|flushing|pipe to library.flushing = function (ctx) if ctx.n_children < 1 then error(modulename .. ', ‘flushing’: There are no substacks to flush', 0) end local parent = ctx.params local currsnap = ctx.n_children for key, val in pairs(ctx.children[currsnap]) do parent[key] = val end ctx.children[currsnap] = nil ctx.n_children = currsnap - 1 return context_iterate(ctx, 1) end --[[ Functions ]]-- ----------------------------- -- Syntax: #invoke:params|count library.count = function (ctx) -- NOTE: `ctx.pipe` and `ctx.params` might be the original metatables! local retval = 0 for _ in ctx.iterfunc(ctx.params) do retval = retval + 1 end if ctx.subset == -1 then retval = retval - #ctx.params end ctx.text = retval return false end -- Syntax: #invoke:args|concat_and_call|template name|[prepend 1]|[prepend 2] -- |[...]|[item n]|[named item 1=value 1]|[...]|[named item n=value -- n]|[...] library.concat_and_call = function (ctx) -- NOTE: `ctx.params` might be the original metatable! local opts = ctx.pipe local tname if opts[1] ~= nil then tname = opts[1]:match'^%s*(.*%S)' end if tname == nil then error(modulename .. ', ‘concat_and_call’: No template name was provided', 0) end remove_numeric_keys(opts, 1, 1) ctx.text = ctx.frame:expandTemplate{ title = tname, args = concat_params(ctx) } return false end -- Syntax: #invoke:args|concat_and_invoke|module name|function name|[prepend -- 1]|[prepend 2]|[...]|[item n]|[named item 1=value 1]|[...]|[named -- item n=value n]|[...] library.concat_and_invoke = function (ctx) -- NOTE: `ctx.params` might be the original metatable! local opts = ctx.pipe local mname local fname if opts[1] ~= nil then mname = opts[1]:match'^%s*(.*%S)' end if mname == nil then error(modulename .. ', ‘concat_and_invoke’: No module name was provided', 0) end if opts[2] ~= nil then fname = opts[2]:match'^%s*(.*%S)' end if fname == nil then error(modulename .. ', ‘concat_and_invoke’: No function name was provided', 0) end remove_numeric_keys(opts, 1, 2) local mfunc = require('Module:' .. mname)[fname] if mfunc == nil then error(modulename .. ', ‘concat_and_invoke’: The function ‘' .. fname .. '’ does not exist', 0) end ctx.text = mfunc(ctx.frame:newChild{ title = 'Module:' .. mname, args = concat_params(ctx) }) return false end -- Syntax: #invoke:args|concat_and_magic|parser function|[prepend 1]|[prepend -- 2]|[...]|[item n]|[named item 1=value 1]|[...]|[named item n= -- value n]|[...] library.concat_and_magic = function (ctx) -- NOTE: `ctx.params` might be the original metatable! local opts = ctx.pipe local magic if opts[1] ~= nil then magic = opts[1]:match'^%s*(.*%S)' end if magic == nil then error(modulename .. ', ‘concat_and_magic’: No parser function was provided', 0) end remove_numeric_keys(opts, 1, 1) ctx.text = ctx.frame:callParserFunction(magic, concat_params(ctx)) return false end -- Syntax: #invoke:params|value_of|parameter name library.value_of = function (ctx) -- NOTE: `ctx.pipe` and `ctx.params` might be the original metatables! local opts = ctx.pipe if opts[1] == nil then error(modulename .. ', ‘value_of’: No parameter name was provided', 0) end local val local key = opts[1]:match'^%s*(.-)%s*$' if key == '0' or key:find'^%-?[1-9]%d*$' ~= nil then key = tonumber(key) val = ctx.params[key] -- No worries: #ctx.params is unused when the modifier is in -- first position (and therefore `ctx.params` is a metatable) if val ~= nil and ( ctx.subset ~= -1 or key > #ctx.params or key < 1 ) and ( ctx.subset ~= 1 or (key <= #ctx.params and key > 0) ) then ctx.text = (ctx.header or '') .. val .. (ctx.footer or '') else ctx.text = ctx.ifngiven or '' end else val = ctx.params[key] if ctx.subset ~= 1 and val ~= nil then ctx.text = (ctx.header or '') .. val .. (ctx.footer or '') else ctx.text = ctx.ifngiven or '' end end return false end -- Syntax: #invoke:params|list library.list = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! local ret, nss, kvs, pps = {}, 0, ctx.pairsep or '', ctx.itersep or '' flush_params( ctx, function (key, val) ret[nss + 1] = pps ret[nss + 2] = key ret[nss + 3] = kvs ret[nss + 4] = val nss = nss + 4 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 4) return false end -- Syntax: #invoke:params|list_values library.list_values = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! -- NOTE: `library.coins()` and `library.unique_coins()` rely on us local ret, nss, pps = {}, 0, ctx.itersep or '' flush_params( ctx, function (key, val) ret[nss + 1] = pps ret[nss + 2] = val nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|list_maybe_with_names library.list_maybe_with_names = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! local ret, nss, kvs, pps = {}, 0, ctx.pairsep or '', ctx.itersep or '' mixed_flush_params( ctx, function (key, val) ret[nss + 1] = pps ret[nss + 2] = '' ret[nss + 3] = '' ret[nss + 4] = val nss = nss + 4 end, function (key, val) ret[nss + 1] = pps ret[nss + 2] = key ret[nss + 3] = kvs ret[nss + 4] = val nss = nss + 4 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 4) return false end -- Syntax: #invoke:params|coins|[first coin = value 1]|[second coin = value -- 2]|[...]|[last coin = value N] --[[ library.coins = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! local opts, tbl = ctx.pipe, ctx.params for key, val in pairs(tbl) do tbl[key] = opts[get_parameter_name(val)] end return library.list_values(ctx) end ]]-- -- Syntax: #invoke:params|unique_coins|[first coin = value 1]|[second coin = -- value 2]|[...]|[last coin = value N] library.unique_coins = function (ctx) local opts, tbl = ctx.pipe, ctx.params local tmp for key, val in pairs(tbl) do tmp = get_parameter_name(val) tbl[key] = opts[tmp] opts[tmp] = nil end return library.list_values(ctx) end -- Syntax: #invoke:params|for_each|wikitext library.for_each = function (ctx) -- NOTE: `ctx.pipe` might be the original metatable! local ret, nss, pps, txt = {}, 0, ctx.itersep or '', ctx.pipe[1] or '' local skel, cnv, n_parts = parse_placeholder_string(txt) flush_params( ctx, function (key, val) for idx = 2, n_parts, 2 do if skel[idx] then cnv[idx] = val else cnv[idx] = tostring(key) end end ret[nss + 1] = pps ret[nss + 2] = table.concat(cnv) nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|call_for_each|template name|[append 1]|[append 2] -- |[...]|[append n]|[named param 1=value 1]|[...]|[named param -- n=value n]|[...] library.call_for_each = function (ctx) local opts = ctx.pipe local tname if opts[1] ~= nil then tname = opts[1]:match'^%s*(.*%S)' end if tname == nil then error(modulename .. ', ‘call_for_each’: No template name was provided', 0) end local model = { title = tname, args = opts } local ret, nss, ccs = {}, 0, ctx.itersep or '' table.insert(opts, 1, true) flush_params( ctx, function (key, val) opts[1] = key opts[2] = val ret[nss + 1] = ccs ret[nss + 2] = ctx.frame:expandTemplate(model) nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|invoke_for_each|module name|module function|[append -- 1]|[append 2]|[...]|[append n]|[named param 1=value 1]|[...] -- |[named param n=value n]|[...] library.invoke_for_each = function (ctx) local opts = ctx.pipe local mname local fname if opts[1] ~= nil then mname = opts[1]:match'^%s*(.*%S)' end if mname == nil then error(modulename .. ', ‘invoke_for_each’: No module name was provided', 0) end if opts[2] ~= nil then fname = opts[2]:match'^%s*(.*%S)' end if fname == nil then error(modulename .. ', ‘invoke_for_each’: No function name was provided', 0) end local model = { title = 'Module:' .. mname, args = opts } local mfunc = require(model.title)[fname] local ret, nss, ccs = {}, 0, ctx.itersep or '' flush_params( ctx, function (key, val) opts[1] = key opts[2] = val ret[nss + 1] = ccs ret[nss + 2] = mfunc(ctx.frame:newChild(model)) nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|magic_for_each|parser function|[append 1]|[append 2] -- |[...]|[append n]|[named param 1=value 1]|[...]|[named param -- n=value n]|[...] library.magic_for_each = function (ctx) local opts = ctx.pipe local magic if opts[1] ~= nil then magic = opts[1]:match'^%s*(.*%S)' end if magic == nil then error(modulename .. ', ‘magic_for_each’: No parser function was provided', 0) end local ret, nss, ccs = {}, 0, ctx.itersep or '' table.insert(opts, 1, true) flush_params( ctx, function (key, val) opts[1] = key opts[2] = val ret[nss + 1] = ccs ret[nss + 2] = ctx.frame:callParserFunction(magic, opts) nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|call_for_each_value|template name|[append 1]|[append -- 2]|[...]|[append n]|[named param 1=value 1]|[...]|[named param -- n=value n]|[...] library.call_for_each_value = function (ctx) local opts = ctx.pipe local tname if opts[1] ~= nil then tname = opts[1]:match'^%s*(.*%S)' end if tname == nil then error(modulename .. ', ‘call_for_each_value’: No template name was provided', 0) end local model = { title = tname, args = opts } local ret, nss, ccs = {}, 0, ctx.itersep or '' flush_params( ctx, function (key, val) opts[1] = val ret[nss + 1] = ccs ret[nss + 2] = ctx.frame:expandTemplate(model) nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|invoke_for_each_value|module name|[append 1]|[append -- 2]|[...]|[append n]|[named param 1=value 1]|[...]|[named param -- n=value n]|[...] library.invoke_for_each_value = function (ctx) local opts = ctx.pipe local mname local fname if opts[1] ~= nil then mname = opts[1]:match'^%s*(.*%S)' end if mname == nil then error(modulename .. ', ‘invoke_for_each_value’: No module name was provided', 0) end if opts[2] ~= nil then fname = opts[2]:match'^%s*(.*%S)' end if fname == nil then error(modulename .. ', ‘invoke_for_each_value’: No function name was provided', 0) end local model = { title = 'Module:' .. mname, args = opts } local mfunc = require(model.title)[fname] local ret, nss, ccs = {}, 0, ctx.itersep or '' remove_numeric_keys(opts, 1, 1) flush_params( ctx, function (key, val) opts[1] = val ret[nss + 1] = ccs ret[nss + 2] = mfunc(ctx.frame:newChild(model)) nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|magic_for_each_value|parser function|[append 1] -- |[append 2]|[...]|[append n]|[named param 1=value 1]|[...]|[named -- param n=value n]|[...] library.magic_for_each_value = function (ctx) local opts = ctx.pipe local magic if opts[1] ~= nil then magic = opts[1]:match'^%s*(.*%S)' end if magic == nil then error(modulename .. ', ‘magic_for_each_value’: No parser function was provided', 0) end local ret, nss, ccs = {}, 0, ctx.itersep or '' flush_params( ctx, function (key, val) opts[1] = val ret[nss + 1] = ccs ret[nss + 2] = ctx.frame:callParserFunction(magic, opts) nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end -- Syntax: #invoke:params|call_for_each_group|template name|[append 1]|[append -- 2]|[...]|[append n]|[named param 1=value 1]|[...]|[named param -- n=value n]|[...] library.call_for_each_group = function (ctx) -- NOTE: `ctx.pipe` and `ctx.params` might be the original metatables! local tmp if ctx.pipe[1] ~= nil then tmp = ctx.pipe[1]:match'^%s*(.*%S)' end if tmp == nil then error(modulename .. ', ‘call_for_each_group’: No template name was provided', 0) end local model = { title = tmp } local opts, ret, nss, ccs = {}, {}, 0, ctx.itersep or '' for key, val in pairs(ctx.pipe) do if type(key) == 'number' then opts[key - 1] = val else opts[key] = val end end ctx.pipe = opts ctx.params = make_groups(ctx.params) flush_params( ctx, function (gid, group) for key, val in pairs(opts) do group[key] = val end group[0] = gid model.args = group ret[nss + 1] = ccs ret[nss + 2] = ctx.frame:expandTemplate(model) nss = nss + 2 end ) finalize_and_return_concatenated_list(ctx, ret, nss, 2) return false end --[[ First-position-only modifiers ]]-- --------------------------------------- -- Syntax: #invoke:params|new|pipe to static_iface.new = function (child_frame) local ctx = context_new(child_frame) ctx.pipe = copy_or_ref_table(ctx.opipe, false) ctx.params = {} main_loop(ctx, context_iterate(ctx, 1)) return ctx.text end --[[ First-position-only functions ]]-- --------------------------------------- -- Syntax: #invoke:params|self static_iface.self = function (frame) return frame:getParent():getTitle() end --[[ Public metatable of functions ]]-- --------------------------------------- return setmetatable({}, { __index = function (_, query) local fname = query:match'^%s*(.*%S)' if fname == nil then error(modulename .. ': You must specify a function to call', 0) end local func = static_iface[fname] if func ~= nil then return func end func = library[fname] if func == nil then error(modulename .. ': The function ‘' .. fname .. '’ does not exist', 0) end return function (child_frame) local ctx = context_new(child_frame) ctx.pipe = copy_or_ref_table(ctx.opipe, refpipe[fname]) ctx.params = copy_or_ref_table(ctx.oparams, refparams[fname]) main_loop(ctx, func) return ctx.text end end }) bx8a2av95b6jpca3zvf7xnia4bz7hsf ಟೆಂಪ್ಲೇಟ್:Wrapper/doc 10 24205 362620 351696 2026-07-09T20:07:26Z Grufo 6930 Synchronize the documentation 362620 wikitext text/x-wiki {{for2|tagging wrappable segments within nowrap-scoped text|Template:Wrap|a wrapper template generator|Module:Template wrapper}} {{Documentation subpage}} {{Lua|Module:Params}} This template is a doc page banner that flags a wrapper template. == Usage == '''Wikitext (see {{Tl|Family name footnote}}):''' {{#tag:syntaxhighlight|<nowiki>{{</nowiki>{{#ifeq:{{SUBPAGENAME}}|doc|{{BASEPAGENAME}}|{{PAGENAME}}}}<nowiki>|Family name explanation | except =</nowiki> type -> footnote // reftype -> <<nowiki />nowiki><nowiki>{{{reftype|efn}}}</nowiki></<nowiki />nowiki><nowiki> }}</nowiki>|lang=wikitext}} '''Effect:''' {{ {{#ifeq:{{SUBPAGENAME}}|doc|{{BASEPAGENAME}}|{{PAGENAME}}}}|nocat=yes|Family name explanation | except = type -> footnote // reftype -> <nowiki>{{{reftype|efn}}}</nowiki> }} <div style="width: 100%; height: 2em;"></div> '''Wikitext (see {{Tl|Bts}}):''' {{#tag:syntaxhighlight|<nowiki>{{</nowiki>{{#ifeq:{{SUBPAGENAME}}|doc|{{BASEPAGENAME}}|{{PAGENAME}}}}<nowiki>|Station link | except =</nowiki> MBTA // <<nowiki />nowiki><nowiki>{{{1|}}}</nowiki></<nowiki />nowiki> // <<nowiki />nowiki><nowiki>{{{2|}}}</nowiki></<nowiki />nowiki> // <<nowiki />nowiki><nowiki>{{{3|}}}</nowiki></<nowiki />nowiki><nowiki> | passing-through = }}</nowiki>|lang=wikitext}} or, equivalently, {{#tag:syntaxhighlight|<nowiki>{{</nowiki>{{#ifeq:{{SUBPAGENAME}}|doc|{{BASEPAGENAME}}|{{PAGENAME}}}}<nowiki>|Station link | except =</nowiki> 1 -> MBTA // 2 -> <<nowiki />nowiki><nowiki>{{{1|}}}</nowiki></<nowiki />nowiki> // 3 -> <<nowiki />nowiki><nowiki>{{{2|}}}</nowiki></<nowiki />nowiki> // 4 -> <<nowiki />nowiki><nowiki>{{{3|}}}</nowiki></<nowiki />nowiki><nowiki> | passing-through = }}</nowiki>|lang=wikitext}} '''Effect:''' {{ {{#ifeq:{{SUBPAGENAME}}|doc|{{BASEPAGENAME}}|{{PAGENAME}}}}|nocat=yes|Station link | except = 1 -> MBTA // 2 -> <nowiki>{{{1|}}}</nowiki> // 3 -> <nowiki>{{{2|}}}</nowiki> // 4 -> <nowiki>{{{3|}}}</nowiki> | passing-through = }} <div style="width: 100%; height: 2em;"></div> '''Wikitext (see {{Tl|Don't ping}}):''' {{#tag:syntaxhighlight|<nowiki>{{</nowiki>{{#ifeq:{{SUBPAGENAME}}|doc|{{BASEPAGENAME}}|{{PAGENAME}}}}<nowiki>|Please ping | except =</nowiki> 1 -> no<nowiki> | omitting =</nowiki> tps // nw // big // thanks // cond<nowiki> | passing-through = }}</nowiki>|lang=wikitext}} '''Effect:''' {{ {{#ifeq:{{SUBPAGENAME}}|doc|{{BASEPAGENAME}}|{{PAGENAME}}}}|nocat=yes|Please ping | except = 1 -> no | omitting = tps // nw // big // thanks // cond | passing-through = }} <div style="width: 100%; height: 2em;"></div> '''Wikitext (see {{Tl|Sfnlinka}}):''' {{#tag:syntaxhighlight|<nowiki>{{</nowiki>{{#ifeq:{{SUBPAGENAME}}|doc|{{BASEPAGENAME}}|{{PAGENAME}}}}<nowiki>|Sfnlink | except =</nowiki> article -> *<nowiki> | omitting =</nowiki> rev // lang<nowiki> | passing-through =</nowiki> p // page // pp // pages // loc // nb // text<nowiki> }}</nowiki>|lang=wikitext}} '''Effect:''' {{ {{#ifeq:{{SUBPAGENAME}}|doc|{{BASEPAGENAME}}|{{PAGENAME}}}}|nocat=yes|Sfnlink | except = article -> * | omitting = rev // lang | passing-through = p // page // pp // pages // loc // nb // text }} <div style="width: 100%; height: 2em;"></div> '''Wikitext (see {{Tl|Tanakhverse}}):''' {{#tag:syntaxhighlight|<nowiki>{{</nowiki>{{#ifeq:{{SUBPAGENAME}}|doc|{{BASEPAGENAME}}|{{PAGENAME}}}}<nowiki>|Bibleverse | except =</nowiki> 3 -> <<nowiki />nowiki><nowiki>{{{3|HE}}}</nowiki></<nowiki />nowiki><nowiki> | omitting =</nowiki> 4 // 5<nowiki> }}</nowiki>|lang=wikitext}} '''Effect:''' {{ {{#ifeq:{{SUBPAGENAME}}|doc|{{BASEPAGENAME}}|{{PAGENAME}}}}|nocat=yes|Bibleverse | except = 3 -> <nowiki>{{{3|HE}}}</nowiki> | omitting = 4 // 5 }} <div style="width: 100%; height: 2em;"></div> '''Wikitext:''' {{#tag:syntaxhighlight|<nowiki>{{</nowiki>{{#ifeq:{{SUBPAGENAME}}|doc|{{BASEPAGENAME}}|{{PAGENAME}}}}<nowiki>|Debug}}</nowiki>|lang=wikitext}} '''Effect:''' {{ {{#ifeq:{{SUBPAGENAME}}|doc|{{BASEPAGENAME}}|{{PAGENAME}}}}|nocat=yes|Debug}} <div style="width: 100%; height: 2em;"></div> == Template data == <templatedata>{ "description": "This documentation box informs that a template is a wrapper of another template.", "params": { "1": { "label": "Template", "description": "Name of the wrapped template", "type": "string", "required": true, "example": "Please ping" }, "except": { "label": "Bound parameters", "description": "The list of pre-assigned parameters; use ‘//’ to separate them and ‘->’ to assign them a value—see ‘|separator=’ and ‘|setter=’ to set other strings", "type": "string", "required": false, "example": "1 -> no" }, "omitting": { "label": "Undefined parameters", "description": "The list of parameter names left undefined; use ‘//’ to separate them—see ‘|separator=’ to set another string", "type": "string", "required": false, "example": "tps // nw // big // thanks // cond" }, "passing-through": { "label": "Parameters passed through", "description": "The list of parameter names left available to use; use ‘//’ to separate them—see ‘|separator=’ to set another string; you can provide a blank parameter to signal that no parameters are left available", "type": "string", "required": false, "example": "lorem // ipsum // foo // bar" }, "separator": { "label": "Separator string", "description": "The string to use as separator between parameters", "type": "string", "required": false, "default": "//", "example": ";" }, "setter": { "label": "Setter string", "description": "The string to use as value setter", "type": "string", "required": false, "default": "->", "example": ":" }, "table-class": { "label": "Table class", "description": "The ‘class=’ HTML attribute assigned to the table of managed parameters", "type": "string", "required": false, "default": "wikitable", "example": "wikitable mw-collapsible mw-collapsed" }, "nocat": { "label": "No category", "description": "Disable automatic categorization into ‘Category:Templates calling Example’ or ‘Category:Wrapper templates’ (depending on the case)", "type": "boolean", "required": false, "default": "no", "example": "yes" } } }</templatedata> == See also == * [[:Category:Wrapper templates]] * {{ml|Template wrapper|wrap}} * {{mfl|params|concat_and_call}} <includeonly>{{sandbox other|| <!-- Categories below this line --> [[Category:Documentation header templates]] [[Category:Wrapper templates|!]] }}</includeonly> aav3zclyy04so8wp2dlktwtezqhxbvb ಬಳಕೆದಾರೆ:Hariprasad Shetty10/ಕಲ್ಪುನಕಳ 2 24391 362630 362609 2026-07-10T03:15:31Z Hariprasad Shetty10 6127 362630 wikitext text/x-wiki {{Short description|ಭಾರತದ ರಾಜಕಾರ್ಣಿ}} {{Infobox officeholder | name = ಮನೋರಮಾ ಮಧ್ವರಾಜ್ | image = | caption = | native_name = ಮನೋರಮಾ ಮಧ್ವರಾಜ್ | birth_name = ಮನೋರಮಾ ಮಲ್ಪೆ ಮಧ್ವರಾಜ್ | birth_date = {{Birth date and age|1940|6|1|df=y}} | birth_place = [[ಮಂಗಳೂರು|ಮನಂಪಾಡಿ]],<ref>loksabha</ref> [[ಕರ್ನಾಟಕ]], [[British Raj|ಬ್ರಿಟಿಷ್ ಇಂಡಿಯಾ]] | citizenship = {{flag|India}} | alma_mater = [[ಕರ್ನಾಟಕ ವಿಶ್ವವಿದ್ಯಾನಿಲಯ]] | education = [[Bachelor of Arts|ಬಿ.ಎ.]] | occupation = ಉದ್ಯಮಿ | profession = ರಾಜಕಾರ್ಣಿ | party = [[Bharatiya Janata Party|ಭಾರತೀಯ ಜನತಾ ಪಕ್ಷ]] | other_party = [[Indian National Congress|ಭಾರತೀಯ ರಾಷ್ಟ್ರೀಯ ಕಾಂಗ್ರೆಸ್]] | spouse = ಮಲ್ಪೆ ಮಧ್ವರಾಜ್ | children = [[Pramod Madhwaraj|ಪ್ರಮೋದ್ ಮಧ್ವರಾಜ್]] | office = [[Government of Karnataka|ಕರ್ನಾಟಕ ಸರ್ಕಾರದ]] ಸಚಿವ ಸಂಪುಟ ಸಚಿವ | term_start = 1974 | term_end = 1983 | office2 = ಸಚಿವ ಸಂಪುಟ ಸಚಿವ, ಕರ್ನಾಟಕ ಸರ್ಕಾರ | term_start2 = 1989 | term_end2 = 1994 | office1 = [[Member of the Legislative Assembly (India)|ಕರ್ನಾಟಕ ವಿಧಾನಸಭೆ ಸದಸ್ಯೆ]] | term_start1 = 1972 | term_end1 = 1994 | office7 = [[Member of Parliament|ಲೋಕಸಭಾ ಸದಸ್ಯೆ]] | constituency7 = [[Udupi (Lok Sabha constituency)|ಉಡುಪಿ ಲೋಕಸಭಾ ಕ್ಷೇತ್ರ]] | term_start7 = 2004 | term_end7 = 2008 | predecessor7 = [[Vinay Kumar Sorake|ವಿನಯ್ ಕುಮಾರ್ ಸೊರಕೆ]] | successor7 = ಕ್ಷೇತ್ರ ರದ್ದಾತುಂಡು | website = | date = 23 September | year = 2006 | source = http://164.100.47.194/Loksabha/Members/memberbioprofile.aspx?mpsno=3980&lastls=14 }} '''ಮನೋರಮಾ ಮಧ್ವರಾಜ್''' ಒರಿ [[ಭಾರತದ ರಾಜಕೀಯ|ಭಾರತೀಯ ರಾಜಕಾರಣಿ]], [[ಸಾಮಾಜಿಕ ಕಾರ್ಯಕರ್ತೆ]]ಕರ್ತೆ ಬೊಕ್ಕ ಪದಾಧಿಕಾರಿ ಆದ್ [[ಭಾರತ]] ದ ಸುರುತ ಪೊಣ್ಣು [[ಕೇಂದ್ರ ಸಚಿವ ಮಂಡಳಿ|ಸಚಿವ ಸಂಚಿಕೆ]] [[ಭಾರತ]] [[ಭಾರತ]] ಶಾಸಕಾಂಗ ಸಭೆತ ಸದಸ್ಯೆರಾದ್ ಆಯ್ಕೆ ಆಯೆರ್| [[ಕರ್ನಾಟಕ ವಿಧಾನಸಭೆ]]. ಈ ಪೂರ ಸಂದರ್ಭೊಲೆಡ್ ಮೇರ್ [[ಉಡುಪಿ ವಿಧಾನಸಭಾ ಕ್ಷೇತ್ರ|ಉಡುಪಿ]] ಕ್ಷೇತ್ರೊಡ್ದ್ ಆಯ್ಕೆ ಆದ್ [[ಭಾರತೀಯ ರಾಷ್ಟ್ರೀಯ ಕಾಂಗ್ರೆಸ್]] ದ ಸದಸ್ಯೆರಾದಿತ್ತೆರ್..<ref>{{Cite web |last=Paniyadi |first=Gururaj A. |date=25 April 2018 |title=In Udupi, the Madhwaraj family legacy towers over the rest |url=https://www.deccanchronicle.com/nation/current-affairs/250418/in-udupi-the-madhwaraj-family-legacy-towers-over-the-rest.html |access-date=12 October 2022 |website=Deccan Chronicle |language=en}}</ref> ಮೇರ್ ಭಾರತದ [[೧೪ನೇ ಲೋಕಸಭೆ]] ಸದಸ್ಯೆರಾದಿತ್ತೆರ್. ಮೇರ್ [[ಕರ್ನಾಟಕ]] ದ [[ಉಡುಪಿ ಲೋಕಸಭಾ ಕ್ಷೇತ್ರ|ಉಡುಪಿ]] ಕ್ಷೇತ್ರೊನು ಪ್ರತಿನಿಧಿಸಯೆರ್ ಬೊಕ್ಕ [[ಭಾರತೀಯ ಜನತಾ ಪಕ್ಷ]] (ಬಿಜೆಪಿ) ರಾಜಕೀಯ ಪಕ್ಷೊದ ಸದಸ್ಯೆರಾದಿತ್ತೆರ್.<ref>{{Cite news |date=7 May 2022 |title=Pramod Madhwaraj joins BJP hours after leaving Congress |language=en-IN |work=The Hindu |url=https://www.thehindu.com/news/cities/Mangalore/pramod-madhwaraj-joins-bjp-hours-after-leaving-congress/article65391415.ece |access-date=12 October 2022 |issn=0971-751X}}</ref> ವಿಶ್ವಾಸ ಮತದಾನದ ಸಮಯೊಡು ಕಾಂಗ್ರೆಸ್ ಪರವಾದ್ ಮತ ಚಲಾಯಿಸಾಯಿನ ಬುಕ್ಕೊ ಬಿಜೆಪಿ ಬೊಕ್ಕ ಲೋಕಸಭೆನ್ ಬುಡ್ದು ಪೋಯೆರ್.{{citation needed|date=August 2014}} ಅರೆನ ಮಗೆ, [[ಪ್ರಮೋದ್ ಮಧ್ವರಾಜ್]] ೨೦೧೩-೧೮ ನಡುಟು [[ಸಿದ್ದರಾಮಯ್ಯ]] ನ ಕಾಂಗ್ರೆಸ್ ಸರ್ಕಾರೊಡು ಸಚಿವೆರಾದ್ ಇತ್ತೆರ್.<ref>{{Cite web |date=7 May 2022 |title=Congress top Udupi leader, a former MLA and minister, joins BJP |url=https://indianexpress.com/article/political-pulse/pramod-madhwaraj-congress-top-udupi-leader-former-mla-minister-joins-bjp-7905884/ |access-date=12 October 2022 |website=The Indian Express |language=en}}</ref> == ಹಿಡಿತದ ಸ್ಥಾನೊಲು == * ೧೯೭೨ - ೧೯೯೪, ಸದಸ್ಯೆ [[ಕರ್ನಾಟಕ ವಿಧಾನಸಭೆ]]. * ೧೯೭೪ - ೮೩, ಸಂಪುಟ ಸಚಿವ, [[ಕನಾ೯ಟಕ ಸರ್ಕಾರ]]. * ೧೯೮೯ - ೯೪, ಸಂಪುಟ ಸಚಿವ, [[ಕನಾ೯ಟಕ ಸರ್ಕಾರ]]. * ೨೦೦೧ - ೨೦೦೩, ರಾಜ್ಯ ಪ್ರವಾಸೋದ್ಯಮ ಅಭಿವೃದ್ಧಿ ನಿಗಮದ ಅಧ್ಯಕ್ಷ (ಕ್ಯಾಬಿನೆಟ್ ಶ್ರೇಣಿ) * ೨೦೦೪, ಸದಸ್ಯೆರಾದ್ ಆಯ್ಕೆ ಆಯೆರ್ [[೧೪ನೇ ಲೋಕಸಭೆ]]. * ೨೦೦೪, ಜಲಸಂಪನ್ಮೂಲ ಸಮಿತಿ ಸದಸ್ಯೆ * ೧೬ ಆಗಸ್ಟ್ ೨೦೦೬ ಡ್ದ್ ಇತ್ತೆ ಮುಟ್ಟ, ಮಹಿಳಾ ಸಬಲೀಕರಣ ಸಮಿತಿದ ಸದಸ್ಯೆರ್ * ೫ ಆಗಸ್ಟ್ ೨೦೦೭ ಡ್ದ್ ಇತ್ತೆ ಮುಟ್ಟ, ಜಲಸಂಪನ್ಮೂಲ ಸಮಿತಿದ ಸದಸ್ಯೆರ್ ==ಉಲ್ಲೇಕೊಲು== {{reflist}} ==ಬಾಹ್ಯ ಕೊಂಡಿಲು== * {{webarchive |url=https://web.archive.org/web/20071221064220/http://164.100.24.208/ls/lsmember/biodata.asp?mpsno=3980 |date=21 December 2007 |title=Members of Fourteenth Lok Sabha - Parliament of India website }} pc7fs9jnx6o040q9p0ejg7hwuvvv4k1 362631 362630 2026-07-10T03:15:53Z Hariprasad Shetty10 6127 362631 wikitext text/x-wiki {{Short description|ಭಾರತದ ರಾಜಕಾರ್ಣಿ}} {{Infobox officeholder | name = ಮನೋರಮಾ ಮಧ್ವರಾಜ್ | image = | caption = | native_name = ಮನೋರಮಾ ಮಧ್ವರಾಜ್ | birth_name = ಮನೋರಮಾ ಮಲ್ಪೆ ಮಧ್ವರಾಜ್ | birth_date = {{Birth date and age|1940|6|1|df=y}} | birth_place = [[ಮಂಗಳೂರು|ಮನಂಪಾಡಿ]],<ref>loksabha</ref> [[ಕರ್ನಾಟಕ]], [[British Raj|ಬ್ರಿಟಿಷ್ ಇಂಡಿಯಾ]] | citizenship = {{flag|India}} | alma_mater = [[ಕರ್ನಾಟಕ ವಿಶ್ವವಿದ್ಯಾನಿಲಯ]] | education = [[Bachelor of Arts|ಬಿ.ಎ.]] | occupation = ಉದ್ಯಮಿ | profession = ರಾಜಕಾರ್ಣಿ | party = [[Bharatiya Janata Party|ಭಾರತೀಯ ಜನತಾ ಪಕ್ಷ]] | other_party = [[Indian National Congress|ಭಾರತೀಯ ರಾಷ್ಟ್ರೀಯ ಕಾಂಗ್ರೆಸ್]] | spouse = ಮಲ್ಪೆ ಮಧ್ವರಾಜ್ | children = [[Pramod Madhwaraj|ಪ್ರಮೋದ್ ಮಧ್ವರಾಜ್]] | office = [[Government of Karnataka|ಕರ್ನಾಟಕ ಸರ್ಕಾರದ]] ಸಚಿವ ಸಂಪುಟ ಸಚಿವ | term_start = 1974 | term_end = 1983 | office2 = ಸಚಿವ ಸಂಪುಟ ಸಚಿವ, ಕರ್ನಾಟಕ ಸರ್ಕಾರ | term_start2 = 1989 | term_end2 = 1994 | office1 = [[Member of the Legislative Assembly (India)|ಕರ್ನಾಟಕ ವಿಧಾನಸಭೆ ಸದಸ್ಯೆ]] | term_start1 = 1972 | term_end1 = 1994 | office7 = [[Member of Parliament|ಲೋಕಸಭಾ ಸದಸ್ಯೆ]] | constituency7 = [[Udupi (Lok Sabha constituency)|ಉಡುಪಿ ಲೋಕಸಭಾ ಕ್ಷೇತ್ರ]] | term_start7 = 2004 | term_end7 = 2008 | predecessor7 = [[Vinay Kumar Sorake|ವಿನಯ್ ಕುಮಾರ್ ಸೊರಕೆ]] | successor7 = ಕ್ಷೇತ್ರ ರದ್ದಾತುಂಡು | website = | date = 23 September | year = 2006 | source = http://164.100.47.194/Loksabha/Members/memberbioprofile.aspx?mpsno=3980&lastls=14 }} '''ಮನೋರಮಾ ಮಧ್ವರಾಜ್''' ಒರಿ [[ಭಾರತದ ರಾಜಕೀಯ|ಭಾರತೀಯ ರಾಜಕಾರಣಿ]], [[ಸಾಮಾಜಿಕ ಕಾರ್ಯಕರ್ತೆ]]ಕರ್ತೆ ಬೊಕ್ಕ ಪದಾಧಿಕಾರಿ ಆದ್ [[ಭಾರತ]] ದ ಸುರುತ ಪೊಣ್ಣು [[ಕೇಂದ್ರ ಸಚಿವ ಮಂಡಳಿ|ಸಚಿವ ಸಂಚಿಕೆ]] [[ಭಾರತ]] [[ಭಾರತ]] ಶಾಸಕಾಂಗ ಸಭೆತ ಸದಸ್ಯೆರಾದ್ ಆಯ್ಕೆ ಆಯೆರ್| [[ಕರ್ನಾಟಕ ವಿಧಾನಸಭೆ]]. ಈ ಪೂರ ಸಂದರ್ಭೊಲೆಡ್ ಮೇರ್ [[ಉಡುಪಿ ವಿಧಾನಸಭಾ ಕ್ಷೇತ್ರ|ಉಡುಪಿ]] ಕ್ಷೇತ್ರೊಡ್ದ್ ಆಯ್ಕೆ ಆದ್ [[ಭಾರತೀಯ ರಾಷ್ಟ್ರೀಯ ಕಾಂಗ್ರೆಸ್]] ದ ಸದಸ್ಯೆರಾದಿತ್ತೆರ್..<ref>{{Cite web |last=Paniyadi |first=Gururaj A. |date=25 April 2018 |title=In Udupi, the Madhwaraj family legacy towers over the rest |url=https://www.deccanchronicle.com/nation/current-affairs/250418/in-udupi-the-madhwaraj-family-legacy-towers-over-the-rest.html |access-date=12 October 2022 |website=Deccan Chronicle |language=en}}</ref> ಮೇರ್ ಭಾರತದ [[೧೪ನೇ ಲೋಕಸಭೆ]] ಸದಸ್ಯೆರಾದಿತ್ತೆರ್. ಮೇರ್ [[ಕರ್ನಾಟಕ]] ದ [[ಉಡುಪಿ ಲೋಕಸಭಾ ಕ್ಷೇತ್ರ|ಉಡುಪಿ]] ಕ್ಷೇತ್ರೊನು ಪ್ರತಿನಿಧಿಸಯೆರ್ ಬೊಕ್ಕ [[ಭಾರತೀಯ ಜನತಾ ಪಕ್ಷ]] (ಬಿಜೆಪಿ) ರಾಜಕೀಯ ಪಕ್ಷೊದ ಸದಸ್ಯೆರಾದಿತ್ತೆರ್.<ref>{{Cite news |date=7 May 2022 |title=Pramod Madhwaraj joins BJP hours after leaving Congress |language=en-IN |work=The Hindu |url=https://www.thehindu.com/news/cities/Mangalore/pramod-madhwaraj-joins-bjp-hours-after-leaving-congress/article65391415.ece |access-date=12 October 2022 |issn=0971-751X}}</ref> ವಿಶ್ವಾಸ ಮತದಾನದ ಸಮಯೊಡು ಕಾಂಗ್ರೆಸ್ ಪರವಾದ್ ಮತ ಚಲಾಯಿಸಾಯಿನ ಬುಕ್ಕೊ ಬಿಜೆಪಿ ಬೊಕ್ಕ ಲೋಕಸಭೆನ್ ಬುಡ್ದು ಪೋಯೆರ್.{{citation needed|date=August 2014}} ಅರೆನ ಮಗೆ, [[ಪ್ರಮೋದ್ ಮಧ್ವರಾಜ್]] ೨೦೧೩-೧೮ ನಡುಟು [[ಸಿದ್ದರಾಮಯ್ಯ]] ನ ಕಾಂಗ್ರೆಸ್ ಸರ್ಕಾರೊಡು ಸಚಿವೆರಾದ್ ಇತ್ತೆರ್.<ref>{{Cite web |date=7 May 2022 |title=Congress top Udupi leader, a former MLA and minister, joins BJP |url=https://indianexpress.com/article/political-pulse/pramod-madhwaraj-congress-top-udupi-leader-former-mla-minister-joins-bjp-7905884/ |access-date=12 October 2022 |website=The Indian Express |language=en}}</ref> == ಹಿಡಿತದ ಸ್ಥಾನೊಲು == * ೧೯೭೨ - ೧೯೯೪, ಸದಸ್ಯೆ [[ಕರ್ನಾಟಕ ವಿಧಾನಸಭೆ]]. * ೧೯೭೪ - ೮೩, ಸಂಪುಟ ಸಚಿವ, [[ಕನಾ೯ಟಕ ಸರ್ಕಾರ]]. * ೧೯೮೯ - ೯೪, ಸಂಪುಟ ಸಚಿವ, [[ಕನಾ೯ಟಕ ಸರ್ಕಾರ]]. * ೨೦೦೧ - ೨೦೦೩, ರಾಜ್ಯ ಪ್ರವಾಸೋದ್ಯಮ ಅಭಿವೃದ್ಧಿ ನಿಗಮದ ಅಧ್ಯಕ್ಷ (ಕ್ಯಾಬಿನೆಟ್ ಶ್ರೇಣಿ) * ೨೦೦೪, ಸದಸ್ಯೆರಾದ್ ಆಯ್ಕೆ ಆಯೆರ್ [[೧೪ನೇ ಲೋಕಸಭೆ]]. * ೨೦೦೪, ಜಲಸಂಪನ್ಮೂಲ ಸಮಿತಿ ಸದಸ್ಯೆ * ೧೬ ಆಗಸ್ಟ್ ೨೦೦೬ ಡ್ದ್ ಇತ್ತೆ ಮುಟ್ಟ, ಮಹಿಳಾ ಸಬಲೀಕರಣ ಸಮಿತಿದ ಸದಸ್ಯೆರ್ * ೫ ಆಗಸ್ಟ್ ೨೦೦೭ ಡ್ದ್ ಇತ್ತೆ ಮುಟ್ಟ, ಜಲಸಂಪನ್ಮೂಲ ಸಮಿತಿದ ಸದಸ್ಯೆರ್ ==ಬಾಹ್ಯ ಕೊಂಡಿಲು== * {{webarchive |url=https://web.archive.org/web/20071221064220/http://164.100.24.208/ls/lsmember/biodata.asp?mpsno=3980 |date=21 December 2007 |title=Members of Fourteenth Lok Sabha - Parliament of India website }} ==ಉಲ್ಲೇಕೊಲು== {{reflist}} djfw9ya8o02r3um6o69sc8v7tjocwsh 362632 362631 2026-07-10T05:05:41Z Hariprasad Shetty10 6127 362632 wikitext text/x-wiki {{Short description|ಭಾರತದ ರಾಜಕಾರ್ಣಿ}} {{Infobox officeholder | name = ಮನೋರಮಾ ಮಧ್ವರಾಜ್ | image = | caption = | native_name = ಮನೋರಮಾ ಮಧ್ವರಾಜ್ | birth_name = ಮನೋರಮಾ ಮಲ್ಪೆ ಮಧ್ವರಾಜ್ | birth_date = {{Birth date and age|1940|6|1|df=y}} | birth_place = [[ಮಂಗಳೂರು|ಮನಂಪಾಡಿ]],<ref>loksabha</ref> [[ಕರ್ನಾಟಕ]], ಬ್ರಿಟಿಷ್ ಇಂಡಿಯಾ | citizenship = {{flag|India}} | alma_mater = ಕರ್ನಾಟಕ ವಿಶ್ವವಿದ್ಯಾನಿಲಯ | education = ಬಿ.ಎ. | occupation = ಉದ್ಯಮಿ | profession = ರಾಜಕಾರ್ಣಿ | party = ಭಾರತೀಯ ಜನತಾ ಪಕ್ಷ | other_party = ಭಾರತೀಯ ರಾಷ್ಟ್ರೀಯ ಕಾಂಗ್ರೆಸ್ | spouse = ಮಲ್ಪೆ ಮಧ್ವರಾಜ್ | children = ಪ್ರಮೋದ್ ಮಧ್ವರಾಜ್ | office = ಕರ್ನಾಟಕ ಸರ್ಕಾರದ ಸಚಿವ ಸಂಪುಟ ಸಚಿವ | term_start = 1974 | term_end = 1983 | office2 = ಸಚಿವ ಸಂಪುಟ ಸಚಿವ, ಕರ್ನಾಟಕ ಸರ್ಕಾರ | term_start2 = 1989 | term_end2 = 1994 | office1 = ಕರ್ನಾಟಕ ವಿಧಾನಸಭೆ ಸದಸ್ಯೆ | term_start1 = 1972 | term_end1 = 1994 | office7 = ಲೋಕಸಭಾ ಸದಸ್ಯೆ | constituency7 = ಉಡುಪಿ ಲೋಕಸಭಾ ಕ್ಷೇತ್ರ | term_start7 = 2004 | term_end7 = 2008 | predecessor7 = ವಿನಯ್ ಕುಮಾರ್ ಸೊರಕೆ | successor7 = ಕ್ಷೇತ್ರ ರದ್ದಾತುಂಡು | website = | date = 23 September | year = 2006 | source = http://164.100.47.194/Loksabha/Members/memberbioprofile.aspx?mpsno=3980&lastls=14 }} '''ಮನೋರಮಾ ಮಧ್ವರಾಜ್''' ಒರಿ ಭಾರತೀಯ ರಾಜಕಾರಣಿ, ಸಾಮಾಜಿಕ ಕಾರ್ಯಕರ್ತೆ ಬೊಕ್ಕ ಪದಾಧಿಕಾರಿ ಆದ್ [[ಭಾರತ]] ದ ಸುರುತ ಪೊಣ್ಣು ಕೇಂದ್ರ ಸಚಿವೆ.[[ಭಾರತ]] ಶಾಸಕಾಂಗ ಸಭೆತ ಸದಸ್ಯೆರಾದ್ [[ಕರ್ನಾಟಕ]] ವಿಧಾನಸಭೆ] ಆಯ್ಕೆ ಆಯೆರ್. ಈ ಪೂರ ಸಂದರ್ಭೊಲೆಡ್ ಮೇರ್ ಉಡುಪಿ ವಿಧಾನಸಭಾ ಕ್ಷೇತ್ರೊಡ್ದ್ ಆಯ್ಕೆ ಆದ್ [[ಭಾರತೀಯ ರಾಷ್ಟ್ರೀಯ ಕಾಂಗ್ರೆಸ್]] ದ ಸದಸ್ಯೆರಾದಿತ್ತೆರ್..<ref>{{Cite web |last=Paniyadi |first=Gururaj A. |date=25 April 2018 |title=In Udupi, the Madhwaraj family legacy towers over the rest |url=https://www.deccanchronicle.com/nation/current-affairs/250418/in-udupi-the-madhwaraj-family-legacy-towers-over-the-rest.html |access-date=12 October 2022 |website=Deccan Chronicle |language=en}}</ref> ಮೇರ್ ಭಾರತದ ೧೪ನೇ ಲೋಕಸಭೆ ಸದಸ್ಯೆರಾದಿತ್ತೆರ್. ಮೇರ್ [[ಕರ್ನಾಟಕ]] ದ ಉಡುಪಿ ಲೋಕಸಭಾ ಕ್ಷೇತ್ರ ಕ್ಷೇತ್ರೊನು ಪ್ರತಿನಿಧಿಸಯೆರ್ ಬೊಕ್ಕ ಭಾರತೀಯ ಜನತಾ ಪಕ್ಷ (ಬಿಜೆಪಿ) ರಾಜಕೀಯ ಪಕ್ಷೊದ ಸದಸ್ಯೆರಾದಿತ್ತೆರ್.<ref>{{Cite news |date=7 May 2022 |title=Pramod Madhwaraj joins BJP hours after leaving Congress |language=en-IN |work=The Hindu |url=https://www.thehindu.com/news/cities/Mangalore/pramod-madhwaraj-joins-bjp-hours-after-leaving-congress/article65391415.ece |access-date=12 October 2022 |issn=0971-751X}}</ref> ವಿಶ್ವಾಸ ಮತದಾನದ ಸಮಯೊಡು ಕಾಂಗ್ರೆಸ್ ಪರವಾದ್ ಮತ ಚಲಾಯಿಸಾಯಿನ ಬುಕ್ಕೊ ಬಿಜೆಪಿ ಬೊಕ್ಕ ಲೋಕಸಭೆನ್ ಬುಡ್ದು ಪೋಯೆರ್.{{citation needed|date=August 2014}} ಅರೆನ ಮಗೆ, ಪ್ರಮೋದ್ ಮಧ್ವರಾಜ್ ೨೦೧೩-೧೮ ನಡುಟು ಸಿದ್ದರಾಮಯ್ಯ ನ ಕಾಂಗ್ರೆಸ್ ಸರ್ಕಾರೊಡು ಸಚಿವೆರಾದ್ ಇತ್ತೆರ್.<ref>{{Cite web |date=7 May 2022 |title=Congress top Udupi leader, a former MLA and minister, joins BJP |url=https://indianexpress.com/article/political-pulse/pramod-madhwaraj-congress-top-udupi-leader-former-mla-minister-joins-bjp-7905884/ |access-date=12 October 2022 |website=The Indian Express |language=en}}</ref> == ಹಿಡಿತದ ಸ್ಥಾನೊಲು == * ೧೯೭೨ - ೧೯೯೪, ಸದಸ್ಯೆ [[ಕರ್ನಾಟಕ]] ವಿಧಾನಸಭೆ. * ೧೯೭೪ - ೮೩, ಸಂಪುಟ ಸಚಿವ, [[ಕರ್ನಾಟಕ]] ಸರ್ಕಾರ. * ೧೯೮೯ - ೯೪, ಸಂಪುಟ ಸಚಿವ, [[ಕರ್ನಾಟಕ]] ಸರ್ಕಾರ. * ೨೦೦೧ - ೨೦೦೩, ರಾಜ್ಯ ಪ್ರವಾಸೋದ್ಯಮ ಅಭಿವೃದ್ಧಿ ನಿಗಮದ ಅಧ್ಯಕ್ಷ (ಕ್ಯಾಬಿನೆಟ್ ಶ್ರೇಣಿ) * ೨೦೦೪, ಸದಸ್ಯೆರಾದ್ ಆಯ್ಕೆ ಆಯೆರ್ ೧೪ನೇ ಲೋಕಸಭೆ. * ೨೦೦೪, ಜಲಸಂಪನ್ಮೂಲ ಸಮಿತಿ ಸದಸ್ಯೆ * ೧೬ ಆಗಸ್ಟ್ ೨೦೦೬ ಡ್ದ್ ಇತ್ತೆ ಮುಟ್ಟ, ಮಹಿಳಾ ಸಬಲೀಕರಣ ಸಮಿತಿದ ಸದಸ್ಯೆರ್ * ೫ ಆಗಸ್ಟ್ ೨೦೦೭ ಡ್ದ್ ಇತ್ತೆ ಮುಟ್ಟ, ಜಲಸಂಪನ್ಮೂಲ ಸಮಿತಿದ ಸದಸ್ಯೆರ್ ==ಬಾಹ್ಯ ಕೊಂಡಿಲು== * {{webarchive |url=https://web.archive.org/web/20071221064220/http://164.100.24.208/ls/lsmember/biodata.asp?mpsno=3980 |date=21 December 2007 |title=Members of Fourteenth Lok Sabha - Parliament of India website }} ==ಉಲ್ಲೇಕೊಲು== {{reflist}} jkuqi7jstn3ajvshdmodn2nu3ibmp1z 362634 362632 2026-07-10T05:06:26Z Hariprasad Shetty10 6127 ಪುಟದಲ್ಲಿರುವ ಎಲ್ಲಾ ಮಾಹಿತಿಯನ್ನೂ ತಗೆಯುತ್ತಿರುವೆ 362634 wikitext text/x-wiki phoiac9h4m842xq45sp7s6u21eteeq1 362655 362634 2026-07-10T11:57:27Z Hariprasad Shetty10 6127 362655 wikitext text/x-wiki '''ಸುಂದರ್ ರಾವ್ ನಾಡ್ಕರ್ಣಿ''' ಭಾರತೀಯ ಚಲನಚಿತ್ರ ನಟ, ಸಂಪಾದಕ, ಛಾಯಾಗ್ರಾಹಕ, ನಿರ್ಮಾಪಕ ಮತ್ ನಿರ್ದೇಶಕೆರ್.1940ಡ್ ಎ.ವಿ.ಎಂ. ಪ್ರೊಡಕ್ಷನ್ಸ್‌ದ ಮೊದಲ ಯಶಸ್ವಿ ತೆಲುಗು ಚಲನಚಿತ್ರ '''ಭೂಕೈಲಾಸ'''ದ ನಿರ್ದೇಶನ ಮಲ್ತಿನೆರ್. ಆನಂತರ 1944ಡ್ ದಾಖಲೆ ನಿರ್ಮಾಣ ಮಲ್ತಿನ ತಮಿಳ್ ಚಲನಚಿತ್ರ '''ಹರಿದಾಸ'''ದ ನಿರ್ದೇಶನ ಮಲ್ತೆರ್. == ಸುರುತ ಜೀವನ == ಸುಂದರ್ ರಾವ್ ನಾಡ್ಕರ್ಣಿ [[ಮಂಗಳೂರು]], [[ಕರ್ನಾಟಕ]] ಮುಲ್ಪ ಪುಟ್ಟಿಯೆರ್.<ref>{{Cite book|url=https://books.google.com/books?id=e07vBwAAQBAJ&q=nadkarni+marathi|title=PRIDE OF TAMIL CINEMA: 1931 TO 2013: Tamil Films that have earned National and International Recognition|last=Dhananjayan|first=G.|date=2014-11-03|publisher=Blue Ocean Publishers|language=en}}</ref> ಮೇರ್ [[ಬೆಂಗಳೂರು]] ಡ್ ಸೂರ್ಯ ಫಿಲ್ಮ್ಸ್ ನಿರ್ಮಾಣ ಮಲ್ತಿನ ಮೂಕ ಚಿತ್ರೊಲೆಡ್ ನಟೆರಾದ್ ತನ್ನ ವೃತ್ತಿಜೀವನೊನು ಸುರು ಮಲ್ತೆರ್. ನನೊಂಜಿ ಸರ್ತಿ, ಆರ್ ಬಾಂಬೆ ಗ್ ಪೋಯೆರ್ ಅಲ್ಪ ಆರ್ ಚಿತ್ರ ನಿರ್ದೇಶನ ಬೊಕ್ಕ ಸಂಪಾದನೆನ್ ದೆತೊನುವೆರ್. ನಾಡ್ಕರ್ಣಿ ಚಿತ್ರ ನಿರ್ಮಾಪಕೆ ಅವಿಚಿ ಮೆಯ್ಯಪ್ಪ ಚೆಟ್ಟಿಯಾರ್ ನ ಕಣ್ಣ್ ಗ್ ಬತ್ತೆರ್, ಆರ್ ''ಶಬಪತಿ (೧೯೪೧ ಚಿತ್ರ)'' ಚಿತ್ರದ ಯಶಸ್ಸಿನ ಬೊಕ್ಕ ಬೇತೆ ಒಂಜಿ ಹಾಸ್ಯ ಚಿತ್ರ ಮಲ್ಪೆರೆ ತೂವೊಂದಿತ್ತೆರ್. ಅಯಿಡ್ದ್ ಬೊಕ್ಕ, ಆರ್ ಕೊಯಮತ್ತೂರು ಬೊಕ್ಕ ಅಂಚನೆ ಮದ್ರಾಸ್ ಗ್ ಪೋಯೆರ್, ಅಲ್ಪ ಆರ್ ಶಾಶ್ವತವಾದ್ ನೆಲೆಯಾಯೆರ್. ೧೯೪೨ಡ್ ನಾಡ್ಕರ್ಣಿ ನಿರ್ದೇಶನ ಮಲ್ತಿನ ''ಎನ್ ಮಾನೈವಿ'' ಪನ್ಪಿನ ತಮಿಳು ಸಿನಿಮಾ ಮಸ್ತ್ ಹಿಟ್ ಆಂಡ್. ಈ ಯಶಸ್ಸ್ ದ ನಡುಟು ನಡ್ಕರ್ಣಿ ಬೇತೆ ಯಶಸ್ವಿ ತಮಿಳು ಸಿನಿಮಾಲೆನ್ ಲಾ ಮಲ್ತೆರ್. ಆಂಡ ಅರೆನ ಮಲ್ಲ ಹಿಟ್ 1944 ಡ್ ಬತ್ತಿನ ''ಹರಿದಾಸ್'' ಸಿನಿಮಾ ಒಂಜಿ ಥಿಯೇಟರ್ ಡ್ 110 ವಾರೊಗು ನಡತೊಂದು ಬತ್ತಿನ ಸುರುತ ತಮಿಳು ಸಿನಿಮಾ ಆದ್ ದಾಖಲೆ ಮಲ್ತ್ ಂಡ್. ತನ್ನ ಕ್ರಿಯಾಶೀಲ ವರ್ಷೊಲೆಡ್ ತಮಿಳು ಶ್ರೇಷ್ಠ ನಟೆರೆನ್ ನಿರ್ದೇಶನ ಮಲ್ತೆರ್, ಮುಖ್ಯವಾದ್ ಎಂ. ಕೆ. ತ್ಯಾಗರಾಜ ಭಾಗವತರ್ ಬೊಕ್ಕ ಟಿ. ಆರ್. ರಾಜಕುಮಾರಿ ''ಹರಿದಾಸ್'' (೧೯೪೪), ನರ್ಸಿಂಹ ಭಾರತಿ ''ಕೃಷ್ಣ ವಿಜಯಂ'' (೧೯೫೦), ಬೊಕ್ಕ ಎಂ.ಜಿ.ಆರ್ ಬೊಕ್ಕ ಸಾವಿತ್ರಿ ''ಮಹಾದೇವಿ'' (೧೯೫೭) ಡ್ ನಿರ್ದೇಶನ ಮಲ್ತೆರ್. == ಫಿಲ್ಮೊಗ್ರಫಿ == ===ನಿರ್ದೇಶಕೆರಾದ್ === {| ಕ್ಲಾಸ್="ವಿಕಿಟೇಬಲ್" |- ! ವರ್ಷ !! ಪುದರ್ !! ಪಾತ್ರ(ಲು) !! ಭಾಷೆ !! ಟಿಪ್ಪಣಿಲು |- || ೧೯೨೮ || ''ಮಾಯ ನ ರಂಗ್'' || ನಿರ್ದೇಶಕೆರ್ || ಮೌನ || |- |rowspan="3" | ೧೯೩೦ || ''ರಂಧೀರ್'' || ನಿರ್ದೇಶಕೆರ್ || ಮೌನ || |- || ''ಕಾಳಿಕೊ ನೋ ಕೊಪ್'' || ನಿರ್ದೇಶಕೆರ್ ||ಮೌನ || |- || ''ಧೂಮಕೇತು'' || ನಿರ್ದೇಶಕೆರ್ || ಮೌನ || |- |rowspan="6" | ೧೯೩೧ || ''ಜಿಂದಗಿ ನು ಜೂಗಾರ್'' || ನಿರ್ದೇಶಕೆರ್ ||ಮೌನ || |- || ''ತೀರ್-ಎ-ಕಟೀಲ್'' ||ನಿರ್ದೇಶಕೆರ್ || || |- || ''ಕುರ್ಬಾನಿ'' || ನಿರ್ದೇಶಕೆರ್ || || |- || ''ಇಷ್ಕ್ ಓ ಅಂಜಂ'' || ನಿರ್ದೇಶಕೆರ್ || || |- || ''ಬಾಜ್ ಬಹದ್ದೂರ್'' || ನಿರ್ದೇಶಕೆರ್ || || |- || ''ಅಸಿರ್-ಇ-ಹಿರ್ಸ್'' || ನಿರ್ದೇಶಕೆರ್ || || |- || ೧೯೩೯ || ''ಸತೀ ಸಕ್ಕುಬಾಯಿ'' || ನಿರ್ದೇಶಕ,ಸಂಪಾದಕ,ನಟ,ಗಾಯಕ || ತಮಿಳು || |- | ೧೯೪೦ || ''ಭೂಕೈಲಾಸ (೧೯೪೦ ಚಿತ್ರ)''<ref>{{Cite web|url=https://www.imdb.com/title/tt0245006/|title=ಭೂಕೈಲ|ವೆಬ್ಸೈಟ್=[[IMDb]]}}</ref> || ನಿರ್ದೇಶಕೆರ್ || ತೆಲುಗು || |- || ೧೯೪೨ || ''ಎನ್ ಮಾನೈವಿ'' || ನಿರ್ದೇಶಕ ||ತಮಿಳು|| |- || ೧೯೪೪ || ''ಹರಿದಾಸ (೧೯೪೪ ಚಿತ್ರ)|ಹರಿದಾಸ'' || ನಿರ್ದೇಶಕ ||ತಮಿಳು|| |- || ೧೯೪೬ || ''ವಾಲ್ಮೀಕಿ (1946 ಚಿತ್ರ)|ವಾಲ್ಮೀಕಿ'' || ನಿರ್ದೇಶಕ ||ತಮಿಳು|| |- || ೧೯೫೦ ||ಕೃಷ್ಣ ವಿಜಯಂ|| ನಿರ್ದೇಶಕ ||ತಮಿಳು ಭಾಷೆ || |- || ೧೯೫೩ || ''ಅಝಗಿ (೧೯೫೩ ಚಿತ್ರ)|ಅಝಗಿ'' || ನಿರ್ದೇಶಕ ||ತಮಿಳು || |- || ೧೯೫೫ || ''ಕೋಟೀಶ್ವರನ್'' || ನಿರ್ದೇಶಕೆರ್ || ತಮಿಳು || |- || ೧೯೫೭ || ''ಮಹಾಧೇವಿ'' || ನಿರ್ದೇಶಕ ||ತಮಿಳು || |- || ೧೯೬೩ || ''ಸಂತ ತುಕಾರಾಂ'' || ನಿರ್ದೇಶಕೆರ್ || [[ಕನ್ನಡ]] || ಕನ್ನಡ ಭಾಷೆದ ಅತ್ಯುತ್ತಮ ಫೀಚರ್ ಫಿಲ್ಮ್ ಗ್ ರಾಷ್ಟ್ರೀಯ ಚಲನಚಿತ್ರ ಪ್ರಶಸ್ತಿ |} == ಉಲ್ಲೇಕೊಲು == {{Reflist}} * {{cite news|title=En Manaivi 1942|url=http://www.hindu.com/cp/2008/07/18/stories/2008071850391600.htm|work=[[The Hindu]]|author=Randor Guy|authorlink=Randor Guy|date=18 July 2008|archive-url=https://archive.today/20130125174929/http://www.hindu.com/cp/2008/07/18/stories/2008071850391600.htm|archive-date=25 January 2013|url-status=dead|df=dmy-all}} 51zotyt5vfy5mpll4imumof81rggrjp ದೇವಿಪ್ರಸಾದ್ ಶೆಟ್ಟಿ 0 27202 362622 362573 2026-07-10T00:00:22Z InternetArchiveBot 4316 Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5 362622 wikitext text/x-wiki {{Infobox person | name = ದೇವಿ ಪ್ರಸಾದ್ ಶೆಟ್ಟಿ | image = Devi Shetty.jpg | birth_date = {{Birth date and age|1953|5|8}} | birth_place = [[ಕಿನ್ನಿಗೋಳಿ]], [[ದಕ್ಷಿಣ ಕನ್ನಡ]], [[ಕರ್ನಾಟಕ]], ಭಾರತ | occupation = ಹೃದಯ ಶಸ್ತ್ರಚಿಕಿತ್ಸಕ | known_for = ನಾರಾಯಣ ಹೆಲ್ತ್-ದ ಸ್ಥಾಪಕ ಮತ್ ಅಧ್ಯಕ್ಷ | years_active = 1983–ಇಂದಿನವರೆಗು | education = ಕಸ್ತೂರ್ಬಾ ವೈದ್ಯಕೀಯ ಕಾಲೇಜು, ಮಂಗಳೂರು (MBBS, MS), FRCS | employer = ನಾರಾಯಣ ಹೆಲ್ತ್ | awards = ಪದ್ಮ ಭೂಷಣ (2012), ಡಾ. ಬಿ. ಸಿ. ರಾಯ್ ಪ್ರಶಸ್ತಿ (2003), ರಾಜ್ಯೋತ್ಸವ ಪ್ರಶಸ್ತಿ(2002), ಕರ್ನಾಟಕ ರತ್ನ (2001) }} '''ದೇವಿ ಪ್ರಸಾದ್ ಶೆಟ್ಟಿ''' (ಪುಟ್ಟು ೮ ಮೇ ೧೯೫೩) ಒರಿ ಭಾರತೀಯ ಹೃದಯ ಶಸ್ತ್ರಚಿಕಿತ್ಸಕೆರ್, ಭಾರತೊಡು ೨೪ ವೈದ್ಯಕೀಯ ಕೇಂದ್ರೊಲೆನ ಸರಪಳಿ ಆಯಿನ ನಾರಾಯಣ ಆರೋಗ್ಯ ದ ಅಧ್ಯಕ್ಷೆರ್ ಬೊಕ್ಕ ಸ್ಥಾಪಕೆರ್.<ref name='Bloomberg 2013'/> ಆರ್ 15,000 ಡ್ದ್ ಜಾಸ್ತಿ ಹೃದಯ ಶಸ್ತ್ರಚಿಕಿತ್ಸೆ ಮಲ್ತೆರ್.<ref name="First break all the rules">{{cite news|url=https://www.economist.com/specialreports/displaystory.cfm?story_id=15879359|title=First break all the rules|date=15 April 2010|newspaper=The Economist|access-date=5 June 2012}}</ref> ಕೈಗೆಟುಕಿನ ಆರೋಗ್ಯ ರಕ್ಷಣೆದ ಕ್ಷೇತ್ರೊಗು ಕೊರ್ತಿನ ಕೊಡುಗೆಗ್ ೨೦೦೪ಡ್ [[ಪದ್ಮಶ್ರೀ]] ಪನ್ಪಿನ ನಾಲ್ನೇ ಅತಿ ಎಚ್ಚಿನ ನಾಗರಿಕ ಪ್ರಶಸ್ತಿನ್, ಅಯಿಡ್ದ್ ಬೊಕ್ಕ ೨೦೧೨ಡ್ ಪದ್ಮಭೂಷಣ ನ್ ಭಾರತ ಸರ್ಕಾರ ಮೂಜಿನೆ ಅತಿ ಎಚ್ಚಿನ ನಾಗರಿಕ ಪ್ರಶಸ್ತಿನ್ ಪಡೆಯೆರ್.<ref>{{cite web|url=http://www.pib.nic.in/newsite/erelease.aspx?relid=79881|title=Padma Awards|date=27 January 2013|publisher=pib|access-date=27 January 2013}}</ref><ref name="Padma Awards">{{cite web |url=http://mha.nic.in/sites/upload_files/mha/files/LST-PDAWD-2013.pdf |title=Padma Awards |date=2015 |publisher=Ministry of Home Affairs, Government of India |access-date=July 21, 2015 |archive-url=https://web.archive.org/web/20151015193758/http://mha.nic.in/sites/upload_files/mha/files/LST-PDAWD-2013.pdf |archive-date=15 October 2015 }}</ref> ==ಆದಿ ಜೀವನ ಬೊಕ್ಕ ಶಿಕ್ಷಣ== ಶೆಟ್ಟಿ [[ಕರ್ನಾಟಕ]] ದ [[ದಕ್ಷಿಣ ಕನ್ನಡ]] ಜಿಲ್ಲೆದ [[ಕಿನ್ನಿಗೋಳಿ]] ಗ್ರಾಮೊಡು ಪುಟ್ಟುವೆರ್. ಅರೆನ ಅಪ್ಪೆ ಅಮ್ಮೆರೆನ ಜೋಕುಲೆಡ್ ಆರ್ ಎಡ್ಮನೇ ಜೋಕುಲು. ಜಗತ್ತ್ ದ ಸುರುತ ಹೃದಯ ಕಸಿ ಮಲ್ತಿನ ದಕ್ಷಿಣ ಆಫ್ರಿಕಾದ ಶಸ್ತ್ರಚಿಕಿತ್ಸಕೆರ್ ಕ್ರಿಶ್ಚಿಯನ್ ಬರ್ನಾರ್ಡ್ ನ ಬಗ್ಗೆ ಕೇಂಡ್ದ್ ಆರ್ ಒರಿ ಶಾಲೆದ ವಿದ್ಯಾರ್ಥಿ ಆನಗ ಒರಿ ಹೃದಯ ಶಸ್ತ್ರಚಿಕಿತ್ಸಕೆರ್ ಆಯೆರೆ ನಿರ್ಧರಿಸಯೆರ್.<ref>{{cite news|url=https://www.wsj.com/articles/SB125875892887958111#articleTabs%3Darticle|title=The Henry ford of heart surgery|newspaper=The Wall Street Journal|date=25 November 2009|access-date=6 November 2012}}</ref> ಶೆಟ್ಟಿ ಕುಡ್ಲದ ಸೈಂಟ್ ಅಲೋಶಿಯಸ್ ಪ್ರೌಢಶಾಲೆಡ್ ಶಿಕ್ಷಣ ಪಡೆಯೆರ್.<ref>{{cite news |last1=Martina |first1=Mala |title=Notable alumni: This Mangaluru College minted bigwigs like KV Kamath, VG Siddhartha & KL Rahul |url=https://economictimes.indiatimes.com/magazines/panache/notable-alumni-this-mangalore-college-minted-bigwigs-like-kv-kamath-vg-siddhartha-kl-rahul/articleshow/70481288.cms?from=mdr |work=The Economic Times |date=22 October 2017 |language=en-IN}}</ref> ಅಯಿಡ್ದ್ ಬೊಕ್ಕ, ಆರ್ 1979ಡ್ ಅರೆನ ಎಂಬಿಬಿಎಸ್ ನ್ ಮುಗಿತೆರ್<ref name="Gov">{{Cite journal |publisher=Government of India, Directorate of Printing |date=1981-01-03 |title=Gazette of India|issue=452 |url=http://archive.org/details/in.gazette.1981.452}}</ref> ಬೊಕ್ಕ ಕಸ್ತೂರ್ಬ ಮೆಡಿಕಲ್ ಕಾಲೇಜ್, [[ಮಂಗಳೂರು]] ಡ್ದ್ ಜನರಲ್ ಸರ್ಜರಿಡ್ ಸ್ನಾತಕೋತ್ತರ ಪದವಿ.<ref>{{cite web|date=December 26, 2020|first=Raj|last=Chengappa|title=When I did a 100 heart operations in 1989, I knew it was possible to start a revolution in cardiac surgery: Dr Devi Shetty|url=https://www.indiatoday.in/magazine/anniversary/story/20210104-when-i-did-a-100-heart-operations-without-a-single-fatality-1753003-2020-12-26|access-date=2021-06-19|website=India Today|language=en}}</ref> ನನೊಂಜಿ ಸರ್ತಿ, ಆರ್ ರಾಯಲ್ ಕಾಲೇಜ್ ಆಫ್ ಸರ್ಜನ್ಸ್ ಆಫ್ ಇಂಗ್ಲೆಂಡ್/ರಾಯಲ್ ಕಾಲೇಜ್ ಆಫ್ ಸರ್ಜನ್ಸ್, ಇಂಗ್ಲೆಂಡ್ ಡ್ದ್ ಎಫ್ ಆರ್ ಸಿ ಎಸ್ ನ್ ಮುಗಿತ್ ದೆರ್.<ref>[https://www.narayanahealth.org/bangalore/cardiac-surgery-adult-cardiac-surgery-paediatric/dr-devi-prasad-shetty Brief Profile - Devi Prasad Shetty]</ref> ಲಂಡನ್ ಡ್ ಗೈಸ್ ಆಸ್ಪತ್ರೆ ಡ್ ಒಂಜಿ ಸುಧಾರಿತ ಕಾರ್ಡಿಯೋಥೊರಾಸಿಕ್ ಶಸ್ತ್ರಚಿಕಿತ್ಸೆದ ತರಬೇತಿನ್ ಲಾ ಪಡೆಯೆರ್.<ref>{{cite journal |last1=Jayakumar |first1=Dheeraj |last2=Bansal |first2=Anushree |last3=Albano |first3=Joselv E. |last4=Mirhan |first4=Janelle Lara G. |title=Dr. Devi Prasad Shetty: The Visionary Cardiothoracic Surgeon Who Championed Affordable Healthcare |journal=Cureus |article-number=e70683 |doi=10.7759/cureus.70683 |date=October 2024 |volume=16 |issue=10 |doi-access=free |pmid=39493176 |pmc=11530259 }}</ref> ==ವೃತ್ತಿಜೀವನ== ಆರ್ ೧೯೮೯ಡ್ ಭಾರತೊಗು ಪಿರ ಬತ್ತೆರ್ ಬೊಕ್ಕ ಸುರುಟು ಬಿ.ಎಂ.ಡ್ ಬಿರ್ಲಾ ಆಸ್ಪತ್ರೆ ಕೋಲ್ಕತ್ತಾಡ್ ಬೇಲೆ ಮಲ್ತೆರ್. ೧೯೯೨ಡ್ ದೇಶೊಡು ಸುರುತ ನವಜಾತ ಶಿಶು ೨೧ ದಿನೊತ ಬಾಲೆ ರೊನ್ನಿಗ್ ಹೃದಯ ಶಸ್ತ್ರಚಿಕಿತ್ಸೆನ್ ಯಶಸ್ವಿಯಾದ್ ಮಲ್ತೆರ್, .<ref>{{cite news |last1=Anand |first1=Geeta |title=The Henry Ford of Heart Surgery |url=https://www.wsj.com/articles/SB125875892887958111 |website=The Wall Street Journal |date=25 November 2009 |publisher=Dow Jones |access-date=25 November 2009}}</ref> ಕೋಲ್ಕತ್ತಾ ಡ್ ಆರ್ ಮದರ್ ತೆರೇಸಾ ಗ್ ಹೃದಯಾಘಾತ ಆಯಿ ಬೊಕ್ಕ ಶಸ್ತ್ರಚಿಕಿತ್ಸೆ ಮಲ್ತೆರ್, ಬೊಕ್ಕ ಅಯಿಡ್ದ್ ಬೊಕ್ಕ ಅರೆನ ವೈಯಕ್ತಿಕ ವೈದ್ಯೆರಾದ್ ಸೇವೆ ಮಲ್ತೆರ್.<ref name="MSN-India" /> ೨೦೦೧ಡ್ ಶೆಟ್ಟಿ ಬೆಂಗಳೂರುದ ಪಿದಾಯಿದ ಭಾಗೊಡು ಬೊಮ್ಮಸಂದ್ರಡ್ ನಾರಾಯಣ ಹೃದಯಾಲಯ ಪನ್ಪಿನ ಒಂಜಿ ಬಹು-ವಿಶೇಷ ಆಸ್ಪತ್ರೆನ್ ಸ್ಥಾಪನೆ ಮಲ್ತೆರ್. ಆಸ್ಪತ್ರೆಲು ಪ್ರಮಾಣದ ಆರ್ಥಿಕತೆದ ಕಲ್ಪನೆನ್ ಅಳವಡಿಸಂಡ ಮುಕ್ಲೆ 5-10 ವರ್ಷೊಡು ಆರೋಗ್ಯ ರಕ್ಷಣೆದ ವೆಚ್ಚ 50 ಶೇಕಡಾ ಕಮ್ಮಿ ಆಪುಂಡು ಪಂದ್ ಆರ್ ನಂಬುವೆರ್.<ref name="ET_Awards_2012">{{cite news|url=http://articles.economictimes.indiatimes.com/2012-09-19/news/33952757_1_hospital-chain-narayana-hrudayalaya-cardiac-surgery|archive-url=https://archive.today/20130103103129/http://articles.economictimes.indiatimes.com/2012-09-19/news/33952757_1_hospital-chain-narayana-hrudayalaya-cardiac-surgery|archive-date=3 January 2013|title=ET Awards 2012|newspaper=Economic Times|date=19 September 2012|access-date=6 November 2012}}</ref> ಆಗಸ್ಟ್ ೨೦೧೨ಡ್ ಶೆಟ್ಟಿ ಅಸೆನ್ಶನ್ ಹೆಲ್ತ್ ದ ಅಂಗಸಂಸ್ಥೆ ಆಯಿನ ಟ್ರೈಮೆಡ್ಕ್ಸ್ ನೊಟ್ಟುಗು ಒಂಜಿ ಒಪ್ಪಂದೊನು ಘೋಷಣೆ ಮಲ್ತೆರ್, ಆಸ್ಪತ್ರೆಲೆನ ಸರಪಳಿಗ್ ಒಂಜಿ ಜಂಟಿ ಉದ್ಯಮೊನು ರಚನೆ ಮಲ್ಪೆರೆ. ದುಂಬು ನಾರಾಯಣ ಹೃದಯಾಲಯ ಅಸೆನ್ಶನ್ ಹೆಲ್ತ್ ನೊಟ್ಟುಗು ಸಹಕಾರ ಮಲ್ತ್ ದ್ ಕೇಮನ್ ದ್ವೀಪೊಲೆಡ್ ಒಂಜಿ ಆರೋಗ್ಯ ಆರೈಕೆ ನಗರೊನು ಸ್ಥಾಪನೆ ಮಲ್ತೆರ್, ಅಂಚನೆ 2,000 ಬೆಡ್ ಲೆನ್ ಮಲ್ಪೆರೆ ಯೋಜಿಸಯೆರ್.<ref>{{cite news|url=http://www.business-standard.com/india/news/devi-shetty-to-leveragefrugal-engineeringfor-medical-fraternity/484651/|title=Devi Shetty to leverage frugal engineering for medical fraternity|newspaper=Business Standard|date=28 August 2012|access-date=6 November 2012}}</ref> ಶೆಟ್ಟಿ ಕೋಲ್ಕತ್ತಾಡ್ ರವೀಂದ್ರನಾಥ್ ಟಾಗೋರ್ ಇಂಟರ್ನ್ಯಾಷನಲ್ ಇನ್ಸ್ಟಿಟ್ಯೂಟ್ ಆಫ್ ಕಾರ್ಡಿಯಾಕ್ ಸೈನ್ಸಸ್ (RTIICS) ನ್ ಲಾ ಸ್ಥಾಪನೆ ಮಲ್ತೆರ್, ಬೊಕ್ಕ ಬೆಂಗಳೂರು ಅಂತರಾಷ್ಟ್ರೀಯ ವಿಮಾನ ನಿಲ್ದಾಣದ ಸಮೀಪೊಡು 5,000-ಬೆಡ್ ಸ್ಪೆಷಾಲಿಟಿ ಆಸ್ಪತ್ರೆನ್ ನಿರ್ಮಾಣ ಮಲ್ಪೆರೆ ಕರ್ನಾಟಕ ಸರ್ಕಾರೊದೊಟ್ಟುಗು ಒಂಜಿ ಒಪ್ಪಂದ ಒಪ್ಪಂದ ಗ್ ಸಹಿ ಪಾಡ್ದೆರ್. ಅರೆನ ಕಂಪೆನಿ [[ಗುಜರಾತ್]] ಸರ್ಕಾರ ನೊಟ್ಟುಗು ಒಂಜಿ ಒಪ್ಪಂದೊಗು ಸಹಿ ಪಾಡ್ಂಡ್, [[ಅಹ್ಮದಾಬಾದ್]] ಡ್ 5,000-ಬೆಡ್ ಆಸ್ಪತ್ರೆನ್ ಸ್ಥಾಪನೆ ಮಲ್ಪೆರೆ.<ref name=mougujarat>{{cite news|title=Narayana Hrudayalaya, Gujarat join hands for health city project|url=http://www.thehindubusinessline.in/2009/01/17/stories/2009011750421700.htm|website=Thehindubusinessline.in|access-date=26 May 2013|date=17 January 2009}}</ref> == ಕಡಿಮೆ ವೆಚ್ಚದ ಆರೋಗ್ಯ ರಕ್ಷಣೆ == ದೇವೀ ಶೆಟ್ಟಿ ತನ್ನ ಆಸ್ಪತ್ರೆಲೆನ್ ಎಕನಾಮಿಸ್ ಆಫ್ ಸ್ಕೇಲ್ ನ್ ಬಳಕೆ ಮಲ್ಪೊಡು ಪನ್ಪಿನ ಗುರಿನ್ ದೀತೆರ್, ಅಯಿಟ್ ಅಕುಲು ಯುನೈಟೆಡ್ ಸ್ಟೇಟ್ಸ್ ಡ್ದ್ ಕಮ್ಮಿ ವೆಚ್ಚೊಡು ಹೃದಯ ಶಸ್ತ್ರಚಿಕಿತ್ಸೆಲೆನ್ ಮನುಪುವೆರ್. ೨೦೦೯ಡ್ ''ದಿ ವಾಲ್ ಸ್ಟ್ರೀಟ್ ಜರ್ನಲ್'' ಪತ್ರಿಕೆ ಅರೆನ್ '''"ಹೃದಯ ಶಸ್ತ್ರಚಿಕಿತ್ಸೆದ ಹೆನ್ರಿ ಫೋರ್ಡ್"''' ಪಂಡ್ದ್ ವರ್ಣನೆ ಮಲ್ತ್ಂಡ್.<ref>{{cite news|url=https://www.wsj.com/articles/SB125875892887958111?mod=slideshow_overlay_mod|title=The Henry Ford of Heart Surgery|newspaper=The Wall Street Journal|date=25 November 2009|access-date=5 June 2012}}</ref> ಭಾರತದ ಕೆಲವು ನಗರೊಲೆಡ್ ನಾರಾಯಣ ಹೃದಯಾಲಯ ಮಾದರಿಡ್ ಆಜಿ ಹೆಚ್ಚುವರಿ ಆಸ್ಪತ್ರೆಲೆನ್ ಯೋಜಿಸಯೆರ್, [[ಭಾರತ]], [[ಆಫ್ರಿಕಾ]] ಬೊಕ್ಕ [[ಏಷ್ಯಾ]]ದ ಬಾಕಿದ ದೇಶೊಲೆಡ್ ಆಸ್ಪತ್ರೆಲೆನ್ 30,000 ಹಾಸಿಗೆಲೆಗ್ ವಿಸ್ತಾರ ಮಲ್ಪುನ ಯೋಜನೆ ಮಂದೆರ್.<ref name="ET_Awards_2012" /> ಶೆಟ್ಟಿ ಅಗ್ಗದ ಸ್ಕ್ರಬ್ಸ್ (ಕುಂಟು) ನ್ ಕೊಂಡೊನೊಡು ಬೊಕ್ಕ ಏರ್ ಕಂಡಿಷನಿಂಗ್ ದ ಬದಲ್ ಕ್ರಾಸ್ ವೆಂಟಿಲೇಷನ್ ನ್ ಬಳಕೆ ಮಲ್ಪುನಂಚಿನ ಕ್ರಮೊಕುಲೆಡ್ ವೆಚ್ಚೊಲೆನ್ ಕಡಿಮೆ ಮಲ್ಪುನ ಗುರಿ ದೀತೆರ್.<ref name="cost" /> ಅಯಿಟ್ '''ಕೊರೊನರಿ ಬೈಪಾಸ್ ಸರ್ಜರಿ''' ದ ಬೆಲೆನ್ 95,000 ರೂಪಾಯಿ ($1,583) ಗ್ ಕಡಿಮೆ ಮಲ್ತೆರ್, ಉಂದು 20 ವರ್ಸೊಗು ದುಂಬು ಇತ್ತಿನ ಅರ್ಧದ ಬೆಲೆ.<ref name="Bloomberg 2013">{{cite news|last1=Gokhale|first1=Ketaki|title=Heart Surgery in India for $1,583 Costs $106,385 in U.S.|url=https://www.bloomberg.com/news/articles/2013-07-28/heart-surgery-in-india-for-1-583-costs-106-385-in-u-s-|access-date=6 May 2016|work=Bloomberg.com|date=28 July 2013}}</ref> ೨೦೧೩ಡ್ ಒಂಜಿ ದಶಕೊದ ಉಲಯಿ ಬೆಲೆನ್ $೮೦೦ ಗ್ ಕಮ್ಮಿ ಮಲ್ಪೆರೆ ಆರ್ ಗುರಿ ಮಲ್ತೆರ್. ಅವ್ವೆ ಕಾರ್ಯವಿಧಾನೊಗು '''ಒಹಿಯೋದ ಕ್ಲೀವ್ಲ್ಯಾಂಡ್ ಕ್ಲಿನಿಕ್''' ಡ್ $106,385 ಖರ್ಚು ಆಪುಂಡು.<ref name="Bloomberg 2013"/> ಆರ್ ಮಸ್ತ್ ಪೂರ್ವ-ಆಪ್ಸ್ ಪರೀಕ್ಷೆಲೆನ್ ತಡೆತ್ ದ್ ರೋಗಿಲೆನ ಆರೈಕೆಡ್ ನವೀಕರಣ ಮಲ್ತೆರ್ ಉದಾಹರಣೆಗೆ "ಶಸ್ತ್ರಚಿಕಿತ್ಸೆದ ಬೊಕ್ಕದ ಆರೈಕೆನ್ ನಿರ್ವಹಿಸೆರೆ ರೋಗಿಲೆನ ಕುಟುಂಬದ ಸದಸ್ಯೆರೆನ್ ಕರಡು ಮಲ್ಪುನ ಬೊಕ್ಕ ತರಬೇತಿ ಕೊರ್ಪುನ"ಕೆಲಸ.<ref>{{cite web|url=https://www.forbes.com/sites/saritharai/2015/12/16/devi-shetty-who-put-heart-surgeries-within-reach-of-indias-poor-is-taking-narayana-chain-public/#71f6ead2889a|title=Devi Shetty, Who Put Heart Surgeries Within Reach Of India's Poor, Is Taking Narayana Chain Public|last=Rai|first=Saritha|website=Forbes|access-date=2016-05-07}}</ref> ಅಮೇರಿಕದ ಆಸ್ಪತ್ರೆಡ್ ಒಂಜಿ ಅತ್ತ್ಂಡ ರಡ್ಡ್ ಶಸ್ತ್ರಚಿಕಿತ್ಸೆಲೆನ್ ತೂನಗ ಅರೆನ ಆಸ್ಪತ್ರೆಲೆಡ್ ಶಸ್ತ್ರಚಿಕಿತ್ಸಕೆರ್ ದಿನೊಟು 30 ರ್ದ್ 35 ಶಸ್ತ್ರಚಿಕಿತ್ಸೆ ಮಲ್ಪುವೆರ್. ಅರೆನ ಆಸ್ಪತ್ರೆಲು ಬಡ ಜೋಕುಲೆಗ್ ವಿಶೇಷವಾದ್ ಉಚಿತ ಆರೈಕೆನ್ ಲಾ ಒದಗಾವುಂಡು.<ref>{{cite web|last1=McCarthy |first1=Julie |url=https://www.npr.org/sections/goatsandsoda/2015/01/05/375142025/india-s-philanthropist-delivers-cardiac-surgery-henry-ford-style|title=India's Philanthropist-Surgeon Delivers Cardiac Care Henry Ford-Style|website=NPR.org|date=5 January 2015 |access-date=2016-05-07}}</ref> ನಗರ ಭಾರತೊಡು ಹೃದಯ ಶಸ್ತ್ರಚಿಕಿತ್ಸೆಲೆಗ್ ಅಸೆಂಬ್ಲಿ ಲೈನ್ ವಿಧಾನೊಗು ಅರೆನ್ '''"ಹೆನ್ರಿ ಫೋರ್ಡ್"''' ಪಂಡ್ದ್ ಲೆಪ್ಪುವೆರ್, ಗ್ರಾಮೀಣ ಭಾರತೀಯೆರ್ ಅರೆನ್ "ಬೈಪಾಸ್ವಾಲೆ ಬಾಬಾ" ಪಂಡ್ದ್ ಲೆಪ್ಪುವೆರ್, ಉಂದೆನ್ ಡೆಕ್ಕನ್ ಹೆರಾಲ್ಡ್ ದಂಚಿನ ಸಾವಿರಾರು ಮೂಲೊಲು ಸಾಕ್ಷಿಯಾತ್ಂಡ್, ಶೆಟ್ಟಿನ ತಾಯ್ನಾಡ್ ರಾಜ್ಯವಾದ್ ಕರ್ನಾಟಕೊಡು ಮಾ ಮಲ್ಲ ಪ್ರಸರಣೊಡು ಉಪ್ಪುನ ಇಂಗ್ಲಿಷ್ ಪತ್ರಿಕೆ. ದಾಯೆ ಪಂಡ, ಒರಿ ಸಂತ (ಅತ್ತ್ಂಡ ಭಾರತೀಯ ಪುರಾಣೊಡು ಋಷಿ) ನಲೆಕ, ದೇವಿ ಶೆಟ್ಟಿನ ಆಶ್ರಮ/ಆಸ್ಪತ್ರೆಗ್ ಬರ್ಪಿನ ಏರೆಗ್ಲಾ ಚಿಕಿತ್ಸೆ ಆಪುಂಡು.<ref>[https://www.deccanherald.com/state/top-karnataka-stories/who-is-devi-shetty-head-of-karnataka-s-covid-task-force-985836.html Who is Devi Shetty, head of Karnataka's Covid task force?]</ref> [[File:Dr Edmond Fernandes and Dr Devi Shetty in Bengaluru.jpg|alt=Cardiac Surgeon with Global Health Physician|thumb|ಡಾ.ದೇವಿ ಶೆಟ್ಟಿ, ಸಂಸ್ಥಾಪಕರು, ನಾರಾಯಣ ಹೃದಾಲಯ ದ ಒಟ್ಟುಗು ಡಾ.ಎಡ್ಮಂಡ್ ಫೆರ್ನಾಂಡಿಸ್, ಸಂಸ್ಥಾಪಕರು, ಸಿಎಚ್ ಡಿ ಗ್ರೂಪ್ ]] ಶೆಟ್ಟಿ ಬೊಕ್ಕ ಅರೆನ ಕುಟುಂಬೊಗು ನಾರಾಯಣ ಹೃದಯಾಲಯೊಡು 75 ಪರ್ಸೆಂಟ್ ಪಾಲು ಉಂಡು, ಅವೆನ್ ಆರ್ ಒರಿಪಾವೊಡು ಪನ್ಪಿನ ಯೋಜನೆ ಉಂಡು.<ref name=cost>{{cite news|url=http://articles.economictimes.indiatimes.com/2012-06-25/news/32409047_1_healthcare-sector-150-bed-hospital-narayana-hrudayalaya|archive-url=https://archive.today/20130103111154/http://articles.economictimes.indiatimes.com/2012-06-25/news/32409047_1_healthcare-sector-150-bed-hospital-narayana-hrudayalaya|archive-date=3 January 2013|title=We will prove the poor can access healthcare: Dr. Devi Prasad Shetty, Narayana Hrudayalaya|newspaper=Economic Times|date=25 June 2012|access-date=6 November 2012}}</ref> ಶೆಟ್ಟಿ ಕಡಿಮೆ ವೆಚ್ಚದ ರೋಗನಿರ್ಣಯ ಸೇವೆಲೆನ್ ಲಾ ಸುರು ಮಲ್ತೆರ್.<ref>{{cite web|url=http://www.newindianexpress.com/business/news/Narayana-Health-Cisco-join-hands-to-offer-affordable-diagnostics-solution/2016/09/08/article3615707.ece|archive-url=https://web.archive.org/web/20160909155645/http://www.newindianexpress.com/business/news/Narayana-Health-Cisco-join-hands-to-offer-affordable-diagnostics-solution/2016/09/08/article3615707.ece|archive-date=9 September 2016|title=Narayana Health, Cisco join hands to offer affordable diagnostics solution|website=Newindianexpress.com|access-date=18 October 2017}}</ref> ಜಾಗತಿಕ ಆರೋಗ್ಯ ವೈದ್ಯೆರ್ ಕಾರ್ಡಿಯಾಕ್ ಸರ್ಜನ್ ಪಂಡ್ದ್ ಟೀಕೆ ಮಲ್ತಿನ ಕರ್ನಾಟಕೊಡು ಕೋವಿಡ್-೧೯ ಟಾಸ್ಕ್ ಫೋರ್ಸ್ ದ ಅಧ್ಯಕ್ಷೆರಾದ್ ನೇಮಕ ಆಯೆರ್, ಕೋವಿಡ್-೧೯ ನಿರ್ವಹಣೆಗ್ ಅರೆಗ್ ಸಾಂಕ್ರಾಮಿಕ ರೋಗಶಾಸ್ತ್ರೀಯ ವಿಧಾನ ಇಜ್ಜಾಂಡ್. ==ಯಶಸ್ವಿನಿ== ಯಶಸ್ವಿನಿ ಪಂಡ ಒಂಜಿ ಕಡಿಮೆ ವೆಚ್ಚದ ಆರೋಗ್ಯ ವಿಮೆ ಯೋಜನೆ, ಉಂದೆನ್ ದೇವಿ ಶೆಟ್ಟಿ ಬೊಕ್ಕ [[ಕರ್ನಾಟಕ]] ಸರ್ಕಾರ ರಾಜ್ಯದ ಬಡ ರೈತೆರೆಗಾದ್ ವಿನ್ಯಾಸ ಮಲ್ತೆರ್, ಇತ್ತೆ 4 ಮಿಲಿಯನ್ ಜನಕುಲೆಡ ಯಶಸ್ವಿನಿ ಆರೋಗ್ಯ ವಿಮೆ ಉಂಡು.<ref name="First break all the rules"/> ==ಪ್ರಶಸ್ತಿ ಬೊಕ್ಕ ಮಾನ್ಯತೆ== *ಪದ್ಮಭೂಷಣ ವೈದ್ಯಕೀಯ ಪ್ರಶಸ್ತಿ, ೨೦೧೨ ಡ್<ref>{{cite news|title=Padma Bhushan to Dr. Shetty|url=http://www.ndtv.com/article/india/padma-awardees-include-mario-miranda-bhupen-hazarika-170283|website=Ndtv.com|access-date=18 October 2017}}</ref> *ಕರ್ನಾಟಕ ರತ್ನ ಪ್ರಶಸ್ತಿ, ೨೦೦೧ ರಲ್ಲಿ <ref>{{cite web|url=https://www.karnataka.gov.in/page/Awards/State%20Awards/Karnataka+Ratna/en |title= |publisher=Karnataka.gov.in |date=2022-01-19 |access-date=2022-09-04}}</ref> *ಎಕನಾಮಿಕ್ ಟೈಮ್ಸ್ ಅವಾರ್ಡ್ಸ್/ಇಟಿ ಅವಾರ್ಡ್ಸ್ ಡ್ ವರ್ಷದ ಉದ್ಯಮಿ, ೨೦೧೨ಡ್<ref name="ET_Awards_2012" /> *೨೦೧೧ ದಿ ಎಕನಾಮಿಸ್ಟ್ ''ವ್ಯವಹಾರ ಪ್ರಕ್ರಿಯೆ'' ಡ್ ನಾವೀನ್ಯತೆದ ಪ್ರಶಸ್ತಿ<ref>{{cite news|url=http://www.economistconferences.co.uk/innovation/businessprocessawardwinner2011|title=Business Process award winner 2011|newspaper=The Economist|access-date=5 June 2012|archive-url=https://web.archive.org/web/20120602131115/http://www.economistconferences.co.uk/innovation/businessprocessawardwinner2011|archive-date=2 June 2012}}</ref> *ಗೌರವ ಪದವಿ, ಮಿನ್ನೆಸೊಟಾ ವಿಶ್ವವಿದ್ಯಾಲಯ, ೨೦೧೧ಡ್<ref>{{cite web | url=https://uawards.umn.edu/honorary-degree-recipients/devi-prasad-shetty | title=Devi Prasad Shetty &#124; University Awards & Honors }}</ref> *ಗೌರವ ಪದವಿ, 'ಹಾನೋರಿಸ್ ಕಾಸಾ' ಪದವಿ 'ಡಾಕ್ಟರ್ ಆಫ್ ಸೈನ್ಸ್' ಇಂಡಿಯನ್ ಇನ್ಸ್ಟಿಟ್ಯೂಟ್ ಆಫ್ ಟೆಕ್ನಾಲಜಿ ಮದ್ರಾಸ್, ೨೦೧೪ ಡ್ <ref>{{cite web | url=https://www.newindianexpress.com/cities/bengaluru/2014/jul/20/devi-shetty-conferred-doctorate-by-iit-madras-637828.html | title=Devi Shetty Conferred Doctorate by IIT, Madras | date=20 July 2014 }}</ref> *ಶ್ವಾಬ್ ಫೌಂಡೇಶನ್ ಫಾರ್ ಸೋಶಿಯಲ್ ಎಂಟ್ರೆಪ್ರೆನ್ಯೂರ್ಶಿಪ್/ಶ್ವಾಬ್ ಫೌಂಡೇಶನ್ ಪ್ರಶಸ್ತಿ, ೨೦೦೫ಡ್<ref>{{cite news |title='Social enterprises' rise in Asia amid skepticism |url=https://asia.nikkei.com/Spotlight/Cover-Story/Social-enterprises-rise-in-Asia-amid-skepticism2 |access-date=16 September 2018 |work=Nikkei Asian Review |publisher=Tomomi Kikuchi |archive-date=8 June 2020 |archive-url=https://web.archive.org/web/20200608094029/https://asia.nikkei.com/Spotlight/Cover-Story/Social-enterprises-rise-in-Asia-amid-skepticism2 |url-status=dead }}</ref> *[[ಪದ್ಮಶ್ರೀ]] ವೈದ್ಯಕೀಯ ಪ್ರಶಸ್ತಿ, ೨೦೦೪ ಡ್<ref>{{cite news |title=Devi Shetty hails NMC bill, says it's a good move by govt |url=https://indianexpress.com/article/india/devi-shetty-hails-nmc-bill-says-its-a-good-move-by-govt-5008979/ |access-date=16 September 2018 |work=The Indian Express |date=2 January 2018}}</ref> *ಡಾ. ಬಿ.ಸಿ.ರಾಯ್ ಪ್ರಶಸ್ತಿ/ಡಾ. ಬಿ ಸಿ ರಾಯ್ ಪ್ರಶಸ್ತಿ, ೨೦೦೩ಡ್{{citation needed|date=November 2016}} *ಸರ್ ಎಂ.ವಿಶ್ವೇಶ್ವರಾಯ ಸ್ಮಾರಕ ಪ್ರಶಸ್ತಿ, ೨೦೦೩ ರಲ್ಲಿ<ref>{{cite news | url=https://www.fkcci.org/sir-m-v-awardees/ | title=Sir M.V Awardees | newspaper=Fkcci – Federation of Karnataka Chambers of Commerce and Industry | date=9 January 2021 }}</ref> *ಅರ್ನ್ಸ್ಟ್ & ಯಂಗ್ ವರ್ಷದ ಉದ್ಯಮಿ ಪ್ರಶಸ್ತಿ/ಅರ್ನ್ಸ್ಟ್ & ಯಂಗ್,&nbsp;ವರ್ಷದ ಉದ್ಯಮಿ – ಜೀವ ವಿಜ್ಞಾನ, ೨೦೧೨ಡ್<ref name="autogenerated1">{{cite web|url=http://www.ey.com/in/en/about-us/entrepreneurship/entrepreneur-of-the-year/ey-entrepreneur-of-the-year-program-hall-of-fame|title=Entrepreneur Of The Year 2017 program - Past winners|publisher=Ernst & Young|access-date=30 May 2018|archive-date=23 July 2018|archive-url=https://web.archive.org/web/20180723122605/https://www.ey.com/in/en/about-us/entrepreneurship/entrepreneur-of-the-year/ey-entrepreneur-of-the-year-program-hall-of-fame}}</ref> *ಅರ್ನ್ಸ್ಟ್ & ಯಂಗ್ ವರ್ಷದ ಉದ್ಯಮಿ ಪ್ರಶಸ್ತಿ/ಅರ್ನ್ಸ್ಟ್ & ಯಂಗ್, ವರ್ಷದ ಉದ್ಯಮಿ – ಸ್ಟಾರ್ಟ್-ಅಪ್, ೨೦೦೩ಡ್<ref name="autogenerated1"/> *ರಾಜ್ಯೋತ್ಸವ ಪ್ರಶಸ್ತಿ, ೨೦೦೨ ರಲ್ಲಿ <ref>{{cite news | url=https://timesofindia.indiatimes.com/city/bengaluru/rajyotsava-awards-for-nilekani-kasarvalli-devi-shetty/articleshow/26697750.cms | title=Rajyotsava awards for Nilekani, Kasarvalli, Devi Shetty &#124; Bengaluru News - Times of India | website=[[The Times of India]] | date=29 October 2002 }}</ref> *ವರ್ಷದ ಭಾರತೀಯ (ಸಾರ್ವಜನಿಕ ಕ್ಷೇತ್ರ) ಸಿಎನ್ಎನ್-ಐಬಿಎನ್ ವರ್ಷದ ಭಾರತೀಯ/ಸಿಎನ್ಎನ್-ಐಬಿಎನ್, ೨೦೧೨ಡ್<ref>{{cite web | url=https://www.news18.com/news/india/indian-of-the-year-public-service-526373.html | title=Devi Shetty named Indian of the Year in Public Service category | date=12 December 2012 }}</ref> ==ಟೆಲಿವಿಷನ್== ಶೆಟ್ಟಿ ನೆಟ್ ಫಿಕ್ಸ್ ನ ಡಾಕ್ಯುಮೆಂಟರಿ '''''ದಿ ಸರ್ಜನ್ಸ್ ಕಟ್''''' ದ ನಾಲ್ನೇ (ಬೊಕ್ಕ ಕಡೆತ) ಕಂತುಡು ನಟನೆ ಮಲ್ತೆರ್, ಉಂದು 9 ಡಿಸೆಂಬರ್ 2020 ಗ್ ಜಾಗತಿಕವಾದ್ ಬಿಡುಗಡೆ ಆಂಡ್. ಈ ಕಂತುಡು ಶೆಟ್ಟಿ ರೋಗಿಲೆನ ಚಿಕಿತ್ಸೆನ್ ಅವಲಂಬಿಸುದು ಇತ್ತುಂಡು, ಹೆಚ್ಚಿನವು ಜೋಕುಲು ಬೊಕ್ಕ ಬಾಲೆಲು, ಕಡಿಮೆ ವೆಚ್ಚೊದ ಬೊಕ್ಕ ಕೈಗೆಟುಕಿನ ಆರೋಗ್ಯ ರಕ್ಷಣೆಗ್ ಪ್ರಾಧಾನ್ಯತೆ ಕೊರ್ದು ತನ್ನ ತಂಡೊದೊಟ್ಟುಗು ಮುಪ್ಪ ದಿನೊಡ್ದ್ ಜಾಸ್ತಿ ಶಸ್ತ್ರಚಿಕಿತ್ಸೆಲೆನ್ ಮಲ್ತಿನ ಪ್ರಸಾರ ಮಂತೆರ್.<ref>BBC News [https://www.bbc.com/mediacentre/bbcstudios/2020/bbc-studios-productions-surgeons-cut-premiere-globally-netflix "The Surgeon's Cut"]</ref> ==ಉಲ್ಲೇಕೊಲು== {{reflist|colwidth=30em}} ==ಬಾಹ್ಯ ಕೊಂಡಿಲು== {{Commons category}} * [https://www.narayanahealth.org/bangalore/cardiac-surgery-adult-cardiac-surgery-paediatric/dr-devi-prasad-shetty Profile - Devi Prasad Shetty] {{DEFAULTSORT:Shetty, Devi Prasad}} [[ವರ್ಗೊ:ಕುಡ್ಲದಕುಲು]] [[ವರ್ಗೊ:ತುಳುವೆರ್]] 6ol3o9fthmobfby8kzg4mquusfh4fk7 ಅರವಿಂದ ಅಡಿಗ 0 27455 362621 362538 2026-07-09T23:43:56Z InternetArchiveBot 4316 Rescuing 4 sources and tagging 0 as dead.) #IABot (v2.0.9.5 362621 wikitext text/x-wiki {{Short description|ಭಾರತದ ಪತ್ರಕರ್ತೆರ್ ಮತ್ ಲೇಖಕ}} {{Use dmy dates|date=February 2020}} '''ಅರವಿಂದ ಅಡಿಗ''' (ಜನನ: 23 ಅಕ್ಟೋಬರ್ 1974)<ref>{{cite interview | date=18 October 2008 | access-date=9 November 2013 | first=Aravind | last=Adiga | title=Provocation is one of the legitimate goals of literature | url=http://www.indianexpress.com/news/-provocation-is-one-of-the-legitimate-goals-of-literature-/374718/ | interviewer=Vijay Rana | work=[[The Indian Express]]}}</ref><ref>[https://web.archive.org/web/20130112234940/http://www.expressindia.com/latest-news/Indian-novelist-Aravind-Adiga-wins-Booker-prize/373637/ Indian Australian novelist Aravind Adiga wins Booker prize - Express India] {{webarchive |url=https://web.archive.org/web/20081205000338/http://www.expressindia.com/latest-news/Indian-novelist-Aravind-Adiga-wins-Booker-prize/373637/ |date=5 December 2008 }}</ref> ಭಾರತೊಡ್ ಜನಿಸಿನ ಆಸ್ಟ್ರೇಲಿಯಾದ ಲೇಖಕ ಮತ್ ಪತ್ರಕರ್ತೆರ್. ಐರ್ ಮೊದಲ ಕಾದಂಬರಿ '''''ದಿ ವೈಟ್ ಟೈಗರ್''''' 2008 ನೇ ಇಸವಿದ ಪ್ರತಿಷ್ಠಿತ '''ಮ್ಯಾನ್ ಬೂಕರ್ ಪ್ರಶಸ್ತಿ''' ಪ್ರಶಸ್ತಿನ್ ಗೆಂದುದುಂಡು.<ref name="Indian novelist Aravind Adiga wins Booker prize">{{cite news|url=http://www.expressindia.com/latest-news/Indian-novelist-Aravind-Adiga-wins-Booker-prize/373637/ |title=Indian novelist Aravind Adiga wins Booker prize |date=15 October 2008 |work=Agencies |publisher=Expressindia |access-date=2008-10-16 |archive-url=https://web.archive.org/web/20081205000338/http://www.expressindia.com/latest-news/Indian-novelist-Aravind-Adiga-wins-Booker-prize/373637/ |archive-date=5 December 2008 |url-status=dead |df=dmy }}</ref> {{Infobox writer | name = ಅರವಿಂದ ಅಡಿಗ | birth_date = {{Birth date and age|df=yes|1974|10|23}} | birth_place = ಮದ್ರಾಸ್ (ಇತ್ತೆದ ಚೆನ್ನೈ), [[ತಮಿಳುನಾಡು]], [[ಭಾರತ]] | occupation = ಲೇಖಕ, ಪತ್ರಕರ್ತೆರ್ | alma_mater = ಕೊಲಂಬಿಯಾ ವಿಶ್ವವಿದ್ಯಾಲಯ<br>ಮ್ಯಾಗ್ಡಲೆನ್ ಕಾಲೇಜ್, ಆಕ್ಸ್‌ಫರ್ಡ್ | genre = ಕಾದಂಬರಿ, ಎಲ್ಯ ಕಥೆಕುಲು | notable_works = ''[[ದಿ ವೈಟ್ ಟೈಗರ್ (ಅಡಿಗ ಅವರ ಕಾದಂಬರಿ)|ದಿ ವೈಟ್ ಟೈಗರ್]]'', ''[[ಲಾಸ್ಟ್ ಮ್ಯಾನ್ ಇನ್ ಟವರ್]]'', ''[[ಸೆಲೆಕ್ಷನ್ ಡೇ]]'' | awards = 2008ರ ಮ್ಯಾನ್ ಬೂಕರ್ ಪ್ರಶಸ್ತಿ}} == ಆರಂಭಿಕ ಜೀವನ ಬೊಕ್ಕ ಶಿಕ್ಷಣ == ಅರವಿಂದ ಅಡಿಗ 23 ಅಕ್ಟೋಬರ್ 1974ಡ್ ಮದ್ರಾಸ್(ಇತ್ತೆದ ಚೆನ್ನೈ), [[ತಮಿಳುನಾಡು]]ಡ್ ಜನಿಯೆರ್. ಆಯೆರ್ ಅಪ್ಪೆ-ಅಮ್ಮೆರ್ ಉಷಾ ಅಡಿಗ ಬೊಕ್ಕ ಡಾ. ಕೆ. ಮಾಧವ ಅಡಿಗ ಮೂಲತಃ [[ಮಂಗಳೂರು]], [[ಕರ್ನಾಟಕ]]ದಕುಲು.<ref name="Booker for KannAdiga">{{cite news|url=http://archive.deccanherald.com/Content/Oct162008/scroll2008101695497.asp?section=frontpagenews |title=Booker for KannAdiga |date=16 October 2008 |work=Deccan Herald|access-date=16 October 2008 |url-status=dead |archive-url=https://web.archive.org/web/20120406015813/http://archive.deccanherald.com/Content/Oct162008/scroll2008101695497.asp?section=frontpagenews |archive-date=6 April 2012 }}</ref><ref name="origin">{{cite news|url=http://www.hindu.com/2008/10/16/stories/2008101658160300.htm|title=Mangloreans rejoice over Aravind Adiga's win |date=16 October 2008|access-date=16 October 2008|archive-url=https://web.archive.org/web/20081020061237/http://www.hindu.com/2008/10/16/stories/2008101658160300.htm|archive-date=20 October 2008|work=[[The Hindu]]|url-status=dead}}</ref> ಅರೆನ ಅಜ್ಜೆರ್ ಕೆ. ಸೂರ್ಯನಾರಾಯಣ ಅಡಿಗ [[ಕರ್ನಾಟಕ ಬ್ಯಾಂಕ್]]ದ ಮಾಜಿ ಅಧ್ಯಕ್ಷರೆರ್.<ref name="Booker for KannAdiga"/><ref name="origin"/> ಅರೆನ ಅಮ್ಮನ ಕಡೆತ ಪಿಜ್ಜೆರ್ ಯು. ರಾಮ ರಾವ್ ಮದ್ರಾಸ್‌ದ ಪ್ರಸಿದ್ಧ ವೈದ್ಯೆರ್ ಬೊಕ್ಕ ರಾಜಕಾರಣಿಯೆರ್.<ref name="thehindu_20081103">{{cite news|first=S.|last=Muthiah|url=http://www.hindu.com/mp/2008/11/03/stories/2008110350240500.htm|archive-url=https://web.archive.org/web/20121110142319/http://www.hindu.com/mp/2008/11/03/stories/2008110350240500.htm|url-status=dead|archive-date=10 November 2012|title=A lineage of success|date=3 November 2008|work=[[The Hindu]]}}</ref> ಅರವಿಂದ ಅಡಿಗ ಮಂಗಳೂರುಡ್ ಬೆಳೆದೆರ್. ಆಯೆರ್ ಕೆನರಾ ಹೈ ಸ್ಕೂಲ್ಡ್ ಶಾಲಾ ಶಿಕ್ಷಣ ಮಲ್ತೆರ್. ಬೊಕ್ಕ ಸೇಂಟ್ ಅಲೋಶಿಯಸ್ ಕಾಲೇಜು, ಮಂಗಳೂರುಡ್ ಓದಿ 1990ಡ್ SSLC ಪರೀಕ್ಷೆ ಪೂರೈಸಿಯೆರ್.<ref name="origin"/><ref name="Alma mater celebrates Adiga's win">{{cite news|url=http://bangaloremirror.com/index.aspx?Page=article&sectname=News%20-%20State&sectid=73&contentid=200810152008101519583954559343e3a|title=Almamater celebrates Adiga's win|date=16 October 2008|work=Bangalore Mirror|access-date=16 October 2008|archive-url=https://web.archive.org/web/20081018000442/http://bangaloremirror.com/index.aspx?Page=article&sectname=News%20-%20State&sectid=73&contentid=200810152008101519583954559343e3a|archive-date=18 October 2008|url-status=dead}}</ref><ref>{{Cite news|last=Karnel|first=Savie|date=16 October 2008|title=Kannadigas' pride|url=https://www.mid-day.com/news/2008/oct/161008-aravind-adiga-man-booker-prize-winner-teachers-nostalgia.htm|url-status=dead|archive-url=https://web.archive.org/web/20120306021805/https://www.mid-day.com/news/2008/oct/161008-aravind-adiga-man-booker-prize-winner-teachers-nostalgia.htm|archive-date=6 March 2012|access-date=24 May 2024|work=[[Mid-Day]]}}</ref> ಕುಟುಂಬೊಡನೆ ಆಸ್ಟ್ರೇಲಿಯಾದ ಸಿಡ್ನಿಗ್ ತೆರಳಿನ ಪಿರ, ಆಯೆರ್ ಜೇಮ್ಸ್ ರೂಸ್ ಅಗ್ರಿಕಲ್ಚರಲ್ ಹೈಸ್ಕೂಲ್ಡ್ ಓದಿಯೆರ್. ಆಯಿ ಬೊಕ್ಕ ಅಮೆರಿಕಾದ ಕೊಲಂಬಿಯಾ ವಿಶ್ವವಿದ್ಯಾಲಯದ ಮ್ಯಾಗ್ಡಲೆನ್ ಕಾಲೇಜ್, ಆಕ್ಸ್‌ಫರ್ಡ್ಡ್ ಇಂಗ್ಲಿಷ್ ಸಾಹಿತ್ಯಡ್ ಪದವಿ ಪಡೆದಿಯೆರ್. ಇತ್ತೆದ ಇತಿಹಾಸಕಾರ ಸೈಮನ್ ಶಾಮಾ ಅರೆನ ಗುರುಕುಲು. 1997ಡ್ ಆಯೆರ್ ''ವಂದನಾಕಾರ'' ಗೌರವೊಡನೆ ಪದವಿ ಸಂಪಾದಿಸಿಯೆರ್.<ref>[http://www.columbia.edu/cu/record/archives/vol22/vol22_iss23/record2223.13.html At Last! Commencement For More than 8,900 Today. Columbia University Record. MAY 21, 1997] {{webarchive |url=https://web.archive.org/web/20100627233608/http://www.columbia.edu/cu/record/archives/vol22/vol22_iss23/record2223.13.html |date=27 June 2010 }}</ref> ಅಯಿಡ್ದ್ ಬೊಕ್ಕ ಇಂಗ್ಲೆಂಡ್‌ದ ಮ್ಯಾಗ್ಡಲೆನ್ ಕಾಲೇಜ್, ಆಕ್ಸ್‌ಫರ್ಡ್ಡ್ ಓದಿಯೆರ್. ಇತ್ತೆದ ಪ್ರಸಿದ್ಧ ಸಾಹಿತ್ಯ ವಿಮರ್ಶಕಿ '''ಹರ್ಮಿಯೋನ್ ಲೀ''' ಅರೆನ ಉಪನ್ಯಾಸಕಿಯಾದ್ ಇತ್ತೆರ್. == ವೃತ್ತಿ == === ಪತ್ರಿಕೋದ್ಯಮ === ಅರವಿಂದ ಅಡಿಗ ಪತ್ರಿಕೋದ್ಯಮದ ವೃತ್ತಿನ್ ''ಫೈನಾನ್ಶಿಯಲ್ ಟೈಮ್ಸ್''ಡ್ ಇಂಟರ್ನ್ ಆದ್ ಆರಂಭ ಮಲ್ತ್ದೆರ್.<ref name=":0" /> ಅಯಿಡ್ದ್ ಬೊಕ್ಕ ಆಯೆರ್ ''ಮನಿ ನಿಯತಕಾಲಿಕೆ'' ಬೊಕ್ಕ ''''ಟೈಮ್ (ನಿಯತಕಾಲಿಕೆ)'''' ಪತ್ರಿಕೆಲೆಕ್ ಲೇಖನ ಬರೆಯೆರ್. ಇತ್ತೆ ಷೇರು ಮಾರುಕಟ್ಟೆ, ಹೂಡಿಕೆ (Investment) ಬೊಕ್ಕ ಆರ್ಥಿಕ ವಿಷಯಲೆನ್ ಕುರಿತ್ತಾದ್ ವರದಿಲೆನ್ ತಯಾರ್ ಮಲ್ತು ಪ್ರಕಟ ಮನ್ಪುವೆರ್.ಚ2003ಡ್ ಆರ್ ಅಮೆರಿಕದ ಅಧ್ಯಕ್ಷ ಆಯಿನ '''ಡೊನಾಲ್ಡ್ ಟ್ರಂಪ್''' ಅರನೊಟ್ಟುಗ್ ಸಂದರ್ಶನ ಮಲ್ತೆರ್.<ref name=":0">{{cite news|url=https://www.firstpost.com/art-and-culture/curious-case-of-aravind-adiga-as-a-famous-literary-recluse-booker-winning-author-is-anomaly-in-publishing-world-9306801.html|title=Curious Case of Aravind Adiga|publisher=Firstpost|date=16 February 2021}}</ref><ref>{{Cite news|last=Krich|first=John|date=24 June 2020|title=Author Aravind Adiga highlights Australian 'hypocrisy'|url=https://asia.nikkei.com/Life-Arts/Arts/Author-Aravind-Adiga-highlights-Australian-hypocrisy|access-date=24 May 2024|work=[[Nikkei Asia]]}}</ref> ಅವ್ವೇ ವರ್ಷ ಆಯೆರ್ ನ್ಯೂಯಾರ್ಕ್ ಬಿಟ್ಟುಗ್ ಪೊಸ ದೆಹಲಿಗ್ ಪೋಯೆರ್ ಬೊಕ್ಕ '''ಟೈಮ್ (ನಿಯತಕಾಲಿಕೆ)''' ಪತ್ರಿಕೆದ ದಕ್ಷಿಣ ಏಷ್ಯಾ ವರದಿಗಾರರಾದ್ (South Asia Correspondent) ಕೆಲಸ ಮಲ್ತೆರ್.<ref name=":1" /><ref>{{Cite news|last=Adiga|first=Aravind|date=10 June 2009|title=My Wild Trip Home|url=https://www.thedailybeast.com/my-wild-trip-home|work=[[The Daily Beast]]|access-date=24 May 2024}}</ref>2017ಡ್ ಕೊರ್ಪಿನ ಒಂಜಿ ಸಂದರ್ಶನದ್ ಆಯೆರ್ ಇಂಚೆ ಪಂಡೆರ್:{{Quote|'''“ಪತ್ರಿಕೋದ್ಯಮ ಎಂಕ್ ಭಾರತಗ್ ಪಿರ ಬರ್ಪಿನ ಒಂಜಿ ತಾದಿನ್ ಕೊರುಂಡ್.”'''}} <ref name=":1">{{Cite news|last=Moss|first=Stephen|date=25 August 2017|title=Aravind Adiga: 'I was afraid the White Tiger would eat me up too'|url=https://www.theguardian.com/books/2017/aug/25/aravind-adiga-books-interview-selection-day-the-white-tiger|access-date=24 May 2024|work=[[The Guardian]]}}</ref> ಮೂಜಿ ವರ್ಷದ ಪಿರ ಆರ್ ಸ್ವತಂತ್ರ ಲೇಖಕೆರಾದ್ (Freelance Writer) ಕೆಲಸ ಮಲ್ಪುನ ಆರಂಭ ಮಲ್ತೆರ್ ಮತ್ '''ಮುಂಬೈ'''ಡ್ ನೆಲೆನಿಂತ್ದೆರ್.<ref name=":0" /> ಪಿರ, ಬೂಕರ್ ಪ್ರಶಸ್ತಿ ವಿಜೇತ '''ಪೀಟರ್ ಕ್ಯಾರಿ''' ಬರೆತಿನ ''ಆಸ್ಕರ್ ಮತ್ತು ಲುಸಿಂಡಾ'' ಪುಸ್ತಕದ ವಿಮರ್ಶೆ ''ದಿ ಸೆಕೆಂಡ್ ಸರ್ಕಲ್'' ಆನ್‌ಲೈನ್ ಸಾಹಿತ್ಯ ಪತ್ರಿಕೆಡ್ ಪ್ರಕಟ ಆಂಡ್.<ref>Adiga, Aravind. {{usurped|1=[https://web.archive.org/web/20090510000302/http://thesecondcircle.net/arv/care.html "OSCAR AND LUCINDA by Peter Carey"]}}. ''The Second Circle.''</ref> === ''ದಿ ವೈಟ್ ಟೈಗರ್ '' === ''ಟೈಮ್ (ನಿಯತಕಾಲಿಕೆ)'' ಪತ್ರಿಕೆಡ್ ಕೆಲಸೊನ್ ಪಿರ ಬುಡ್ದು, ಅರವಿಂದ ಅಡಿಗೆರ್ ಸುರುತ ಕಾದಂಬರಿ '''''ದಿ ವೈಟ್ ಟೈಗರ್ ''''' ಬರೆಯೆರೆಕ್ ಸುರು ಮಲ್ತೆರ್.<ref>{{Cite magazine |last=Green |first=William |date=15 October 2008 |title=Celebrating with Booker Prize Winner Aravind Adiga |url=https://content.time.com/time/arts/article/0,8599,1850424,00.html |access-date=24 May 2024 |magazine=[[Time (magazine)|Time]] |archivedate=16 April 2024 |archive-url=https://web.archive.org/web/20240416211624/https://content.time.com/time/arts/article/0,8599,1850424,00.html |url-status=dead }}</ref> ಈ ಕಾದಂಬರಿ 2008ರ ಮಾರ್ಚ್ ತಿಂಗೊಳುಡು ಪ್ರಕಟ ಆಂಡ್. ಅವ್ವೆ ವರ್ಷ ಈ ಕೃತಿ ವಿಶ್ವಪ್ರಸಿದ್ಧ '''ಬೂಕರ್''' ಪ್ರಶಸ್ತಿನ್ ಗೆಂದುಂಡು.<ref>{{Cite web |title=The White Tiger |url=https://thebookerprizes.com/the-booker-library/books/the-white-tiger |access-date=24 May 2024 |website=The Booker Prizes}}</ref><ref>{{Cite news |last=Young |first=Victoria |date=14 October 2008 |title=Novel About India Wins the Man Booker Prize |url=https://www.nytimes.com/2008/10/15/world/europe/15booker.html |access-date=24 May 2024 |work=[[The New York Times]]}}</ref> ಅರವಿಂದ ಅಡಿಗ '''ಬೂಕರ್ ಪ್ರಶಸ್ತಿ''' ಗೆಂದುದಿನ ನಾಲನೇ ಭಾರತೊಡ್ ಪುಟ್ಟುದಿನ ಲೇಖಕೆರಾದ್ ಗುರುತು ಆಯೆರ್. ನೆತ್ತ ಮೊದಲು ಸಲ್ಮಾನ್ ರಶ್ದಿ, [[ಅರುಂಧತಿ ರಾಯ್]] ಮತ್ ಕಿರಣ್ ದೇಸಾಯಿ ಈ ಪ್ರಶಸ್ತಿನ್ ಗೆಂದುದು ಇತ್ತೆರ್.<ref>{{Cite news |last=Ritchie |first=Alice |date=15 October 2008 |title=India's Aravind Adiga wins Booker Prize |url=https://www.smh.com.au/world/indias-aravind-adiga-wins-booker-prize-20081015-50vr.html |access-date=24 May 2024 |work=[[The Sydney Morning Herald]]}}</ref> ಬೂಕರ್ ಪ್ರಶಸ್ತಿ ಗೆಂದುದಿನ ಪಿರ, ''ದಿ ವೈಟ್ ಟೈಗರ್'' ಭಾರತೊದ ಹಾರ್ಡ್‌ಕವರ್ ಆವೃತ್ತಿ 2 ಲಕ್ಷಕ್ಕು ಮಿಗಿಲಾದ್ ಪ್ರತಿಲೆನ್ ಮಾರಾಟ ಆದು ಪೋಂಡು.<ref>{{cite news |url=http://www.thehindu.com/news/international/article148574.ece |title=Boom time for English-language books in India |work=[[The Hindu]] |date=4 March 2010}}</ref> ಈ ಕಾದಂಬರಿಗ್ ವಿಶ್ವದಾದ್ಯಂತ ಉತ್ತಮ ವಿಮರ್ಶೆಲೆನ್ ಪಡೆಂಡ್. ''ಯುಎಸ್‌ಎ ಟುಡೇ'' ಈ ಪುಸ್ತಕನ್ "ದಶಕಲೆಡ್ ಓದಿನ ಅತ್ಯಂತ ಪ್ರಭಾವಶಾಲಿ ಕೃತಿಲೆಡ ಒಂಜಿ" ಪಂದ್ ಪ್ರಶಂಸೆ ಮಲ್ತುಂಡು, ಇಂದ್ ರಿಚರ್ಡ್ ರೈಟ್ ನ ''ನೇಟಿವ್ ಸನ್'' ಬೊಕ್ಕ ರಾಲ್ಫ್ ಎಲಿಸನ್ನ ''ಇನ್ವಿಸಿಬಲ್ ಮ್ಯಾನ್'' ಕೃತಿಲೆಡೊಟ್ಟುಗ್ ಹೋಲಿಕೆ ಮಲ್ತುಂಡು.<ref>{{Cite news |date=23 April 2008 |title=Roundup: Debut novels |url=https://www.usatoday.com/story/life/books/2013/06/28/roundup-debut-novels/2468679/ |access-date=24 May 2024 |work=[[USA Today]]}}</ref> ''ದಿ ವಾಷಿಂಗ್ಟನ್ ಪೋಸ್ಟ್'' ಈ ಕಾದಂಬರಿನ್ "ಭಾರತದ ಭ್ರಷ್ಟ ಮೇಲ್ವರ್ಗದ ಬದುಕುದ ತೀಕ್ಷ್ಣ, ಪೊಸ ಬೊಕ್ಕ ಮನಸ್ಪರ್ಶಿ ಚಿತ್ರಣ" ಪಂದ್ ವರ್ಣಿಸಾಂಡ್.<ref>{{Cite news |date=7 June 2008 |title=Changing Lanes |url=https://www.washingtonpost.com/archive/entertainment/2008/06/08/changing-lanes/ee33f097-3200-4342-9432-88604a67fff1/ |access-date=24 May 2024 |newspaper=[[The Washington Post]]}}</ref> ಬೂಕರ್ ಪ್ರಶಸ್ತಿ ಗೆಂದುದಿನ ಬೊಕ್ಕ, ಲಂಡನ್ ಪುಸ್ತಕ ಮೇಳೊಡ್ ''ಅಟ್ಲಾಂಟಿಕ್ ಬುಕ್ಸ್'' ದ ಒಟ್ಟುಗು ಪ್ರಕಾಶನ ಒಪ್ಪಂದ ಮಲ್ಪಿನ ಸಾಹಿತ್ಯ ಪ್ರತಿನಿಧಿನ್ (ಸಾಹಿತ್ಯಿಕ ಪ್ರತಿನಿಧಿ) ಅರವಿಂದ ಅಡಿಗ ಕೆಲಸೊಡ್ದೆರ್ ಪಂದ್ ಆರೋಪ ಬತ್ತುಂಡು.<ref>{{cite news |date=26 October 2008 |title=Booker in pocket, Aravind Adiga sacks agent |url=http://ibnlive.in.com/news/booker-in-pocket-aravind-adiga-sacks-agent/76764-19.html |publisher=CNN-IBN |access-date=9 July 2026 |archive-date=25 October 2014 |archive-url=https://web.archive.org/web/20141025202653/http://ibnlive.in.com/news/booker-in-pocket-aravind-adiga-sacks-agent/76764-19.html |url-status=dead }}</ref> ಅಡಿಗ ಈ ಆರೋಪನ್ ನಿರಾಕರಣೆ ಮಲ್ತೆರ್.<ref>{{Cite news |date=26 October 2008 |title=Booker winner Adiga denies he sacked his agent |url=http://www.hindu.com/thehindu/holnus/000200810261942.htm |work=[[The Hindu]] |access-date=9 July 2026 |archive-date=30 October 2008 |archive-url=https://web.archive.org/web/20081030134714/http://www.hindu.com/thehindu/holnus/000200810261942.htm |url-status=dead }}</ref> 2009ರ ಏಪ್ರಿಲ್‌ಡ್ ಈ ಕಾದಂಬರಿನ್ ಚಲನಚಿತ್ರಾದ್ ರೂಪಾಂತರ ಮಲ್ಪವೆ ಪಂದ್ ಘೋಷಣೆ ಆಂಡ್.<ref>Kay, Jeremy (15 April 2009), "Smuggler, Ascension acquire 2008 Man Booker winner White Tiger", ''Screen Daily''.</ref> ಬೊಕ್ಕ 2021ಡ್ '''ನೆಟ್ ಫ್ಲಿಕ್ಸ್''' ದ ಮೂಲಕ '''ದಿ ವೈಟ್ ಟೈಗರ್''' (2021 ಸಿನಿಮಾ) ಚಲನಚಿತ್ರ ಬಿಡುಗಡೆಯಾಂಡ್ .<ref>{{Cite news |last1=Thiagarajan |first1=Kamala |last2=Silver |first2=Marc |date=29 January 2021 |title=What Indians Who've Known Poverty Think Of Netflix's 'The White Tiger' Movie |url=https://www.npr.org/sections/goatsandsoda/2021/01/29/961620648/what-formerly-poor-indians-think-of-netflixs-the-white-tiger-movie |work=NPR}}</ref><ref>{{Cite web |date=21 January 2021 |title=How Netflix helped The White Tiger movie become a reality |url=https://indianexpress.com/article/entertainment/hollywood/how-netflix-helped-the-white-tiger-movie-become-a-reality-7155307/ |website=[[The Indian Express]]}}</ref> ==ಉಲ್ಲೆಕೊಲು== dgppn58ill71yqqeszvr8hfput7ia7v ಭಾಸ್ಕರ ಆನಂದ್ ಸಾಲೆತೊರೆ 0 27469 362623 362603 2026-07-10T00:14:43Z InternetArchiveBot 4316 Rescuing 0 sources and tagging 1 as dead.) #IABot (v2.0.9.5 362623 wikitext text/x-wiki {{Short description|ಭಾರತದ ಇತಿಹಾಸಕಾರ}} {{Use dmy dates|date=October 2022}} {{Infobox person | name = ಭಾಸ್ಕರ ಆನಂದ ಸಾಲೆತೊರೆ | caption = | birth_date = 1900 | birth_place = ಸಾಲೆತೊರೆ, [[ಪುತ್ತೂರು ತಾಲೂಕು]], [[ದಕ್ಷಿಣ ಕನ್ನಡ]] | spouse = | death_date = 1963 | death_place = | occupation = ಇತಿಹಾಸಕಾರ, ಶಿಕ್ಷಣತಜ್ಞ, ಪ್ರಾಧ್ಯಾಪಕ, ಲೇಖಕ }} '''ಭಾಸ್ಕರ ಆನಂದ್ ಸಾಲೆತೊರೆ''' (1900–1963), ಬಿ.ಎ. ಸಾಲೆತೊರೆ ಪನ್ಪಿನ ಪುದರ್ಡ್ ಪುದರ್ ಪೋಯಿನ [[ಮಂಗಳೂರು]]ದ, ಒರಿ ಭಾರತೀಯ ಇತಿಹಾಸಕಾರೆ . ==ಸುರುತ ವರ್ಷೊಲು== ಬಿ.ಎ. ಸಾಲೆತೊರೆ [[ದಕ್ಷಿಣ ಕನ್ನಡ]] ಜಿಲ್ಲೆದ [[ಪುತ್ತೂರು]] ತಾಲೂಕುದ '''ಸಾಲೆತೊರೆ''' ಪನ್ಪಿನ ಗ್ರಾಮೊಡು ಪುಟ್ಟುದೆರ್. ಆರೆನ ಶಾಲೆದ ಸುರುತ ಶಿಕ್ಷಣೊನು [[ಮಂಗಳೂರು]]ಡ್ ಮಲ್ತೆರ್. ಆರ್ ಅರೆನ ಬಿ.ಟಿ. ಮದ್ರಾಸ್ ಡ್ದ್ ಪದವಿ ಬೊಕ್ಕ ಸೇಂಟ್ ಜೆವಿಯರ್ಸ್ ಕಾಲೇಜ್, ಮುಂಬೈ,(ಅಪಗ ಬೊಂಬಾಯಿ). ಆರ್ ಲಂಡನ್ ವಿಶ್ವವಿದ್ಯಾಲಯಡ್ ಇತಿಹಾಸೊಡು ೧೯೩೧ಡ್ ಬೊಕ್ಕ ಗೀಸೆನ್ ವಿಶ್ವವಿದ್ಯಾಲಯ, ಜರ್ಮನಿಡ್ದ್ ರಾಜಕೀಯೊಡು ೧೯೩೩ಡ್ ಶಿಕ್ಷಣ ಪಡೆಯೆರ್.<ref name=classic>{{cite web |title=Saletore B.A., 1902–1963 |url=http://www.classicalkannada.org/DataBase/KannwordHTMLS/CLASSICAL%20KANNADA%20SCHOLARS%20HTML/SALETORE%20B.A.%20HTML.htm |publisher=Centre for Classical Kannada, Central Institute of Indian languages, Mysore |accessdate=4 July 2013 }}{{Dead link|date=July 2026 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> ==ವೃತ್ತಿಜೀವನ== ೧೯೩೮ಡ್ ಪುಣೆಡ್ ಸರ್ ಪರ್ಶುರಾಂಭಾವು ಕಾಲೇಜ್ ಡ್ ಇತಿಹಾಸದ ಪ್ರಾಧ್ಯಾಪಕೆರಾದ್ ತನ್ನ ವೃತ್ತಿಜೀವನೊನು ಸುರು ಮಲ್ತೆರ್, ಬೊಕ್ಕ ನನೊಂಜಿ ಸರ್ತಿ ಅಹ್ಮದಾಬಾದ್ ವಿಶ್ವವಿದ್ಯಾಲಯ ಡ್ ಬೇಲೆ ಮಲ್ತೆರ್. ಬೊಂಬಾಯಿ ಶಿಕ್ಷಣ ಸೇವೆದೊಟ್ಟುಗು ಬೇಲೆ ಮಲ್ತೆರ್. ಆರ್ '''ಭಾರತದ ರಾಷ್ಟ್ರೀಯ ಆರ್ಕೈವ್ಸ್''' ದ ನಿರ್ದೇಶಕೆರ್ ಆಯೆರ್, ೧೯೬೦ಡ್ ನಿವೃತ್ತರಾಯೆರ್. ಅಯಿಡ್ದ್ ಬೊಕ್ಕ, ಆರ್ ಪ್ರಾಧ್ಯಾಪಕೆರಾದ್, ನನೊಂಜಿ ಸರ್ತಿ ಸ್ನಾತಕೋತ್ತರ ಇತಿಹಾಸ ವಿಭಾಗೊದ ಮುಖ್ಯಸ್ಥೆರಾದ್, ಬೊಕ್ಕ ಅಂಚನೆ ಕರ್ನಾಟಕ ವಿಶ್ವವಿದ್ಯಾಲಯ, [[ಧಾರವಾಡ]] ಡ್ ಕನ್ನಡ ಸಂಶೋಧನಾ ಸಂಸ್ಥೆಡ್ ನಿರ್ದೇಶಕೆರ್ ಆದ್ ತನ್ನ ಅಧಿಕಾರಾವಧಿನ್ ಸುರು ಮಲ್ತೆರ್.<ref name=classic/><ref>{{cite web |title=Remembering Prof. Saletore |url=http://www.kamat.com/kalranga/people/pioneers/saletore.htm |author=Dr. Jyotsna Kamat|date=20 October 2000 |publisher=Kamat |accessdate=4 July 2013}}</ref> ==ಪ್ರಸಿದ್ಧ ಕೃತಿಲು== ಸಾಲೆಟೋರ್ ಒರಿ ಬಹುಭಾಷೆ ಆದಿತ್ತೆ. ಕೆಲವು ಪುಸ್ತಕೊಲೆನ್ ಬೊಕ್ಕ ನೂದೆಡ್ದ್ ಜಾಸ್ತಿ ಲೇಖನೊಲೆನ್ ಒಳಗೊಂಡ ಅರೆನ ಕೆಲಸೊಲು ಪ್ರಾಚೀನ ಭಾರತೀಯ ಇತಿಹಾಸ ಸೇರ್ದ್ ಮಸ್ತ್ ವಿಷಯೊಲೆನ್ ಒಳಗೊಂಡಿತ್ತುಂಡು. ಅರೆನ ಸುರುತ ವರ್ಷೊಲೆಡ್ ಎಚ್. ಹೆರಾಸ್ ಬೊಕ್ಕ ಎಲ್.ಡಿ. ಇಂಚಿನ ವಿಶ್ವಪ್ರಸಿದ್ಧ ಇತಿಹಾಸಕಾರೆರ್ ಅರೆನ್ ಮಾರ್ಗದರ್ಶನ ಮಲ್ತೆರ್. ಬಾರ್ನೆಟ್. ೧೯೩೦ ದಶಕೊಡು, ''ಸಂಗಮ'' ಸೋದರೆರೆನ ಮೂಲ ಬೊಕ್ಕ ಸಾಮ್ರಾಜ್ಯದ ಮೂಲದ ಬಗ್ಗೆ ಮಸ್ತ್ ಚರ್ಚೆ ಆಯಿನ ವಿಷಯೊನು ಒಟ್ಟು ಸೇರಾದ್ ಒಂಜಿ ಪುದರ್ ಪೋಯಿನ ಪುಸ್ತಕೊನು ಬರೆಯೆರ್. ಲಂಡನ್ ವಿಶ್ವವಿದ್ಯಾಲಯೊಡು ಉಪ್ಪುನಗ ಈ ಪುಸ್ತಕ ಅರೆನ ಪಿಎಚ್ ಡಿ ಪ್ರಬಂಧ ಆದಿತ್ತ್ಂಡ್. ಈ ಬೇಲೆಡ್ ೫೫ ಪುಟೊಲೆನ ಗ್ರಂಥಸೂಚಿ ಉಂಡು, ಸಾವಿರ ಬೊಕ್ಕ ವಿಚಿತ್ರ ಪುಸ್ತಕೊಲು ಬೊಕ್ಕ ಲೇಖನೊಲು ಉಂಡು.{{cn|date=August ೨೦೨೩}} '''ವಿಜಯನಗರ ಸಾಮ್ರಾಜ್ಯದ ಉಗಮ ಸ್ಥಾನ''' ಕರ್ನಾಟಕೊದ ವಿದ್ವಾಂಸೆರೆಡ್ ಸಾಲೆತೊರೆ ಸುರುತ ಸಾಮ್ರಾಜ್ಯೊದ ಕನ್ನಡ ಮೂಲೊನು ಗಟ್ಟಿಯಾದ್ ಸಾಬೀತು ಮಲ್ತೆರ್. ಎನ್. ವೆಂಕಟರಮಣಯ್ಯೆರ್ ಪ್ರಸ್ತಾಪ ಮಲ್ತಿನ ತೆಲುಗು ಮೂಲೊದ ವಿರುದ್ಧ ಸಾಹಿತ್ಯಿಕ ಬೊಕ್ಕ ನಾಣ್ಯಶಾಸ್ತ್ರದ ಸಾಕ್ಷ್ಯೊಲೆನ್ ಒಟ್ಟು ಮಲ್ತ್ ದ್ ಆರ್ ಗದ್ದಲೊಡು ವಾದ ಮಲ್ತೆರ್. ಸಾಮ್ರಾಜ್ಯದ ಕಾಲೊಡು ಅಗತ್ಯೊದ ಗಂಟೆ ದಕ್ಷಿಣ ಭಾರತೊಗು ಮುಸ್ಲಿಂ ಆಕ್ರಮಣೊನು ತಡೆಯೆರೆ ಇತ್ತ್ಂಡ್ ಬೊಕ್ಕ ಸಾಮ್ರಾಜ್ಯೊದ ಜನಕುಲು ಬೊಕ್ಕ ಆಡಳಿತಗಾರೆರ್ ಸಾಮಾನ್ಯವಾದ್ ದ್ವಿಭಾಷಿಕರಾದಿತ್ತೆರ್, ಸಾಲೆಟೋರ್ ಸಾಮ್ರಾಜ್ಯೊದ ಮೂಲ ಕನ್ನಡ ದೇಶೊಡು ಮಾತ್ರ ಉಂಡು ಪನ್ಪಿನವು ನಿಸ್ಸಂದೇಹವಾದ್ ಸಾಬೀತು ಮಲ್ತೆರ್. ರಾಜಕೀಯ ಬೊಕ್ಕ ಸಾಮಾಜಿಕ ಇತಿಹಾಸದ ಅಧ್ಯಯನೊನು ಈ ರೀತಿ ವಿಂಗಡಿಸಯೆರ್:{{cn|date=ಆಗಸ್ಟ್ ೨೦೨೩}} * ಕಂದಾಯ ಆಡಳಿತ * ಕೇಂದ್ರ ಸರ್ಕಾರದ ಆಡಳಿತ * ಸ್ಥಳೀಯ ಸರ್ಕಾರದ ಆಡಳಿತ * ಕಾನೂನು ಬೊಕ್ಕ ನ್ಯಾಯ * ವಿದೇಶಿ ಸಂಬಂಧೊಲು * ಸೈನ್ಯ. ಸಾಂಸ್ಕೃತಿಕ ಇತಿಹಾಸದ ಅಧ್ಯಯನ * ಸಾಮಾಜಿಕ ಸಂಸ್ಥೆಲು * ಪೊಣ್ಣುಲೆನ ಸ್ಥಾನಮಾನ * ಸಾಮಾಜಿಕ ಶಾಸನ * ಸಾರ್ವಜನಿಕ ಸೇವೆ * ವಾಸಸ್ಥಾನ, ಆಹಾರ ಬೊಕ್ಕ ಉಡುಪು * ಕಾರ್ಪೊರೇಟ್ ಜೀವನ * ಉತ್ಸವೊಲು, ಆಟೊಲು ಬೊಕ್ಕ ಮನೋರಂಜನೆಲು. ಅರೆನ ಬೇಲೆನ್ ಮೆಚ್ಚುನಗ, ಇತಿಹಾಸಕಾರೆ ಎಸ್.ಕೃಷ್ಣಸ್ವಾಮಿ ಅಯ್ಯಂಗಾರ್ ಸಾಲೆತೊರೆನ ಪ್ರಯತ್ನೊಲೆನ್ ಒಂಜಿ ಶೆಕ್ಟ್ ಡ್ ಸಾರಾಂಶ ಮಲ್ತೆರ್. "ವಿಷಯದ ಮಟ್ಟ ಬೊಕ್ಕ ಲಭ್ಯವಿರುವ ವಿವರೊಲೆನ ಅಗಾಧತೆ, ಈ ದಿಕ್ಕುಡ್ ಸಾಮಾನ್ಯವಾದ್ ಗೊಂದಲೊಗು ಕಾರಣ ಆಪುಂಡು. ಆಂಡ ಡಾ. ಸಾಲೆಟೋರ್ ಈ ವಿಶಾಲ ವಿಷಯೊದ ಬಗ್ಗೆ ಒಂಜಿ ಶ್ರೇಯಶಾಲಿ ಕೆಲಸೊನು ತಯಾರ್ ಮಲ್ಪೆರೆ ಯಶಸ್ವಿಯಾಯೆರ್. ಈ ಕೆಲಸೊ ಹಿಂದೂ ಸಂಸ್ಥೆಲೆನ್ ಬೊಕ್ಕ ನಾಗರಿಕತೆನ್ ರಕ್ಷಣೆ ಮಲ್ಪುನ ಮೂಜಿ ಶತಮಾನೊಲೆನ ಹೋರಾಟೊಡು ಸಾಮ್ರಾಜ್ಯೊದ ಅಡಿಟ್ ಜನಕುಲೆನ ಜೀವನೊದ ಸರಿಯಾಯಿನ ಬೊಕ್ಕ ಸಂಪೂರ್ಣ ದೃಷ್ಟಿಕೋನೊನು ಕೊರ್ಪುಂಡು. 2023}} ಸಾಮಾಜಿಕ ಇತಿಹಾಸದ ಅಧ್ಯಯನೊಗು ಎಪಿಗ್ರಾಫಿಕಲ್ ಮೂಲೊಲೆನ್ ಬಳಕೆ ಮಲ್ತಿನ ಸುರುತ ಇತಿಹಾಸಕಾರೆ ಪಂಡ್ದ್ ಆರ್ ಪನ್ಪೆರ್, ಉಂದು ಇತ್ತೆದ ಇತಿಹಾಸದ ವಿದ್ಯಾರ್ಥಿಲು ಮಲ್ಪುನವು. ಯುಗೊಲೆಡ್ದ್ ಕರ್ನಾಟಕದ ಸಾಮಾಜಿಕ-ಆರ್ಥಿಕ ರಾಜಕೀಯೊದ ಬಗ್ಗೆ ಬೊಲ್ಪು ಪಾಡುನ ಒರಿ ಪ್ರವರ್ತಕೆರ್ ಪಂದ್ ಪನ್ಪೆರ್. ಮರಣೊಗು ದುಂಬೇ ಬರೆತಿನ ಅರೆನ ಕಡೆತ ಬೂಕು ''ಪ್ರಾಚೀನ ಭಾರತೀಯ ರಾಜಕೀಯ ಚಿಂತನೆ ಬೊಕ್ಕ ಸಂಸ್ಥೆಲು'' ಒಂಜಿ ಮೇರುಕೃತಿ ಪಂದ್ ಪನ್ಪೆರ್. ಈ ಪುಸ್ತಕೊನು ಕೌಟಿಲ್ಯ ಸೇರ್ದ್ ಪ್ರಾಚೀನ ಕಾಲೊದ ಮಲ್ಲ ಭಾರತೀಯ ರಾಜಕೀಯ ಮನಸ್ಸುಲೆನ ತುಲನಾತ್ಮಕ ಅಧ್ಯಯನ ಪನ್ಪೆರ್.{{cn|date=August 2023}} ==ಬೇತೆ ಕೃತಿಲು== * ''ಪ್ರಾಚೀನ ಕನಾ೯ಟಕ—ತುಳುವರ ಚರಿತ್ರೆ'', ಪೂನಾ, ೧೯೩೬<ref>http://oudl.osmania.ac.in/handle/OUDL/2009{{Dead link|date=October 2018 |bot=InternetArchiveBot |fix-attempted=yes }}</ref> * ''ವಿಜಯನಗರ ಸಾಮ್ರಾಜ್ಯೊಗು ವಿಶೇಷ ಉಲ್ಲೇಖೊಡು ಮಧ್ಯಕಾಲೀನ ಜೈನ ಧರ್ಮ''—ಪೂನಾ, ೧೯೩೮ * ''ಕರ್ನಾಟಕದ ಸಾಗರಾಂತರ ಸಂಪರ್ಕೊಲು''—ಧಾರ್ವಾರ್, ೧೯೫೬<ref>{{Cite web|url=http://trove.nla.gov.au/work/21299498?selectedversion=NBD127083|title=Trove}}</ref> * ''ಗುಜರಾತ್ ದ ಪ್ರಾಚೀನ ಇತಿಹಾಸೊಡು ಪ್ರಮುಖ ಪ್ರವಾಹೊಲು''—ಬರೋಡಾ, ೧೯೬೦<ref>{{Cite web | url=https://books.google.com/books?id=g2YeAAAAMAAJ |title = Main Currents in the Ancient History of Gujarat|last1 = Saletore|first1 = Bhasker Anand|year = 1960}}</ref> * ''ಪೂರ್ವ ದೇಶೊಲೆನೊಟ್ಟುಗು ಭಾರತದ ರಾಜತಾಂತ್ರಿಕ ಸಂಬಂಧೊಲು''—ಬಾಂಬೆ ೧೯೬೦ * ''ದಿ ಸ್ಟೇನಿಕಾಸ್ ಅಂಡ್ ದೆರ್ ಹಿಸ್ಟಾರಿಕಲ್ ಇಂಪೋರ್ಟೆನ್ಸ್ ಬಿ.ಎ. ಸಾಲೆಟೋರ್, ಜರ್ನಲ್ ಆಫ್ ದಿ ಯೂನಿವರ್ಸಿಟಿ ಆಫ್ ಬಾಂಬೆ, ಜುಲೈ ೧೯೩೮, ಸಂಪುಟ VII, ಭಾಗ I (೧೯೩೮), ಪುಟೊಕುಲು ೨೯ ಡ್ದ್ ಪುಟೊಕುಲು ೯೩ ಮುಟ್ಟ''<ref>https://archive.org/download/VaishnavismInVijayanagaraBASaletore/Vaishnavism%20in%20Vijayanagara%2C%20BA%20Saletore.pdf "Vaishnavism In Vijayanagara, BA Saletore" Published in ''D. R. Bhandarkar'' Volume, Indian Research Institute, 1940, p192 to p195</ref> == ಉಲ್ಲೇಕೊಲು == {{Reflist}} ==ಪಿದಾಯಿದ ಕೊಂಡಿಲು== *[http://www.kamat.com/kalranga/people/pioneers/saletore.htm Remembering Prof. Saletore] *[http://www.kamat.com/database/articles/towering_tribute.htm Tribute to Prof. Dr. B.A. Saletore] * https://www.researchgate.net/publication/270363090_Ancient_Indian_Political_Thought_and_Institutions._By_B._A._Saletore._pp._xiv_695._Asia_Publishing_House_Bombay._1963._Rs._30 e90i8uqxbyecwiihqkt1bcumks2k42x ಪಿರಾಕ್ದ ಕಾಲಿನ್ ಕೌಂಟಿ ನ್ಯಾಯಾಲಯ 0 27473 362610 2026-07-09T14:39:36Z Texan North Public Work Translators 214 10011 "[[:en:Special:Redirect/revision/1303678714|Old Collin County Courthouse]]" ಪುಟವನ್ನು ಅನುವಾದಿಸುವುದರಿಂದ ಸೃಷ್ಟಿಸಲಾಯಿತು 362610 wikitext text/x-wiki   '''ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ (Old Collin County Courthouse)''' ಪಂಡ [[ಮೆಕಿನ್ನಿ, ಟೆಕ್ಸಾಸ್|ಟೆಕ್ಸಾಸ್ ದ ಐತಿಹಾಸಿಕ ಡೌನ್ ಟೌನ್ ಮೆಕಿನ್ನಿಡ್]] ಇಪ್ಪುನ ಒಂಜಿ ಐತಿಹಾಸಿಕ ಕೋರ್ಟ್ ಹೌಸ್. ಉಂದು 1876ಡ್ ರಡ್ಡನೆ ಸಾಮ್ರಾಜ್ಯ ಶೈಲಿಡ್ ನಿರ್ಮಾಣ ಆಂಡ್ ಬೊಕ್ಕ 1927ಡ್ ನಿಯೋಕ್ಲಾಸಿಕಲ್ ಶೈಲಿಡ್ ನವೀಕರಣ ಆಂಡ್. 1979 ಮುಟ್ಟ ನ್ಯಾಯಾಲಯೊನು ಬಳಕೆ ಮಲ್ತೊಂದು ಇತ್ತೆರ್, ಅಪಗ ಒಂಜಿ ಪೊಸ 6 ಮಹಡಿದ ನ್ಯಾಯಾಲಯೊನು ಮುಗಿಪಾದ್ ಅಯಿನ್ ಮುಚ್ಚಿಯೆರ್.<ref name="Courthouse CCH">{{Cite web|url=https://www.collincountyhistory.com/courthouses.html|title=Collin County Courthouse History|publisher=Collin County History|accessdate=March 2, 2025}}</ref> ೧೯೮೨ಡ್, ನ್ಯಾಯಾಲಯೊನು ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಮೈಲುಗಲ್ಲು ಪಂಡ್ದ್ ಗೊತ್ತುಪಡಿಸಯೆರ್ ಉಂದು ದಾಖಲಾತ್ಂಡ್  (Texas Historic Landmark) <ref name=":0">{{Cite web|title=Details - Old Collin County Courthouse - Atlas Number 5085000948 - Atlas: Texas Historical Commission|url=https://atlas.thc.texas.gov/Details/5085000948|accessdate=2025-03-04|website=atlas.thc.texas.gov}}</ref> [ a ] ಬೊಕ್ಕ ೨೦೦೬ಡ್, ಉಂದೆನ್ ಪುನರ್ನಿರ್ಮಾಣ ಮಲ್ತೆರ್ ಬೊಕ್ಕ ಮೆಕಿನ್ನಿ ಪರ್ಫಾರ್ಮಿಂಗ್ ಆರ್ಟ್ಸ್ ಸೆಂಟರ್ ಪಂಡ್ದ್ ಪುನರ್ ತೆರೆಯೆರ್. <ref name=":1">{{Cite web|last=Allen|first=Abigail|date=2015-09-30|title=Historic Collin County Courthouse|url=https://communityimpact.com/austin/news/2015/09/30/historic-collin-county-courthouse/|accessdate=2025-03-04|website=Community Impact|language=English}}</ref> 2025 ಡ್ದ್, ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಆಯೋಗದ ಭಾಗವಾದ್ ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಕೋರ್ಟ್ ಹೌಸ್ ಸಂರಕ್ಷಣೆ ಕಾರ್ಯಕ್ರಮೊಡ್ದ್ ಪೂರ್ಣ ಜೀರ್ಣೋದ್ಧಾರೊಗು ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ ಗ್ ಅನುಮೋದಿತ ಮಾಸ್ಟರ್ ಪ್ಲಾನ್ ಉಂಡು <ref>{{Cite web|date=2025|title=2025 TEXAS HISTORIC COURTHOUSE PRESERVATION PROGRAM UPDATE|url=https://thc.texas.gov/sites/default/files/2025-02/Courthouse_Cornerstones_2025.pdf|accessdate=March 17, 2025|website=[[Texas Historical Commission]]}}</ref> 9o3ro5vhh38t7ci4hp6px3qfsipz6e9 362611 362610 2026-07-09T14:40:19Z Quinlan83 4594 Fix 362611 wikitext text/x-wiki '''ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ (Old Collin County Courthouse)''' ಪಂಡ [[ಮೆಕಿನ್ನಿ, ಟೆಕ್ಸಾಸ್|ಟೆಕ್ಸಾಸ್ ದ ಐತಿಹಾಸಿಕ ಡೌನ್ ಟೌನ್ ಮೆಕಿನ್ನಿಡ್]] ಇಪ್ಪುನ ಒಂಜಿ ಐತಿಹಾಸಿಕ ಕೋರ್ಟ್ ಹೌಸ್. ಉಂದು 1876ಡ್ ರಡ್ಡನೆ ಸಾಮ್ರಾಜ್ಯ ಶೈಲಿಡ್ ನಿರ್ಮಾಣ ಆಂಡ್ ಬೊಕ್ಕ 1927ಡ್ ನಿಯೋಕ್ಲಾಸಿಕಲ್ ಶೈಲಿಡ್ ನವೀಕರಣ ಆಂಡ್. 1979 ಮುಟ್ಟ ನ್ಯಾಯಾಲಯೊನು ಬಳಕೆ ಮಲ್ತೊಂದು ಇತ್ತೆರ್, ಅಪಗ ಒಂಜಿ ಪೊಸ 6 ಮಹಡಿದ ನ್ಯಾಯಾಲಯೊನು ಮುಗಿಪಾದ್ ಅಯಿನ್ ಮುಚ್ಚಿಯೆರ್.<ref name="Courthouse CCH">{{Cite web|url=https://www.collincountyhistory.com/courthouses.html|title=Collin County Courthouse History|publisher=Collin County History|accessdate=March 2, 2025}}</ref> ೧೯೮೨ಡ್, ನ್ಯಾಯಾಲಯೊನು ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಮೈಲುಗಲ್ಲು ಪಂಡ್ದ್ ಗೊತ್ತುಪಡಿಸಯೆರ್ ಉಂದು ದಾಖಲಾತ್ಂಡ್  (Texas Historic Landmark) <ref name=":0">{{Cite web|title=Details - Old Collin County Courthouse - Atlas Number 5085000948 - Atlas: Texas Historical Commission|url=https://atlas.thc.texas.gov/Details/5085000948|accessdate=2025-03-04|website=atlas.thc.texas.gov}}</ref> [ a ] ಬೊಕ್ಕ ೨೦೦೬ಡ್, ಉಂದೆನ್ ಪುನರ್ನಿರ್ಮಾಣ ಮಲ್ತೆರ್ ಬೊಕ್ಕ ಮೆಕಿನ್ನಿ ಪರ್ಫಾರ್ಮಿಂಗ್ ಆರ್ಟ್ಸ್ ಸೆಂಟರ್ ಪಂಡ್ದ್ ಪುನರ್ ತೆರೆಯೆರ್. <ref name=":1">{{Cite web|last=Allen|first=Abigail|date=2015-09-30|title=Historic Collin County Courthouse|url=https://communityimpact.com/austin/news/2015/09/30/historic-collin-county-courthouse/|accessdate=2025-03-04|website=Community Impact|language=English}}</ref> 2025 ಡ್ದ್, ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಆಯೋಗದ ಭಾಗವಾದ್ ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಕೋರ್ಟ್ ಹೌಸ್ ಸಂರಕ್ಷಣೆ ಕಾರ್ಯಕ್ರಮೊಡ್ದ್ ಪೂರ್ಣ ಜೀರ್ಣೋದ್ಧಾರೊಗು ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ ಗ್ ಅನುಮೋದಿತ ಮಾಸ್ಟರ್ ಪ್ಲಾನ್ ಉಂಡು <ref>{{Cite web|date=2025|title=2025 TEXAS HISTORIC COURTHOUSE PRESERVATION PROGRAM UPDATE|url=https://thc.texas.gov/sites/default/files/2025-02/Courthouse_Cornerstones_2025.pdf|accessdate=March 17, 2025|website=[[Texas Historical Commission]]}}</ref> 8ylhfvhgnyjg2ew6wwifibs0vh3g8bo 362612 362611 2026-07-09T14:42:27Z Texan North Public Work Translators 214 10011 "[[:en:Special:Redirect/revision/1303678714|Old Collin County Courthouse]]" ಪುಟವನ್ನು ಅನುವಾದಿಸುವುದರಿಂದ ಸೃಷ್ಟಿಸಲಾಯಿತು 362612 wikitext text/x-wiki   '''ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ (Old Collin County Courthouse)''' ಪಂಡ [[ಮೆಕಿನ್ನಿ, ಟೆಕ್ಸಾಸ್|ಟೆಕ್ಸಾಸ್ ದ ಐತಿಹಾಸಿಕ ಡೌನ್ ಟೌನ್ ಮೆಕಿನ್ನಿಡ್]] ಇಪ್ಪುನ ಒಂಜಿ ಐತಿಹಾಸಿಕ ಕೋರ್ಟ್ ಹೌಸ್. ಉಂದು 1876ಡ್ ರಡ್ಡನೆ ಸಾಮ್ರಾಜ್ಯ ಶೈಲಿಡ್ ನಿರ್ಮಾಣ ಆಂಡ್ ಬೊಕ್ಕ 1927ಡ್ ನಿಯೋಕ್ಲಾಸಿಕಲ್ ಶೈಲಿಡ್ ನವೀಕರಣ ಆಂಡ್. 1979 ಮುಟ್ಟ ನ್ಯಾಯಾಲಯೊನು ಬಳಕೆ ಮಲ್ತೊಂದು ಇತ್ತೆರ್, ಅಪಗ ಒಂಜಿ ಪೊಸ 6 ಮಹಡಿದ ನ್ಯಾಯಾಲಯೊನು ಮುಗಿಪಾದ್ ಅಯಿನ್ ಮುಚ್ಚಿಯೆರ್.<ref name="Courthouse CCH">{{Cite web|url=https://www.collincountyhistory.com/courthouses.html|title=Collin County Courthouse History|publisher=Collin County History|accessdate=March 2, 2025}}</ref> ೧೯೮೨ಡ್, ನ್ಯಾಯಾಲಯೊನು ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಮೈಲುಗಲ್ಲು ಪಂಡ್ದ್ ಗೊತ್ತುಪಡಿಸಯೆರ್ ಉಂದು ದಾಖಲಾತ್ಂಡ್  (Texas Historic Landmark) <ref name=":0">{{Cite web|title=Details - Old Collin County Courthouse - Atlas Number 5085000948 - Atlas: Texas Historical Commission|url=https://atlas.thc.texas.gov/Details/5085000948|accessdate=2025-03-04|website=atlas.thc.texas.gov}}</ref> [ a ] ಬೊಕ್ಕ ೨೦೦೬ಡ್, ಉಂದೆನ್ ಪುನರ್ನಿರ್ಮಾಣ ಮಲ್ತೆರ್ ಬೊಕ್ಕ ಮೆಕಿನ್ನಿ ಪರ್ಫಾರ್ಮಿಂಗ್ ಆರ್ಟ್ಸ್ ಸೆಂಟರ್ ಪಂಡ್ದ್ ಪುನರ್ ತೆರೆಯೆರ್. <ref name=":1">{{Cite web|last=Allen|first=Abigail|date=2015-09-30|title=Historic Collin County Courthouse|url=https://communityimpact.com/austin/news/2015/09/30/historic-collin-county-courthouse/|accessdate=2025-03-04|website=Community Impact|language=English}}</ref> 2025 ಡ್ದ್, ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಆಯೋಗದ ಭಾಗವಾದ್ ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಕೋರ್ಟ್ ಹೌಸ್ ಸಂರಕ್ಷಣೆ ಕಾರ್ಯಕ್ರಮೊಡ್ದ್ ಪೂರ್ಣ ಜೀರ್ಣೋದ್ಧಾರೊಗು ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ ಗ್ ಅನುಮೋದಿತ ಮಾಸ್ಟರ್ ಪ್ಲಾನ್ ಉಂಡು <ref>{{Cite web|date=2025|title=2025 TEXAS HISTORIC COURTHOUSE PRESERVATION PROGRAM UPDATE|url=https://thc.texas.gov/sites/default/files/2025-02/Courthouse_Cornerstones_2025.pdf|accessdate=March 17, 2025|website=[[Texas Historical Commission]]}}</ref> [[ಫೈಲ್:Old_Collin_County_Courthouse_Postcard_(1905-1913).jpg|left|thumb|ದ್ವಿತೀಯ ಸಾಮ್ರಾಜ್ಯ ಶೈಲಿಯಲ್ಲಿರುವ ಹಳೆಯ ಕೊಲಿನ್ ಕೌಂಟಿ ನ್ಯಾಯಾಲಯದ ಪೋಸ್ಟ್‌ಕಾರ್ಡ್]] porfs3fy8mj5w12lkj2n5z3jmwxn9md 362613 362612 2026-07-09T14:42:49Z Texan North Public Work Translators 214 10011 362613 wikitext text/x-wiki   '''ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ (Old Collin County Courthouse)''' ಪಂಡ [[ಮೆಕಿನ್ನಿ, ಟೆಕ್ಸಾಸ್|ಟೆಕ್ಸಾಸ್ ದ ಐತಿಹಾಸಿಕ ಡೌನ್ ಟೌನ್ ಮೆಕಿನ್ನಿಡ್]] ಇಪ್ಪುನ ಒಂಜಿ ಐತಿಹಾಸಿಕ ಕೋರ್ಟ್ ಹೌಸ್. ಉಂದು 1876ಡ್ ರಡ್ಡನೆ ಸಾಮ್ರಾಜ್ಯ ಶೈಲಿಡ್ ನಿರ್ಮಾಣ ಆಂಡ್ ಬೊಕ್ಕ 1927ಡ್ ನಿಯೋಕ್ಲಾಸಿಕಲ್ ಶೈಲಿಡ್ ನವೀಕರಣ ಆಂಡ್. 1979 ಮುಟ್ಟ ನ್ಯಾಯಾಲಯೊನು ಬಳಕೆ ಮಲ್ತೊಂದು ಇತ್ತೆರ್, ಅಪಗ ಒಂಜಿ ಪೊಸ 6 ಮಹಡಿದ ನ್ಯಾಯಾಲಯೊನು ಮುಗಿಪಾದ್ ಅಯಿನ್ ಮುಚ್ಚಿಯೆರ್.<ref name="Courthouse CCH">{{Cite web|url=https://www.collincountyhistory.com/courthouses.html|title=Collin County Courthouse History|publisher=Collin County History|accessdate=March 2, 2025}}</ref> ೧೯೮೨ಡ್, ನ್ಯಾಯಾಲಯೊನು ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಮೈಲುಗಲ್ಲು ಪಂಡ್ದ್ ಗೊತ್ತುಪಡಿಸಯೆರ್ ಉಂದು ದಾಖಲಾತ್ಂಡ್  (Texas Historic Landmark) <ref name=":0">{{Cite web|title=Details - Old Collin County Courthouse - Atlas Number 5085000948 - Atlas: Texas Historical Commission|url=https://atlas.thc.texas.gov/Details/5085000948|accessdate=2025-03-04|website=atlas.thc.texas.gov}}</ref> [ a ] ಬೊಕ್ಕ ೨೦೦೬ಡ್, ಉಂದೆನ್ ಪುನರ್ನಿರ್ಮಾಣ ಮಲ್ತೆರ್ ಬೊಕ್ಕ ಮೆಕಿನ್ನಿ ಪರ್ಫಾರ್ಮಿಂಗ್ ಆರ್ಟ್ಸ್ ಸೆಂಟರ್ ಪಂಡ್ದ್ ಪುನರ್ ತೆರೆಯೆರ್. <ref name=":1">{{Cite web|last=Allen|first=Abigail|date=2015-09-30|title=Historic Collin County Courthouse|url=https://communityimpact.com/austin/news/2015/09/30/historic-collin-county-courthouse/|accessdate=2025-03-04|website=Community Impact|language=English}}</ref> 2025 ಡ್ದ್, ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಆಯೋಗದ ಭಾಗವಾದ್ ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಕೋರ್ಟ್ ಹೌಸ್ ಸಂರಕ್ಷಣೆ ಕಾರ್ಯಕ್ರಮೊಡ್ದ್ ಪೂರ್ಣ ಜೀರ್ಣೋದ್ಧಾರೊಗು ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ ಗ್ ಅನುಮೋದಿತ ಮಾಸ್ಟರ್ ಪ್ಲಾನ್ ಉಂಡು <ref>{{Cite web|date=2025|title=2025 TEXAS HISTORIC COURTHOUSE PRESERVATION PROGRAM UPDATE|url=https://thc.texas.gov/sites/default/files/2025-02/Courthouse_Cornerstones_2025.pdf|accessdate=March 17, 2025|website=[[Texas Historical Commission]]}}</ref> [[ಫೈಲ್:Old_Collin_County_Courthouse_Postcard_(1905-1913).jpg|left|thumb|ದ್ವಿತೀಯ ಸಾಮ್ರಾಜ್ಯ ಶೈಲಿಯಲ್ಲಿರುವ ಹಳೆಯ ಕೊಲಿನ್ ಕೌಂಟಿ ನ್ಯಾಯಾಲಯದ ಪೋಸ್ಟ್‌ಕಾರ್ಡ್Postcard of the Old Collin County Courthouse in the Second Empire style]] hrgmqu5lfo76132pebq9iwxrpw680eq 362614 362613 2026-07-09T14:43:48Z Texan North Public Work Translators 214 10011 "[[:en:Special:Redirect/revision/1303678714|Old Collin County Courthouse]]" ಪುಟವನ್ನು ಅನುವಾದಿಸುವುದರಿಂದ ಸೃಷ್ಟಿಸಲಾಯಿತು 362614 wikitext text/x-wiki   '''ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ (Old Collin County Courthouse)''' ಪಂಡ [[ಮೆಕಿನ್ನಿ, ಟೆಕ್ಸಾಸ್|ಟೆಕ್ಸಾಸ್ ದ ಐತಿಹಾಸಿಕ ಡೌನ್ ಟೌನ್ ಮೆಕಿನ್ನಿಡ್]] ಇಪ್ಪುನ ಒಂಜಿ ಐತಿಹಾಸಿಕ ಕೋರ್ಟ್ ಹೌಸ್. ಉಂದು 1876ಡ್ ರಡ್ಡನೆ ಸಾಮ್ರಾಜ್ಯ ಶೈಲಿಡ್ ನಿರ್ಮಾಣ ಆಂಡ್ ಬೊಕ್ಕ 1927ಡ್ ನಿಯೋಕ್ಲಾಸಿಕಲ್ ಶೈಲಿಡ್ ನವೀಕರಣ ಆಂಡ್. 1979 ಮುಟ್ಟ ನ್ಯಾಯಾಲಯೊನು ಬಳಕೆ ಮಲ್ತೊಂದು ಇತ್ತೆರ್, ಅಪಗ ಒಂಜಿ ಪೊಸ 6 ಮಹಡಿದ ನ್ಯಾಯಾಲಯೊನು ಮುಗಿಪಾದ್ ಅಯಿನ್ ಮುಚ್ಚಿಯೆರ್.<ref name="Courthouse CCH">{{Cite web|url=https://www.collincountyhistory.com/courthouses.html|title=Collin County Courthouse History|publisher=Collin County History|accessdate=March 2, 2025}}</ref> ೧೯೮೨ಡ್, ನ್ಯಾಯಾಲಯೊನು ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಮೈಲುಗಲ್ಲು ಪಂಡ್ದ್ ಗೊತ್ತುಪಡಿಸಯೆರ್ ಉಂದು ದಾಖಲಾತ್ಂಡ್  (Texas Historic Landmark) <ref name=":0">{{Cite web|title=Details - Old Collin County Courthouse - Atlas Number 5085000948 - Atlas: Texas Historical Commission|url=https://atlas.thc.texas.gov/Details/5085000948|accessdate=2025-03-04|website=atlas.thc.texas.gov}}</ref> [ a ] ಬೊಕ್ಕ ೨೦೦೬ಡ್, ಉಂದೆನ್ ಪುನರ್ನಿರ್ಮಾಣ ಮಲ್ತೆರ್ ಬೊಕ್ಕ ಮೆಕಿನ್ನಿ ಪರ್ಫಾರ್ಮಿಂಗ್ ಆರ್ಟ್ಸ್ ಸೆಂಟರ್ ಪಂಡ್ದ್ ಪುನರ್ ತೆರೆಯೆರ್. <ref name=":1">{{Cite web|last=Allen|first=Abigail|date=2015-09-30|title=Historic Collin County Courthouse|url=https://communityimpact.com/austin/news/2015/09/30/historic-collin-county-courthouse/|accessdate=2025-03-04|website=Community Impact|language=English}}</ref> 2025 ಡ್ದ್, ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಆಯೋಗದ ಭಾಗವಾದ್ ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಕೋರ್ಟ್ ಹೌಸ್ ಸಂರಕ್ಷಣೆ ಕಾರ್ಯಕ್ರಮೊಡ್ದ್ ಪೂರ್ಣ ಜೀರ್ಣೋದ್ಧಾರೊಗು ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ ಗ್ ಅನುಮೋದಿತ ಮಾಸ್ಟರ್ ಪ್ಲಾನ್ ಉಂಡು <ref>{{Cite web|date=2025|title=2025 TEXAS HISTORIC COURTHOUSE PRESERVATION PROGRAM UPDATE|url=https://thc.texas.gov/sites/default/files/2025-02/Courthouse_Cornerstones_2025.pdf|accessdate=March 17, 2025|website=[[Texas Historical Commission]]}}</ref> [[ಫೈಲ್:Old_Collin_County_Courthouse_Postcard_(1905-1913).jpg|left|thumb|ದ್ವಿತೀಯ ಸಾಮ್ರಾಜ್ಯ ಶೈಲಿಯಲ್ಲಿರುವ ಹಳೆಯ ಕೊಲಿನ್ ಕೌಂಟಿ ನ್ಯಾಯಾಲಯದ ಪೋಸ್ಟ್‌ಕಾರ್ಡ್]] [[ಫೈಲ್:Old_Collin_County_Courthouse_(20230996562).jpg|left|thumb|320x320px|ಪಿರಾಕ್ದ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ ಗುರುತು]] b4rx76ypxaxpoz61he1qp1579tq6bfz 362615 362614 2026-07-09T14:44:01Z Texan North Public Work Translators 214 10011 362615 wikitext text/x-wiki   '''ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ (Old Collin County Courthouse)''' ಪಂಡ [[ಮೆಕಿನ್ನಿ, ಟೆಕ್ಸಾಸ್|ಟೆಕ್ಸಾಸ್ ದ ಐತಿಹಾಸಿಕ ಡೌನ್ ಟೌನ್ ಮೆಕಿನ್ನಿಡ್]] ಇಪ್ಪುನ ಒಂಜಿ ಐತಿಹಾಸಿಕ ಕೋರ್ಟ್ ಹೌಸ್. ಉಂದು 1876ಡ್ ರಡ್ಡನೆ ಸಾಮ್ರಾಜ್ಯ ಶೈಲಿಡ್ ನಿರ್ಮಾಣ ಆಂಡ್ ಬೊಕ್ಕ 1927ಡ್ ನಿಯೋಕ್ಲಾಸಿಕಲ್ ಶೈಲಿಡ್ ನವೀಕರಣ ಆಂಡ್. 1979 ಮುಟ್ಟ ನ್ಯಾಯಾಲಯೊನು ಬಳಕೆ ಮಲ್ತೊಂದು ಇತ್ತೆರ್, ಅಪಗ ಒಂಜಿ ಪೊಸ 6 ಮಹಡಿದ ನ್ಯಾಯಾಲಯೊನು ಮುಗಿಪಾದ್ ಅಯಿನ್ ಮುಚ್ಚಿಯೆರ್.<ref name="Courthouse CCH">{{Cite web|url=https://www.collincountyhistory.com/courthouses.html|title=Collin County Courthouse History|publisher=Collin County History|accessdate=March 2, 2025}}</ref> ೧೯೮೨ಡ್, ನ್ಯಾಯಾಲಯೊನು ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಮೈಲುಗಲ್ಲು ಪಂಡ್ದ್ ಗೊತ್ತುಪಡಿಸಯೆರ್ ಉಂದು ದಾಖಲಾತ್ಂಡ್  (Texas Historic Landmark) <ref name=":0">{{Cite web|title=Details - Old Collin County Courthouse - Atlas Number 5085000948 - Atlas: Texas Historical Commission|url=https://atlas.thc.texas.gov/Details/5085000948|accessdate=2025-03-04|website=atlas.thc.texas.gov}}</ref> [ a ] ಬೊಕ್ಕ ೨೦೦೬ಡ್, ಉಂದೆನ್ ಪುನರ್ನಿರ್ಮಾಣ ಮಲ್ತೆರ್ ಬೊಕ್ಕ ಮೆಕಿನ್ನಿ ಪರ್ಫಾರ್ಮಿಂಗ್ ಆರ್ಟ್ಸ್ ಸೆಂಟರ್ ಪಂಡ್ದ್ ಪುನರ್ ತೆರೆಯೆರ್. <ref name=":1">{{Cite web|last=Allen|first=Abigail|date=2015-09-30|title=Historic Collin County Courthouse|url=https://communityimpact.com/austin/news/2015/09/30/historic-collin-county-courthouse/|accessdate=2025-03-04|website=Community Impact|language=English}}</ref> 2025 ಡ್ದ್, ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಆಯೋಗದ ಭಾಗವಾದ್ ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಕೋರ್ಟ್ ಹೌಸ್ ಸಂರಕ್ಷಣೆ ಕಾರ್ಯಕ್ರಮೊಡ್ದ್ ಪೂರ್ಣ ಜೀರ್ಣೋದ್ಧಾರೊಗು ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ ಗ್ ಅನುಮೋದಿತ ಮಾಸ್ಟರ್ ಪ್ಲಾನ್ ಉಂಡು <ref>{{Cite web|date=2025|title=2025 TEXAS HISTORIC COURTHOUSE PRESERVATION PROGRAM UPDATE|url=https://thc.texas.gov/sites/default/files/2025-02/Courthouse_Cornerstones_2025.pdf|accessdate=March 17, 2025|website=[[Texas Historical Commission]]}}</ref> [[ಫೈಲ್:Old_Collin_County_Courthouse_Postcard_(1905-1913).jpg|left|thumb|ದ್ವಿತೀಯ ಸಾಮ್ರಾಜ್ಯ ಶೈಲಿಯಲ್ಲಿರುವ ಹಳೆಯ ಕೊಲಿನ್ ಕೌಂಟಿ ನ್ಯಾಯಾಲಯದ ಪೋಸ್ಟ್‌ಕಾರ್ಡ್Postcard of the Old Collin County Courthouse in the Second Empire style]] [[ಫೈಲ್:Old_Collin_County_Courthouse_(20230996562).jpg|left|thumb|320x320px|ಪಿರಾಕ್ದ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ ಗುರುತು]] ffxvu6ctgor0yyida9obiwib3doplhz 362616 362615 2026-07-09T14:46:27Z Texan North Public Work Translators 214 10011 362616 wikitext text/x-wiki   '''ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ (Old Collin County Courthouse)''' ಪಂಡ [[ಮೆಕಿನ್ನಿ, ಟೆಕ್ಸಾಸ್|ಟೆಕ್ಸಾಸ್ ದ ಐತಿಹಾಸಿಕ ಡೌನ್ ಟೌನ್ ಮೆಕಿನ್ನಿಡ್]] ಇಪ್ಪುನ ಒಂಜಿ ಐತಿಹಾಸಿಕ ಕೋರ್ಟ್ ಹೌಸ್. ಉಂದು 1876ಡ್ ರಡ್ಡನೆ ಸಾಮ್ರಾಜ್ಯ ಶೈಲಿಡ್ ನಿರ್ಮಾಣ ಆಂಡ್ ಬೊಕ್ಕ 1927ಡ್ ನಿಯೋಕ್ಲಾಸಿಕಲ್ ಶೈಲಿಡ್ ನವೀಕರಣ ಆಂಡ್. 1979 ಮುಟ್ಟ ನ್ಯಾಯಾಲಯೊನು ಬಳಕೆ ಮಲ್ತೊಂದು ಇತ್ತೆರ್, ಅಪಗ ಒಂಜಿ ಪೊಸ 6 ಮಹಡಿದ ನ್ಯಾಯಾಲಯೊನು ಮುಗಿಪಾದ್ ಅಯಿನ್ ಮುಚ್ಚಿಯೆರ್.<ref name="Courthouse CCH">{{Cite web|url=https://www.collincountyhistory.com/courthouses.html|title=Collin County Courthouse History|publisher=Collin County History|accessdate=March 2, 2025}}</ref> ೧೯೮೨ಡ್, ನ್ಯಾಯಾಲಯೊನು ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಮೈಲುಗಲ್ಲು ಪಂಡ್ದ್ ಗೊತ್ತುಪಡಿಸಯೆರ್ ಉಂದು ದಾಖಲಾತ್ಂಡ್  (Texas Historic Landmark) <ref name=":0">{{Cite web|title=Details - Old Collin County Courthouse - Atlas Number 5085000948 - Atlas: Texas Historical Commission|url=https://atlas.thc.texas.gov/Details/5085000948|accessdate=2025-03-04|website=atlas.thc.texas.gov}}</ref> [ a ] ಬೊಕ್ಕ ೨೦೦೬ಡ್, ಉಂದೆನ್ ಪುನರ್ನಿರ್ಮಾಣ ಮಲ್ತೆರ್ ಬೊಕ್ಕ ಮೆಕಿನ್ನಿ ಪರ್ಫಾರ್ಮಿಂಗ್ ಆರ್ಟ್ಸ್ ಸೆಂಟರ್ ಪಂಡ್ದ್ ಪುನರ್ ತೆರೆಯೆರ್. <ref name=":1">{{Cite web|last=Allen|first=Abigail|date=2015-09-30|title=Historic Collin County Courthouse|url=https://communityimpact.com/austin/news/2015/09/30/historic-collin-county-courthouse/|accessdate=2025-03-04|website=Community Impact|language=English}}</ref> 2025 ಡ್ದ್, ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಆಯೋಗದ ಭಾಗವಾದ್ ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಕೋರ್ಟ್ ಹೌಸ್ ಸಂರಕ್ಷಣೆ ಕಾರ್ಯಕ್ರಮೊಡ್ದ್ ಪೂರ್ಣ ಜೀರ್ಣೋದ್ಧಾರೊಗು ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ ಗ್ ಅನುಮೋದಿತ ಮಾಸ್ಟರ್ ಪ್ಲಾನ್ ಉಂಡು <ref>{{Cite web|date=2025|title=2025 TEXAS HISTORIC COURTHOUSE PRESERVATION PROGRAM UPDATE|url=https://thc.texas.gov/sites/default/files/2025-02/Courthouse_Cornerstones_2025.pdf|accessdate=March 17, 2025|website=[[Texas Historical Commission]]}}</ref> ೧೯೭೯ ರಲ್ಲಿ, ಮೆಕಿನ್ನಿಯ ಮೆಕ್‌ಡೊನಾಲ್ಡ್ ಸ್ಟ್ರೀಟ್‌ನಲ್ಲಿ ಹೊಸ ನ್ಯಾಯಾಲಯವನ್ನು ನಿರ್ಮಿಸಿದ ನಂತರ ನ್ಯಾಯಾಲಯವನ್ನು ಮುಚ್ಚಲಾಯಿತು. ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೋರ್ಟ್‌ಹೌಸ್‌ನಲ್ಲಿ ನಡೆದ ಕೊನೆಯ ನ್ಯಾಯಾಲಯದ ಪ್ರಕರಣಗಳು ೧೯೮೦ ರ ದಶಕದಲ್ಲಿ ನಡೆದವು. ೧೯೮೨ ರಲ್ಲಿ, ನ್ಯಾಯಾಲಯವನ್ನು ಅಧಿಕೃತವಾಗಿ ರೆಕಾರ್ಡ್ ಮಾಡಿದ ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಹೆಗ್ಗುರುತು ಎಂದು ಗೊತ್ತುಪಡಿಸಲಾಯಿತು ಮತ್ತು ೧೯೮೩ ರಲ್ಲಿ, ನ್ಯಾಯಾಲಯವು ಕಾಲಿನ್ ಕೌಂಟಿಯ ಡೌನ್‌ಟೌನ್‌ನ ಇತರ ಭಾಗಗಳೊಂದಿಗೆ ಮೆಕಿನ್ನಿ ವಾಣಿಜ್ಯ ಐತಿಹಾಸಿಕ ಜಿಲ್ಲೆಯ ಭಾಗವಾಯಿತು, ನಂತರ ೧೯೯೮ ರಲ್ಲಿ, ನ್ಯಾಯಾಲಯವು ಮತ್ತೊಂದು ದಾಖಲಾದ ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಹೆಗ್ಗುರುತು ಪದನಾಮವನ್ನು ಗೆದ್ದುಕೊಂಡಿತು. ೧೯೨೭ ರಲ್ಲಿ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್‌ಹೌಸ್ ಆಗಿ. ನ್ಯಾಯಾಲಯವು ೨೦೦೬ ರವರೆಗೆ ೨೭ ವರ್ಷಗಳ ಕಾಲ ಮುಚ್ಚಲ್ಪಟ್ಟಿತ್ತು, ನಂತರ ಅದನ್ನು ಮೆಕಿನ್ನಿ ಪರ್ಫಾರ್ಮಿಂಗ್ ಆರ್ಟ್ಸ್ ಸೆಂಟರ್ ಆಗಿ ಮರುಉದ್ದೇಶಿಸಿ ಪುನಃ ತೆರೆಯಲಾಯಿತು. ಕನಿಷ್ಠ ೨೦೦೩ ರಿಂದ, ಕಾಲಿನ್ ಕೌಂಟಿ ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ನ್ಯಾಯಾಲಯದ ಸಂರಕ್ಷಣಾ ಕಾರ್ಯಕ್ರಮಕ್ಕೆ ಅರ್ಜಿದಾರರಾಗಿದೆ ಮತ್ತು ೨೦೦೪ ರಿಂದ ಪೂರ್ಣ ಪುನಃಸ್ಥಾಪನೆಗಾಗಿ ಅನುಮೋದಿತ ಮಾಸ್ಟರ್ ಪ್ಲಾನ್ ಅನ್ನು ಹೊಂದಿದೆ.<ref>{{Cite web|title=Details - 1927 Collin County Courthouse - Atlas Number 5085011816 - Atlas: Texas Historical Commission|url=https://atlas.thc.texas.gov/Details/5085011816|accessdate=2025-03-16|website=atlas.thc.texas.gov}}</ref> <ref name=":02">{{Cite web|title=Details - Old Collin County Courthouse - Atlas Number 5085000948 - Atlas: Texas Historical Commission|url=https://atlas.thc.texas.gov/Details/5085000948|accessdate=2025-03-04|website=atlas.thc.texas.gov}}</ref> <ref name=":12">{{Cite web|last=Allen|first=Abigail|date=2015-09-30|title=Historic Collin County Courthouse|url=https://communityimpact.com/austin/news/2015/09/30/historic-collin-county-courthouse/|accessdate=2025-03-04|website=Community Impact|language=English}}</ref> <ref>{{Cite web|date=2003|title=Courthouse Cornerstone 2003 Winter|url=https://www.thc.texas.gov/public/upload/publications/Cornerstone%20Winter%202003.pdf|accessdate=March 17, 2025|website=[[Texas Historical Commission]]}}</ref> <ref>{{Cite web|date=2004|title=Courthouse Cornerstone Fall 2004|url=https://www.thc.texas.gov/public/upload/publications/Cornerstone%20Fall%202004.pdf|accessdate=March 17, 2025|website=[[Texas Historical Commission]]}}</ref> [[ಫೈಲ್:Old_Collin_County_Courthouse_Postcard_(1905-1913).jpg|left|thumb|ದ್ವಿತೀಯ ಸಾಮ್ರಾಜ್ಯ ಶೈಲಿಯಲ್ಲಿರುವ ಹಳೆಯ ಕೊಲಿನ್ ಕೌಂಟಿ ನ್ಯಾಯಾಲಯದ ಪೋಸ್ಟ್‌ಕಾರ್ಡ್Postcard of the Old Collin County Courthouse in the Second Empire style]] [[ಫೈಲ್:Old_Collin_County_Courthouse_(20230996562).jpg|left|thumb|320x320px|ಪಿರಾಕ್ದ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ ಗುರುತು]] rb4cr169hezs1xjqjua4956d5yv5u0k 362617 362616 2026-07-09T14:47:11Z Texan North Public Work Translators 214 10011 362617 wikitext text/x-wiki   '''ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ (Old Collin County Courthouse/McKinney Performing Arts Center)''' ಪಂಡ [[ಮೆಕಿನ್ನಿ, ಟೆಕ್ಸಾಸ್|ಟೆಕ್ಸಾಸ್ ದ ಐತಿಹಾಸಿಕ ಡೌನ್ ಟೌನ್ ಮೆಕಿನ್ನಿಡ್]] ಇಪ್ಪುನ ಒಂಜಿ ಐತಿಹಾಸಿಕ ಕೋರ್ಟ್ ಹೌಸ್. ಉಂದು 1876ಡ್ ರಡ್ಡನೆ ಸಾಮ್ರಾಜ್ಯ ಶೈಲಿಡ್ ನಿರ್ಮಾಣ ಆಂಡ್ ಬೊಕ್ಕ 1927ಡ್ ನಿಯೋಕ್ಲಾಸಿಕಲ್ ಶೈಲಿಡ್ ನವೀಕರಣ ಆಂಡ್. 1979 ಮುಟ್ಟ ನ್ಯಾಯಾಲಯೊನು ಬಳಕೆ ಮಲ್ತೊಂದು ಇತ್ತೆರ್, ಅಪಗ ಒಂಜಿ ಪೊಸ 6 ಮಹಡಿದ ನ್ಯಾಯಾಲಯೊನು ಮುಗಿಪಾದ್ ಅಯಿನ್ ಮುಚ್ಚಿಯೆರ್.<ref name="Courthouse CCH">{{Cite web|url=https://www.collincountyhistory.com/courthouses.html|title=Collin County Courthouse History|publisher=Collin County History|accessdate=March 2, 2025}}</ref> ೧೯೮೨ಡ್, ನ್ಯಾಯಾಲಯೊನು ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಮೈಲುಗಲ್ಲು ಪಂಡ್ದ್ ಗೊತ್ತುಪಡಿಸಯೆರ್ ಉಂದು ದಾಖಲಾತ್ಂಡ್  (Texas Historic Landmark) <ref name=":0">{{Cite web|title=Details - Old Collin County Courthouse - Atlas Number 5085000948 - Atlas: Texas Historical Commission|url=https://atlas.thc.texas.gov/Details/5085000948|accessdate=2025-03-04|website=atlas.thc.texas.gov}}</ref> [ a ] ಬೊಕ್ಕ ೨೦೦೬ಡ್, ಉಂದೆನ್ ಪುನರ್ನಿರ್ಮಾಣ ಮಲ್ತೆರ್ ಬೊಕ್ಕ ಮೆಕಿನ್ನಿ ಪರ್ಫಾರ್ಮಿಂಗ್ ಆರ್ಟ್ಸ್ ಸೆಂಟರ್ ಪಂಡ್ದ್ ಪುನರ್ ತೆರೆಯೆರ್. <ref name=":1">{{Cite web|last=Allen|first=Abigail|date=2015-09-30|title=Historic Collin County Courthouse|url=https://communityimpact.com/austin/news/2015/09/30/historic-collin-county-courthouse/|accessdate=2025-03-04|website=Community Impact|language=English}}</ref> 2025 ಡ್ದ್, ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಆಯೋಗದ ಭಾಗವಾದ್ ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಕೋರ್ಟ್ ಹೌಸ್ ಸಂರಕ್ಷಣೆ ಕಾರ್ಯಕ್ರಮೊಡ್ದ್ ಪೂರ್ಣ ಜೀರ್ಣೋದ್ಧಾರೊಗು ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ ಗ್ ಅನುಮೋದಿತ ಮಾಸ್ಟರ್ ಪ್ಲಾನ್ ಉಂಡು <ref>{{Cite web|date=2025|title=2025 TEXAS HISTORIC COURTHOUSE PRESERVATION PROGRAM UPDATE|url=https://thc.texas.gov/sites/default/files/2025-02/Courthouse_Cornerstones_2025.pdf|accessdate=March 17, 2025|website=[[Texas Historical Commission]]}}</ref> ೧೯೭೯ ರಲ್ಲಿ, ಮೆಕಿನ್ನಿಯ ಮೆಕ್‌ಡೊನಾಲ್ಡ್ ಸ್ಟ್ರೀಟ್‌ನಲ್ಲಿ ಹೊಸ ನ್ಯಾಯಾಲಯವನ್ನು ನಿರ್ಮಿಸಿದ ನಂತರ ನ್ಯಾಯಾಲಯವನ್ನು ಮುಚ್ಚಲಾಯಿತು. ಓಲ್ಡ್ ಕಾಲಿನ್ ಕೋರ್ಟ್‌ಹೌಸ್‌ನಲ್ಲಿ ನಡೆದ ಕೊನೆಯ ನ್ಯಾಯಾಲಯದ ಪ್ರಕರಣಗಳು ೧೯೮೦ ರ ದಶಕದಲ್ಲಿ ನಡೆದವು. ೧೯೮೨ ರಲ್ಲಿ, ನ್ಯಾಯಾಲಯವನ್ನು ಅಧಿಕೃತವಾಗಿ ರೆಕಾರ್ಡ್ ಮಾಡಿದ ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಹೆಗ್ಗುರುತು ಎಂದು ಗೊತ್ತುಪಡಿಸಲಾಯಿತು ಮತ್ತು ೧೯೮೩ ರಲ್ಲಿ, ನ್ಯಾಯಾಲಯವು ಕಾಲಿನ್ ಕೌಂಟಿಯ ಡೌನ್‌ಟೌನ್‌ನ ಇತರ ಭಾಗಗಳೊಂದಿಗೆ ಮೆಕಿನ್ನಿ ವಾಣಿಜ್ಯ ಐತಿಹಾಸಿಕ ಜಿಲ್ಲೆಯ ಭಾಗವಾಯಿತು, ನಂತರ ೧೯೯೮ ರಲ್ಲಿ, ನ್ಯಾಯಾಲಯವು ಮತ್ತೊಂದು ದಾಖಲಾದ ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ಹೆಗ್ಗುರುತು ಪದನಾಮವನ್ನು ಗೆದ್ದುಕೊಂಡಿತು. ೧೯೨೭ ರಲ್ಲಿ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್‌ಹೌಸ್ ಆಗಿ. ನ್ಯಾಯಾಲಯವು ೨೦೦೬ ರವರೆಗೆ ೨೭ ವರ್ಷಗಳ ಕಾಲ ಮುಚ್ಚಲ್ಪಟ್ಟಿತ್ತು, ನಂತರ ಅದನ್ನು ಮೆಕಿನ್ನಿ ಪರ್ಫಾರ್ಮಿಂಗ್ ಆರ್ಟ್ಸ್ ಸೆಂಟರ್ ಆಗಿ ಮರುಉದ್ದೇಶಿಸಿ ಪುನಃ ತೆರೆಯಲಾಯಿತು. ಕನಿಷ್ಠ ೨೦೦೩ ರಿಂದ, ಕಾಲಿನ್ ಕೌಂಟಿ ಟೆಕ್ಸಾಸ್ ಐತಿಹಾಸಿಕ ನ್ಯಾಯಾಲಯದ ಸಂರಕ್ಷಣಾ ಕಾರ್ಯಕ್ರಮಕ್ಕೆ ಅರ್ಜಿದಾರರಾಗಿದೆ ಮತ್ತು ೨೦೦೪ ರಿಂದ ಪೂರ್ಣ ಪುನಃಸ್ಥಾಪನೆಗಾಗಿ ಅನುಮೋದಿತ ಮಾಸ್ಟರ್ ಪ್ಲಾನ್ ಅನ್ನು ಹೊಂದಿದೆ.<ref>{{Cite web|title=Details - 1927 Collin County Courthouse - Atlas Number 5085011816 - Atlas: Texas Historical Commission|url=https://atlas.thc.texas.gov/Details/5085011816|accessdate=2025-03-16|website=atlas.thc.texas.gov}}</ref> <ref name=":02">{{Cite web|title=Details - Old Collin County Courthouse - Atlas Number 5085000948 - Atlas: Texas Historical Commission|url=https://atlas.thc.texas.gov/Details/5085000948|accessdate=2025-03-04|website=atlas.thc.texas.gov}}</ref> <ref name=":12">{{Cite web|last=Allen|first=Abigail|date=2015-09-30|title=Historic Collin County Courthouse|url=https://communityimpact.com/austin/news/2015/09/30/historic-collin-county-courthouse/|accessdate=2025-03-04|website=Community Impact|language=English}}</ref> <ref>{{Cite web|date=2003|title=Courthouse Cornerstone 2003 Winter|url=https://www.thc.texas.gov/public/upload/publications/Cornerstone%20Winter%202003.pdf|accessdate=March 17, 2025|website=[[Texas Historical Commission]]}}</ref> <ref>{{Cite web|date=2004|title=Courthouse Cornerstone Fall 2004|url=https://www.thc.texas.gov/public/upload/publications/Cornerstone%20Fall%202004.pdf|accessdate=March 17, 2025|website=[[Texas Historical Commission]]}}</ref> [[ಫೈಲ್:Old_Collin_County_Courthouse_Postcard_(1905-1913).jpg|left|thumb|ದ್ವಿತೀಯ ಸಾಮ್ರಾಜ್ಯ ಶೈಲಿಯಲ್ಲಿರುವ ಹಳೆಯ ಕೊಲಿನ್ ಕೌಂಟಿ ನ್ಯಾಯಾಲಯದ ಪೋಸ್ಟ್‌ಕಾರ್ಡ್Postcard of the Old Collin County Courthouse in the Second Empire style]] [[ಫೈಲ್:Old_Collin_County_Courthouse_(20230996562).jpg|left|thumb|320x320px|ಪಿರಾಕ್ದ ಕಾಲಿನ್ ಕೌಂಟಿ ಕೋರ್ಟ್ ಹೌಸ್ ಗುರುತು]] krdwimgan02vo74l7r9y4z9vpm0nhzb ಟೆಕ್ಸಾಸ್ ದ 61ನೇ ಸದನದ ಜಿಲ್ಲೆ 0 27474 362624 2026-07-10T01:17:03Z Texan North Public Work Translators 214 10011 "[[:en:Special:Redirect/revision/1340735144|Texas's 61st House of Representatives district]]" ಪುಟವನ್ನು ಅನುವಾದಿಸುವುದರಿಂದ ಸೃಷ್ಟಿಸಲಾಯಿತು 362624 wikitext text/x-wiki   ಟೆಕ್ಸಾಸ್ ಸದನೊದ 61 '''Texas House of Representatives 61st district''' ನೇ ಜಿಲ್ಲೆಡ್ ಟೆಕ್ಸಾಸ್ ದ ಕಾಲಿನ್ ಕೌಂಟಿದ ಒಂಜಿ ಭಾಗ ಉಂಡು. <ref>{{Cite web|title=Texas House of Representatives District 61|url=https://ballotpedia.org/Texas_House_of_Representatives_District_61|accessdate=2022-09-25|website=Ballotpedia|language=en}}</ref> [https://www.votetexas.gov/] d3k3xnvt0kzlxzfpt5yvfwqmsydgbfq 362625 362624 2026-07-10T01:18:05Z Texan North Public Work Translators 214 10011 362625 wikitext text/x-wiki   ಟೆಕ್ಸಾಸ್ ಸದನೊದ 61 '''Texas House of Representatives 61st district''' ನೇ ಜಿಲ್ಲೆಡ್ ಟೆಕ್ಸಾಸ್ ದ ಕಾಲಿನ್ ಕೌಂಟಿದ ಒಂಜಿ ಭಾಗ ಉಂಡು. <ref>{{Cite web|title=Texas House of Representatives District 61|url=https://ballotpedia.org/Texas_House_of_Representatives_District_61|accessdate=2022-09-25|website=Ballotpedia|language=en}}</ref> https://www.votetexas.gov/ [./Https://www.vote411.org/texas Https://www.vote411.org/texas] q34kb7zobik4j2o2ri2k5cicmkdafdk 362626 362625 2026-07-10T01:18:18Z Texan North Public Work Translators 214 10011 362626 wikitext text/x-wiki   ಟೆಕ್ಸಾಸ್ ಸದನೊದ 61 '''Texas House of Representatives 61st district''' ನೇ ಜಿಲ್ಲೆಡ್ ಟೆಕ್ಸಾಸ್ ದ ಕಾಲಿನ್ ಕೌಂಟಿದ ಒಂಜಿ ಭಾಗ ಉಂಡು. <ref>{{Cite web|title=Texas House of Representatives District 61|url=https://ballotpedia.org/Texas_House_of_Representatives_District_61|accessdate=2022-09-25|website=Ballotpedia|language=en}}</ref> https://www.votetexas.gov/ [./Https://www.vote411.org/texas pccgmvc8dpug41824a1ajo5l2onmscv 362627 362626 2026-07-10T01:18:32Z Texan North Public Work Translators 214 10011 362627 wikitext text/x-wiki   ಟೆಕ್ಸಾಸ್ ಸದನೊದ 61 '''Texas House of Representatives 61st district''' ನೇ ಜಿಲ್ಲೆಡ್ ಟೆಕ್ಸಾಸ್ ದ ಕಾಲಿನ್ ಕೌಂಟಿದ ಒಂಜಿ ಭಾಗ ಉಂಡು. <ref>{{Cite web|title=Texas House of Representatives District 61|url=https://ballotpedia.org/Texas_House_of_Representatives_District_61|accessdate=2022-09-25|website=Ballotpedia|language=en}}</ref> https://www.votetexas.gov/ Https://www.vote411.org/texas dzx99duwpd0qlqd3cv99789sgf9vjut 362628 362627 2026-07-10T01:25:58Z Texan North Public Work Translators 214 10011 362628 wikitext text/x-wiki   ಟೆಕ್ಸಾಸ್ ಸದನೊದ 61 '''Texas House of Representatives 61st district''' ನೇ ಜಿಲ್ಲೆಡ್ ಟೆಕ್ಸಾಸ್ ದ ಕಾಲಿನ್ ಕೌಂಟಿದ ಒಂಜಿ ಭಾಗ ಉಂಡು. <ref>{{Cite web|title=Texas House of Representatives District 61|url=https://ballotpedia.org/Texas_House_of_Representatives_District_61|accessdate=2022-09-25|website=Ballotpedia|language=en}}</ref> ಟೆಕ್ಸಾಸ್ ರಾಜ್ಯೊಡು ಒಂಜಿ ಸದಸ್ಯ ಜಿಲ್ಲೆಲೆಡ್ ಆಯ್ಕೆ ಆಯಿನ 150 ಸದಸ್ಯೆರೆನ್ ಪ್ರತಿನಿಧಿಲೆನ ಸಭೆಟ್ ಒಟ್ಟು ಮಲ್ತೆರ್. ಸರಾಸರಿ ಜಿಲ್ಲೆಡ್ ಸುಮಾರ್ 168,000 ಜನ ಉಲ್ಲೆರ್. ರಾಜ್ಯದ ಪ್ರತಿನಿಧಿ ಸಭೆತ ಚುನಾವಣೆಲು ನವೆಂಬರ್ ಡ್ ಸುರುತ ಸೋಮವಾರೊದ ನಂತರ ಸುರುತ ಮಂಗಳವಾರೊಗು ಒರ ರಡ್ಡ್ ವರ್ಸೊಗು ಒರ ನಡಪುಂಡು. ಪ್ರತಿನಿಧಿಲೆನ್ ರಡ್ಡ್ ವರ್ಷದ ಅವಧಿಗ್ ಯಾವುಲಾ ಅವಧಿ ಮಿತಿ ಇಜ್ಜಿಡ ಆಯ್ಕೆ ಮಲ್ಪುವೆರ್. ಕೋಣೆ ರಾಜ್ಯದ ಕ್ಯಾಪಿಟಲ್ ಡ್ ಉಂಡು. https://www.votetexas.gov/ Https://www.vote411.org/texas 4h5wl0f3o873j3rgkyauityd3am8c3k 362629 362628 2026-07-10T01:26:34Z Texan North Public Work Translators 214 10011 362629 wikitext text/x-wiki [[ಫೈಲ್:Seal of Texas House of Representatives.svg|thumb]]   ಟೆಕ್ಸಾಸ್ ಸದನೊದ 61 '''Texas House of Representatives 61st district''' ನೇ ಜಿಲ್ಲೆಡ್ ಟೆಕ್ಸಾಸ್ ದ ಕಾಲಿನ್ ಕೌಂಟಿದ ಒಂಜಿ ಭಾಗ ಉಂಡು. <ref>{{Cite web|title=Texas House of Representatives District 61|url=https://ballotpedia.org/Texas_House_of_Representatives_District_61|accessdate=2022-09-25|website=Ballotpedia|language=en}}</ref> ಟೆಕ್ಸಾಸ್ ರಾಜ್ಯೊಡು ಒಂಜಿ ಸದಸ್ಯ ಜಿಲ್ಲೆಲೆಡ್ ಆಯ್ಕೆ ಆಯಿನ 150 ಸದಸ್ಯೆರೆನ್ ಪ್ರತಿನಿಧಿಲೆನ ಸಭೆಟ್ ಒಟ್ಟು ಮಲ್ತೆರ್. ಸರಾಸರಿ ಜಿಲ್ಲೆಡ್ ಸುಮಾರ್ 168,000 ಜನ ಉಲ್ಲೆರ್. ರಾಜ್ಯದ ಪ್ರತಿನಿಧಿ ಸಭೆತ ಚುನಾವಣೆಲು ನವೆಂಬರ್ ಡ್ ಸುರುತ ಸೋಮವಾರೊದ ನಂತರ ಸುರುತ ಮಂಗಳವಾರೊಗು ಒರ ರಡ್ಡ್ ವರ್ಸೊಗು ಒರ ನಡಪುಂಡು. ಪ್ರತಿನಿಧಿಲೆನ್ ರಡ್ಡ್ ವರ್ಷದ ಅವಧಿಗ್ ಯಾವುಲಾ ಅವಧಿ ಮಿತಿ ಇಜ್ಜಿಡ ಆಯ್ಕೆ ಮಲ್ಪುವೆರ್. ಕೋಣೆ ರಾಜ್ಯದ ಕ್ಯಾಪಿಟಲ್ ಡ್ ಉಂಡು. https://www.votetexas.gov/ Https://www.vote411.org/texas d1i6xk2jj5ielcsb98n2syc7fxbhqj3 ಮನೋರಮಾ ಮಧ್ವರಾಜ್ 0 27475 362633 2026-07-10T05:06:24Z Hariprasad Shetty10 6127 ಹೊಸ ಪುಟ: {{Short description|ಭಾರತದ ರಾಜಕಾರ್ಣಿ}} {{Infobox officeholder | name = ಮನೋರಮಾ ಮಧ್ವರಾಜ್ | image = | caption = | native_name = ಮನೋರಮಾ ಮಧ್ವರಾಜ್ | birth_name = ಮನೋರಮಾ ಮಲ್ಪೆ ಮಧ್ವರಾಜ್ | birth_date = {{Birth date and age|1940|6|1|df=y}} | birth_place = [[ಮಂಗಳೂರು|ಮನಂಪಾಡಿ]],<ref>loksabha</ref> [[ಕರ್ನಾಟಕ]], ಬ್ರ... 362633 wikitext text/x-wiki {{Short description|ಭಾರತದ ರಾಜಕಾರ್ಣಿ}} {{Infobox officeholder | name = ಮನೋರಮಾ ಮಧ್ವರಾಜ್ | image = | caption = | native_name = ಮನೋರಮಾ ಮಧ್ವರಾಜ್ | birth_name = ಮನೋರಮಾ ಮಲ್ಪೆ ಮಧ್ವರಾಜ್ | birth_date = {{Birth date and age|1940|6|1|df=y}} | birth_place = [[ಮಂಗಳೂರು|ಮನಂಪಾಡಿ]],<ref>loksabha</ref> [[ಕರ್ನಾಟಕ]], ಬ್ರಿಟಿಷ್ ಇಂಡಿಯಾ | citizenship = {{flag|India}} | alma_mater = ಕರ್ನಾಟಕ ವಿಶ್ವವಿದ್ಯಾನಿಲಯ | education = ಬಿ.ಎ. | occupation = ಉದ್ಯಮಿ | profession = ರಾಜಕಾರ್ಣಿ | party = ಭಾರತೀಯ ಜನತಾ ಪಕ್ಷ | other_party = ಭಾರತೀಯ ರಾಷ್ಟ್ರೀಯ ಕಾಂಗ್ರೆಸ್ | spouse = ಮಲ್ಪೆ ಮಧ್ವರಾಜ್ | children = ಪ್ರಮೋದ್ ಮಧ್ವರಾಜ್ | office = ಕರ್ನಾಟಕ ಸರ್ಕಾರದ ಸಚಿವ ಸಂಪುಟ ಸಚಿವ | term_start = 1974 | term_end = 1983 | office2 = ಸಚಿವ ಸಂಪುಟ ಸಚಿವ, ಕರ್ನಾಟಕ ಸರ್ಕಾರ | term_start2 = 1989 | term_end2 = 1994 | office1 = ಕರ್ನಾಟಕ ವಿಧಾನಸಭೆ ಸದಸ್ಯೆ | term_start1 = 1972 | term_end1 = 1994 | office7 = ಲೋಕಸಭಾ ಸದಸ್ಯೆ | constituency7 = ಉಡುಪಿ ಲೋಕಸಭಾ ಕ್ಷೇತ್ರ | term_start7 = 2004 | term_end7 = 2008 | predecessor7 = ವಿನಯ್ ಕುಮಾರ್ ಸೊರಕೆ | successor7 = ಕ್ಷೇತ್ರ ರದ್ದಾತುಂಡು | website = | date = 23 September | year = 2006 | source = http://164.100.47.194/Loksabha/Members/memberbioprofile.aspx?mpsno=3980&lastls=14 }} '''ಮನೋರಮಾ ಮಧ್ವರಾಜ್''' ಒರಿ ಭಾರತೀಯ ರಾಜಕಾರಣಿ, ಸಾಮಾಜಿಕ ಕಾರ್ಯಕರ್ತೆ ಬೊಕ್ಕ ಪದಾಧಿಕಾರಿ ಆದ್ [[ಭಾರತ]] ದ ಸುರುತ ಪೊಣ್ಣು ಕೇಂದ್ರ ಸಚಿವೆ.[[ಭಾರತ]] ಶಾಸಕಾಂಗ ಸಭೆತ ಸದಸ್ಯೆರಾದ್ [[ಕರ್ನಾಟಕ]] ವಿಧಾನಸಭೆ] ಆಯ್ಕೆ ಆಯೆರ್. ಈ ಪೂರ ಸಂದರ್ಭೊಲೆಡ್ ಮೇರ್ ಉಡುಪಿ ವಿಧಾನಸಭಾ ಕ್ಷೇತ್ರೊಡ್ದ್ ಆಯ್ಕೆ ಆದ್ [[ಭಾರತೀಯ ರಾಷ್ಟ್ರೀಯ ಕಾಂಗ್ರೆಸ್]] ದ ಸದಸ್ಯೆರಾದಿತ್ತೆರ್..<ref>{{Cite web |last=Paniyadi |first=Gururaj A. |date=25 April 2018 |title=In Udupi, the Madhwaraj family legacy towers over the rest |url=https://www.deccanchronicle.com/nation/current-affairs/250418/in-udupi-the-madhwaraj-family-legacy-towers-over-the-rest.html |access-date=12 October 2022 |website=Deccan Chronicle |language=en}}</ref> ಮೇರ್ ಭಾರತದ ೧೪ನೇ ಲೋಕಸಭೆ ಸದಸ್ಯೆರಾದಿತ್ತೆರ್. ಮೇರ್ [[ಕರ್ನಾಟಕ]] ದ ಉಡುಪಿ ಲೋಕಸಭಾ ಕ್ಷೇತ್ರ ಕ್ಷೇತ್ರೊನು ಪ್ರತಿನಿಧಿಸಯೆರ್ ಬೊಕ್ಕ ಭಾರತೀಯ ಜನತಾ ಪಕ್ಷ (ಬಿಜೆಪಿ) ರಾಜಕೀಯ ಪಕ್ಷೊದ ಸದಸ್ಯೆರಾದಿತ್ತೆರ್.<ref>{{Cite news |date=7 May 2022 |title=Pramod Madhwaraj joins BJP hours after leaving Congress |language=en-IN |work=The Hindu |url=https://www.thehindu.com/news/cities/Mangalore/pramod-madhwaraj-joins-bjp-hours-after-leaving-congress/article65391415.ece |access-date=12 October 2022 |issn=0971-751X}}</ref> ವಿಶ್ವಾಸ ಮತದಾನದ ಸಮಯೊಡು ಕಾಂಗ್ರೆಸ್ ಪರವಾದ್ ಮತ ಚಲಾಯಿಸಾಯಿನ ಬುಕ್ಕೊ ಬಿಜೆಪಿ ಬೊಕ್ಕ ಲೋಕಸಭೆನ್ ಬುಡ್ದು ಪೋಯೆರ್.{{citation needed|date=August 2014}} ಅರೆನ ಮಗೆ, ಪ್ರಮೋದ್ ಮಧ್ವರಾಜ್ ೨೦೧೩-೧೮ ನಡುಟು ಸಿದ್ದರಾಮಯ್ಯ ನ ಕಾಂಗ್ರೆಸ್ ಸರ್ಕಾರೊಡು ಸಚಿವೆರಾದ್ ಇತ್ತೆರ್.<ref>{{Cite web |date=7 May 2022 |title=Congress top Udupi leader, a former MLA and minister, joins BJP |url=https://indianexpress.com/article/political-pulse/pramod-madhwaraj-congress-top-udupi-leader-former-mla-minister-joins-bjp-7905884/ |access-date=12 October 2022 |website=The Indian Express |language=en}}</ref> == ಹಿಡಿತದ ಸ್ಥಾನೊಲು == * ೧೯೭೨ - ೧೯೯೪, ಸದಸ್ಯೆ [[ಕರ್ನಾಟಕ]] ವಿಧಾನಸಭೆ. * ೧೯೭೪ - ೮೩, ಸಂಪುಟ ಸಚಿವ, [[ಕರ್ನಾಟಕ]] ಸರ್ಕಾರ. * ೧೯೮೯ - ೯೪, ಸಂಪುಟ ಸಚಿವ, [[ಕರ್ನಾಟಕ]] ಸರ್ಕಾರ. * ೨೦೦೧ - ೨೦೦೩, ರಾಜ್ಯ ಪ್ರವಾಸೋದ್ಯಮ ಅಭಿವೃದ್ಧಿ ನಿಗಮದ ಅಧ್ಯಕ್ಷ (ಕ್ಯಾಬಿನೆಟ್ ಶ್ರೇಣಿ) * ೨೦೦೪, ಸದಸ್ಯೆರಾದ್ ಆಯ್ಕೆ ಆಯೆರ್ ೧೪ನೇ ಲೋಕಸಭೆ. * ೨೦೦೪, ಜಲಸಂಪನ್ಮೂಲ ಸಮಿತಿ ಸದಸ್ಯೆ * ೧೬ ಆಗಸ್ಟ್ ೨೦೦೬ ಡ್ದ್ ಇತ್ತೆ ಮುಟ್ಟ, ಮಹಿಳಾ ಸಬಲೀಕರಣ ಸಮಿತಿದ ಸದಸ್ಯೆರ್ * ೫ ಆಗಸ್ಟ್ ೨೦೦೭ ಡ್ದ್ ಇತ್ತೆ ಮುಟ್ಟ, ಜಲಸಂಪನ್ಮೂಲ ಸಮಿತಿದ ಸದಸ್ಯೆರ್ ==ಬಾಹ್ಯ ಕೊಂಡಿಲು== * {{webarchive |url=https://web.archive.org/web/20071221064220/http://164.100.24.208/ls/lsmember/biodata.asp?mpsno=3980 |date=21 December 2007 |title=Members of Fourteenth Lok Sabha - Parliament of India website }} ==ಉಲ್ಲೇಕೊಲು== {{reflist}} jkuqi7jstn3ajvshdmodn2nu3ibmp1z ಪಾತೆರ:ಮನೋರಮಾ ಮಧ್ವರಾಜ್ 1 27476 362635 2026-07-10T05:07:14Z Hariprasad Shetty10 6127 https://fountain.toolforge.org/editathons/10wiki-tcy 362635 wikitext text/x-wiki {{ವಿಕಿಪೀಡಿಯ 10ನೇ ವರ್ಸಂತಿಗೆ ಪಂತೊದ ಲೇಕನೊ}} nekn5axm94un6rhhgr63qit15105phm ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ 0 27477 362636 2026-07-10T06:51:59Z Mahaveer Indra 1023 ಹೊಸ ಪುಟ: ೧೯೩೪ನೇ ಇಸವಿಡ್ ಪುಣೆಡ್ 'ಮರಾಠಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್' (MCC) ಸುರು ಆಂಡ್. ಅಯಿತ ಸ್ಥಾಪಕ ಕಾರ್ಯದರ್ಶಿ ಆಯಿನ ಶ್ರೀ ಎ.ಆರ್. ಭಟ್ ಬಾರೀ ದೂರದೃಷ್ಟಿ ಇತ್ತ್‌ನ ಮಾಮಲ್ಲ ನಾಯಕೆ ಆದಿತ್ತ್ಂಡ್. ಮರಾಠಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್ ಸ... 362636 wikitext text/x-wiki ೧೯೩೪ನೇ ಇಸವಿಡ್ ಪುಣೆಡ್ 'ಮರಾಠಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್' (MCC) ಸುರು ಆಂಡ್. ಅಯಿತ ಸ್ಥಾಪಕ ಕಾರ್ಯದರ್ಶಿ ಆಯಿನ ಶ್ರೀ ಎ.ಆರ್. ಭಟ್ ಬಾರೀ ದೂರದೃಷ್ಟಿ ಇತ್ತ್‌ನ ಮಾಮಲ್ಲ ನಾಯಕೆ ಆದಿತ್ತ್ಂಡ್. ಮರಾಠಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್ ಸುರು ಆಯಿನ ಕೆಲವು ತಿಂಗೊಳುಡು ಲೋಕಮಾನ್ಯ ತಿಲಕೆರೆನ ನೆನಪುಡು ಬುಡುಗಡೆ ಆಯಿನ 'ಕೇಸರಿ' ಪತ್ರಿಕೆದ ವಿಶೇಷ ಸಂಚಿಕೆಡ್ ಆ ಪ್ರದೇಶೊಡು ಇಪ್ಪುನ ಬ್ಯಾಂಕಿಂಗ್ ಸೇವೆಲೆನ ಬಗ್ಗೆ ಒಂಜಿ ವರದಿನ್ ಪ್ರಕಟ ಮಲ್ಪೆರೆ ಶ್ರೀ ಭಟ್ ಸುರು ಮಲ್ತೇರ್. ಅರೆನ ದೋಸ್ತಿ ಬೊಕ್ಕ ಸಹಕಾರ ಚಳವಳಿದ ಮಲ್ಲ ಮೇಧಾವಿ ಆಯಿನ ಶ್ರೀ ವಿ. ಪಿ. ವರ್ದೆ ಅರೆನ ಕೈಡ್ದ್ "ಮಹಾರಾಷ್ಟ್ರಗ್ ಒಂಜಿ ಪ್ರತ್ಯೇಕ ಬ್ಯಾಂಕ್ ಬೋಡು" ಪನ್ಪಿನ ವಿಷಯದ ಬಗ್ಗೆ ಒಂಜಿ ಬರವು ಬರೆಪಾಯೆರ್. ಈ ಲೇಖನಗ್ ಸುರುಟು ಜನಡ್ದ್ ಅಂಚಿನ ಮಲ್ಲ ಪ್ರತಿಕ್ರಿಯೆ ಬತ್ತಿಜಿಂಡಲಾ, ಶ್ರೀ ಎ.ಆರ್. ಭಟ್ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕಾ ರಂಗದ ಮಲ್ಲ ಜನಕುಲೆನ ಒಟ್ಟುಗು ಈ ವಿಷಯದ ಬಗ್ಗೆ ಪಾತೆರೊಂದು ಇತ್ತ್ಂಡ್. ಮಹರತ್ತಾ ಚೇಂಬರ್ ಬೊಕ್ಕ ಅಯಿತ ನಿರ್ದೇಶಕರು ಈ ವಿಷಯೊನು ಗಂಭೀರವಾದ್ ದೆತೊಂದು, ಫೆಬ್ರವರಿ ೧೯೩೫ಡ್ ಪುಣೆಡ್ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕಾ ಸಮ್ಮೇಳನಡ್ ಈ ಇಸಯ ಚರ್ಚೆಗ್ ಬತ್ತ್ಂಡ್. "ಮಹಾರಾಷ್ಟ್ರದ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕೆಲೆಗ್ ದುಡ್ಡುದ ಸೌಲಭ್ಯ ಕೊರಿಯೆರೆ ಒಂಜಿ ಜಾಯಿಂಟ್ ಸ್ಟಾಕ್ ಕಮರ್ಷಿಯಲ್ ಬ್ಯಾಂಕ್ (ವಾಣಿಜ್ಯ ಬ್ಯಾಂಕ್) ಸ್ಥಾಪನೆ ಮಲ್ಪುನು ಬಾರೀ ಅಗತ್ಯ ಉಂಡು. ಅಂಚಾದ್ ಮಹರತ್ತಾ ಚೇಂಬರ್ ಇಂದೆಕ್ ಬೋಡಾಯಿನ ಇಚಾರ ಮಲ್ತ್‌ದ್, ಬ್ಯಾಂಕ್ ಸುರು ಮಲ್ಪೆರೆ ಆವಶ್ಯಕ ಕ್ರಮ ದೆತೊನೊಡು. ಮಹಾರಾಷ್ಟ್ರದ ಮಾತಾ ವ್ಯಾಪಾರಸ್ಥರು ಈ ಪ್ರಯತ್ನೊಗು ಬೆರಿ ಸಹಾಯ ಕೊರೊಡು." ೨೦ನೇ ಶತಮಾನದ ಸುರುತ ದಶಕೊಡು ನಡತಿನ ಸ್ವದೇಶಿ ಚಳವಳಿ ಭಾರತದ ಜನಕುಲೆನ ಉಸ್ತುವಾರಿಡು ಮಹಾರಾಷ್ಟ್ರೊಡು ಮಸ್ತ್ ವಾಣಿಜ್ಯ ಬ್ಯಾಂಕುಲೆನ ಸ್ಥಾಪನೆಗ್ ಪ್ರೇರಣೆ ಕೊರ್ತುಂಡು. ಇಂದೆತ ಕೆಲಸೊಗಾದ್ MCC ಒಂಜಿ ಉಪ-ಸಮಿತಿನ್ ಉಂಡು ಮಲ್ತ್ಂಡ್. ಅಯಿಟು ಶ್ರೀ ವಿ.ಜಿ. ಕಾಳೆ, ಡಿ.ಕೆ. ಸಾಠೆ, ಎನ್.ಜಿ. ಪವಾರ್, ಜಿ.ಡಿ. ಆಪ್ಟೆ ಬೊಕ್ಕ ಎ.ಆರ್. ಭಟ್ ಇತ್ತೆರ್. ಈ ಸಮಿತಿದ ಸುರುತ ಕೂಟ ೧೯ ಮೇ ೧೯೩೫ ದಾನಿ ನಡತಿನ ಬೊಕ್ಕೊಂಜಿ ಮಲ್ಲ ಕೂಟೊಡು ನಿರ್ಧಾರೊಲೆನ್ ದೆತೊಂಡೆರ್: ಪ್ರಸ್ತಾಪಿತ ಬ್ಯಾಂಕ್‌ದ ಬೋರ್ಡ್‌ಡ್ ಗರಿಷ್ಠ ೧೧ ನಿರ್ದೇಶಕರು ಇಪ್ಪೊಡು, ಒಂಜಿ ಶೇರ್‌ದ ಬಿಲೆ ೫೦ ರೂಪಾಯಿ ಆವೊಡು, ಬೊಕ್ಕ ನಿರ್ದೇಶಕ ಆಯೆರೆ ಕನಿಷ್ಠ ೫೦೦ ಶೇರುಲು ಇಪ್ಪೊಡು ಪಂದ್ ತೀರ್ಮಾನ ಮಲ್ತೇರ್. ಅಂಚ ತೀರ್ಮಾನ ಆಯಿಬೊಕ್ಕ ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ೧೬ ಸೆಪ್ಟೆಂಬರ್ ೧೯೩೫ ದಾನಿ ಬೊಂಬಾಯಿ ಪ್ರೆಸಿಡೆನ್ಸಿದ ಪೂನಾಡ್ (ಇತ್ತೆದ ಪುಣೆ, ಮಹಾರಾಷ್ಟ್ರ) ಸ್ಥಾಪನೆ ಆಂಡ್. ಭಾರತೊಡು ಸಹಕಾರಿ ಚಳವಳಿ ನಡತೊಂದು ಇತ್ತ್‌ನ ಆ ಸಮಯೊಡು, ಎಲ್ಯ ವ್ಯಾಪಾರಸ್ಥರೆಗ್ ಬೊಕ್ಕ ಉದ್ಯಮಿಲೆಗ್ ಬೆರಿ ಸಹಾಯ ಕೊರಿಯೆರೆ ಬೋಡಾದ್ 'ಮಹರತ್ತಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್' ಉಸ್ತುವಾರಿಡು ಈ ಬ್ಯಾಂಕ್ ಸುರು ಆಂಡ್. ಅಯಿಡ್ದ್ ಬೊಕ್ಕ, ೧೯೪೪ನೇ ಇಸವಿಡ್ ಈ ಬ್ಯಾಂಕ್ ಒಂಜಿ 'ಷೆಡ್ಯೂಲ್ಡ್ ಬ್ಯಾಂಕ್' ಆದ್ ಮಾದೃಶ ಆಂಡ್. ಬೊಕ್ಕ ೧೯೫೫ನೇ ಇಸವಿಡ್ 'ಬ್ಯಾಂಕಿಂಗ್ ಕಂಪೆನೀಸ್ ಆಕ್ಟ್' ಅಡಿಟ್ ಅಧಿಕೃತ ಬ್ಯಾಂಕಿಂಗ್ ಲೈಸೆನ್ಸ್ ದೆತೊಂಡಿನ ಈ ಬ್ಯಾಂಕ್, ೧೯೫೮ನೇ ಇಸವಿಡ್ ಬಾಂಬೆ ಸ್ಟಾಕ್ ಎಕ್ಸ್ಚೇಂಜ್ (BSE) ಡ್ ದಾಖಲಾಂಡ್. crkv2fpbj9eq1qgxml6je1svx92bh62 362637 362636 2026-07-10T07:13:42Z Mahaveer Indra 1023 362637 wikitext text/x-wiki ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ಭಾರತದ ಒಂಜಿ ಮಲ್ಲ ಸಾರ್ವಜನಿಕ ವಲಯದ ಬ್ಯಾಂಕ್ ಆದುಂಡು. ಇಂದೆತ ಮುಖ್ಯ ಕಛೇರಿ ಪುಣೆಡ್ ಉಂಡು. ಈ ಬ್ಯಾಂಕ್ ೧೯೩೫ನೇ ಇಸವಿಡ್ ಸ್ಥಾಪನೆ ಆಂಡ್ ಬೊಕ್ಕ ೧೯೬೯ನೇ ಇಸವಿಡ್ ಭಾರತ ಸರ್ಕಾರ ಇಂದೆನ್ ರಾಷ್ಟ್ರೀಕರಣ ಮಲ್ತ್ಂಡ್. ಜೂನ್ ೨೦೨೫ದ ಲೆಕ್ಕಾಚಾರದ ಪ್ರಕಾರ, ಈ ಬ್ಯಾಂಕ್‌ಗ್ ದೇಸೊರ್ಮೆ ಸುಮಾರ್ ೨,೬೪೧ ಶಾಖೆಲು ಉಲ್ಲ. ಮಾರುಕಟ್ಟೆ ಬಂಡವಾಳದ ಪ್ರಕಾರ, ಸಾರ್ವಜನಿಕ ವಲಯದ ಬ್ಯಾಂಕುಲೆಡ್ ಈ ಬ್ಯಾಂಕ್ ೮ನೇ ಸಾನೊಡು ಉಂಡು. ==ಇತಿಹಾಸೊ== ೧೯೩೪ನೇ ಇಸವಿಡ್ ಪುಣೆಡ್ 'ಮರಾಠಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್' (MCC) ಸುರು ಆಂಡ್. ಅಯಿತ ಸ್ಥಾಪಕ ಕಾರ್ಯದರ್ಶಿ ಆಯಿನ ಶ್ರೀ ಎ.ಆರ್. ಭಟ್ ಬಾರೀ ದೂರದೃಷ್ಟಿ ಇತ್ತ್‌ನ ಮಾಮಲ್ಲ ನಾಯಕೆ ಆದಿತ್ತ್ಂಡ್. ಮರಾಠಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್ ಸುರು ಆಯಿನ ಕೆಲವು ತಿಂಗೊಳುಡು ಲೋಕಮಾನ್ಯ ತಿಲಕೆರೆನ ನೆನಪುಡು ಬುಡುಗಡೆ ಆಯಿನ 'ಕೇಸರಿ' ಪತ್ರಿಕೆದ ವಿಶೇಷ ಸಂಚಿಕೆಡ್ ಆ ಪ್ರದೇಶೊಡು ಇಪ್ಪುನ ಬ್ಯಾಂಕಿಂಗ್ ಸೇವೆಲೆನ ಬಗ್ಗೆ ಒಂಜಿ ವರದಿನ್ ಪ್ರಕಟ ಮಲ್ಪೆರೆ ಶ್ರೀ ಭಟ್ ಸುರು ಮಲ್ತೇರ್. ಅರೆನ ದೋಸ್ತಿ ಬೊಕ್ಕ ಸಹಕಾರ ಚಳವಳಿದ ಮಲ್ಲ ಮೇಧಾವಿ ಆಯಿನ ಶ್ರೀ ವಿ. ಪಿ. ವರ್ದೆ ಅರೆನ ಕೈಡ್ದ್ "ಮಹಾರಾಷ್ಟ್ರಗ್ ಒಂಜಿ ಪ್ರತ್ಯೇಕ ಬ್ಯಾಂಕ್ ಬೋಡು" ಪನ್ಪಿನ ವಿಷಯದ ಬಗ್ಗೆ ಒಂಜಿ ಬರವು ಬರೆಪಾಯೆರ್. ಈ ಲೇಖನಗ್ ಸುರುಟು ಜನಡ್ದ್ ಅಂಚಿನ ಮಲ್ಲ ಪ್ರತಿಕ್ರಿಯೆ ಬತ್ತಿಜಿಂಡಲಾ, ಶ್ರೀ ಎ.ಆರ್. ಭಟ್ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕಾ ರಂಗದ ಮಲ್ಲ ಜನಕುಲೆನ ಒಟ್ಟುಗು ಈ ವಿಷಯದ ಬಗ್ಗೆ ಪಾತೆರೊಂದು ಇತ್ತ್ಂಡ್. ಮಹರತ್ತಾ ಚೇಂಬರ್ ಬೊಕ್ಕ ಅಯಿತ ನಿರ್ದೇಶಕರು ಈ ವಿಷಯೊನು ಗಂಭೀರವಾದ್ ದೆತೊಂದು, ಫೆಬ್ರವರಿ ೧೯೩೫ಡ್ ಪುಣೆಡ್ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕಾ ಸಮ್ಮೇಳನಡ್ ಈ ಇಸಯ ಚರ್ಚೆಗ್ ಬತ್ತ್ಂಡ್. "ಮಹಾರಾಷ್ಟ್ರದ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕೆಲೆಗ್ ದುಡ್ಡುದ ಸೌಲಭ್ಯ ಕೊರಿಯೆರೆ ಒಂಜಿ ಜಾಯಿಂಟ್ ಸ್ಟಾಕ್ ಕಮರ್ಷಿಯಲ್ ಬ್ಯಾಂಕ್ (ವಾಣಿಜ್ಯ ಬ್ಯಾಂಕ್) ಸ್ಥಾಪನೆ ಮಲ್ಪುನು ಬಾರೀ ಅಗತ್ಯ ಉಂಡು. ಅಂಚಾದ್ ಮಹರತ್ತಾ ಚೇಂಬರ್ ಇಂದೆಕ್ ಬೋಡಾಯಿನ ಇಚಾರ ಮಲ್ತ್‌ದ್, ಬ್ಯಾಂಕ್ ಸುರು ಮಲ್ಪೆರೆ ಆವಶ್ಯಕ ಕ್ರಮ ದೆತೊನೊಡು. ಮಹಾರಾಷ್ಟ್ರದ ಮಾತಾ ವ್ಯಾಪಾರಸ್ಥರು ಈ ಪ್ರಯತ್ನೊಗು ಬೆರಿ ಸಹಾಯ ಕೊರೊಡು." ೨೦ನೇ ಶತಮಾನದ ಸುರುತ ದಶಕೊಡು ನಡತಿನ ಸ್ವದೇಶಿ ಚಳವಳಿ ಭಾರತದ ಜನಕುಲೆನ ಉಸ್ತುವಾರಿಡು ಮಹಾರಾಷ್ಟ್ರೊಡು ಮಸ್ತ್ ವಾಣಿಜ್ಯ ಬ್ಯಾಂಕುಲೆನ ಸ್ಥಾಪನೆಗ್ ಪ್ರೇರಣೆ ಕೊರ್ತುಂಡು. ಇಂದೆತ ಕೆಲಸೊಗಾದ್ MCC ಒಂಜಿ ಉಪ-ಸಮಿತಿನ್ ಉಂಡು ಮಲ್ತ್ಂಡ್. ಅಯಿಟು ಶ್ರೀ ವಿ.ಜಿ. ಕಾಳೆ, ಡಿ.ಕೆ. ಸಾಠೆ, ಎನ್.ಜಿ. ಪವಾರ್, ಜಿ.ಡಿ. ಆಪ್ಟೆ ಬೊಕ್ಕ ಎ.ಆರ್. ಭಟ್ ಇತ್ತೆರ್. ಈ ಸಮಿತಿದ ಸುರುತ ಕೂಟ ೧೯ ಮೇ ೧೯೩೫ ದಾನಿ ನಡತಿನ ಬೊಕ್ಕೊಂಜಿ ಮಲ್ಲ ಕೂಟೊಡು ನಿರ್ಧಾರೊಲೆನ್ ದೆತೊಂಡೆರ್: ಪ್ರಸ್ತಾಪಿತ ಬ್ಯಾಂಕ್‌ದ ಬೋರ್ಡ್‌ಡ್ ಗರಿಷ್ಠ ೧೧ ನಿರ್ದೇಶಕರು ಇಪ್ಪೊಡು, ಒಂಜಿ ಶೇರ್‌ದ ಬಿಲೆ ೫೦ ರೂಪಾಯಿ ಆವೊಡು, ಬೊಕ್ಕ ನಿರ್ದೇಶಕ ಆಯೆರೆ ಕನಿಷ್ಠ ೫೦೦ ಶೇರುಲು ಇಪ್ಪೊಡು ಪಂದ್ ತೀರ್ಮಾನ ಮಲ್ತೇರ್. ಅಂಚ ತೀರ್ಮಾನ ಆಯಿಬೊಕ್ಕ ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ೧೬ ಸೆಪ್ಟೆಂಬರ್ ೧೯೩೫ ದಾನಿ ಬೊಂಬಾಯಿ ಪ್ರೆಸಿಡೆನ್ಸಿದ ಪೂನಾಡ್ (ಇತ್ತೆದ ಪುಣೆ, ಮಹಾರಾಷ್ಟ್ರ) ಸ್ಥಾಪನೆ ಆಂಡ್. ಭಾರತೊಡು ಸಹಕಾರಿ ಚಳವಳಿ ನಡತೊಂದು ಇತ್ತ್‌ನ ಆ ಸಮಯೊಡು, ಎಲ್ಯ ವ್ಯಾಪಾರಸ್ಥರೆಗ್ ಬೊಕ್ಕ ಉದ್ಯಮಿಲೆಗ್ ಬೆರಿ ಸಹಾಯ ಕೊರಿಯೆರೆ ಬೋಡಾದ್ 'ಮಹರತ್ತಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್' ಉಸ್ತುವಾರಿಡು ಈ ಬ್ಯಾಂಕ್ ಸುರು ಆಂಡ್. ಅಯಿಡ್ದ್ ಬೊಕ್ಕ, ೧೯೪೪ನೇ ಇಸವಿಡ್ ಈ ಬ್ಯಾಂಕ್ ಒಂಜಿ 'ಷೆಡ್ಯೂಲ್ಡ್ ಬ್ಯಾಂಕ್' ಆದ್ ನೋಂದಣಿ ಆಂಡ್. ೧೯೫೫ನೇ ಇಸವಿಡ್ 'ಬ್ಯಾಂಕಿಂಗ್ ಕಂಪೆನೀಸ್ ಆಕ್ಟ್' ಅಡಿಟ್ ಅಧಿಕೃತ ಬ್ಯಾಂಕಿಂಗ್ ಲೈಸೆನ್ಸ್ ದೆತೊಂಡು. ಈ ಬ್ಯಾಂಕ್, ೧೯೫೮ನೇ ಇಸವಿಡ್ ಬಾಂಬೆ ಸ್ಟಾಕ್ ಎಕ್ಸ್ಚೇಂಜ್‌ಡ್ ದಾಖಲಾಂಡ್. cuvicr0uoas3snuv5cv57dobgpn1ole 362638 362637 2026-07-10T07:24:21Z Mahaveer Indra 1023 362638 wikitext text/x-wiki ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ಭಾರತದ ಒಂಜಿ ಮಲ್ಲ ಸಾರ್ವಜನಿಕ ವಲಯದ ಬ್ಯಾಂಕ್ ಆದುಂಡು. ಇಂದೆತ ಮುಖ್ಯ ಕಛೇರಿ ಪುಣೆಡ್ ಉಂಡು. ಈ ಬ್ಯಾಂಕ್ ೧೯೩೫ನೇ ಇಸವಿಡ್ ಸ್ಥಾಪನೆ ಆಂಡ್ ಬೊಕ್ಕ ೧೯೬೯ನೇ ಇಸವಿಡ್ ಭಾರತ ಸರ್ಕಾರ ಇಂದೆನ್ ರಾಷ್ಟ್ರೀಕರಣ ಮಲ್ತ್ಂಡ್. ಜೂನ್ ೨೦೨೫ದ ಲೆಕ್ಕಾಚಾರದ ಪ್ರಕಾರ, ಈ ಬ್ಯಾಂಕ್‌ಗ್ ದೇಸೊರ್ಮೆ ಸುಮಾರ್ ೨,೬೪೧ ಶಾಖೆಲು ಉಲ್ಲ. ಮಾರುಕಟ್ಟೆ ಬಂಡವಾಳದ ಪ್ರಕಾರ, ಸಾರ್ವಜನಿಕ ವಲಯದ ಬ್ಯಾಂಕುಲೆಡ್ ಈ ಬ್ಯಾಂಕ್ ೮ನೇ ಸಾನೊಡು ಉಂಡು. ==ಇತಿಹಾಸೊ== ೧೯೩೪ನೇ ಇಸವಿಡ್ ಪುಣೆಡ್ 'ಮರಾಠಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್' (MCC) ಸುರು ಆಂಡ್. ಅಯಿತ ಸ್ಥಾಪಕ ಕಾರ್ಯದರ್ಶಿ ಆಯಿನ ಶ್ರೀ ಎ.ಆರ್. ಭಟ್ ಬಾರೀ ದೂರದೃಷ್ಟಿ ಇತ್ತ್‌ನ ಮಾಮಲ್ಲ ನಾಯಕೆ ಆದಿತ್ತ್ಂಡ್. ಮರಾಠಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್ ಸುರು ಆಯಿನ ಕೆಲವು ತಿಂಗೊಳುಡು ಲೋಕಮಾನ್ಯ ತಿಲಕೆರೆನ ನೆನಪುಡು ಬುಡುಗಡೆ ಆಯಿನ 'ಕೇಸರಿ' ಪತ್ರಿಕೆದ ವಿಶೇಷ ಸಂಚಿಕೆಡ್ ಆ ಪ್ರದೇಶೊಡು ಇಪ್ಪುನ ಬ್ಯಾಂಕಿಂಗ್ ಸೇವೆಲೆನ ಬಗ್ಗೆ ಒಂಜಿ ವರದಿನ್ ಪ್ರಕಟ ಮಲ್ಪೆರೆ ಶ್ರೀ ಭಟ್ ಸುರು ಮಲ್ತೇರ್. ಅರೆನ ದೋಸ್ತಿ ಬೊಕ್ಕ ಸಹಕಾರ ಚಳವಳಿದ ಮಲ್ಲ ಮೇಧಾವಿ ಆಯಿನ ಶ್ರೀ ವಿ. ಪಿ. ವರ್ದೆ ಅರೆನ ಕೈಡ್ದ್ "ಮಹಾರಾಷ್ಟ್ರಗ್ ಒಂಜಿ ಪ್ರತ್ಯೇಕ ಬ್ಯಾಂಕ್ ಬೋಡು" ಪನ್ಪಿನ ವಿಷಯದ ಬಗ್ಗೆ ಒಂಜಿ ಬರವು ಬರೆಪಾಯೆರ್. ಈ ಲೇಖನಗ್ ಸುರುಟು ಜನಡ್ದ್ ಅಂಚಿನ ಮಲ್ಲ ಪ್ರತಿಕ್ರಿಯೆ ಬತ್ತಿಜಿಂಡಲಾ, ಶ್ರೀ ಎ.ಆರ್. ಭಟ್ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕಾ ರಂಗದ ಮಲ್ಲ ಜನಕುಲೆನ ಒಟ್ಟುಗು ಈ ವಿಷಯದ ಬಗ್ಗೆ ಪಾತೆರೊಂದು ಇತ್ತ್ಂಡ್. ಮಹರತ್ತಾ ಚೇಂಬರ್ ಬೊಕ್ಕ ಅಯಿತ ನಿರ್ದೇಶಕರು ಈ ವಿಷಯೊನು ಗಂಭೀರವಾದ್ ದೆತೊಂದು, ಫೆಬ್ರವರಿ ೧೯೩೫ಡ್ ಪುಣೆಡ್ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕಾ ಸಮ್ಮೇಳನಡ್ ಈ ಇಸಯ ಚರ್ಚೆಗ್ ಬತ್ತ್ಂಡ್. "ಮಹಾರಾಷ್ಟ್ರದ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕೆಲೆಗ್ ದುಡ್ಡುದ ಸೌಲಭ್ಯ ಕೊರಿಯೆರೆ ಒಂಜಿ ಜಾಯಿಂಟ್ ಸ್ಟಾಕ್ ಕಮರ್ಷಿಯಲ್ ಬ್ಯಾಂಕ್ (ವಾಣಿಜ್ಯ ಬ್ಯಾಂಕ್) ಸ್ಥಾಪನೆ ಮಲ್ಪುನು ಬಾರೀ ಅಗತ್ಯ ಉಂಡು. ಅಂಚಾದ್ ಮಹರತ್ತಾ ಚೇಂಬರ್ ಇಂದೆಕ್ ಬೋಡಾಯಿನ ಇಚಾರ ಮಲ್ತ್‌ದ್, ಬ್ಯಾಂಕ್ ಸುರು ಮಲ್ಪೆರೆ ಆವಶ್ಯಕ ಕ್ರಮ ದೆತೊನೊಡು. ಮಹಾರಾಷ್ಟ್ರದ ಮಾತಾ ವ್ಯಾಪಾರಸ್ಥರು ಈ ಪ್ರಯತ್ನೊಗು ಬೆರಿ ಸಹಾಯ ಕೊರೊಡು." ೨೦ನೇ ಶತಮಾನದ ಸುರುತ ದಶಕೊಡು ನಡತಿನ ಸ್ವದೇಶಿ ಚಳವಳಿ ಭಾರತದ ಜನಕುಲೆನ ಉಸ್ತುವಾರಿಡು ಮಹಾರಾಷ್ಟ್ರೊಡು ಮಸ್ತ್ ವಾಣಿಜ್ಯ ಬ್ಯಾಂಕುಲೆನ ಸ್ಥಾಪನೆಗ್ ಪ್ರೇರಣೆ ಕೊರ್ತುಂಡು. ಇಂದೆತ ಕೆಲಸೊಗಾದ್ MCC ಒಂಜಿ ಉಪ-ಸಮಿತಿನ್ ಉಂಡು ಮಲ್ತ್ಂಡ್. ಅಯಿಟು ಶ್ರೀ ವಿ.ಜಿ. ಕಾಳೆ, ಡಿ.ಕೆ. ಸಾಠೆ, ಎನ್.ಜಿ. ಪವಾರ್, ಜಿ.ಡಿ. ಆಪ್ಟೆ ಬೊಕ್ಕ ಎ.ಆರ್. ಭಟ್ ಇತ್ತೆರ್. ಈ ಸಮಿತಿದ ಸುರುತ ಕೂಟ ೧೯ ಮೇ ೧೯೩೫ ದಾನಿ ನಡತಿನ ಬೊಕ್ಕೊಂಜಿ ಮಲ್ಲ ಕೂಟೊಡು ನಿರ್ಧಾರೊಲೆನ್ ದೆತೊಂಡೆರ್: ಪ್ರಸ್ತಾಪಿತ ಬ್ಯಾಂಕ್‌ದ ಬೋರ್ಡ್‌ಡ್ ಗರಿಷ್ಠ ೧೧ ನಿರ್ದೇಶಕರು ಇಪ್ಪೊಡು, ಒಂಜಿ ಶೇರ್‌ದ ಬಿಲೆ ೫೦ ರೂಪಾಯಿ ಆವೊಡು, ಬೊಕ್ಕ ನಿರ್ದೇಶಕ ಆಯೆರೆ ಕನಿಷ್ಠ ೫೦೦ ಶೇರುಲು ಇಪ್ಪೊಡು ಪಂದ್ ತೀರ್ಮಾನ ಮಲ್ತೇರ್. ಅಂಚ ತೀರ್ಮಾನ ಆಯಿಬೊಕ್ಕ ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ೧೬ ಸೆಪ್ಟೆಂಬರ್ ೧೯೩೫ ದಾನಿ ಬೊಂಬಾಯಿ ಪ್ರೆಸಿಡೆನ್ಸಿದ ಪೂನಾಡ್ (ಇತ್ತೆದ ಪುಣೆ, ಮಹಾರಾಷ್ಟ್ರ) ಸ್ಥಾಪನೆ ಆಂಡ್. ಭಾರತೊಡು ಸಹಕಾರಿ ಚಳವಳಿ ನಡತೊಂದು ಇತ್ತ್‌ನ ಆ ಸಮಯೊಡು, ಎಲ್ಯ ವ್ಯಾಪಾರಸ್ಥರೆಗ್ ಬೊಕ್ಕ ಉದ್ಯಮಿಲೆಗ್ ಬೆರಿ ಸಹಾಯ ಕೊರಿಯೆರೆ ಬೋಡಾದ್ 'ಮಹರತ್ತಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್' ಉಸ್ತುವಾರಿಡು ಈ ಬ್ಯಾಂಕ್ ಸುರು ಆಂಡ್. ಅಯಿಡ್ದ್ ಬೊಕ್ಕ, ೧೯೪೪ನೇ ಇಸವಿಡ್ ಈ ಬ್ಯಾಂಕ್ ಒಂಜಿ 'ಷೆಡ್ಯೂಲ್ಡ್ ಬ್ಯಾಂಕ್' ಆದ್ ನೋಂದಣಿ ಆಂಡ್. ೧೯೫೫ನೇ ಇಸವಿಡ್ 'ಬ್ಯಾಂಕಿಂಗ್ ಕಂಪೆನೀಸ್ ಆಕ್ಟ್' ಅಡಿಟ್ ಅಧಿಕೃತ ಬ್ಯಾಂಕಿಂಗ್ ಲೈಸೆನ್ಸ್ ದೆತೊಂಡು. ಈ ಬ್ಯಾಂಕ್, ೧೯೫೮ನೇ ಇಸವಿಡ್ ಬಾಂಬೆ ಸ್ಟಾಕ್ ಎಕ್ಸ್ಚೇಂಜ್‌ಡ್ ದಾಖಲಾಂಡ್. ==ಸ್ವಾದೀನೊ== ೧೯೬೧ನೇ ಇಸವಿಡ್ ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ರಾಜ್ಯದ ಮೂಜಿ ಎಲ್ಯ ಬ್ಯಾಂಕುಲೆನ್- ಮಾಲ್ವಣ್‌ಡು ಇತ್ತ್‌ನ 'ಬ್ಯಾಂಕ್ ಆಫ್ ಕೊಂಕಣ್', ನಾಗಪುರಡು ಇತ್ತ್‌ನ 'ಬ್ಯಾಂಕ್ ಆಫ್ ನಾಗಪುರ' ಬೊಕ್ಕ ಪೂನಾಡ್ (ಇತ್ತೆದ ಪುಣೆ) ಇತ್ತ್‌ನ 'ಭಾರತ್ ಇಂಡಸ್ಟ್ರಿಯಲ್ ಬ್ಯಾಂಕ್- ಸ್ವಾಧೀನ ಮಲ್ತೊಂಡ್. == ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್ ಸುರು ಮಲ್ತಿನಿ== ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ, ಕೇಂದ್ರ ಬೊಕ್ಕ ರಾಜ್ಯ ಸರ್ಕಾರೊಲೆನ ಸೇರಿಕೆಡ್ ಮೂಜಿ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕುಲೆನ್ ಸುರು ಮಲ್ತ್ಂಡ್. ಅವು ಒವ್ವು ಪಂಡ, ೧೯೭೬ಡ್ ನಾಂದೇಡ್‌ಡ್ ಸುರು ಆಯಿನ 'ಮರಾಠವಾಡ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್', ೧೯೮೧ಡ್ ಔರಂಗಾಬಾದ್‌ಡ್ ಸುರು ಆಯಿನ 'ಔರಂಗಾಬಾದ್-ಜಾಲ್ನಾ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್' ಬೊಕ್ಕ ೧೯೮೬ಡ್ ಥಾಣೆಡ್ ಸುರು ಆಯಿನ 'ಥಾಣೆ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್'. ೨೦೦೯ನೇ ಇಸವಿಡ್ ಈ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕುಲೆನ್ ಒಟ್ಟು ಸೇರಾದ್ 'ಮಹಾರಾಷ್ಟ್ರ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್' ಪನ್ಪಿನ ಪೊಸ ಬ್ಯಾಂಕ್‌ನ್ ಮಲ್ತೇರ್. ಅಯಿಡ್ದ್ ಬೊಕ್ಕ, ಭಾರತ ಸರ್ಕಾರದ "ಒಂಜಿ ರಾಜ್ಯ, ಒಂಜಿ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್" (One State, One RRB) ನಿಯಮದ ಪ್ರಕಾರ, ಮೇ ೧, ೨೦೨೫ ದಾನಿ ಈ ಮಹಾರಾಷ್ಟ್ರ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್‌ನ್ 'ವಿದರ್ಭ ಕೊಂಕಣ್ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್'ದ ಒಟ್ಟುಗು ಸೇರಾದ್, ಇಡೀ ರಾಜ್ಯಗೇ ಒಂಜೇ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್ ಆಪುಲೆಕ್ಕ ವಿಲೀನ ಮಲ್ತೇರ್. 11cdeo1jonaqd7mrhnkw6eoqx0xwyq2 362639 362638 2026-07-10T07:29:17Z Mahaveer Indra 1023 362639 wikitext text/x-wiki ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ಭಾರತದ ಒಂಜಿ ಮಲ್ಲ ಸಾರ್ವಜನಿಕ ವಲಯದ ಬ್ಯಾಂಕ್ ಆದುಂಡು. ಇಂದೆತ ಮುಖ್ಯ ಕಛೇರಿ ಪುಣೆಡ್ ಉಂಡು. ಈ ಬ್ಯಾಂಕ್ ೧೯೩೫ನೇ ಇಸವಿಡ್ ಸ್ಥಾಪನೆ ಆಂಡ್ ಬೊಕ್ಕ ೧೯೬೯ನೇ ಇಸವಿಡ್ ಭಾರತ ಸರ್ಕಾರ ಇಂದೆನ್ ರಾಷ್ಟ್ರೀಕರಣ ಮಲ್ತ್ಂಡ್. ಜೂನ್ ೨೦೨೫ದ ಲೆಕ್ಕಾಚಾರದ ಪ್ರಕಾರ, ಈ ಬ್ಯಾಂಕ್‌ಗ್ ದೇಸೊರ್ಮೆ ಸುಮಾರ್ ೨,೬೪೧ ಶಾಖೆಲು ಉಲ್ಲ.<ref>{{cite web |title=Financial Results For Quarter Ended, 30th June 2025 |url=https://bankofmaharashtra.in/writereaddata/documentlibrary/0f76e3c6-256b-4306-bd61-3eae38ca1527.pdf |publisher=Bank of Maharashtra |access-date=15 August 2025}}</ref> ಮಾರುಕಟ್ಟೆ ಬಂಡವಾಳದ ಪ್ರಕಾರ, ಸಾರ್ವಜನಿಕ ವಲಯದ ಬ್ಯಾಂಕುಲೆಡ್ ಈ ಬ್ಯಾಂಕ್ ೮ನೇ ಸಾನೊಡು ಉಂಡು. ==ಇತಿಹಾಸೊ== ೧೯೩೪ನೇ ಇಸವಿಡ್ ಪುಣೆಡ್ 'ಮರಾಠಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್' (MCC) ಸುರು ಆಂಡ್. ಅಯಿತ ಸ್ಥಾಪಕ ಕಾರ್ಯದರ್ಶಿ ಆಯಿನ ಶ್ರೀ ಎ.ಆರ್. ಭಟ್ ಬಾರೀ ದೂರದೃಷ್ಟಿ ಇತ್ತ್‌ನ ಮಾಮಲ್ಲ ನಾಯಕೆ ಆದಿತ್ತ್ಂಡ್. ಮರಾಠಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್ ಸುರು ಆಯಿನ ಕೆಲವು ತಿಂಗೊಳುಡು ಲೋಕಮಾನ್ಯ ತಿಲಕೆರೆನ ನೆನಪುಡು ಬುಡುಗಡೆ ಆಯಿನ 'ಕೇಸರಿ' ಪತ್ರಿಕೆದ ವಿಶೇಷ ಸಂಚಿಕೆಡ್ ಆ ಪ್ರದೇಶೊಡು ಇಪ್ಪುನ ಬ್ಯಾಂಕಿಂಗ್ ಸೇವೆಲೆನ ಬಗ್ಗೆ ಒಂಜಿ ವರದಿನ್ ಪ್ರಕಟ ಮಲ್ಪೆರೆ ಶ್ರೀ ಭಟ್ ಸುರು ಮಲ್ತೇರ್. ಅರೆನ ದೋಸ್ತಿ ಬೊಕ್ಕ ಸಹಕಾರ ಚಳವಳಿದ ಮಲ್ಲ ಮೇಧಾವಿ ಆಯಿನ ಶ್ರೀ ವಿ. ಪಿ. ವರ್ದೆ ಅರೆನ ಕೈಡ್ದ್ "ಮಹಾರಾಷ್ಟ್ರಗ್ ಒಂಜಿ ಪ್ರತ್ಯೇಕ ಬ್ಯಾಂಕ್ ಬೋಡು" ಪನ್ಪಿನ ವಿಷಯದ ಬಗ್ಗೆ ಒಂಜಿ ಬರವು ಬರೆಪಾಯೆರ್. ಈ ಲೇಖನಗ್ ಸುರುಟು ಜನಡ್ದ್ ಅಂಚಿನ ಮಲ್ಲ ಪ್ರತಿಕ್ರಿಯೆ ಬತ್ತಿಜಿಂಡಲಾ, ಶ್ರೀ ಎ.ಆರ್. ಭಟ್ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕಾ ರಂಗದ ಮಲ್ಲ ಜನಕುಲೆನ ಒಟ್ಟುಗು ಈ ವಿಷಯದ ಬಗ್ಗೆ ಪಾತೆರೊಂದು ಇತ್ತ್ಂಡ್. ಮಹರತ್ತಾ ಚೇಂಬರ್ ಬೊಕ್ಕ ಅಯಿತ ನಿರ್ದೇಶಕರು ಈ ವಿಷಯೊನು ಗಂಭೀರವಾದ್ ದೆತೊಂದು, ಫೆಬ್ರವರಿ ೧೯೩೫ಡ್ ಪುಣೆಡ್ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕಾ ಸಮ್ಮೇಳನಡ್ ಈ ಇಸಯ ಚರ್ಚೆಗ್ ಬತ್ತ್ಂಡ್. "ಮಹಾರಾಷ್ಟ್ರದ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕೆಲೆಗ್ ದುಡ್ಡುದ ಸೌಲಭ್ಯ ಕೊರಿಯೆರೆ ಒಂಜಿ ಜಾಯಿಂಟ್ ಸ್ಟಾಕ್ ಕಮರ್ಷಿಯಲ್ ಬ್ಯಾಂಕ್ (ವಾಣಿಜ್ಯ ಬ್ಯಾಂಕ್) ಸ್ಥಾಪನೆ ಮಲ್ಪುನು ಬಾರೀ ಅಗತ್ಯ ಉಂಡು. ಅಂಚಾದ್ ಮಹರತ್ತಾ ಚೇಂಬರ್ ಇಂದೆಕ್ ಬೋಡಾಯಿನ ಇಚಾರ ಮಲ್ತ್‌ದ್, ಬ್ಯಾಂಕ್ ಸುರು ಮಲ್ಪೆರೆ ಆವಶ್ಯಕ ಕ್ರಮ ದೆತೊನೊಡು. ಮಹಾರಾಷ್ಟ್ರದ ಮಾತಾ ವ್ಯಾಪಾರಸ್ಥರು ಈ ಪ್ರಯತ್ನೊಗು ಬೆರಿ ಸಹಾಯ ಕೊರೊಡು." ೨೦ನೇ ಶತಮಾನದ ಸುರುತ ದಶಕೊಡು ನಡತಿನ ಸ್ವದೇಶಿ ಚಳವಳಿ ಭಾರತದ ಜನಕುಲೆನ ಉಸ್ತುವಾರಿಡು ಮಹಾರಾಷ್ಟ್ರೊಡು ಮಸ್ತ್ ವಾಣಿಜ್ಯ ಬ್ಯಾಂಕುಲೆನ ಸ್ಥಾಪನೆಗ್ ಪ್ರೇರಣೆ ಕೊರ್ತುಂಡು. ಇಂದೆತ ಕೆಲಸೊಗಾದ್ MCC ಒಂಜಿ ಉಪ-ಸಮಿತಿನ್ ಉಂಡು ಮಲ್ತ್ಂಡ್. ಅಯಿಟು ಶ್ರೀ ವಿ.ಜಿ. ಕಾಳೆ, ಡಿ.ಕೆ. ಸಾಠೆ, ಎನ್.ಜಿ. ಪವಾರ್, ಜಿ.ಡಿ. ಆಪ್ಟೆ ಬೊಕ್ಕ ಎ.ಆರ್. ಭಟ್ ಇತ್ತೆರ್. ಈ ಸಮಿತಿದ ಸುರುತ ಕೂಟ ೧೯ ಮೇ ೧೯೩೫ ದಾನಿ ನಡತಿನ ಬೊಕ್ಕೊಂಜಿ ಮಲ್ಲ ಕೂಟೊಡು ನಿರ್ಧಾರೊಲೆನ್ ದೆತೊಂಡೆರ್: ಪ್ರಸ್ತಾಪಿತ ಬ್ಯಾಂಕ್‌ದ ಬೋರ್ಡ್‌ಡ್ ಗರಿಷ್ಠ ೧೧ ನಿರ್ದೇಶಕರು ಇಪ್ಪೊಡು, ಒಂಜಿ ಶೇರ್‌ದ ಬಿಲೆ ೫೦ ರೂಪಾಯಿ ಆವೊಡು, ಬೊಕ್ಕ ನಿರ್ದೇಶಕ ಆಯೆರೆ ಕನಿಷ್ಠ ೫೦೦ ಶೇರುಲು ಇಪ್ಪೊಡು ಪಂದ್ ತೀರ್ಮಾನ ಮಲ್ತೇರ್.<ref>{{cite web |title=bankofmaharashtra.bank.in |url=https://bankofmaharashtra.bank.in/the-begining |website=bankofmaharashtra.bank.in |publisher=BOM |access-date=10 July 2026}}</ref> ಅಂಚ ತೀರ್ಮಾನ ಆಯಿಬೊಕ್ಕ ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ೧೬ ಸೆಪ್ಟೆಂಬರ್ ೧೯೩೫ ದಾನಿ ಬೊಂಬಾಯಿ ಪ್ರೆಸಿಡೆನ್ಸಿದ ಪೂನಾಡ್ (ಇತ್ತೆದ ಪುಣೆ, ಮಹಾರಾಷ್ಟ್ರ) ಸ್ಥಾಪನೆ ಆಂಡ್. ಭಾರತೊಡು ಸಹಕಾರಿ ಚಳವಳಿ ನಡತೊಂದು ಇತ್ತ್‌ನ ಆ ಸಮಯೊಡು, ಎಲ್ಯ ವ್ಯಾಪಾರಸ್ಥರೆಗ್ ಬೊಕ್ಕ ಉದ್ಯಮಿಲೆಗ್ ಬೆರಿ ಸಹಾಯ ಕೊರಿಯೆರೆ ಬೋಡಾದ್ 'ಮಹರತ್ತಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್' ಉಸ್ತುವಾರಿಡು ಈ ಬ್ಯಾಂಕ್ ಸುರು ಆಂಡ್.<ref name=":0"/><ref>{{cite web |title=Bank of Maharashtra: Rating reaffirmed; withdrawn for Rs. 600-crore Basel III tier II bonds |url=https://www.icra.in/Rationale/ShowRationaleReport?Id=136598 |publisher=ICRA |access-date=15 August 2025}}</ref> ಅಯಿಡ್ದ್ ಬೊಕ್ಕ, ೧೯೪೪ನೇ ಇಸವಿಡ್ ಈ ಬ್ಯಾಂಕ್ ಒಂಜಿ 'ಷೆಡ್ಯೂಲ್ಡ್ ಬ್ಯಾಂಕ್' ಆದ್ ನೋಂದಣಿ ಆಂಡ್. ೧೯೫೫ನೇ ಇಸವಿಡ್ 'ಬ್ಯಾಂಕಿಂಗ್ ಕಂಪೆನೀಸ್ ಆಕ್ಟ್' ಅಡಿಟ್ ಅಧಿಕೃತ ಬ್ಯಾಂಕಿಂಗ್ ಲೈಸೆನ್ಸ್ ದೆತೊಂಡು. ಈ ಬ್ಯಾಂಕ್, ೧೯೫೮ನೇ ಇಸವಿಡ್ ಬಾಂಬೆ ಸ್ಟಾಕ್ ಎಕ್ಸ್ಚೇಂಜ್‌ಡ್ ದಾಖಲಾಂಡ್.<ref name=":0">{{cite web |title=Bank of Maharashtra - History and Growth |url=http://ir.unishivaji.ac.in:8080/jspui/bitstream/123456789/545/10/10_Chapter%204.pdf |publisher=Shivaji University |access-date=15 August 2025}}</ref> ==ಸ್ವಾದೀನೊ== ೧೯೬೧ನೇ ಇಸವಿಡ್ ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ರಾಜ್ಯದ ಮೂಜಿ ಎಲ್ಯ ಬ್ಯಾಂಕುಲೆನ್- ಮಾಲ್ವಣ್‌ಡು ಇತ್ತ್‌ನ 'ಬ್ಯಾಂಕ್ ಆಫ್ ಕೊಂಕಣ್', ನಾಗಪುರಡು ಇತ್ತ್‌ನ 'ಬ್ಯಾಂಕ್ ಆಫ್ ನಾಗಪುರ' ಬೊಕ್ಕ ಪೂನಾಡ್ (ಇತ್ತೆದ ಪುಣೆ) ಇತ್ತ್‌ನ 'ಭಾರತ್ ಇಂಡಸ್ಟ್ರಿಯಲ್ ಬ್ಯಾಂಕ್- ಸ್ವಾಧೀನ ಮಲ್ತೊಂಡ್.<ref>{{cite web |title=Banks which have closed down or amalgamated or placed under liquidation during the period 1st March to 4th September 1961 |url=https://www.rsdebate.nic.in/bitstream/123456789/556125/2/IQ_35_06091961_U447_p3402_p3404.pdf |publisher=Rajya Sabha Debates |access-date=15 August 2025}}</ref> == ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್ ಸುರು ಮಲ್ತಿನಿ== ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ, ಕೇಂದ್ರ ಬೊಕ್ಕ ರಾಜ್ಯ ಸರ್ಕಾರೊಲೆನ ಸೇರಿಕೆಡ್ ಮೂಜಿ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕುಲೆನ್ ಸುರು ಮಲ್ತ್ಂಡ್.<ref>{{cite web |last1=Ray |first1=Partha |last2=Basu |first2=Sankarshan |title=Bank of Maharashtra: An Indian Small Public Sector Bank Unshackling itself from the baggage of the Past |url=https://www.nibmindia.org/documents/162/NIBM_Case_02_UsQmAix.pdf |publisher=National Institute of Bank Management |access-date=15 August 2025 |date=November 2022}}</ref> ಅವು ಒವ್ವು ಪಂಡ, ೧೯೭೬ಡ್ ನಾಂದೇಡ್‌ಡ್ ಸುರು ಆಯಿನ 'ಮರಾಠವಾಡ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್', ೧೯೮೧ಡ್ ಔರಂಗಾಬಾದ್‌ಡ್ ಸುರು ಆಯಿನ 'ಔರಂಗಾಬಾದ್-ಜಾಲ್ನಾ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್' ಬೊಕ್ಕ ೧೯೮೬ಡ್ ಥಾಣೆಡ್ ಸುರು ಆಯಿನ 'ಥಾಣೆ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್'. ೨೦೦೯ನೇ ಇಸವಿಡ್ ಈ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕುಲೆನ್ ಒಟ್ಟು ಸೇರಾದ್ 'ಮಹಾರಾಷ್ಟ್ರ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್' ಪನ್ಪಿನ ಪೊಸ ಬ್ಯಾಂಕ್‌ನ್ ಮಲ್ತೇರ್.<ref>{{cite news |title=Bank of Maharashtra merges two RRBs |url=https://economictimes.indiatimes.com/bank-of-maharashtra-merges-two-rrbs/articleshow/2914903.cms |access-date=15 August 2025 |work=The Economic Times |date=31 March 2008}}</ref> ಅಯಿಡ್ದ್ ಬೊಕ್ಕ, ಭಾರತ ಸರ್ಕಾರದ "ಒಂಜಿ ರಾಜ್ಯ, ಒಂಜಿ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್" (One State, One RRB) ನಿಯಮದ ಪ್ರಕಾರ, ಮೇ ೧, ೨೦೨೫ ದಾನಿ ಈ ಮಹಾರಾಷ್ಟ್ರ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್‌ನ್ 'ವಿದರ್ಭ ಕೊಂಕಣ್ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್'ದ ಒಟ್ಟುಗು ಸೇರಾದ್, ಇಡೀ ರಾಜ್ಯಗೇ ಒಂಜೇ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್ ಆಪುಲೆಕ್ಕ ವಿಲೀನ ಮಲ್ತೇರ್.<ref>{{cite web | author1=Livemint | title='One state-one RRB' to be effective from May 1 after govt approves consolidation of 15 regional rural banks &#124; Mint | work=mint | date=8 April 2025 | url=https://www.livemint.com/economy/one-state-one-rrb-to-be-effective-from-may-1-after-govt-approves-consolidation-of-15-regional-rural-banks-11744118507326.html }}</ref> ==ಉಲ್ಲೇಕ== {{reflist}} 94g6imc04oei05yfm5pmal1t2g2vx3o 362640 362639 2026-07-10T07:30:18Z Mahaveer Indra 1023 added [[Category:ಬ್ಯಾಂಕುಲು]] using [[Help:Gadget-HotCat|HotCat]] 362640 wikitext text/x-wiki ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ಭಾರತದ ಒಂಜಿ ಮಲ್ಲ ಸಾರ್ವಜನಿಕ ವಲಯದ ಬ್ಯಾಂಕ್ ಆದುಂಡು. ಇಂದೆತ ಮುಖ್ಯ ಕಛೇರಿ ಪುಣೆಡ್ ಉಂಡು. ಈ ಬ್ಯಾಂಕ್ ೧೯೩೫ನೇ ಇಸವಿಡ್ ಸ್ಥಾಪನೆ ಆಂಡ್ ಬೊಕ್ಕ ೧೯೬೯ನೇ ಇಸವಿಡ್ ಭಾರತ ಸರ್ಕಾರ ಇಂದೆನ್ ರಾಷ್ಟ್ರೀಕರಣ ಮಲ್ತ್ಂಡ್. ಜೂನ್ ೨೦೨೫ದ ಲೆಕ್ಕಾಚಾರದ ಪ್ರಕಾರ, ಈ ಬ್ಯಾಂಕ್‌ಗ್ ದೇಸೊರ್ಮೆ ಸುಮಾರ್ ೨,೬೪೧ ಶಾಖೆಲು ಉಲ್ಲ.<ref>{{cite web |title=Financial Results For Quarter Ended, 30th June 2025 |url=https://bankofmaharashtra.in/writereaddata/documentlibrary/0f76e3c6-256b-4306-bd61-3eae38ca1527.pdf |publisher=Bank of Maharashtra |access-date=15 August 2025}}</ref> ಮಾರುಕಟ್ಟೆ ಬಂಡವಾಳದ ಪ್ರಕಾರ, ಸಾರ್ವಜನಿಕ ವಲಯದ ಬ್ಯಾಂಕುಲೆಡ್ ಈ ಬ್ಯಾಂಕ್ ೮ನೇ ಸಾನೊಡು ಉಂಡು. ==ಇತಿಹಾಸೊ== ೧೯೩೪ನೇ ಇಸವಿಡ್ ಪುಣೆಡ್ 'ಮರಾಠಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್' (MCC) ಸುರು ಆಂಡ್. ಅಯಿತ ಸ್ಥಾಪಕ ಕಾರ್ಯದರ್ಶಿ ಆಯಿನ ಶ್ರೀ ಎ.ಆರ್. ಭಟ್ ಬಾರೀ ದೂರದೃಷ್ಟಿ ಇತ್ತ್‌ನ ಮಾಮಲ್ಲ ನಾಯಕೆ ಆದಿತ್ತ್ಂಡ್. ಮರಾಠಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್ ಸುರು ಆಯಿನ ಕೆಲವು ತಿಂಗೊಳುಡು ಲೋಕಮಾನ್ಯ ತಿಲಕೆರೆನ ನೆನಪುಡು ಬುಡುಗಡೆ ಆಯಿನ 'ಕೇಸರಿ' ಪತ್ರಿಕೆದ ವಿಶೇಷ ಸಂಚಿಕೆಡ್ ಆ ಪ್ರದೇಶೊಡು ಇಪ್ಪುನ ಬ್ಯಾಂಕಿಂಗ್ ಸೇವೆಲೆನ ಬಗ್ಗೆ ಒಂಜಿ ವರದಿನ್ ಪ್ರಕಟ ಮಲ್ಪೆರೆ ಶ್ರೀ ಭಟ್ ಸುರು ಮಲ್ತೇರ್. ಅರೆನ ದೋಸ್ತಿ ಬೊಕ್ಕ ಸಹಕಾರ ಚಳವಳಿದ ಮಲ್ಲ ಮೇಧಾವಿ ಆಯಿನ ಶ್ರೀ ವಿ. ಪಿ. ವರ್ದೆ ಅರೆನ ಕೈಡ್ದ್ "ಮಹಾರಾಷ್ಟ್ರಗ್ ಒಂಜಿ ಪ್ರತ್ಯೇಕ ಬ್ಯಾಂಕ್ ಬೋಡು" ಪನ್ಪಿನ ವಿಷಯದ ಬಗ್ಗೆ ಒಂಜಿ ಬರವು ಬರೆಪಾಯೆರ್. ಈ ಲೇಖನಗ್ ಸುರುಟು ಜನಡ್ದ್ ಅಂಚಿನ ಮಲ್ಲ ಪ್ರತಿಕ್ರಿಯೆ ಬತ್ತಿಜಿಂಡಲಾ, ಶ್ರೀ ಎ.ಆರ್. ಭಟ್ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕಾ ರಂಗದ ಮಲ್ಲ ಜನಕುಲೆನ ಒಟ್ಟುಗು ಈ ವಿಷಯದ ಬಗ್ಗೆ ಪಾತೆರೊಂದು ಇತ್ತ್ಂಡ್. ಮಹರತ್ತಾ ಚೇಂಬರ್ ಬೊಕ್ಕ ಅಯಿತ ನಿರ್ದೇಶಕರು ಈ ವಿಷಯೊನು ಗಂಭೀರವಾದ್ ದೆತೊಂದು, ಫೆಬ್ರವರಿ ೧೯೩೫ಡ್ ಪುಣೆಡ್ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕಾ ಸಮ್ಮೇಳನಡ್ ಈ ಇಸಯ ಚರ್ಚೆಗ್ ಬತ್ತ್ಂಡ್. "ಮಹಾರಾಷ್ಟ್ರದ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕೆಲೆಗ್ ದುಡ್ಡುದ ಸೌಲಭ್ಯ ಕೊರಿಯೆರೆ ಒಂಜಿ ಜಾಯಿಂಟ್ ಸ್ಟಾಕ್ ಕಮರ್ಷಿಯಲ್ ಬ್ಯಾಂಕ್ (ವಾಣಿಜ್ಯ ಬ್ಯಾಂಕ್) ಸ್ಥಾಪನೆ ಮಲ್ಪುನು ಬಾರೀ ಅಗತ್ಯ ಉಂಡು. ಅಂಚಾದ್ ಮಹರತ್ತಾ ಚೇಂಬರ್ ಇಂದೆಕ್ ಬೋಡಾಯಿನ ಇಚಾರ ಮಲ್ತ್‌ದ್, ಬ್ಯಾಂಕ್ ಸುರು ಮಲ್ಪೆರೆ ಆವಶ್ಯಕ ಕ್ರಮ ದೆತೊನೊಡು. ಮಹಾರಾಷ್ಟ್ರದ ಮಾತಾ ವ್ಯಾಪಾರಸ್ಥರು ಈ ಪ್ರಯತ್ನೊಗು ಬೆರಿ ಸಹಾಯ ಕೊರೊಡು." ೨೦ನೇ ಶತಮಾನದ ಸುರುತ ದಶಕೊಡು ನಡತಿನ ಸ್ವದೇಶಿ ಚಳವಳಿ ಭಾರತದ ಜನಕುಲೆನ ಉಸ್ತುವಾರಿಡು ಮಹಾರಾಷ್ಟ್ರೊಡು ಮಸ್ತ್ ವಾಣಿಜ್ಯ ಬ್ಯಾಂಕುಲೆನ ಸ್ಥಾಪನೆಗ್ ಪ್ರೇರಣೆ ಕೊರ್ತುಂಡು. ಇಂದೆತ ಕೆಲಸೊಗಾದ್ MCC ಒಂಜಿ ಉಪ-ಸಮಿತಿನ್ ಉಂಡು ಮಲ್ತ್ಂಡ್. ಅಯಿಟು ಶ್ರೀ ವಿ.ಜಿ. ಕಾಳೆ, ಡಿ.ಕೆ. ಸಾಠೆ, ಎನ್.ಜಿ. ಪವಾರ್, ಜಿ.ಡಿ. ಆಪ್ಟೆ ಬೊಕ್ಕ ಎ.ಆರ್. ಭಟ್ ಇತ್ತೆರ್. ಈ ಸಮಿತಿದ ಸುರುತ ಕೂಟ ೧೯ ಮೇ ೧೯೩೫ ದಾನಿ ನಡತಿನ ಬೊಕ್ಕೊಂಜಿ ಮಲ್ಲ ಕೂಟೊಡು ನಿರ್ಧಾರೊಲೆನ್ ದೆತೊಂಡೆರ್: ಪ್ರಸ್ತಾಪಿತ ಬ್ಯಾಂಕ್‌ದ ಬೋರ್ಡ್‌ಡ್ ಗರಿಷ್ಠ ೧೧ ನಿರ್ದೇಶಕರು ಇಪ್ಪೊಡು, ಒಂಜಿ ಶೇರ್‌ದ ಬಿಲೆ ೫೦ ರೂಪಾಯಿ ಆವೊಡು, ಬೊಕ್ಕ ನಿರ್ದೇಶಕ ಆಯೆರೆ ಕನಿಷ್ಠ ೫೦೦ ಶೇರುಲು ಇಪ್ಪೊಡು ಪಂದ್ ತೀರ್ಮಾನ ಮಲ್ತೇರ್.<ref>{{cite web |title=bankofmaharashtra.bank.in |url=https://bankofmaharashtra.bank.in/the-begining |website=bankofmaharashtra.bank.in |publisher=BOM |access-date=10 July 2026}}</ref> ಅಂಚ ತೀರ್ಮಾನ ಆಯಿಬೊಕ್ಕ ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ೧೬ ಸೆಪ್ಟೆಂಬರ್ ೧೯೩೫ ದಾನಿ ಬೊಂಬಾಯಿ ಪ್ರೆಸಿಡೆನ್ಸಿದ ಪೂನಾಡ್ (ಇತ್ತೆದ ಪುಣೆ, ಮಹಾರಾಷ್ಟ್ರ) ಸ್ಥಾಪನೆ ಆಂಡ್. ಭಾರತೊಡು ಸಹಕಾರಿ ಚಳವಳಿ ನಡತೊಂದು ಇತ್ತ್‌ನ ಆ ಸಮಯೊಡು, ಎಲ್ಯ ವ್ಯಾಪಾರಸ್ಥರೆಗ್ ಬೊಕ್ಕ ಉದ್ಯಮಿಲೆಗ್ ಬೆರಿ ಸಹಾಯ ಕೊರಿಯೆರೆ ಬೋಡಾದ್ 'ಮಹರತ್ತಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್' ಉಸ್ತುವಾರಿಡು ಈ ಬ್ಯಾಂಕ್ ಸುರು ಆಂಡ್.<ref name=":0"/><ref>{{cite web |title=Bank of Maharashtra: Rating reaffirmed; withdrawn for Rs. 600-crore Basel III tier II bonds |url=https://www.icra.in/Rationale/ShowRationaleReport?Id=136598 |publisher=ICRA |access-date=15 August 2025}}</ref> ಅಯಿಡ್ದ್ ಬೊಕ್ಕ, ೧೯೪೪ನೇ ಇಸವಿಡ್ ಈ ಬ್ಯಾಂಕ್ ಒಂಜಿ 'ಷೆಡ್ಯೂಲ್ಡ್ ಬ್ಯಾಂಕ್' ಆದ್ ನೋಂದಣಿ ಆಂಡ್. ೧೯೫೫ನೇ ಇಸವಿಡ್ 'ಬ್ಯಾಂಕಿಂಗ್ ಕಂಪೆನೀಸ್ ಆಕ್ಟ್' ಅಡಿಟ್ ಅಧಿಕೃತ ಬ್ಯಾಂಕಿಂಗ್ ಲೈಸೆನ್ಸ್ ದೆತೊಂಡು. ಈ ಬ್ಯಾಂಕ್, ೧೯೫೮ನೇ ಇಸವಿಡ್ ಬಾಂಬೆ ಸ್ಟಾಕ್ ಎಕ್ಸ್ಚೇಂಜ್‌ಡ್ ದಾಖಲಾಂಡ್.<ref name=":0">{{cite web |title=Bank of Maharashtra - History and Growth |url=http://ir.unishivaji.ac.in:8080/jspui/bitstream/123456789/545/10/10_Chapter%204.pdf |publisher=Shivaji University |access-date=15 August 2025}}</ref> ==ಸ್ವಾದೀನೊ== ೧೯೬೧ನೇ ಇಸವಿಡ್ ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ರಾಜ್ಯದ ಮೂಜಿ ಎಲ್ಯ ಬ್ಯಾಂಕುಲೆನ್- ಮಾಲ್ವಣ್‌ಡು ಇತ್ತ್‌ನ 'ಬ್ಯಾಂಕ್ ಆಫ್ ಕೊಂಕಣ್', ನಾಗಪುರಡು ಇತ್ತ್‌ನ 'ಬ್ಯಾಂಕ್ ಆಫ್ ನಾಗಪುರ' ಬೊಕ್ಕ ಪೂನಾಡ್ (ಇತ್ತೆದ ಪುಣೆ) ಇತ್ತ್‌ನ 'ಭಾರತ್ ಇಂಡಸ್ಟ್ರಿಯಲ್ ಬ್ಯಾಂಕ್- ಸ್ವಾಧೀನ ಮಲ್ತೊಂಡ್.<ref>{{cite web |title=Banks which have closed down or amalgamated or placed under liquidation during the period 1st March to 4th September 1961 |url=https://www.rsdebate.nic.in/bitstream/123456789/556125/2/IQ_35_06091961_U447_p3402_p3404.pdf |publisher=Rajya Sabha Debates |access-date=15 August 2025}}</ref> == ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್ ಸುರು ಮಲ್ತಿನಿ== ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ, ಕೇಂದ್ರ ಬೊಕ್ಕ ರಾಜ್ಯ ಸರ್ಕಾರೊಲೆನ ಸೇರಿಕೆಡ್ ಮೂಜಿ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕುಲೆನ್ ಸುರು ಮಲ್ತ್ಂಡ್.<ref>{{cite web |last1=Ray |first1=Partha |last2=Basu |first2=Sankarshan |title=Bank of Maharashtra: An Indian Small Public Sector Bank Unshackling itself from the baggage of the Past |url=https://www.nibmindia.org/documents/162/NIBM_Case_02_UsQmAix.pdf |publisher=National Institute of Bank Management |access-date=15 August 2025 |date=November 2022}}</ref> ಅವು ಒವ್ವು ಪಂಡ, ೧೯೭೬ಡ್ ನಾಂದೇಡ್‌ಡ್ ಸುರು ಆಯಿನ 'ಮರಾಠವಾಡ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್', ೧೯೮೧ಡ್ ಔರಂಗಾಬಾದ್‌ಡ್ ಸುರು ಆಯಿನ 'ಔರಂಗಾಬಾದ್-ಜಾಲ್ನಾ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್' ಬೊಕ್ಕ ೧೯೮೬ಡ್ ಥಾಣೆಡ್ ಸುರು ಆಯಿನ 'ಥಾಣೆ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್'. ೨೦೦೯ನೇ ಇಸವಿಡ್ ಈ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕುಲೆನ್ ಒಟ್ಟು ಸೇರಾದ್ 'ಮಹಾರಾಷ್ಟ್ರ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್' ಪನ್ಪಿನ ಪೊಸ ಬ್ಯಾಂಕ್‌ನ್ ಮಲ್ತೇರ್.<ref>{{cite news |title=Bank of Maharashtra merges two RRBs |url=https://economictimes.indiatimes.com/bank-of-maharashtra-merges-two-rrbs/articleshow/2914903.cms |access-date=15 August 2025 |work=The Economic Times |date=31 March 2008}}</ref> ಅಯಿಡ್ದ್ ಬೊಕ್ಕ, ಭಾರತ ಸರ್ಕಾರದ "ಒಂಜಿ ರಾಜ್ಯ, ಒಂಜಿ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್" (One State, One RRB) ನಿಯಮದ ಪ್ರಕಾರ, ಮೇ ೧, ೨೦೨೫ ದಾನಿ ಈ ಮಹಾರಾಷ್ಟ್ರ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್‌ನ್ 'ವಿದರ್ಭ ಕೊಂಕಣ್ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್'ದ ಒಟ್ಟುಗು ಸೇರಾದ್, ಇಡೀ ರಾಜ್ಯಗೇ ಒಂಜೇ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್ ಆಪುಲೆಕ್ಕ ವಿಲೀನ ಮಲ್ತೇರ್.<ref>{{cite web | author1=Livemint | title='One state-one RRB' to be effective from May 1 after govt approves consolidation of 15 regional rural banks &#124; Mint | work=mint | date=8 April 2025 | url=https://www.livemint.com/economy/one-state-one-rrb-to-be-effective-from-may-1-after-govt-approves-consolidation-of-15-regional-rural-banks-11744118507326.html }}</ref> ==ಉಲ್ಲೇಕ== {{reflist}} [[ವರ್ಗೊ:ಬ್ಯಾಂಕುಲು]] i83gnuae7hpngueq88z9bjbla7f0pcv 362641 362640 2026-07-10T07:30:32Z Mahaveer Indra 1023 added [[Category:ಭಾರತೊದ ಸಾರ್ವಜನಿಕ ರಂಗದ ಬ್ಯಾಂಕುಲು]] using [[Help:Gadget-HotCat|HotCat]] 362641 wikitext text/x-wiki ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ಭಾರತದ ಒಂಜಿ ಮಲ್ಲ ಸಾರ್ವಜನಿಕ ವಲಯದ ಬ್ಯಾಂಕ್ ಆದುಂಡು. ಇಂದೆತ ಮುಖ್ಯ ಕಛೇರಿ ಪುಣೆಡ್ ಉಂಡು. ಈ ಬ್ಯಾಂಕ್ ೧೯೩೫ನೇ ಇಸವಿಡ್ ಸ್ಥಾಪನೆ ಆಂಡ್ ಬೊಕ್ಕ ೧೯೬೯ನೇ ಇಸವಿಡ್ ಭಾರತ ಸರ್ಕಾರ ಇಂದೆನ್ ರಾಷ್ಟ್ರೀಕರಣ ಮಲ್ತ್ಂಡ್. ಜೂನ್ ೨೦೨೫ದ ಲೆಕ್ಕಾಚಾರದ ಪ್ರಕಾರ, ಈ ಬ್ಯಾಂಕ್‌ಗ್ ದೇಸೊರ್ಮೆ ಸುಮಾರ್ ೨,೬೪೧ ಶಾಖೆಲು ಉಲ್ಲ.<ref>{{cite web |title=Financial Results For Quarter Ended, 30th June 2025 |url=https://bankofmaharashtra.in/writereaddata/documentlibrary/0f76e3c6-256b-4306-bd61-3eae38ca1527.pdf |publisher=Bank of Maharashtra |access-date=15 August 2025}}</ref> ಮಾರುಕಟ್ಟೆ ಬಂಡವಾಳದ ಪ್ರಕಾರ, ಸಾರ್ವಜನಿಕ ವಲಯದ ಬ್ಯಾಂಕುಲೆಡ್ ಈ ಬ್ಯಾಂಕ್ ೮ನೇ ಸಾನೊಡು ಉಂಡು. ==ಇತಿಹಾಸೊ== ೧೯೩೪ನೇ ಇಸವಿಡ್ ಪುಣೆಡ್ 'ಮರಾಠಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್' (MCC) ಸುರು ಆಂಡ್. ಅಯಿತ ಸ್ಥಾಪಕ ಕಾರ್ಯದರ್ಶಿ ಆಯಿನ ಶ್ರೀ ಎ.ಆರ್. ಭಟ್ ಬಾರೀ ದೂರದೃಷ್ಟಿ ಇತ್ತ್‌ನ ಮಾಮಲ್ಲ ನಾಯಕೆ ಆದಿತ್ತ್ಂಡ್. ಮರಾಠಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್ ಸುರು ಆಯಿನ ಕೆಲವು ತಿಂಗೊಳುಡು ಲೋಕಮಾನ್ಯ ತಿಲಕೆರೆನ ನೆನಪುಡು ಬುಡುಗಡೆ ಆಯಿನ 'ಕೇಸರಿ' ಪತ್ರಿಕೆದ ವಿಶೇಷ ಸಂಚಿಕೆಡ್ ಆ ಪ್ರದೇಶೊಡು ಇಪ್ಪುನ ಬ್ಯಾಂಕಿಂಗ್ ಸೇವೆಲೆನ ಬಗ್ಗೆ ಒಂಜಿ ವರದಿನ್ ಪ್ರಕಟ ಮಲ್ಪೆರೆ ಶ್ರೀ ಭಟ್ ಸುರು ಮಲ್ತೇರ್. ಅರೆನ ದೋಸ್ತಿ ಬೊಕ್ಕ ಸಹಕಾರ ಚಳವಳಿದ ಮಲ್ಲ ಮೇಧಾವಿ ಆಯಿನ ಶ್ರೀ ವಿ. ಪಿ. ವರ್ದೆ ಅರೆನ ಕೈಡ್ದ್ "ಮಹಾರಾಷ್ಟ್ರಗ್ ಒಂಜಿ ಪ್ರತ್ಯೇಕ ಬ್ಯಾಂಕ್ ಬೋಡು" ಪನ್ಪಿನ ವಿಷಯದ ಬಗ್ಗೆ ಒಂಜಿ ಬರವು ಬರೆಪಾಯೆರ್. ಈ ಲೇಖನಗ್ ಸುರುಟು ಜನಡ್ದ್ ಅಂಚಿನ ಮಲ್ಲ ಪ್ರತಿಕ್ರಿಯೆ ಬತ್ತಿಜಿಂಡಲಾ, ಶ್ರೀ ಎ.ಆರ್. ಭಟ್ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕಾ ರಂಗದ ಮಲ್ಲ ಜನಕುಲೆನ ಒಟ್ಟುಗು ಈ ವಿಷಯದ ಬಗ್ಗೆ ಪಾತೆರೊಂದು ಇತ್ತ್ಂಡ್. ಮಹರತ್ತಾ ಚೇಂಬರ್ ಬೊಕ್ಕ ಅಯಿತ ನಿರ್ದೇಶಕರು ಈ ವಿಷಯೊನು ಗಂಭೀರವಾದ್ ದೆತೊಂದು, ಫೆಬ್ರವರಿ ೧೯೩೫ಡ್ ಪುಣೆಡ್ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕಾ ಸಮ್ಮೇಳನಡ್ ಈ ಇಸಯ ಚರ್ಚೆಗ್ ಬತ್ತ್ಂಡ್. "ಮಹಾರಾಷ್ಟ್ರದ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕೆಲೆಗ್ ದುಡ್ಡುದ ಸೌಲಭ್ಯ ಕೊರಿಯೆರೆ ಒಂಜಿ ಜಾಯಿಂಟ್ ಸ್ಟಾಕ್ ಕಮರ್ಷಿಯಲ್ ಬ್ಯಾಂಕ್ (ವಾಣಿಜ್ಯ ಬ್ಯಾಂಕ್) ಸ್ಥಾಪನೆ ಮಲ್ಪುನು ಬಾರೀ ಅಗತ್ಯ ಉಂಡು. ಅಂಚಾದ್ ಮಹರತ್ತಾ ಚೇಂಬರ್ ಇಂದೆಕ್ ಬೋಡಾಯಿನ ಇಚಾರ ಮಲ್ತ್‌ದ್, ಬ್ಯಾಂಕ್ ಸುರು ಮಲ್ಪೆರೆ ಆವಶ್ಯಕ ಕ್ರಮ ದೆತೊನೊಡು. ಮಹಾರಾಷ್ಟ್ರದ ಮಾತಾ ವ್ಯಾಪಾರಸ್ಥರು ಈ ಪ್ರಯತ್ನೊಗು ಬೆರಿ ಸಹಾಯ ಕೊರೊಡು." ೨೦ನೇ ಶತಮಾನದ ಸುರುತ ದಶಕೊಡು ನಡತಿನ ಸ್ವದೇಶಿ ಚಳವಳಿ ಭಾರತದ ಜನಕುಲೆನ ಉಸ್ತುವಾರಿಡು ಮಹಾರಾಷ್ಟ್ರೊಡು ಮಸ್ತ್ ವಾಣಿಜ್ಯ ಬ್ಯಾಂಕುಲೆನ ಸ್ಥಾಪನೆಗ್ ಪ್ರೇರಣೆ ಕೊರ್ತುಂಡು. ಇಂದೆತ ಕೆಲಸೊಗಾದ್ MCC ಒಂಜಿ ಉಪ-ಸಮಿತಿನ್ ಉಂಡು ಮಲ್ತ್ಂಡ್. ಅಯಿಟು ಶ್ರೀ ವಿ.ಜಿ. ಕಾಳೆ, ಡಿ.ಕೆ. ಸಾಠೆ, ಎನ್.ಜಿ. ಪವಾರ್, ಜಿ.ಡಿ. ಆಪ್ಟೆ ಬೊಕ್ಕ ಎ.ಆರ್. ಭಟ್ ಇತ್ತೆರ್. ಈ ಸಮಿತಿದ ಸುರುತ ಕೂಟ ೧೯ ಮೇ ೧೯೩೫ ದಾನಿ ನಡತಿನ ಬೊಕ್ಕೊಂಜಿ ಮಲ್ಲ ಕೂಟೊಡು ನಿರ್ಧಾರೊಲೆನ್ ದೆತೊಂಡೆರ್: ಪ್ರಸ್ತಾಪಿತ ಬ್ಯಾಂಕ್‌ದ ಬೋರ್ಡ್‌ಡ್ ಗರಿಷ್ಠ ೧೧ ನಿರ್ದೇಶಕರು ಇಪ್ಪೊಡು, ಒಂಜಿ ಶೇರ್‌ದ ಬಿಲೆ ೫೦ ರೂಪಾಯಿ ಆವೊಡು, ಬೊಕ್ಕ ನಿರ್ದೇಶಕ ಆಯೆರೆ ಕನಿಷ್ಠ ೫೦೦ ಶೇರುಲು ಇಪ್ಪೊಡು ಪಂದ್ ತೀರ್ಮಾನ ಮಲ್ತೇರ್.<ref>{{cite web |title=bankofmaharashtra.bank.in |url=https://bankofmaharashtra.bank.in/the-begining |website=bankofmaharashtra.bank.in |publisher=BOM |access-date=10 July 2026}}</ref> ಅಂಚ ತೀರ್ಮಾನ ಆಯಿಬೊಕ್ಕ ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ೧೬ ಸೆಪ್ಟೆಂಬರ್ ೧೯೩೫ ದಾನಿ ಬೊಂಬಾಯಿ ಪ್ರೆಸಿಡೆನ್ಸಿದ ಪೂನಾಡ್ (ಇತ್ತೆದ ಪುಣೆ, ಮಹಾರಾಷ್ಟ್ರ) ಸ್ಥಾಪನೆ ಆಂಡ್. ಭಾರತೊಡು ಸಹಕಾರಿ ಚಳವಳಿ ನಡತೊಂದು ಇತ್ತ್‌ನ ಆ ಸಮಯೊಡು, ಎಲ್ಯ ವ್ಯಾಪಾರಸ್ಥರೆಗ್ ಬೊಕ್ಕ ಉದ್ಯಮಿಲೆಗ್ ಬೆರಿ ಸಹಾಯ ಕೊರಿಯೆರೆ ಬೋಡಾದ್ 'ಮಹರತ್ತಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್' ಉಸ್ತುವಾರಿಡು ಈ ಬ್ಯಾಂಕ್ ಸುರು ಆಂಡ್.<ref name=":0"/><ref>{{cite web |title=Bank of Maharashtra: Rating reaffirmed; withdrawn for Rs. 600-crore Basel III tier II bonds |url=https://www.icra.in/Rationale/ShowRationaleReport?Id=136598 |publisher=ICRA |access-date=15 August 2025}}</ref> ಅಯಿಡ್ದ್ ಬೊಕ್ಕ, ೧೯೪೪ನೇ ಇಸವಿಡ್ ಈ ಬ್ಯಾಂಕ್ ಒಂಜಿ 'ಷೆಡ್ಯೂಲ್ಡ್ ಬ್ಯಾಂಕ್' ಆದ್ ನೋಂದಣಿ ಆಂಡ್. ೧೯೫೫ನೇ ಇಸವಿಡ್ 'ಬ್ಯಾಂಕಿಂಗ್ ಕಂಪೆನೀಸ್ ಆಕ್ಟ್' ಅಡಿಟ್ ಅಧಿಕೃತ ಬ್ಯಾಂಕಿಂಗ್ ಲೈಸೆನ್ಸ್ ದೆತೊಂಡು. ಈ ಬ್ಯಾಂಕ್, ೧೯೫೮ನೇ ಇಸವಿಡ್ ಬಾಂಬೆ ಸ್ಟಾಕ್ ಎಕ್ಸ್ಚೇಂಜ್‌ಡ್ ದಾಖಲಾಂಡ್.<ref name=":0">{{cite web |title=Bank of Maharashtra - History and Growth |url=http://ir.unishivaji.ac.in:8080/jspui/bitstream/123456789/545/10/10_Chapter%204.pdf |publisher=Shivaji University |access-date=15 August 2025}}</ref> ==ಸ್ವಾದೀನೊ== ೧೯೬೧ನೇ ಇಸವಿಡ್ ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ರಾಜ್ಯದ ಮೂಜಿ ಎಲ್ಯ ಬ್ಯಾಂಕುಲೆನ್- ಮಾಲ್ವಣ್‌ಡು ಇತ್ತ್‌ನ 'ಬ್ಯಾಂಕ್ ಆಫ್ ಕೊಂಕಣ್', ನಾಗಪುರಡು ಇತ್ತ್‌ನ 'ಬ್ಯಾಂಕ್ ಆಫ್ ನಾಗಪುರ' ಬೊಕ್ಕ ಪೂನಾಡ್ (ಇತ್ತೆದ ಪುಣೆ) ಇತ್ತ್‌ನ 'ಭಾರತ್ ಇಂಡಸ್ಟ್ರಿಯಲ್ ಬ್ಯಾಂಕ್- ಸ್ವಾಧೀನ ಮಲ್ತೊಂಡ್.<ref>{{cite web |title=Banks which have closed down or amalgamated or placed under liquidation during the period 1st March to 4th September 1961 |url=https://www.rsdebate.nic.in/bitstream/123456789/556125/2/IQ_35_06091961_U447_p3402_p3404.pdf |publisher=Rajya Sabha Debates |access-date=15 August 2025}}</ref> == ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್ ಸುರು ಮಲ್ತಿನಿ== ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ, ಕೇಂದ್ರ ಬೊಕ್ಕ ರಾಜ್ಯ ಸರ್ಕಾರೊಲೆನ ಸೇರಿಕೆಡ್ ಮೂಜಿ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕುಲೆನ್ ಸುರು ಮಲ್ತ್ಂಡ್.<ref>{{cite web |last1=Ray |first1=Partha |last2=Basu |first2=Sankarshan |title=Bank of Maharashtra: An Indian Small Public Sector Bank Unshackling itself from the baggage of the Past |url=https://www.nibmindia.org/documents/162/NIBM_Case_02_UsQmAix.pdf |publisher=National Institute of Bank Management |access-date=15 August 2025 |date=November 2022}}</ref> ಅವು ಒವ್ವು ಪಂಡ, ೧೯೭೬ಡ್ ನಾಂದೇಡ್‌ಡ್ ಸುರು ಆಯಿನ 'ಮರಾಠವಾಡ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್', ೧೯೮೧ಡ್ ಔರಂಗಾಬಾದ್‌ಡ್ ಸುರು ಆಯಿನ 'ಔರಂಗಾಬಾದ್-ಜಾಲ್ನಾ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್' ಬೊಕ್ಕ ೧೯೮೬ಡ್ ಥಾಣೆಡ್ ಸುರು ಆಯಿನ 'ಥಾಣೆ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್'. ೨೦೦೯ನೇ ಇಸವಿಡ್ ಈ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕುಲೆನ್ ಒಟ್ಟು ಸೇರಾದ್ 'ಮಹಾರಾಷ್ಟ್ರ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್' ಪನ್ಪಿನ ಪೊಸ ಬ್ಯಾಂಕ್‌ನ್ ಮಲ್ತೇರ್.<ref>{{cite news |title=Bank of Maharashtra merges two RRBs |url=https://economictimes.indiatimes.com/bank-of-maharashtra-merges-two-rrbs/articleshow/2914903.cms |access-date=15 August 2025 |work=The Economic Times |date=31 March 2008}}</ref> ಅಯಿಡ್ದ್ ಬೊಕ್ಕ, ಭಾರತ ಸರ್ಕಾರದ "ಒಂಜಿ ರಾಜ್ಯ, ಒಂಜಿ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್" (One State, One RRB) ನಿಯಮದ ಪ್ರಕಾರ, ಮೇ ೧, ೨೦೨೫ ದಾನಿ ಈ ಮಹಾರಾಷ್ಟ್ರ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್‌ನ್ 'ವಿದರ್ಭ ಕೊಂಕಣ್ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್'ದ ಒಟ್ಟುಗು ಸೇರಾದ್, ಇಡೀ ರಾಜ್ಯಗೇ ಒಂಜೇ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್ ಆಪುಲೆಕ್ಕ ವಿಲೀನ ಮಲ್ತೇರ್.<ref>{{cite web | author1=Livemint | title='One state-one RRB' to be effective from May 1 after govt approves consolidation of 15 regional rural banks &#124; Mint | work=mint | date=8 April 2025 | url=https://www.livemint.com/economy/one-state-one-rrb-to-be-effective-from-may-1-after-govt-approves-consolidation-of-15-regional-rural-banks-11744118507326.html }}</ref> ==ಉಲ್ಲೇಕ== {{reflist}} [[ವರ್ಗೊ:ಬ್ಯಾಂಕುಲು]] [[ವರ್ಗೊ:ಭಾರತೊದ ಸಾರ್ವಜನಿಕ ರಂಗದ ಬ್ಯಾಂಕುಲು]] ar33qqa7j2rvmrblurznakaz5fhsh48 362642 362641 2026-07-10T07:30:57Z Mahaveer Indra 1023 added [[Category:ತುಳು ವಿಕಿಪೀಡಿಯ 10ನೇ ವರ್ಸಾಂತ್ಯೊ]] using [[Help:Gadget-HotCat|HotCat]] 362642 wikitext text/x-wiki ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ಭಾರತದ ಒಂಜಿ ಮಲ್ಲ ಸಾರ್ವಜನಿಕ ವಲಯದ ಬ್ಯಾಂಕ್ ಆದುಂಡು. ಇಂದೆತ ಮುಖ್ಯ ಕಛೇರಿ ಪುಣೆಡ್ ಉಂಡು. ಈ ಬ್ಯಾಂಕ್ ೧೯೩೫ನೇ ಇಸವಿಡ್ ಸ್ಥಾಪನೆ ಆಂಡ್ ಬೊಕ್ಕ ೧೯೬೯ನೇ ಇಸವಿಡ್ ಭಾರತ ಸರ್ಕಾರ ಇಂದೆನ್ ರಾಷ್ಟ್ರೀಕರಣ ಮಲ್ತ್ಂಡ್. ಜೂನ್ ೨೦೨೫ದ ಲೆಕ್ಕಾಚಾರದ ಪ್ರಕಾರ, ಈ ಬ್ಯಾಂಕ್‌ಗ್ ದೇಸೊರ್ಮೆ ಸುಮಾರ್ ೨,೬೪೧ ಶಾಖೆಲು ಉಲ್ಲ.<ref>{{cite web |title=Financial Results For Quarter Ended, 30th June 2025 |url=https://bankofmaharashtra.in/writereaddata/documentlibrary/0f76e3c6-256b-4306-bd61-3eae38ca1527.pdf |publisher=Bank of Maharashtra |access-date=15 August 2025}}</ref> ಮಾರುಕಟ್ಟೆ ಬಂಡವಾಳದ ಪ್ರಕಾರ, ಸಾರ್ವಜನಿಕ ವಲಯದ ಬ್ಯಾಂಕುಲೆಡ್ ಈ ಬ್ಯಾಂಕ್ ೮ನೇ ಸಾನೊಡು ಉಂಡು. ==ಇತಿಹಾಸೊ== ೧೯೩೪ನೇ ಇಸವಿಡ್ ಪುಣೆಡ್ 'ಮರಾಠಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್' (MCC) ಸುರು ಆಂಡ್. ಅಯಿತ ಸ್ಥಾಪಕ ಕಾರ್ಯದರ್ಶಿ ಆಯಿನ ಶ್ರೀ ಎ.ಆರ್. ಭಟ್ ಬಾರೀ ದೂರದೃಷ್ಟಿ ಇತ್ತ್‌ನ ಮಾಮಲ್ಲ ನಾಯಕೆ ಆದಿತ್ತ್ಂಡ್. ಮರಾಠಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್ ಸುರು ಆಯಿನ ಕೆಲವು ತಿಂಗೊಳುಡು ಲೋಕಮಾನ್ಯ ತಿಲಕೆರೆನ ನೆನಪುಡು ಬುಡುಗಡೆ ಆಯಿನ 'ಕೇಸರಿ' ಪತ್ರಿಕೆದ ವಿಶೇಷ ಸಂಚಿಕೆಡ್ ಆ ಪ್ರದೇಶೊಡು ಇಪ್ಪುನ ಬ್ಯಾಂಕಿಂಗ್ ಸೇವೆಲೆನ ಬಗ್ಗೆ ಒಂಜಿ ವರದಿನ್ ಪ್ರಕಟ ಮಲ್ಪೆರೆ ಶ್ರೀ ಭಟ್ ಸುರು ಮಲ್ತೇರ್. ಅರೆನ ದೋಸ್ತಿ ಬೊಕ್ಕ ಸಹಕಾರ ಚಳವಳಿದ ಮಲ್ಲ ಮೇಧಾವಿ ಆಯಿನ ಶ್ರೀ ವಿ. ಪಿ. ವರ್ದೆ ಅರೆನ ಕೈಡ್ದ್ "ಮಹಾರಾಷ್ಟ್ರಗ್ ಒಂಜಿ ಪ್ರತ್ಯೇಕ ಬ್ಯಾಂಕ್ ಬೋಡು" ಪನ್ಪಿನ ವಿಷಯದ ಬಗ್ಗೆ ಒಂಜಿ ಬರವು ಬರೆಪಾಯೆರ್. ಈ ಲೇಖನಗ್ ಸುರುಟು ಜನಡ್ದ್ ಅಂಚಿನ ಮಲ್ಲ ಪ್ರತಿಕ್ರಿಯೆ ಬತ್ತಿಜಿಂಡಲಾ, ಶ್ರೀ ಎ.ಆರ್. ಭಟ್ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕಾ ರಂಗದ ಮಲ್ಲ ಜನಕುಲೆನ ಒಟ್ಟುಗು ಈ ವಿಷಯದ ಬಗ್ಗೆ ಪಾತೆರೊಂದು ಇತ್ತ್ಂಡ್. ಮಹರತ್ತಾ ಚೇಂಬರ್ ಬೊಕ್ಕ ಅಯಿತ ನಿರ್ದೇಶಕರು ಈ ವಿಷಯೊನು ಗಂಭೀರವಾದ್ ದೆತೊಂದು, ಫೆಬ್ರವರಿ ೧೯೩೫ಡ್ ಪುಣೆಡ್ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕಾ ಸಮ್ಮೇಳನಡ್ ಈ ಇಸಯ ಚರ್ಚೆಗ್ ಬತ್ತ್ಂಡ್. "ಮಹಾರಾಷ್ಟ್ರದ ವ್ಯಾಪಾರ ಬೊಕ್ಕ ಕೈಗಾರಿಕೆಲೆಗ್ ದುಡ್ಡುದ ಸೌಲಭ್ಯ ಕೊರಿಯೆರೆ ಒಂಜಿ ಜಾಯಿಂಟ್ ಸ್ಟಾಕ್ ಕಮರ್ಷಿಯಲ್ ಬ್ಯಾಂಕ್ (ವಾಣಿಜ್ಯ ಬ್ಯಾಂಕ್) ಸ್ಥಾಪನೆ ಮಲ್ಪುನು ಬಾರೀ ಅಗತ್ಯ ಉಂಡು. ಅಂಚಾದ್ ಮಹರತ್ತಾ ಚೇಂಬರ್ ಇಂದೆಕ್ ಬೋಡಾಯಿನ ಇಚಾರ ಮಲ್ತ್‌ದ್, ಬ್ಯಾಂಕ್ ಸುರು ಮಲ್ಪೆರೆ ಆವಶ್ಯಕ ಕ್ರಮ ದೆತೊನೊಡು. ಮಹಾರಾಷ್ಟ್ರದ ಮಾತಾ ವ್ಯಾಪಾರಸ್ಥರು ಈ ಪ್ರಯತ್ನೊಗು ಬೆರಿ ಸಹಾಯ ಕೊರೊಡು." ೨೦ನೇ ಶತಮಾನದ ಸುರುತ ದಶಕೊಡು ನಡತಿನ ಸ್ವದೇಶಿ ಚಳವಳಿ ಭಾರತದ ಜನಕುಲೆನ ಉಸ್ತುವಾರಿಡು ಮಹಾರಾಷ್ಟ್ರೊಡು ಮಸ್ತ್ ವಾಣಿಜ್ಯ ಬ್ಯಾಂಕುಲೆನ ಸ್ಥಾಪನೆಗ್ ಪ್ರೇರಣೆ ಕೊರ್ತುಂಡು. ಇಂದೆತ ಕೆಲಸೊಗಾದ್ MCC ಒಂಜಿ ಉಪ-ಸಮಿತಿನ್ ಉಂಡು ಮಲ್ತ್ಂಡ್. ಅಯಿಟು ಶ್ರೀ ವಿ.ಜಿ. ಕಾಳೆ, ಡಿ.ಕೆ. ಸಾಠೆ, ಎನ್.ಜಿ. ಪವಾರ್, ಜಿ.ಡಿ. ಆಪ್ಟೆ ಬೊಕ್ಕ ಎ.ಆರ್. ಭಟ್ ಇತ್ತೆರ್. ಈ ಸಮಿತಿದ ಸುರುತ ಕೂಟ ೧೯ ಮೇ ೧೯೩೫ ದಾನಿ ನಡತಿನ ಬೊಕ್ಕೊಂಜಿ ಮಲ್ಲ ಕೂಟೊಡು ನಿರ್ಧಾರೊಲೆನ್ ದೆತೊಂಡೆರ್: ಪ್ರಸ್ತಾಪಿತ ಬ್ಯಾಂಕ್‌ದ ಬೋರ್ಡ್‌ಡ್ ಗರಿಷ್ಠ ೧೧ ನಿರ್ದೇಶಕರು ಇಪ್ಪೊಡು, ಒಂಜಿ ಶೇರ್‌ದ ಬಿಲೆ ೫೦ ರೂಪಾಯಿ ಆವೊಡು, ಬೊಕ್ಕ ನಿರ್ದೇಶಕ ಆಯೆರೆ ಕನಿಷ್ಠ ೫೦೦ ಶೇರುಲು ಇಪ್ಪೊಡು ಪಂದ್ ತೀರ್ಮಾನ ಮಲ್ತೇರ್.<ref>{{cite web |title=bankofmaharashtra.bank.in |url=https://bankofmaharashtra.bank.in/the-begining |website=bankofmaharashtra.bank.in |publisher=BOM |access-date=10 July 2026}}</ref> ಅಂಚ ತೀರ್ಮಾನ ಆಯಿಬೊಕ್ಕ ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ೧೬ ಸೆಪ್ಟೆಂಬರ್ ೧೯೩೫ ದಾನಿ ಬೊಂಬಾಯಿ ಪ್ರೆಸಿಡೆನ್ಸಿದ ಪೂನಾಡ್ (ಇತ್ತೆದ ಪುಣೆ, ಮಹಾರಾಷ್ಟ್ರ) ಸ್ಥಾಪನೆ ಆಂಡ್. ಭಾರತೊಡು ಸಹಕಾರಿ ಚಳವಳಿ ನಡತೊಂದು ಇತ್ತ್‌ನ ಆ ಸಮಯೊಡು, ಎಲ್ಯ ವ್ಯಾಪಾರಸ್ಥರೆಗ್ ಬೊಕ್ಕ ಉದ್ಯಮಿಲೆಗ್ ಬೆರಿ ಸಹಾಯ ಕೊರಿಯೆರೆ ಬೋಡಾದ್ 'ಮಹರತ್ತಾ ಚೇಂಬರ್ ಆಫ್ ಕಾಮರ್ಸ್' ಉಸ್ತುವಾರಿಡು ಈ ಬ್ಯಾಂಕ್ ಸುರು ಆಂಡ್.<ref name=":0"/><ref>{{cite web |title=Bank of Maharashtra: Rating reaffirmed; withdrawn for Rs. 600-crore Basel III tier II bonds |url=https://www.icra.in/Rationale/ShowRationaleReport?Id=136598 |publisher=ICRA |access-date=15 August 2025}}</ref> ಅಯಿಡ್ದ್ ಬೊಕ್ಕ, ೧೯೪೪ನೇ ಇಸವಿಡ್ ಈ ಬ್ಯಾಂಕ್ ಒಂಜಿ 'ಷೆಡ್ಯೂಲ್ಡ್ ಬ್ಯಾಂಕ್' ಆದ್ ನೋಂದಣಿ ಆಂಡ್. ೧೯೫೫ನೇ ಇಸವಿಡ್ 'ಬ್ಯಾಂಕಿಂಗ್ ಕಂಪೆನೀಸ್ ಆಕ್ಟ್' ಅಡಿಟ್ ಅಧಿಕೃತ ಬ್ಯಾಂಕಿಂಗ್ ಲೈಸೆನ್ಸ್ ದೆತೊಂಡು. ಈ ಬ್ಯಾಂಕ್, ೧೯೫೮ನೇ ಇಸವಿಡ್ ಬಾಂಬೆ ಸ್ಟಾಕ್ ಎಕ್ಸ್ಚೇಂಜ್‌ಡ್ ದಾಖಲಾಂಡ್.<ref name=":0">{{cite web |title=Bank of Maharashtra - History and Growth |url=http://ir.unishivaji.ac.in:8080/jspui/bitstream/123456789/545/10/10_Chapter%204.pdf |publisher=Shivaji University |access-date=15 August 2025}}</ref> ==ಸ್ವಾದೀನೊ== ೧೯೬೧ನೇ ಇಸವಿಡ್ ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ ರಾಜ್ಯದ ಮೂಜಿ ಎಲ್ಯ ಬ್ಯಾಂಕುಲೆನ್- ಮಾಲ್ವಣ್‌ಡು ಇತ್ತ್‌ನ 'ಬ್ಯಾಂಕ್ ಆಫ್ ಕೊಂಕಣ್', ನಾಗಪುರಡು ಇತ್ತ್‌ನ 'ಬ್ಯಾಂಕ್ ಆಫ್ ನಾಗಪುರ' ಬೊಕ್ಕ ಪೂನಾಡ್ (ಇತ್ತೆದ ಪುಣೆ) ಇತ್ತ್‌ನ 'ಭಾರತ್ ಇಂಡಸ್ಟ್ರಿಯಲ್ ಬ್ಯಾಂಕ್- ಸ್ವಾಧೀನ ಮಲ್ತೊಂಡ್.<ref>{{cite web |title=Banks which have closed down or amalgamated or placed under liquidation during the period 1st March to 4th September 1961 |url=https://www.rsdebate.nic.in/bitstream/123456789/556125/2/IQ_35_06091961_U447_p3402_p3404.pdf |publisher=Rajya Sabha Debates |access-date=15 August 2025}}</ref> == ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್ ಸುರು ಮಲ್ತಿನಿ== ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ, ಕೇಂದ್ರ ಬೊಕ್ಕ ರಾಜ್ಯ ಸರ್ಕಾರೊಲೆನ ಸೇರಿಕೆಡ್ ಮೂಜಿ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕುಲೆನ್ ಸುರು ಮಲ್ತ್ಂಡ್.<ref>{{cite web |last1=Ray |first1=Partha |last2=Basu |first2=Sankarshan |title=Bank of Maharashtra: An Indian Small Public Sector Bank Unshackling itself from the baggage of the Past |url=https://www.nibmindia.org/documents/162/NIBM_Case_02_UsQmAix.pdf |publisher=National Institute of Bank Management |access-date=15 August 2025 |date=November 2022}}</ref> ಅವು ಒವ್ವು ಪಂಡ, ೧೯೭೬ಡ್ ನಾಂದೇಡ್‌ಡ್ ಸುರು ಆಯಿನ 'ಮರಾಠವಾಡ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್', ೧೯೮೧ಡ್ ಔರಂಗಾಬಾದ್‌ಡ್ ಸುರು ಆಯಿನ 'ಔರಂಗಾಬಾದ್-ಜಾಲ್ನಾ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್' ಬೊಕ್ಕ ೧೯೮೬ಡ್ ಥಾಣೆಡ್ ಸುರು ಆಯಿನ 'ಥಾಣೆ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್'. ೨೦೦೯ನೇ ಇಸವಿಡ್ ಈ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕುಲೆನ್ ಒಟ್ಟು ಸೇರಾದ್ 'ಮಹಾರಾಷ್ಟ್ರ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್' ಪನ್ಪಿನ ಪೊಸ ಬ್ಯಾಂಕ್‌ನ್ ಮಲ್ತೇರ್.<ref>{{cite news |title=Bank of Maharashtra merges two RRBs |url=https://economictimes.indiatimes.com/bank-of-maharashtra-merges-two-rrbs/articleshow/2914903.cms |access-date=15 August 2025 |work=The Economic Times |date=31 March 2008}}</ref> ಅಯಿಡ್ದ್ ಬೊಕ್ಕ, ಭಾರತ ಸರ್ಕಾರದ "ಒಂಜಿ ರಾಜ್ಯ, ಒಂಜಿ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್" (One State, One RRB) ನಿಯಮದ ಪ್ರಕಾರ, ಮೇ ೧, ೨೦೨೫ ದಾನಿ ಈ ಮಹಾರಾಷ್ಟ್ರ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್‌ನ್ 'ವಿದರ್ಭ ಕೊಂಕಣ್ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್'ದ ಒಟ್ಟುಗು ಸೇರಾದ್, ಇಡೀ ರಾಜ್ಯಗೇ ಒಂಜೇ ಪ್ರಾದೇಶಿಕ ಗ್ರಾಮೀಣ ಬ್ಯಾಂಕ್ ಆಪುಲೆಕ್ಕ ವಿಲೀನ ಮಲ್ತೇರ್.<ref>{{cite web | author1=Livemint | title='One state-one RRB' to be effective from May 1 after govt approves consolidation of 15 regional rural banks &#124; Mint | work=mint | date=8 April 2025 | url=https://www.livemint.com/economy/one-state-one-rrb-to-be-effective-from-may-1-after-govt-approves-consolidation-of-15-regional-rural-banks-11744118507326.html }}</ref> ==ಉಲ್ಲೇಕ== {{reflist}} [[ವರ್ಗೊ:ಬ್ಯಾಂಕುಲು]] [[ವರ್ಗೊ:ಭಾರತೊದ ಸಾರ್ವಜನಿಕ ರಂಗದ ಬ್ಯಾಂಕುಲು]] [[ವರ್ಗೊ:ತುಳು ವಿಕಿಪೀಡಿಯ 10ನೇ ವರ್ಸಾಂತ್ಯೊ]] psx01jz0jziucgqfdonlt1vw9rf20wa ಪಾತೆರ:ಬ್ಯಾಂಕ್ ಆಫ್ ಮಹಾರಾಷ್ಟ್ರ 1 27478 362643 2026-07-10T07:31:22Z Mahaveer Indra 1023 https://fountain.toolforge.org/editathons/10wiki-tcy 362643 wikitext text/x-wiki {{ವಿಕಿಪೀಡಿಯ 10ನೇ ವರ್ಸಂತಿಗೆ ಪಂತೊದ ಲೇಕನೊ}} nekn5axm94un6rhhgr63qit15105phm ಟೆಕ್ಸಾಸ್‌ನ ರಿಪಬ್ಲಿಕನ್ ಪಕ್ಷ 0 27479 362644 2026-07-10T08:23:16Z Texan North Public Work Translators 214 10011 "[[:en:Special:Redirect/revision/1359467233|Republican Party of Texas]]" ಪುಟವನ್ನು ಅನುವಾದಿಸುವುದರಿಂದ ಸೃಷ್ಟಿಸಲಾಯಿತು 362644 wikitext text/x-wiki   ನ್ ಪಾರ್ಟಿ ಆಫ್ ಟೆಕ್ಸಾಸ್ ('''Republican Party of Texas''') ಯುನೈಟೆಡ್ ಸ್ಟೇಟ್ಸ್ ಡ್ ರಿಪಬ್ಲಿಕನ್ ಪಾರ್ಟಿದ ಟೆಕ್ಸಾಸ್ ಅನುಬಂಧ ಪಕ್ಷದ ಕೇಂದ್ರ ಕಚೇರಿ ಆಸ್ಟಿನ್, ಟೆಕ್ಸಾಸ್ ಡ್ ಉಂಡು, ಬೊಕ್ಕ ಕಾನೂನುಬದ್ಧವಾದ್ ಟೆಕ್ಸಾಸ್ ಕಾನೂನುದ ಅಡಿಟ್ ಒಂಜಿ ರಾಜಕೀಯ ಕ್ರಿಯಾ ಸಮಿತಿ ಪಂಡ್ದ್ ಪರಿಗಣಿಸಲ್ಪಡುಂಡು ಉಂದು ರಾಜ್ಯದ ಆಡಳಿತ ಪಕ್ಷ, ರಾಜ್ಯವ್ಯಾಪಿ ಚುನಾಯಿತ ಕಚೇರಿಲೆನ್, ಶಾಸಕಾಂಗದ ರಡ್ಡ್ ಸದನೊಲೆನ್ ಬೊಕ್ಕ ಬಹುಪಾಲು ಕಾಂಗ್ರೆಸ್ ಸ್ಥಾನೊಲೆನ್ ನಿಯಂತ್ರಣ ಮಲ್ಪುಂಡು. <ref>{{Cite web|last=Kofman|first=Ava|title=How Two Billionaire Preachers Remade Texas Politics|url=https://www.nytimes.com/2024/10/02/magazine/texas-politics-billionaire-preachers.html|website=The New York Times|date=October 2, 2024|accessdate=March 6, 2025}}</ref> <gallery widths="200" heights="200"> ಫೈಲ್:John_Cornyn_official_senate_portrait.jpg|alt=Senior U.S. Senator John Cornyn| ಹಿರಿಯ ಅಮೇರಿಕದ ಸೆನೆಟರ್ ಜಾನ್ ಕಾರ್ನಿನ್ ಫೈಲ್:Ted_Cruz_official_116th_portrait_(cropped).jpg|alt=Junior U.S. Senator Ted Cruz| ಜೂನಿಯರ್ ಯುಎಸ್ ಸೆನೆಟರ್ ಟೆಡ್ ಕ್ರೂಜ್ </gallery> sg7rfm2ny0fxa2le8y88rwn6hj5onh8 362645 362644 2026-07-10T08:24:45Z Texan North Public Work Translators 214 10011 362645 wikitext text/x-wiki   ನ್ ಪಾರ್ಟಿ ಆಫ್ ಟೆಕ್ಸಾಸ್ ('''Republican Party of Texas''') ಯುನೈಟೆಡ್ ಸ್ಟೇಟ್ಸ್ ಡ್ ರಿಪಬ್ಲಿಕನ್ ಪಾರ್ಟಿದ ಟೆಕ್ಸಾಸ್ ಅನುಬಂಧ ಪಕ್ಷದ ಕೇಂದ್ರ ಕಚೇರಿ ಆಸ್ಟಿನ್, ಟೆಕ್ಸಾಸ್ ಡ್ ಉಂಡು, ಬೊಕ್ಕ ಕಾನೂನುಬದ್ಧವಾದ್ ಟೆಕ್ಸಾಸ್ ಕಾನೂನುದ ಅಡಿಟ್ ಒಂಜಿ ರಾಜಕೀಯ ಕ್ರಿಯಾ ಸಮಿತಿ ಪಂಡ್ದ್ ಪರಿಗಣಿಸಲ್ಪಡುಂಡು ಉಂದು ರಾಜ್ಯದ ಆಡಳಿತ ಪಕ್ಷ, ರಾಜ್ಯವ್ಯಾಪಿ ಚುನಾಯಿತ ಕಚೇರಿಲೆನ್, ಶಾಸಕಾಂಗದ ರಡ್ಡ್ ಸದನೊಲೆನ್ ಬೊಕ್ಕ ಬಹುಪಾಲು ಕಾಂಗ್ರೆಸ್ ಸ್ಥಾನೊಲೆನ್ ನಿಯಂತ್ರಣ ಮಲ್ಪುಂಡು. <ref>{{Cite web|last=Kofman|first=Ava|title=How Two Billionaire Preachers Remade Texas Politics|url=https://www.nytimes.com/2024/10/02/magazine/texas-politics-billionaire-preachers.html|website=The New York Times|date=October 2, 2024|accessdate=March 6, 2025}}</ref> [[ಫೈಲ್:Picture--AbrahamGeorge--Jan2025.jpg|alt=Abraham George|thumb]] <gallery widths="200" heights="200"> ಫೈಲ್:John_Cornyn_official_senate_portrait.jpg|alt=Senior U.S. Senator John Cornyn| ಹಿರಿಯ ಅಮೇರಿಕದ ಸೆನೆಟರ್ ಜಾನ್ ಕಾರ್ನಿನ್ ಫೈಲ್:Ted_Cruz_official_116th_portrait_(cropped).jpg|alt=Junior U.S. Senator Ted Cruz| ಜೂನಿಯರ್ ಯುಎಸ್ ಸೆನೆಟರ್ ಟೆಡ್ ಕ್ರೂಜ್ </gallery> hlvg8sbin4777p2jfk4xaqnhiq99qyg 362646 362645 2026-07-10T08:28:00Z Texan North Public Work Translators 214 10011 362646 wikitext text/x-wiki   ನ್ ಪಾರ್ಟಿ ಆಫ್ ಟೆಕ್ಸಾಸ್ ('''Republican Party of Texas''') ಯುನೈಟೆಡ್ ಸ್ಟೇಟ್ಸ್ ಡ್ ರಿಪಬ್ಲಿಕನ್ ಪಾರ್ಟಿದ ಟೆಕ್ಸಾಸ್ ಅನುಬಂಧ ಪಕ್ಷದ ಕೇಂದ್ರ ಕಚೇರಿ ಆಸ್ಟಿನ್, ಟೆಕ್ಸಾಸ್ ಡ್ ಉಂಡು, ಬೊಕ್ಕ ಕಾನೂನುಬದ್ಧವಾದ್ ಟೆಕ್ಸಾಸ್ ಕಾನೂನುದ ಅಡಿಟ್ ಒಂಜಿ ರಾಜಕೀಯ ಕ್ರಿಯಾ ಸಮಿತಿ ಪಂಡ್ದ್ ಪರಿಗಣಿಸಲ್ಪಡುಂಡು ಉಂದು ರಾಜ್ಯದ ಆಡಳಿತ ಪಕ್ಷ, ರಾಜ್ಯವ್ಯಾಪಿ ಚುನಾಯಿತ ಕಚೇರಿಲೆನ್, ಶಾಸಕಾಂಗದ ರಡ್ಡ್ ಸದನೊಲೆನ್ ಬೊಕ್ಕ ಬಹುಪಾಲು ಕಾಂಗ್ರೆಸ್ ಸ್ಥಾನೊಲೆನ್ ನಿಯಂತ್ರಣ ಮಲ್ಪುಂಡು. <ref>{{Cite web|last=Kofman|first=Ava|title=How Two Billionaire Preachers Remade Texas Politics|url=https://www.nytimes.com/2024/10/02/magazine/texas-politics-billionaire-preachers.html|website=The New York Times|date=October 2, 2024|accessdate=March 6, 2025}}</ref><gallery widths="200" heights="200"> ಫೈಲ್:John_Cornyn_official_senate_portrait.jpg|alt=Senior U.S. Senator John Cornyn| ಹಿರಿಯ ಅಮೇರಿಕದ ಸೆನೆಟರ್ ಜಾನ್ ಕಾರ್ನಿನ್ ಫೈಲ್:Ted_Cruz_official_116th_portrait_(cropped).jpg|alt=Junior U.S. Senator Ted Cruz| ಜೂನಿಯರ್ ಯುಎಸ್ ಸೆನೆಟರ್ ಟೆಡ್ ಕ್ರೂಜ್ </gallery> 43yjx9f12knfbtqu0wfriy4h4xd7ya6 362647 362646 2026-07-10T08:31:22Z Texan North Public Work Translators 214 10011 362647 wikitext text/x-wiki   ನ್ ಪಾರ್ಟಿ ಆಫ್ ಟೆಕ್ಸಾಸ್ ('''Republican Party of Texas''') ಯುನೈಟೆಡ್ ಸ್ಟೇಟ್ಸ್ ಡ್ ರಿಪಬ್ಲಿಕನ್ ಪಾರ್ಟಿದ ಟೆಕ್ಸಾಸ್ ಅನುಬಂಧ ಪಕ್ಷದ ಕೇಂದ್ರ ಕಚೇರಿ ಆಸ್ಟಿನ್, ಟೆಕ್ಸಾಸ್ ಡ್ ಉಂಡು, ಬೊಕ್ಕ ಕಾನೂನುಬದ್ಧವಾದ್ ಟೆಕ್ಸಾಸ್ ಕಾನೂನುದ ಅಡಿಟ್ ಒಂಜಿ ರಾಜಕೀಯ ಕ್ರಿಯಾ ಸಮಿತಿ ಪಂಡ್ದ್ ಪರಿಗಣಿಸಲ್ಪಡುಂಡು ಉಂದು ರಾಜ್ಯದ ಆಡಳಿತ ಪಕ್ಷ, ರಾಜ್ಯವ್ಯಾಪಿ ಚುನಾಯಿತ ಕಚೇರಿಲೆನ್, ಶಾಸಕಾಂಗದ ರಡ್ಡ್ ಸದನೊಲೆನ್ ಬೊಕ್ಕ ಬಹುಪಾಲು ಕಾಂಗ್ರೆಸ್ ಸ್ಥಾನೊಲೆನ್ ನಿಯಂತ್ರಣ ಮಲ್ಪುಂಡು. <ref>{{Cite web|last=Kofman|first=Ava|title=How Two Billionaire Preachers Remade Texas Politics|url=https://www.nytimes.com/2024/10/02/magazine/texas-politics-billionaire-preachers.html|website=The New York Times|date=October 2, 2024|accessdate=March 6, 2025}}</ref> [[ಫೈಲ್:Picture--AbrahamGeorge--Jan2025.jpg|alt=Abraham George|thumb|అబ్రహం జార్జ్ భారతదేశంలో జన్మించిన అమెరికన్ వ్యాపారవేత్త మరియు రాజకీయ నాయకుడు; ఆయన మే 2024 నుండి జూన్ 2026 వరకు టెక్సాస్ రిపబ్లికన్ పార్టీ చైర్మన్‌గా పనిచేశారు.]] <gallery widths="200" heights="200"> ಫೈಲ್:John_Cornyn_official_senate_portrait.jpg|alt=Senior U.S. Senator John Cornyn| ಹಿರಿಯ ಅಮೇರಿಕದ ಸೆನೆಟರ್ ಜಾನ್ ಕಾರ್ನಿನ್ ಫೈಲ್:Ted_Cruz_official_116th_portrait_(cropped).jpg|alt=Junior U.S. Senator Ted Cruz| ಜೂನಿಯರ್ ಯುಎಸ್ ಸೆನೆಟರ್ ಟೆಡ್ ಕ್ರೂಜ್ </gallery> if5j0k001jhbv7l0s3qe2a8i8rfv7bi 362648 362647 2026-07-10T08:32:49Z Texan North Public Work Translators 214 10011 362648 wikitext text/x-wiki   ನ್ ಪಾರ್ಟಿ ಆಫ್ ಟೆಕ್ಸಾಸ್ ('''Republican Party of Texas''') ಯುನೈಟೆಡ್ ಸ್ಟೇಟ್ಸ್ ಡ್ ರಿಪಬ್ಲಿಕನ್ ಪಾರ್ಟಿದ ಟೆಕ್ಸಾಸ್ ಅನುಬಂಧ ಪಕ್ಷದ ಕೇಂದ್ರ ಕಚೇರಿ ಆಸ್ಟಿನ್, ಟೆಕ್ಸಾಸ್ ಡ್ ಉಂಡು, ಬೊಕ್ಕ ಕಾನೂನುಬದ್ಧವಾದ್ ಟೆಕ್ಸಾಸ್ ಕಾನೂನುದ ಅಡಿಟ್ ಒಂಜಿ ರಾಜಕೀಯ ಕ್ರಿಯಾ ಸಮಿತಿ ಪಂಡ್ದ್ ಪರಿಗಣಿಸಲ್ಪಡುಂಡು ಉಂದು ರಾಜ್ಯದ ಆಡಳಿತ ಪಕ್ಷ, ರಾಜ್ಯವ್ಯಾಪಿ ಚುನಾಯಿತ ಕಚೇರಿಲೆನ್, ಶಾಸಕಾಂಗದ ರಡ್ಡ್ ಸದನೊಲೆನ್ ಬೊಕ್ಕ ಬಹುಪಾಲು ಕಾಂಗ್ರೆಸ್ ಸ್ಥಾನೊಲೆನ್ ನಿಯಂತ್ರಣ ಮಲ್ಪುಂಡು. <ref>{{Cite web|last=Kofman|first=Ava|title=How Two Billionaire Preachers Remade Texas Politics|url=https://www.nytimes.com/2024/10/02/magazine/texas-politics-billionaire-preachers.html|website=The New York Times|date=October 2, 2024|accessdate=March 6, 2025}}</ref> https://www.texasgop.org [[ಫೈಲ್:Picture--AbrahamGeorge--Jan2025.jpg|alt=Abraham George|thumb|అబ్రహం జార్జ్ భారతదేశంలో జన్మించిన అమెరికన్ వ్యాపారవేత్త మరియు రాజకీయ నాయకుడు; ఆయన మే 2024 నుండి జూన్ 2026 వరకు టెక్సాస్ రిపబ్లికన్ పార్టీ చైర్మన్‌గా పనిచేశారు.]] <gallery widths="200" heights="200"> ಫೈಲ್:John_Cornyn_official_senate_portrait.jpg|alt=Senior U.S. Senator John Cornyn| ಹಿರಿಯ ಅಮೇರಿಕದ ಸೆನೆಟರ್ ಜಾನ್ ಕಾರ್ನಿನ್ ಫೈಲ್:Ted_Cruz_official_116th_portrait_(cropped).jpg|alt=Junior U.S. Senator Ted Cruz| ಜೂನಿಯರ್ ಯುಎಸ್ ಸೆನೆಟರ್ ಟೆಡ್ ಕ್ರೂಜ್ </gallery> bz2wa4acf3ntcjl6unhgsw2715tfqx9 362649 362648 2026-07-10T08:33:12Z Texan North Public Work Translators 214 10011 362649 wikitext text/x-wiki   ನ್ ಪಾರ್ಟಿ ಆಫ್ ಟೆಕ್ಸಾಸ್ ('''Republican Party of Texas''') ಯುನೈಟೆಡ್ ಸ್ಟೇಟ್ಸ್ ಡ್ ರಿಪಬ್ಲಿಕನ್ ಪಾರ್ಟಿದ ಟೆಕ್ಸಾಸ್ ಅನುಬಂಧ ಪಕ್ಷದ ಕೇಂದ್ರ ಕಚೇರಿ ಆಸ್ಟಿನ್, ಟೆಕ್ಸಾಸ್ ಡ್ ಉಂಡು, ಬೊಕ್ಕ ಕಾನೂನುಬದ್ಧವಾದ್ ಟೆಕ್ಸಾಸ್ ಕಾನೂನುದ ಅಡಿಟ್ ಒಂಜಿ ರಾಜಕೀಯ ಕ್ರಿಯಾ ಸಮಿತಿ ಪಂಡ್ದ್ ಪರಿಗಣಿಸಲ್ಪಡುಂಡು ಉಂದು ರಾಜ್ಯದ ಆಡಳಿತ ಪಕ್ಷ, ರಾಜ್ಯವ್ಯಾಪಿ ಚುನಾಯಿತ ಕಚೇರಿಲೆನ್, ಶಾಸಕಾಂಗದ ರಡ್ಡ್ ಸದನೊಲೆನ್ ಬೊಕ್ಕ ಬಹುಪಾಲು ಕಾಂಗ್ರೆಸ್ ಸ್ಥಾನೊಲೆನ್ ನಿಯಂತ್ರಣ ಮಲ್ಪುಂಡು. <ref>{{Cite web|last=Kofman|first=Ava|title=How Two Billionaire Preachers Remade Texas Politics|url=https://www.nytimes.com/2024/10/02/magazine/texas-politics-billionaire-preachers.html|website=The New York Times|date=October 2, 2024|accessdate=March 6, 2025}}</ref> [https://www.texasgop.org '''texasgop.org'''] [[ಫೈಲ್:Picture--AbrahamGeorge--Jan2025.jpg|alt=Abraham George|thumb|అబ్రహం జార్జ్ భారతదేశంలో జన్మించిన అమెరికన్ వ్యాపారవేత్త మరియు రాజకీయ నాయకుడు; ఆయన మే 2024 నుండి జూన్ 2026 వరకు టెక్సాస్ రిపబ్లికన్ పార్టీ చైర్మన్‌గా పనిచేశారు.]] <gallery widths="200" heights="200"> ಫೈಲ್:John_Cornyn_official_senate_portrait.jpg|alt=Senior U.S. Senator John Cornyn| ಹಿರಿಯ ಅಮೇರಿಕದ ಸೆನೆಟರ್ ಜಾನ್ ಕಾರ್ನಿನ್ ಫೈಲ್:Ted_Cruz_official_116th_portrait_(cropped).jpg|alt=Junior U.S. Senator Ted Cruz| ಜೂನಿಯರ್ ಯುಎಸ್ ಸೆನೆಟರ್ ಟೆಡ್ ಕ್ರೂಜ್ </gallery> 2ty5hr03p3vfo39y1j23xxft7usi1up 362650 362649 2026-07-10T08:34:03Z Texan North Public Work Translators 214 10011 362650 wikitext text/x-wiki   ನ್ ಪಾರ್ಟಿ ಆಫ್ ಟೆಕ್ಸಾಸ್ ('''Republican Party of Texas''') ಯುನೈಟೆಡ್ ಸ್ಟೇಟ್ಸ್ ಡ್ ರಿಪಬ್ಲಿಕನ್ ಪಾರ್ಟಿದ ಟೆಕ್ಸಾಸ್ ಅನುಬಂಧ ಪಕ್ಷದ ಕೇಂದ್ರ ಕಚೇರಿ ಆಸ್ಟಿನ್, ಟೆಕ್ಸಾಸ್ ಡ್ ಉಂಡು, ಬೊಕ್ಕ ಕಾನೂನುಬದ್ಧವಾದ್ ಟೆಕ್ಸಾಸ್ ಕಾನೂನುದ ಅಡಿಟ್ ಒಂಜಿ ರಾಜಕೀಯ ಕ್ರಿಯಾ ಸಮಿತಿ ಪಂಡ್ದ್ ಪರಿಗಣಿಸಲ್ಪಡುಂಡು ಉಂದು ರಾಜ್ಯದ ಆಡಳಿತ ಪಕ್ಷ, ರಾಜ್ಯವ್ಯಾಪಿ ಚುನಾಯಿತ ಕಚೇರಿಲೆನ್, ಶಾಸಕಾಂಗದ ರಡ್ಡ್ ಸದನೊಲೆನ್ ಬೊಕ್ಕ ಬಹುಪಾಲು ಕಾಂಗ್ರೆಸ್ ಸ್ಥಾನೊಲೆನ್ ನಿಯಂತ್ರಣ ಮಲ್ಪುಂಡು. <ref>{{Cite web|last=Kofman|first=Ava|title=How Two Billionaire Preachers Remade Texas Politics|url=https://www.nytimes.com/2024/10/02/magazine/texas-politics-billionaire-preachers.html|website=The New York Times|date=October 2, 2024|accessdate=March 6, 2025}}</ref> [https://www.texasgop.org '''texasgop.org'''] [[ಫೈಲ್:Picture--AbrahamGeorge--Jan2025.jpg|alt=Abraham George|thumb|ಅಬ್ರಹಾಂ ಜಾರ್ಜ್ ಒರಿ ಭಾರತೀಯ ಮೂಲದ ಅಮೆರಿಕದ ಉದ್ಯಮಿ ಬೊಕ್ಕ ರಾಜಕಾರಣಿ; ಮೇ ೨೦೨೪ ಡ್ದ್ ಜೂನ್ ೨೦೨೬ ಮುಟ್ಟ ಟೆಕ್ಸಾಸ್ ರಿಪಬ್ಲಿಕನ್ ಪಾರ್ಟಿದ ಅಧ್ಯಕ್ಷೆರಾದ್ ಸೇವೆ ಮಲ್ತೆರ್.]] <gallery widths="200" heights="200"> ಫೈಲ್:John_Cornyn_official_senate_portrait.jpg|alt=Senior U.S. Senator John Cornyn| ಹಿರಿಯ ಅಮೇರಿಕದ ಸೆನೆಟರ್ ಜಾನ್ ಕಾರ್ನಿನ್ ಫೈಲ್:Ted_Cruz_official_116th_portrait_(cropped).jpg|alt=Junior U.S. Senator Ted Cruz| ಜೂನಿಯರ್ ಯುಎಸ್ ಸೆನೆಟರ್ ಟೆಡ್ ಕ್ರೂಜ್ </gallery> n13himiuvmex13eeylcusuokfheu7na ಅಲುಪೆರೆನ ಆಡಳಿತ ವ್ಯವಸ್ಥೆ ತುಳುನಾಡುದ ಸಾಮಾಜಿಕ ಐತಿಹಾಸ 0 27480 362651 2026-07-10T10:54:13Z Durga Prasad Nayakk 9999 added alupa history 362651 wikitext text/x-wiki == ಪರಿಚಯ == ಅಲುಪೆರ್ ಕಲ್ಡ್ ತುಳುನಾಡ್ (ತುಳುವ ರಾಜ್ಯ) ಪಡ್ಡಾಯಿಡ್ (ಪಶ್ಚಿಮ) ಅರಬ್ಬಿ ಸಮುದ್ರ ಬೊಕ್ಕ ಮೂಡಾಯಿಡ್ (ಪೂರ್ವ) ಪಶ್ಚಿಮ ಘಟ್ಟ (ಸಹ್ಯಾದ್ರಿ) ಬೆಟ್ಟೊಲೆಡ್ದ್ ಸುತ್ತುವರಿದ್ ಇಪ್ಪುನ ಸ್ವಭಾವದ ನಾಡ್ ಆಂಡ್. ಈ ಕರಾವಳಿ ಆಯಿನ ತುಳುನಾಡುದ ಇತಿಹಾಸೊನು ಸುಮಾರು ೧,೨೦೦ ವರ್ಸೊಡ್ದ್ ಜಾಸ್ತಿ ಕಾಲ ಆಳ್ವಿಕೆ ಮಲ್ತಿನ ಅಲುಪ ವಂಶೊದ ಸ್ಥಿತಿಸ್ಥಾಪಕತ್ವೊಡು ವ್ಯಾಖ್ಯಾನಿಸವೊಲಿ.<ref>Bhatt, P. Gururaja. ''Studies in Tuluva History and Culture''.</ref><ref>Prabhu, Govindraya S.; Pai, M. Nithyananda. ''The Alupas: Coinage and History''.</ref> ಪ್ರಮುಖ ಡೆಕ್ಕನ್ ಸಾಮ್ರಾಜ್ಯೊಲು ಏರುಪೆರು ಅಪುನಾಚಿತಿ ಸಂದರ್ಭಡು ಅಲುಪಾಲು ಒಂಜಿ ಸ್ಥಿತಿಸ್ಥಾಪಕ ಪ್ರಾದೇಶಿಕ ಗುರುತುನ್ ನಡಪಾಯೆರ್. ಕರಾವಳಿದ ರಾಜಕೀಯ ಬೊಕ್ಕ ಸಾಂಸ್ಕೃತಿಕ ಜೀವನದ ಕೇಂದ್ರ ಆಕ್ಸವಾದ್ ಸೇವೆ ಮಲ್ತೆರ್. ಅಕ್ಲೆನ ಇತಿಹಾಸೊಡು ಸಾಮಾನ್ಯ ಯುಗದ ಸುರುತ ಶತಮಾನೊಲೆಡ್ ಅಕ್ಲೆನ ನಿಗೂಢ ಮೂಲೊಡ್ದ್ ಸುರು ಆದ್, ಕದಂಬೆರ್, ಚಾಲುಕ್ಯೆರ್, ಹೊಯ್ಸಳೆರ್ ಬೊಕ್ಕ ವಿಜಯನಗರ ಸಾಮ್ರಾಜ್ಯೊಡೊಟ್ಟುಗು ಬದಲಾವಣೆ ಆಯಿನ ಮೈತ್ರಿಲೆನ್ ಬೊಕ್ಕ ಸ್ಥಳೀಯ ಸಾಮಂತ ರಾಜ್ಯೊಲೆನ ಸಂಕೀರ್ಣ ಜಾಲೊನು ಸೇರಾವುಂಡು.<ref>Bhatt, P. Gururaja. ''Studies in Tuluva History and Culture''.</ref><ref>Saletore, B. A. ''Ancient Karnataka''.</ref> ಅಲುಪೆರೆನ ಇತಿಹಾಸ ಒಂಜಿ ಎಲ್ಯ ರಾಜಮನೆತನಡ್ದ್ ಸುರು ಆದ್, ಬೊಕ್ಕ ಮಲ್ಲ ಮಟ್ಟ್‌ಗ್ ಬುಳೆವಣಿಗೆ ಆಂಡ್. ಅಕ್ಲೆನ ರಾಜ್ಯ ಪಡ್ಡಾಯಿಡ್ ಅರಬ್ಬಿ ಸಮುದ್ರಡ್ದ್ ಮೂಡಾಯಿಡ್ ಸಹ್ಯಾದ್ರಿ ಘಟ್ಟದ ಮುಟ್ಟ ಪರಡ್‌ದ್ ಇತ್ತ್ಂಡ್. ಆಲುಪನಕುಲು ಕದಂಬೆರ್, ಚಾಲುಕ್ಯೆರ್, ಹೊಯ್ಸಳೆರ್ ಬೊಕ್ಕ ವಿಜಯನಗರದ ಅರಸುಲೆನೊಟ್ಟುಗು ಬದಲಾಪುನ ಒಪ್ಪಂದೊಲು ಮಲ್ತಾದ್, ಪ್ರಾದೇಶಿಕ ಸಾಮಂತ ರಾಜ್ಯೊಲೆನ ಜಾಲೊಡು ಪ್ರಮುಖ ಸ್ಥಾನೊನು ಉಳಿಸಾಯೆರ್.<ref>Prabhu, Govindraya S.; Pai, M. Nithyananda. ''The Alupas: Coinage and History''.</ref> == ಮೂಲ ಬೊಕ್ಕ ಉದಿಪು == ಅಲುಪ (ಅತ್ತಂಡ್ ಆಳ್ವ) ರಾಜವಂಶದ ಮೂಲ ಪೌರಾಣಿಕ ಬೊಕ್ಕ ಪುರಾತತ್ತ್ವ ಶಾಸ್ತ್ರದ ತುಂಡುಲೆನ ಮಿಶ್ರಣ ಆಂಡ್. ಈ ಭೂಮಿದ ಸೃಷ್ಟಿನ್ ಪರಶುರಾಮ ದೇವೆರ್ ಸಮುದ್ರೊಡ್ದ್ ಮರುಪಡೆಯೆರ್ ಪಂದ್ ದಂತಕಥೆ ಉಂಡು. ಆಂಡ ಐತಿಹಾಸಿಕ ಸಾಕ್ಷ್ಯೊಲು ತೋಜಾವುನಂಚಿನ ಅಲುಪೊಲು ಕ್ರಿ.ಶ. ೨ನೇ ಶತಮಾನೊಡು ಸ್ಥಳೀಯ ಶಕ್ತಿಯಾದ್ ಉದಿತ್ ಬತ್ತೆರ್.<ref>Bhatt, P. Gururaja. ''Studies in Tuluva History and Culture''.</ref> ಭೂಗೋಳಶಾಸ್ತ್ರಜ್ಞೆ ಟಾಲೆಮಿ (Ptolemy) ಈ ಪ್ರದೇಶೊನು '''ಒಲೊಖೊಯಿರಾ''' (''Olokhoira'') ಪಂದ್ ಗುರುತಿಸಾದೆರ್. ಉಂದು ಬಹುಶಃ '''ಅಲ್ವಾಖೆಡಾ''' ("ಆಳ್ವರೆನ ನಾಡ್") ಅತ್ತಂಡ್ '''ಅಲಕಾ-ಊರು''' ಪನ್ಪಿನ ಪುದರ್‌ದ ಬದಲಾಯಿನ ರೂಪೊ ಆದಿಪ್ಪುಂಡು.<ref>Saletore, B. A. ''Ancient Karnataka''.</ref> ವಿದ್ವಾಂಸೆರ್ ಬಿ. ಎ. ಸಾಲೆತೊರೆ ನಾಗೆರೆನ ಮೂಲೊಗು ವಾದ ಮಲ್ತೆರ್. ಪಿರಾಕ್ದ ಶಾಸನೊಲೆಡ್ ಮುಚ್ಚುನ ಸರ್ಪದ ಲಕ್ಷಣೊಲೆನ್ ಬೊಕ್ಕ ಅಯಿಕ್ಲೆನ "ಅತಿ-ಸೈವ" ಪ್ರವೃತ್ತಿಲೆನ್ ಗಮನಿಸಯೆರ್. ಬೇತೆ ಕೆಲವೆರ್ ಅವು ಸ್ಥಳೀಯ ಬಂಟ್ ಸಮುದಾಯೊಡ್ದ್ ಬತ್ತಿನವು ಪಂದ್ ನಂಬುವೆರ್. ತುಳು ಪಾತೆರುನ ಯೋಧೆರ್ ಒಂಜಿ ಮಾತೃವಂಶದ ಪಂಡಾ (ಅಳಿಯ ಕಟ್) ಆನುವಂಶಿಕ ವ್ಯವಸ್ಥೆನ್ ಅನುಸರಿಸೊಂದಿತ್ತೆರ್.<ref>Saletore, B. A. ''Ancient Karnataka''.</ref><ref>Bhatt, P. Gururaja. ''Studies in Tuluva History and Culture''.</ref> ಅಲುಪ ರಾಜವಂಶದ ಬಗ್ಗೆ ಸುರುತ ಸ್ಪಷ್ಟ ಎಪಿಗ್ರಾಫಿಕ್ ಉಲ್ಲೇಖೊನು ಹಲ್ಮಿದಿ ಶಾಸನೊಡು ತೂವೊಲಿ (ಸುಮಾರ್ ಕ್ರಿ.ಶ. ೪೫೦). ಉಂದೆಟ್ ಪಶುಪತಿನ್ ಕಡಂಬೆರೆನ ಸಮಕಾಲೀನ ಪಂದ್ ಲೆಪ್ಪುವೆರ್.<ref>Bhatt, P. Gururaja. ''Studies in Tuluva History and Culture''.</ref> ೭ನೇ ಶತಮಾನೊಗು ಬನ್ನಗ, ಅಲುಪಾಲು ಅಸ್ಪಷ್ಟ ಸ್ಥಳೀಯ ಮುಖ್ಯಸ್ಥೆರೆಡ್ದ್ ಒಂಜಿ ಮಾನ್ಯತೆ ಪಡೆಯಿನ ರಾಜವಂಶೊಗು ಪರಿವರ್ತನೆ ಆಯೆರ್. ಅಕ್ಲೆನ ಶಕ್ತಿ ನೆಲೆ ಕೃಷಿ ಸಂಪನ್ಮೂಲೊಲೆನ್ ನಿರ್ವಹಣೆ ಮಲ್ಪುನ ಬೊಕ್ಕ ಮಂಗಳೂರು, ಉಡುಪಿ ಬೊಕ್ಕ ಬಾರ್ಕೂರ್ ರಾಜಧಾನಿಲೆನ ನಡುಟು ಬೆಳೆಯೊಂದಿತ್ತಿನ ಕಡಲ ವ್ಯಾಪಾರೊಗು ಬದಲಾತ್ಂಡ್.<ref>Prabhu, Govindraya S.; Pai, M. Nithyananda. ''The Alupas: Coinage and History''.</ref> == ರಾಜಕೀಯ ಮೈತ್ರಿಲು ಬೊಕ್ಕ ಬದಲಾವಣೆದ ಪ್ರಾಬಲ್ಯ == ಅಲುಪೆರೆನ ಇತಿಹಾಸೊದ ಬಹುಪಾಲು ಭಾಗೊಡು ಅಲುಪೆರ್ "ವಾಸ್ತವಿಕವಾದ್ ಸ್ವತಂತ್ರ" ಆಡಳಿತೆರ್ ಆದಿತ್ತೆರ್. ಅಕ್ಲೆ ಕರ್ನಾಟಕದ "ನಾಲ್ ಮಲ್ಲ" ರಾಜವಂಶೊಲೆನ ವಾರಸುದಾರಿಕೆಡ್ ಉನ್ನತ ಸ್ಥಾನೊದ ಸಾಮಂತೆರೆನ ರೂಪೊಡು ವರ್ತನೆ ಮಲ್ತೆರ್.<ref>...</ref> === ಕಡಂಬ ಕಾಲ (ಸುಮಾರ್ ೫ನೇ – ೬ನೇ ಶತಮಾನ) === ಬನವಾಸಿದ ಕಡಂಬೆರೆಗ್ ಅಧೀನವಾದ್ ಅಲುಪೆರೆ ಸುರು ಆಯೆರ್. ಪಶುಪತಿ ಇಂಚಿನ ಆಡಳಿತಗಾರೆರ್ ಕಡಂಬೆರೆನ ಮೇಲ್ವಿಚಾರಣೆಡ್ ಭೂ ಅನುದಾನೊನು ನಡಪಾವೊಂದಿತ್ತೆರ್.<ref>...</ref> === ಚಾಲುಕ್ಯ ಸಂಪರ್ಕ (ಸುಮಾರ್ ೭ನೇ – ೮ನೇ ಶತಮಾನ) === ಬಾದಾಮಿ ಚಾಲುಕ್ಯೆರೆನ ಅಧೀನೊಡು ಅಲುಪೆರ್ ಪ್ರತಿಷ್ಠಿತ ಮಿತ್ರರಾಷ್ಟ್ರದ ಸ್ಥಾನಮಾನೊಗು ಬತ್ತೆರ್. ಅಲುವರಸ I (ಗುಣಸಾಗರ) ತುಳುನಾಡು ಬೊಕ್ಕ ಬನವಾಸಿ-ಮಂಡಲೊನು ಆಳ್ವಿಕೆ ಮಲ್ತೆರ್. ಅರೆನ ಉತ್ತರಾಧಿಕಾರಿ ಚಿತ್ರವಾಹನ I ಚಾಲುಕ್ಯ ರಾಜಕುಮಾರಿ ಕುಂಕುಮಾದೇವಿನ್ ಮದಿಮೆ ಆದ್ ರಾಜಕೀಯ ಸಂಬಂಧೊನು ಗಟ್ಟಿ ಮಲ್ತೆರ್.<ref>...</ref> === ರಾಷ್ಟ್ರಕೂಟೆರೆನೊಟ್ಟುಗು ಸಂಘರ್ಷ === ರಾಷ್ಟ್ರಕೂಟೊಲು ವಿಸ್ತಾರ ಆನಗ ಅಲುಪೆರೆನ ಸಂಬಂಧೊಲು ಹಾಳಾವೊಂದಿತ್ತೆ. ಚಕ್ರವರ್ತಿ ಗೋವಿಂದ III ಕ್ರಿ.ಶ. ೭೯೪ಡ್ ಪೆರ್ಗುಂಜಿ ಕೋಟೆಡ್ ಚಿತ್ರವಾಹನ II ನ್ ಸೋಲಿಸಯೆರ್. ಉಂದೆಡ್ದ್ ಅಲುಪೆರೆನ ಸ್ವಾಯತ್ತತೆ ತಾತ್ಕಾಲಿಕವಾದ್ ಕಮ್ಮಿ ಆಂಡ್ ಪಂದ್ ವರದಿಲು ಲೆಪ್ಪುಂಡು.<ref>...</ref> === ಹೊಯ್ಸಲ ಬೊಕ್ಕ ವಿಜಯನಗರ ಯುಗ (ಸುಮಾರ್ ೧೨ನೇ – ೧೫ನೇ ಶತಮಾನೊಲು) === ೧೨ನೇ ಶತಮಾನೊಡು ವಿಷ್ಣುವರ್ಧನೆ ಗೆಂದಿನ ಅಲುಪೊಲು ನಿರ್ಣಾಯಕ ವೈವಾಹಿಕ ಬಂಧೊನು ರಚನೆ ಮಲ್ತೆರ್. ರಾಜಕುಮಾರಿ ಚಿಕ್ಕೈ-ತಾಯಿ ಹೊಯ್ಸಳ ಯೋಧ ಬಲ್ಲಾಳ III ನ ಹಿರಿಯ ರಾಣಿ ಆಯೆರ್. ಈ ಮೈತ್ರಿ ತುಳುನಾಡ್ ವಿಜಯನಗರ ಸಾಮ್ರಾಜ್ಯೊಗು ಒಗ್ಗಟ್ಟಾವುನ ಸಾದಿನ್ ಸುಗಮ ಮಲ್ತ್ಂಡ್. ಅಲ್ಪ ಅಲುಪ ಅರಸುಲು ಕೇಂದ್ರ ಸ್ಥಾನೊಡು ನೇಮಕ ಆಯಿನ ಒಡೆಯೆರ್ (ರಾಯಪಾಲಕೆರೆನ) ಅಧೀನೊಡು ಛಾಯೆದ ಆಡಳಿತೆರ್ ಆಯೆರ್.<ref>...</ref> == ಆಡಳಿತ == ಅಲುಪೆರೆನ ಆಡಳಿತ ವ್ಯವಸ್ಥೆ ತುಳುನಾಡುದ ಸಾಮಾಜಿಕ ಬೊಕ್ಕ ಐತಿಹಾಸಿಕ ಮರಿಯಾದೆಲೆಗ್ ಹೊಂದಿಕೆ ಆಯಿನ ಒಂಜಿ ವ್ಯವಸ್ಥೆ ಆಂಡ್. ಅಲುಪೆರ್ ಬೊಕ್ಕ ಅಕ್ಲೆನ ಉತ್ತರಾಧಿಕಾರಿಲು ಸಾಮಾನ್ಯವಾದ್ ಪೂರ್ವ ಮರಿಯಡೆ (ಪ್ರಾಚೀನ ಆಚರಣೆ) ನ್ ಗೌರವಿಸೊಂದಿತ್ತೆರ್.<ref>...</ref> === ಕಾನೂನು ಬೊಕ್ಕ ನ್ಯಾಯ ವ್ಯವಸ್ಥೆ === ಅಲುಪ ಆಡಳಿತದ ಕಾನೂನು ಚೌಕಟ್ಟ್ '''೧೬ ಕಟ್ಟಲೆಲು''' (ನಿಯಮೊಲು) ಬೊಕ್ಕ '''೧೪ ಬಲಿಸ್''' (ವಂಶಾವಳಿಲು) ನ್ ಅವಲಂಬಿಸಾಯಿನವು. ಈ ಸಾಂಪ್ರದಾಯಿಕ ಸಂಹಿತೆಲು ಆನುವಂಶಿಕತೆ, ಪವಿತ್ರ ಜಾಗೆಲೆಡ್ ನಡತನ ಬೊಕ್ಕ ಸಾಮಾಜಿಕ ನಿಯಮೊಲೆನ್ ನಿಯಂತ್ರಣ ಮಲ್ಪುಂಡು.<ref>...</ref> ನ್ಯಾಯ ತೀರ್ಮಾನೊಲು ಸಾಮಾನ್ಯವಾದ್ ಸಾಮೂಹಿಕವಾದ್ ಇತ್ತ್ಂಡ್. ಉರು, ಪಂಥ (ಸಾಮಾನ್ಯ ಸಭೆ) ಬೊಕ್ಕ ಮಹಾಜನೆರ್ (ಬ್ರಾಹ್ಮಣ ಸಭೆಲು) ಇಂಚಿನ ಗ್ರಾಮ ಸಭೆಲು ನ್ಯಾಯ ಬೊಕ್ಕ ಆಡಳಿತೊಡು ಪ್ರಮುಖ ಪಾತ್ರ ವಹಿಸೊಂದಿತ್ತೆರ್.<ref>...</ref> === ತೆರಿಗೆ ಬೊಕ್ಕ ಆರ್ಥಿಕತೆ === ಆದಾಯೊನು ಗಡ್ಯಾನೊಲೆಡ್ (ಚಿನ್ನದ ನಾಣ್ಯೊಲೆಡ್) ಅಳೆಯೊಂದಿತ್ತೆರ್. ಅಲುಪ ನಾಣ್ಯೊಲು, ವಿಶೇಷವಾದ್ ಪಗೋಡೊಲು ಬೊಕ್ಕ ಫನಮ್‌ಲು, ರಾಜಮನೆತನೊದ ವಿಶಿಷ್ಟ ಡಬಲ್-ಫಿಶ್ ಚಿಹ್ನೆ (ಮೀನಾ ಲಂಚನ) ನ್ ತೋಜಾವುಂಡು. ಉಂದು ಪಾಂಡ್ಯ ರಾಜವಂಶೊಡ್ದ್ ಅಕ್ಲೆನ ವಂಶಾವಳಿ ಬೊಕ್ಕ ಕಡಲ ಗುರುತುನ್ ಸೂಚಿಸವುಂಡು.<ref>...</ref> === ಸೈನ್ಯ ಸಂಘಟನೆ === ಪ್ರತಿಯೊಂಜಿ ಸ್ಥಳೀಯ ಮುಖ್ಯಸ್ಥೆರ್ ೧,೦೦೦ ರ್ದ್ ೫,೦೦೦ ಮುಟ್ಟ ಉಪ್ಪುನ ಯೋಧೆರೆನ ಸಂಖ್ಯೆಡ್ (ಅಯ್ಯೋ) ತೆರಿಯೊಂದಿತ್ತೆರ್. ಈ ಸೈನಿಕೆರ್ ಬಾರ್ಕೂರು ಬೊಕ್ಕ ಕುಡ್ಲದಂಚಿನ ವ್ಯಾಪಾರ ಮಾರ್ಗೊಲೆನ್ ಬೊಕ್ಕ ಬಂದರುಲೆನ್ ರಕ್ಷಣೆ ಮಲ್ತೆರ್. ಅವು ರೋಮನ್ ಬೊಕ್ಕ ಅರಬ್ಬೆರೆಗ್ ಅರಿ, ಮೆಣಸು ಬೊಕ್ಕ ಮರಕುಲೆನ್ ರಫ್ತು ಮಲ್ತೊಂದಿತ್ತೆ.<ref>...</ref> == ಸ್ಥಳೀಯ ಸಾಮಂತ ರಾಜ್ಯೊಲು ಬೊಕ್ಕ ಸಾಂಸ್ಕೃತಿಕ ಸಂಶ್ಲೇಷಣೆ == ಅಲುಪೆರೆನ ಮುಖ್ಯ ಪ್ರದೇಶೊಡ್ದು ಪಿದಯಿ ಬೂಮಿಡ್ ಸುಮಾರ್ ಅರ್ಧ-ಸ್ವತಂತ್ರ ಆಯಿನ ಸಾಮಂತ ರಾಜ್ಯೊಲು (ಮನೆತನೊಲು) ಇತ್ತ್ಂಡ್. ಉಂದು ವಿಜಯನಗರ ಬೊಕ್ಕ ಕೆಳದಿ ನಾಯಕೆರೆನ ಆಡಳಿತ ಕಾಲೊಡ್ಲಾ ಸುಮಾರ್ ಶತಮಾನೊಲೆಡ್ದ್ ಅಕ್ಲೆನ ಅಧಿಕಾರೊನು ಒರಿಪಾವೊಂದು ಬತ್ತಿತ್ತಂಡ್.<ref>...</ref> * '''ಬಂಗವಾಡಿ ಬಂಗ''' – ಕದಂಬ ಮೂಲ ಪನ್ಪಿ ಪಡ್ಡಾಯಿ ಘಟ್ಟಡ್ದ್ ಸಮುದ್ರ ಮುಟ್ಟ ಆಳ್ವಿಕೆ ಮಲ್ತೆರ್. * '''ಮೂಡಬಿದಿರೆಯ ಚೌಟೆರ್''' – ಧರ್ಮನಿಷ್ಠ ಜೈನೆರ್; ರಾಣಿ ಅಬ್ಬಕ್ಕದೇವಿ ದ್ವಿತೀಯ ನೇತೃತ್ವೊಡು ಪೋರ್ಚುಗೀಸೆರೆನ್ ವಿರೋಧ ಮಲ್ತೆರ್. * '''ವೇಣೂರುದ ಆಜಲೆರ್''' – ಕ್ರಿ.ಶ. ೧೬೦೪ಡ್ ಏಕಶಿಲೆಯ ಗುಮ್ಮಟದ ಪ್ರತಿಮೆನ್ ನಿರ್ಮಾಣ ಮಲ್ಪುನ ಜವಾಬ್ದಾರಿ ವಹಿಸಯೆರ್.<ref>...</ref> ಇಂಚಿನ ಸಾಮಂತ ರಾಜ್ಯೊಲು ತುಳುನಾಡುದ ಸಂಸ್ಕೃತಿಡ್ ಒಂಜಿ ಸಂಯೋಜಿತ ಪರಂಪರೆನ್ ರೂಪಿಸಯೆರ್. ತುಳುನಾಡು ಶ್ರೀ ಮಧ್ವಾಚಾರ್ಯರೆನ ವೈಷ್ಣವ ಸಿದ್ಧಾಂತದ ಪುಟ್ಟಿನ ಜಾಗೆ ಆದ್ ಇತ್ತ್ಂಡ್. ಇಂದೆತ್ತ ಒಟ್ಟುಗೇ ಜೈನ ಧರ್ಮದ ಪ್ರಮುಖ ಕೇಂದ್ರಲಾ ಆದ್ ಬೆಳೆಯೆರ್. ಭೂತಾರಾಧನೆ ಬೊಕ್ಕ ನಾಗಮಂಡಲ ಇಂಚಿನ ಸ್ಥಳೀಯ ಸಂಪ್ರದಾಯೊಲುಲಾ ನಿರಂತರವಾದ್ ಒರಿದ್ ಬತ್ತೊ.<ref>...</ref> == ಕಾಲರೇಖೆ == {| class="wikitable" ! ಕಾಲ ! ಪ್ರಮುಖ ಘಟನೆ |- | 200 BCE – 450 CE | ಸುರುತ ಸ್ವತಂತ್ರ ಅಲುಪ ಆಡಳಿತ; ಈ ಪ್ರದೇಶೊನು ''ಒಲೊಖೊಯಿರಾ'' ಪಂದ್ ಗುರುತಿಸಾದೆರ್. |- | 450 CE | ಹಲ್ಮಿಡಿ ಶಾಸನೊಡು ಪಶುಪತಿನ ಪುದರ್ ತೋಜುಂಡು; ಕದಂಬ ಸಾಮ್ರಾಜ್ಯದ ಸುರುತ ಪ್ರಭಾವ. |- | 650–710 CE | ಸುರುತ ಆಳುವರಸ ಬೊಕ್ಕ ಸುರುತ ಚಿತ್ರವಾಹನ; ಬಾದಾಮಿ ಚಾಲುಕ್ಯರೆನೊಟ್ಟುಗು ಗಟ್ಟಿ ಒಪ್ಪಂದ. |- | 730–750 CE | ಪೃಥ್ವಿಸಾಗರ ಅರಸೆ '''ಉತ್ತಮ-ಪಾಂಡ್ಯ''' ಬಿರುದು ದೆತೊನುವೆರ್. |- | 968 CE | ಕುಂದವರ್ಮ ಅರಸೆ ಕದ್ರಿಡ್ ಲೋಕೇಶ್ವರ ಕಂಚಿದ ಮೂರ್ತಿನ್ ಪ್ರತಿಷ್ಠಾಪನೆ ಮಲ್ತೆರ್; ನಾಥ ಪಂಥದ ಪ್ರಭಾವ. |- | 1160–1220 CE | ಸುರುತ ವೀರ-ಕುಲಶೇಖರ ಅರಸೆ ಬಾರ್ಕೂರುನು ಮಲ್ಲ ಆಡಳಿತ ಕೇಂದ್ರ ಆದ್ ಮಲ್ತೆರ್. |- | 1275–1292 CE | ರಾಣಿ ಬಲ್ಲಮಹಾದೇವಿನ ಆಡಳಿತ ಕಾಲ. |- | 1333–1348 CE | ರಾಣಿ ಚಿಕ್ಕಾಯಿ-ತಾಯಿ ಬೊಕ್ಕ ಹೊಯ್ಸಳ ಸಾಮ್ರಾಜ್ಯದ ಸೇರ್ಪಡೆ. |- | 1336–1600 CE | ವಿಜಯನಗರ ಸಾಮ್ರಾಜ್ಯದ ಅಧೀನೊಡು ಪ್ರಾಂತ್ಯ ರಾಜ್ಯಾದ್ ಮುಂದುವರಿಯೆರ್. |- | 1444 CE | ಕುಲಶೇಖರದೇವ ಅಲುಪೇಂದ್ರದೇವ – ಅಲುಪ ವಂಶದ ಕಡೇತ ಪ್ರಮುಖ ಅರಸೆ. |- | 1600–1763 CE | ಕೆಳದಿ ನಾಯಕೆರೆನ ಆಡಳಿತ ಬೊಕ್ಕ ಪೋರ್ಚುಗೀಸರೆನೊಟ್ಟುಗು ಲಡಾಯಿ. |- | 1801 CE | ಟಿಪ್ಪು ಸುಲ್ತಾನನ ಪತನೊಡ್ದು ಬ್ರಿಟಿಷರೆನ ಪೂರ್ತಿ ಅಧಿಕಾರ ಸುರು ಆಪುಂಡು. |} == ಪರಂಪರೆ == ಅಲುಪ ವಂಶದ ಪರಂಪರೆ ಇತ್ತೆದ ಆಧುನಿಕ ತುಳುನಾಡುಡು ಬದುಕುದುಂಡು. ಬಂಟ್ ಸಮುದಾಯ, ಅಳಿಯಸಂತಾನ ಪದ್ಧತಿ ಬೊಕ್ಕ ಅಲುಪರೆನ ಪ್ರೋತ್ಸಾಹೊಡು ಬುಳೆದಿನ '''ಆನೆ-ಬೆರಿ''' (''Elephant-back'') ತರಹದ ದೇವಸ್ಥಾನದ ವಾಸ್ತುಶಿಲ್ಪ ಅಕ್ಲೆನ ಪರಂಪರೆದ ಮುಖ್ಯ ಅಂಶೊಲು ಆಂಡ್.<ref>...</ref> == ಭಾಷೆ ಬೊಕ್ಕ ಸಮಾಜ == === ಭಾಷೆದ ಪ್ರೋತ್ಸಾಹ === ಅಲುಪ ರಾಜವಂಶದಕುಲು ಮಸ್ತ್ ಭಾಷೆಲೆನ ಸಂಸ್ಕೃತಿಗ್ ಪ್ರೋತ್ಸಾಹ ಕೊರಿಯೆರ್. ಆಡಳಿತದ ಅಧಿಕೃತ ಕೆಲಸೊಲೆಗ್ ಕನ್ನಡ ಭಾಷೆನ್ ಗಳಸೊಂದಿತ್ತ್ಂಡಲಾ, ಆಲುಪನಕುಲು ತುಳು ಭಾಷೆಗ್ ಮಲ್ಲ ಪ್ರೋತ್ಸಾಹ ಕೊರ್ತೆರ್. ಇತ್ತೆ ತಿಕ್ಕಿನ ಇತಿಹಾಸೊಡೇ ಅತ್ಯಂತ ಪರತ್ ಆಯಿನ ತುಳು ಶಾಸನ (೧೧೫೯ CE) ಸುರುತ ಕುಲಶೇಖರ ಅಲುಪೇಂದ್ರನ ಆಡಳಿತ ಕಾಲೊಡು ತಿಕ್ಕಿಂಡು.<ref>...</ref> === ಸಾಮಾಜಿಕ ವ್ಯವಸ್ಥೆ === ಅಲುಪೆರ್ ಅಳಿಯಸಂತಾನ (ತಾಯಿಯ ವಂಶದ) ಉತ್ತರಾಧಿಕಾರ ಪದ್ಧತಿನ್ ಅಧಿಕೃತವಾದ್ ಜಾರಿಗ್ ತಂದೆರ್. ಈ ಪದ್ಧತಿಡ್ ರಾಜನ ಮಗನ ಬದಲಿಗ್ ರಾಜನ ಮರ್ಮಯೆ (ತಂಗಿ ಅತ್ತಂಡ್ ಅಕ್ಕನ ಮಗ) ಮುಂದಿನ ಅಧಿಕಾರೊನು ದೆತೊನುವೆರ್. ಈ ಆಚರಣೆ ಇತ್ತೆದ ಆಧುನಿಕ ತುಳುನಾಡುದ ಬಂಟ್ ಸಮುದಾಯೊಡುಲಾ ಪ್ರಮುಖ ಸಾಂಸ್ಕೃತಿಕ ಗುರುತಾದ್ ಒರಿದ್ ಬತ್ತ್ಂಡ್.<ref>...</ref> === ಪುರಾತತ್ವ ದಾಖಲೆಲು === ಅಲುಪೆರೆನ ಆಡಳಿತಗ್ ಸಾಕ್ಷಿಯಾದ್ ೨೦೦ಡ್ದ್ ಜಾಸ್ತಿ ಕಲ್ಲ್‌ದ ಶಾಸನೊಲು ಬೊಕ್ಕ ಅಪರೂಪದ ತಾಮ್ರಶಾಸನೊಲು ತಿಕ್ಕೊ. ಅಕ್ಲೆಡ್ ೮ನೇ ಶತಮಾನದ ಬೆಳ್ಮಣ್ಣು ತಾಮ್ರಶಾಸನ ಪ್ರಮುಖ ಆಂಡ್. ಈ ದಾಖಲೆಲು ಪರತ್ ಕನ್ನಡ ಲಿಪಿದ ಬೊಕ್ಕ ಅಲುಪ ಆಡಳಿತದ ಇತಿಹಾಸದ ಪ್ರಮುಖ ಸಾಕ್ಷಿಲಾದ್ ಪರಿಗಣಿಸವೊಂದುಂಡು.<ref>...</ref> pfe31pvq59us5xhb16bon8lwje2w4tg ಬಳಕೆದಾರೆ ಪಾತೆರ:Durga Prasad Nayakk 3 27481 362652 2026-07-10T10:54:14Z ತುಳು ವಿಕಿಪೀಡಿಯ ಸಮುದಾಯೊ 2534 ಪೊಸ ಸದಸ್ಯೆರೆ ಚರ್ಚಾಪುಟೊಡು [[Template:Welcome|ಸ್ವಾಗತ ಸಂದೇಸೊನು]]ಸೇರ್ಸಾಯರ ಆಪುಂಡು 362652 wikitext text/x-wiki {{Template:Welcome|realName=|name=Durga Prasad Nayakk}} -- [[ಬಳಕೆದಾರೆ:ತುಳು ವಿಕಿಪೀಡಿಯ ಸಮುದಾಯೊ|ತುಳು ವಿಕಿಪೀಡಿಯ ಸಮುದಾಯೊ]] ([[ಬಳಕೆದಾರೆ ಪಾತೆರ:ತುಳು ವಿಕಿಪೀಡಿಯ ಸಮುದಾಯೊ|ಪಾತೆರ್ಲೆ]]) ೧೬:೨೪, ೧೦ ಜುಲಾಯಿ ೨೦೨೬ (IST) mgwiwx07cwk9zeed1y6rpeau1qjjf7y ಬಳಕೆದಾರೆ:Durga Prasad Nayakk 2 27482 362653 2026-07-10T11:11:56Z Durga Prasad Nayakk 9999 durga prasad nayak 362653 wikitext text/x-wiki '''ನಮಸ್ಕಾರ!''' ಎನ್ನ ಪುದರ್ ದುರ್ಗಾಪ್ರಸಾದ್ ನಾಯಕ್. ಯಾನ್ ಕರ್ನಾಟಕದ ಪುತ್ತೂರುದಾಯಿನ. ಯಾನ್ ಕಂಪ್ಯೂಟರ್ ಸೈನ್ಸ್ ಅಂಡ್ ಇಂಜಿನಿಯರಿಂಗ್ಡ್ ಪದವಿ ಮಲ್ತಿನೆ. ಎಂಕ್ ತಂತ್ರಜ್ಞಾನ, ಸಂಶೋಧನೆ ಬೊಕ್ಕ ಮುಕ್ತ ಜ್ಞಾನದ ಬಗ್ಗೆ ಮಸ್ತ್ ಆಸಕ್ತಿ ಉಂಡು. ಯಾನ್ ತುಳು ವಿಕಿಪೀಡಿಯಾಡ್ ಮುಖ್ಯಾವದ್ ತುಳುನಾಡ್ದ ಇತಿಹಾಸ, ಸಂಸ್ಕೃತಿ, ಒರಿಪು, ಪರಂಪರೆ ಬೊಕ್ಕ ಆಚಾರ-ವಿಚಾರ ಕುರಿತು ಲೇಖನಲೆನ್ ಬರೆಯರೆ ಬೊಕ್ಕ ಎಡ್ಡೆ ಮಲ್ಪೆ. ಎಂಕ್ ಇತಿಹಾಸದ ವಿಷಯಲೆನ್ ಸಂಶೋಧನೆ ಮಲ್ಪುನ, ವಿಶ್ವಾಸಾರ್ಹ ಉಲ್ಲೇಖಲೆನ್ ಸೇರಾದ್ ಲೇಖನಲೆನ್ ಉತ್ತಮ ಮಲ್ಪುನ ಬೊಕ್ಕ ಮುಕ್ತ ಜ್ಞಾನದ ಮುಖಾಂತರ ತುಳು ಪಾತೆರ್ಪುನ ಜನಾಂಗದ ಸಂಸ್ಕೃತಿ, ಪರಂಪರೆ ಬೊಕ್ಕ ಒರಿಪುನ ಮುಂದಿನ ತಲೆಮಾರುಗು ಉಳಿಪಾವುನ ಮಸ್ತ್ ಇಷ್ಟ ಉಂಡು. ಯಾನ್ ತುಳು, ಕನ್ನಡ, ಕೊಂಕಣಿ (ಎನ್ನ ಅಪ್ಪೆ ಬಾಸೆ), ಇಂಗ್ಲಿಷ್ ಬೊಕ್ಕ ಹಿಂದಿ ಪಾತೆರ್ಪೆ. ಇಂಚಿನೆ, ಎಂಕ್ ತಮಿಳು ಬಾಸೆದ ಪ್ರಾಥಮಿಕ ಜ್ಞಾನ ಬರ್ಪುಂಡು. ವಿಕಿಮೀಡಿಯಾ ಚಳವಳಿಡ್ ಇಂಚಿನೆ ಸಕ್ರಿಯವಾದ್ ಪಾಲುದೆತೊಂದ್ ಬೊಕ್ಕ ಪ್ರಾದೇಶಿಕ ಬಾಸೆಲೆಡ್ ಮುಕ್ತ ಜ್ಞಾನದ ಒಟ್ಟುಸೇರ್ಸಾವೊಡ್ ಎನ ಕೊಡುಗೆ ಕೊರಿಯಾರ ಪ್ರಯತ್ನಮಾಲ್ಪೆ . cfylyle8uu76jfpvv93w1gz7afn4s5i ಪಾತೆರ:ಅಲುಪೆರೆನ ಆಡಳಿತ ವ್ಯವಸ್ಥೆ ತುಳುನಾಡುದ ಸಾಮಾಜಿಕ ಐತಿಹಾಸ 1 27483 362654 2026-07-10T11:13:23Z Durga Prasad Nayakk 9999 https://fountain.toolforge.org/editathons/10wiki-tcy 362654 wikitext text/x-wiki {{ವಿಕಿಪೀಡಿಯ 10ನೇ ವರ್ಸಂತಿಗೆ ಪಂತೊದ ಲೇಕನೊ}} nekn5axm94un6rhhgr63qit15105phm ಸುಂದರ ರಾವ್ ನಾಡ್ಕರ್ಣಿ 0 27484 362656 2026-07-10T11:58:41Z Hariprasad Shetty10 6127 ಹೊಸ ಪುಟ: '''ಸುಂದರ್ ರಾವ್ ನಾಡ್ಕರ್ಣಿ''' ಭಾರತೀಯ ಚಲನಚಿತ್ರ ನಟ, ಸಂಪಾದಕ, ಛಾಯಾಗ್ರಾಹಕ, ನಿರ್ಮಾಪಕ ಮತ್ ನಿರ್ದೇಶಕೆರ್.1940ಡ್ ಎ.ವಿ.ಎಂ. ಪ್ರೊಡಕ್ಷನ್ಸ್‌ದ ಮೊದಲ ಯಶಸ್ವಿ ತೆಲುಗು ಚಲನಚಿತ್ರ '''ಭೂಕೈಲಾಸ'''ದ ನಿರ್ದೇಶನ ಮಲ್ತಿನೆರ್.... 362656 wikitext text/x-wiki '''ಸುಂದರ್ ರಾವ್ ನಾಡ್ಕರ್ಣಿ''' ಭಾರತೀಯ ಚಲನಚಿತ್ರ ನಟ, ಸಂಪಾದಕ, ಛಾಯಾಗ್ರಾಹಕ, ನಿರ್ಮಾಪಕ ಮತ್ ನಿರ್ದೇಶಕೆರ್.1940ಡ್ ಎ.ವಿ.ಎಂ. ಪ್ರೊಡಕ್ಷನ್ಸ್‌ದ ಮೊದಲ ಯಶಸ್ವಿ ತೆಲುಗು ಚಲನಚಿತ್ರ '''ಭೂಕೈಲಾಸ'''ದ ನಿರ್ದೇಶನ ಮಲ್ತಿನೆರ್. ಆನಂತರ 1944ಡ್ ದಾಖಲೆ ನಿರ್ಮಾಣ ಮಲ್ತಿನ ತಮಿಳ್ ಚಲನಚಿತ್ರ '''ಹರಿದಾಸ'''ದ ನಿರ್ದೇಶನ ಮಲ್ತೆರ್. == ಸುರುತ ಜೀವನ == ಸುಂದರ್ ರಾವ್ ನಾಡ್ಕರ್ಣಿ [[ಮಂಗಳೂರು]], [[ಕರ್ನಾಟಕ]] ಮುಲ್ಪ ಪುಟ್ಟಿಯೆರ್.<ref>{{Cite book|url=https://books.google.com/books?id=e07vBwAAQBAJ&q=nadkarni+marathi|title=PRIDE OF TAMIL CINEMA: 1931 TO 2013: Tamil Films that have earned National and International Recognition|last=Dhananjayan|first=G.|date=2014-11-03|publisher=Blue Ocean Publishers|language=en}}</ref> ಮೇರ್ [[ಬೆಂಗಳೂರು]] ಡ್ ಸೂರ್ಯ ಫಿಲ್ಮ್ಸ್ ನಿರ್ಮಾಣ ಮಲ್ತಿನ ಮೂಕ ಚಿತ್ರೊಲೆಡ್ ನಟೆರಾದ್ ತನ್ನ ವೃತ್ತಿಜೀವನೊನು ಸುರು ಮಲ್ತೆರ್. ನನೊಂಜಿ ಸರ್ತಿ, ಆರ್ ಬಾಂಬೆ ಗ್ ಪೋಯೆರ್ ಅಲ್ಪ ಆರ್ ಚಿತ್ರ ನಿರ್ದೇಶನ ಬೊಕ್ಕ ಸಂಪಾದನೆನ್ ದೆತೊನುವೆರ್. ನಾಡ್ಕರ್ಣಿ ಚಿತ್ರ ನಿರ್ಮಾಪಕೆ ಅವಿಚಿ ಮೆಯ್ಯಪ್ಪ ಚೆಟ್ಟಿಯಾರ್ ನ ಕಣ್ಣ್ ಗ್ ಬತ್ತೆರ್, ಆರ್ ''ಶಬಪತಿ (೧೯೪೧ ಚಿತ್ರ)'' ಚಿತ್ರದ ಯಶಸ್ಸಿನ ಬೊಕ್ಕ ಬೇತೆ ಒಂಜಿ ಹಾಸ್ಯ ಚಿತ್ರ ಮಲ್ಪೆರೆ ತೂವೊಂದಿತ್ತೆರ್. ಅಯಿಡ್ದ್ ಬೊಕ್ಕ, ಆರ್ ಕೊಯಮತ್ತೂರು ಬೊಕ್ಕ ಅಂಚನೆ ಮದ್ರಾಸ್ ಗ್ ಪೋಯೆರ್, ಅಲ್ಪ ಆರ್ ಶಾಶ್ವತವಾದ್ ನೆಲೆಯಾಯೆರ್. ೧೯೪೨ಡ್ ನಾಡ್ಕರ್ಣಿ ನಿರ್ದೇಶನ ಮಲ್ತಿನ ''ಎನ್ ಮಾನೈವಿ'' ಪನ್ಪಿನ ತಮಿಳು ಸಿನಿಮಾ ಮಸ್ತ್ ಹಿಟ್ ಆಂಡ್. ಈ ಯಶಸ್ಸ್ ದ ನಡುಟು ನಡ್ಕರ್ಣಿ ಬೇತೆ ಯಶಸ್ವಿ ತಮಿಳು ಸಿನಿಮಾಲೆನ್ ಲಾ ಮಲ್ತೆರ್. ಆಂಡ ಅರೆನ ಮಲ್ಲ ಹಿಟ್ 1944 ಡ್ ಬತ್ತಿನ ''ಹರಿದಾಸ್'' ಸಿನಿಮಾ ಒಂಜಿ ಥಿಯೇಟರ್ ಡ್ 110 ವಾರೊಗು ನಡತೊಂದು ಬತ್ತಿನ ಸುರುತ ತಮಿಳು ಸಿನಿಮಾ ಆದ್ ದಾಖಲೆ ಮಲ್ತ್ ಂಡ್. ತನ್ನ ಕ್ರಿಯಾಶೀಲ ವರ್ಷೊಲೆಡ್ ತಮಿಳು ಶ್ರೇಷ್ಠ ನಟೆರೆನ್ ನಿರ್ದೇಶನ ಮಲ್ತೆರ್, ಮುಖ್ಯವಾದ್ ಎಂ. ಕೆ. ತ್ಯಾಗರಾಜ ಭಾಗವತರ್ ಬೊಕ್ಕ ಟಿ. ಆರ್. ರಾಜಕುಮಾರಿ ''ಹರಿದಾಸ್'' (೧೯೪೪), ನರ್ಸಿಂಹ ಭಾರತಿ ''ಕೃಷ್ಣ ವಿಜಯಂ'' (೧೯೫೦), ಬೊಕ್ಕ ಎಂ.ಜಿ.ಆರ್ ಬೊಕ್ಕ ಸಾವಿತ್ರಿ ''ಮಹಾದೇವಿ'' (೧೯೫೭) ಡ್ ನಿರ್ದೇಶನ ಮಲ್ತೆರ್. == ಫಿಲ್ಮೊಗ್ರಫಿ == ===ನಿರ್ದೇಶಕೆರಾದ್ === {| ಕ್ಲಾಸ್="ವಿಕಿಟೇಬಲ್" |- ! ವರ್ಷ !! ಪುದರ್ !! ಪಾತ್ರ(ಲು) !! ಭಾಷೆ !! ಟಿಪ್ಪಣಿಲು |- || ೧೯೨೮ || ''ಮಾಯ ನ ರಂಗ್'' || ನಿರ್ದೇಶಕೆರ್ || ಮೌನ || |- |rowspan="3" | ೧೯೩೦ || ''ರಂಧೀರ್'' || ನಿರ್ದೇಶಕೆರ್ || ಮೌನ || |- || ''ಕಾಳಿಕೊ ನೋ ಕೊಪ್'' || ನಿರ್ದೇಶಕೆರ್ ||ಮೌನ || |- || ''ಧೂಮಕೇತು'' || ನಿರ್ದೇಶಕೆರ್ || ಮೌನ || |- |rowspan="6" | ೧೯೩೧ || ''ಜಿಂದಗಿ ನು ಜೂಗಾರ್'' || ನಿರ್ದೇಶಕೆರ್ ||ಮೌನ || |- || ''ತೀರ್-ಎ-ಕಟೀಲ್'' ||ನಿರ್ದೇಶಕೆರ್ || || |- || ''ಕುರ್ಬಾನಿ'' || ನಿರ್ದೇಶಕೆರ್ || || |- || ''ಇಷ್ಕ್ ಓ ಅಂಜಂ'' || ನಿರ್ದೇಶಕೆರ್ || || |- || ''ಬಾಜ್ ಬಹದ್ದೂರ್'' || ನಿರ್ದೇಶಕೆರ್ || || |- || ''ಅಸಿರ್-ಇ-ಹಿರ್ಸ್'' || ನಿರ್ದೇಶಕೆರ್ || || |- || ೧೯೩೯ || ''ಸತೀ ಸಕ್ಕುಬಾಯಿ'' || ನಿರ್ದೇಶಕ,ಸಂಪಾದಕ,ನಟ,ಗಾಯಕ || ತಮಿಳು || |- | ೧೯೪೦ || ''ಭೂಕೈಲಾಸ (೧೯೪೦ ಚಿತ್ರ)''<ref>{{Cite web|url=https://www.imdb.com/title/tt0245006/|title=ಭೂಕೈಲ|ವೆಬ್ಸೈಟ್=[[IMDb]]}}</ref> || ನಿರ್ದೇಶಕೆರ್ || ತೆಲುಗು || |- || ೧೯೪೨ || ''ಎನ್ ಮಾನೈವಿ'' || ನಿರ್ದೇಶಕ ||ತಮಿಳು|| |- || ೧೯೪೪ || ''ಹರಿದಾಸ (೧೯೪೪ ಚಿತ್ರ)|ಹರಿದಾಸ'' || ನಿರ್ದೇಶಕ ||ತಮಿಳು|| |- || ೧೯೪೬ || ''ವಾಲ್ಮೀಕಿ (1946 ಚಿತ್ರ)|ವಾಲ್ಮೀಕಿ'' || ನಿರ್ದೇಶಕ ||ತಮಿಳು|| |- || ೧೯೫೦ ||ಕೃಷ್ಣ ವಿಜಯಂ|| ನಿರ್ದೇಶಕ ||ತಮಿಳು ಭಾಷೆ || |- || ೧೯೫೩ || ''ಅಝಗಿ (೧೯೫೩ ಚಿತ್ರ)|ಅಝಗಿ'' || ನಿರ್ದೇಶಕ ||ತಮಿಳು || |- || ೧೯೫೫ || ''ಕೋಟೀಶ್ವರನ್'' || ನಿರ್ದೇಶಕೆರ್ || ತಮಿಳು || |- || ೧೯೫೭ || ''ಮಹಾಧೇವಿ'' || ನಿರ್ದೇಶಕ ||ತಮಿಳು || |- || ೧೯೬೩ || ''ಸಂತ ತುಕಾರಾಂ'' || ನಿರ್ದೇಶಕೆರ್ || [[ಕನ್ನಡ]] || ಕನ್ನಡ ಭಾಷೆದ ಅತ್ಯುತ್ತಮ ಫೀಚರ್ ಫಿಲ್ಮ್ ಗ್ ರಾಷ್ಟ್ರೀಯ ಚಲನಚಿತ್ರ ಪ್ರಶಸ್ತಿ |} == ಉಲ್ಲೇಕೊಲು == {{Reflist}} * {{cite news|title=En Manaivi 1942|url=http://www.hindu.com/cp/2008/07/18/stories/2008071850391600.htm|work=[[The Hindu]]|author=Randor Guy|authorlink=Randor Guy|date=18 July 2008|archive-url=https://archive.today/20130125174929/http://www.hindu.com/cp/2008/07/18/stories/2008071850391600.htm|archive-date=25 January 2013|url-status=dead|df=dmy-all}} 51zotyt5vfy5mpll4imumof81rggrjp