CINXE.COM

Home :: SSRN

<!DOCTYPE html> <html lang="en"> <head> <script language="JavaScript"> var beforeload = (new Date()).getTime(); var totalTime = 0; var clientTime = 0; var serverTime = 0; var XmlHttpObj1; function Sign(X) { return X>0 ? "+" : X<0 ? "-" : " " } function CreateXmlHttpObj1() { try {XmlHttpObj1 = new ActiveXObject("Msxml2.XMLHTTP");} catch(e) {try{XmlHttpObj1 = new ActiveXObject("Microsoft.XMLHTTP");} catch(oc) {XmlHttpObj1 = null;}} if(!XmlHttpObj1 && typeof XMLHttpRequest != "undefined") {XmlHttpObj1 = new XMLHttpRequest();}} function loadingTime() { //calculate the current time in afterload var afterload = (new Date()).getTime(); //calculate the seconds clientTime = (afterload-beforeload)/1000; serverTime = parseFloat(document.getElementById("serverTime").innerHTML); totalTime = (clientTime + serverTime).toFixed(3); document.getElementById("loadingtime").innerHTML = "and delivered in " + totalTime + " seconds"; } function addLoadEvent(func) { var oldonload = window.onload; if (typeof window.onload != 'function') { window.onload = func; } else { window.onload = function() { if (oldonload) { oldonload(); } func(); } } } </script> <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="7e4c2285-a47e-4087-b7e9-f4f1c24b74e3" ></script> </script> <!-- OneTrust Cookies Consent Notice start for ssrn.com --> <script type="text/javascript"> window.OptanonWrapper = function() { var eOT = new Event('OneTrustGroupsUpdated'); document.dispatchEvent(eOT); } <!-- OneTrust Cookies Consent Notice end for ssrn.com --> </script> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="" /> <meta name="keywords" content="" /> <meta name="generator" content="Mura CMS 7.4.6" /> <title>Home :: SSRN</title> <link rel="stylesheet" href="/sites/en/css/reset.min.css" type="text/css" media="all" /> <link rel="stylesheet" href="/sites/en/css/mura.min.css" type="text/css" media="all" /> <link rel="stylesheet" href="/sites/en/includes/themes/merced/css/core/typography.css" type="text/css" media="all" /> <link rel="stylesheet" href="/sites/en/includes/themes/merced/css/core/merced.css" type="text/css" media="all" /> <link rel="stylesheet" href="/sites/en/includes/themes/merced/css/print/print.css" type="text/css" media="print" /> <!--[if lte IE 7]> <script src="/sites/en/includes/themes/merced/js/ie/lte7/DD_roundies.js" type="text/javascript" language="Javascript"></script> <link rel="stylesheet" href="/sites/en/includes/themes/merced/css/ie/lte7/ie.css" type="text/css" media="all" /> <script> DD_roundies.addRule('.submit, .buttons input, dd.textField .submit', '10px'); /* string argument can be any CSS selector */ </script> <![endif]--> <link rel="stylesheet" type="text/css" href="https://static.ssrn.com/cfincludes/css/normalize.min.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="https://static.ssrn.com/cfincludes/css/custom.min.css?v=429"> <link rel="stylesheet" type="text/css" href="https://static.ssrn.com/cfincludes/css/researchNetworks.min.css?v=429"> <!--[if lte IE 8]> <script src="/sites/en/includes/themes/merced/js/ie/lte8/html5.js" type="text/javascript" language="Javascript"></script> <![endif]--> <script type="text/javascript"> <!-- !window.jQuery && document.write(unescape('%3Cscript type="text/javascript" src="/sites/en/js/jquery/jquery.js"%3E%3C/script%3E')) //--> </script> <script type="text/javascript">var dtExample="11/10/2024", dtCh="/", dtFormat =[0,1,2], dtLocale="en-US";</script> <script type="text/javascript" src="/sites/en/js/global.min.js"></script> <script type="text/javascript"> var loginURL="?display=login"; var siteid="en"; var siteID="en"; var context=""; var jslib="jquery"; var assetpath="/sites/en"; var themepath="/sites/en/includes/themes/merced"; var htmlEditorType=""; var rb="en"; </script><link rel="apple-touch-icon" sizes="180x180" href="https://static.ssrn.com/cfincludes/img/favicon/apple-touch-icon.png?v=2"> <link rel="mask-icon" href="https://static.ssrn.com/cfincludes/img/favicon/safari-pinned-tab.svg?v=2" color="#0d4782"> <link href="https://static.ssrn.com/cfincludes/img/favicon/favicon.ico?v=2" rel="shortcut icon"> <meta name="apple-mobile-web-app-title" content="SSRN"> <meta name="application-name" content="SSRN"> <script async src="//assets.adobedtm.com/launch-ENa9ad0bcbf32647c3a04e26991e589550.min.js"></script> <script type="text/javascript">var pageData = {"visitor":{"userId":"","loginStatus":"anonymous","accessType":"ss:guest"},"page":{"language":"en","environment":"prod","loadTime":"63","name":"homepage","type":"NP-HP","businessUnit":"els:rp:ssrn","noTracking":"","loadTimestamp":"1732720677186","productName":"SS"}};</script> </head> <body id="homepage" class="home new-layout"> <div id="container" class="sysHomeSsrn"> <header1 class="clearfix"> <script language="javascript"> //Language functions function changeLanguage1(language, response){ $.ajax({ url: '/AltLanguage_ajax.cfm?type=changeLanguage&partid=1&strCode=en', cache: false, success: function(data) { // Update values in cookies Set_Cookie('SITEID',language,'-1','/','.ssrn.com',''); Set_Cookie('SITEID',language,'1000','/','.ssrn.com',''); // Finally, perform redirection if (response == 'reload') { window.location.reload(); } else { window.location.href=response; } } }); } function Set_Cookie( name, value, expires, path, domain, secure ) { // set time, its in milliseconds var today = new Date(); today.setTime( today.getTime() ); /* if the expires variable is set, make the correct expires time, the current script below will set it for x number of days, to make it for hours, delete * 24, for minutes, delete * 60 * 24 */ if ( expires ) { expires = expires * 1000 * 60 * 60 * 24; } var expires_date = new Date( today.getTime() + (expires) ); document.cookie = name + "=" +escape( value ) + ( ( expires ) ? ";expires=" + expires_date.toGMTString() : "" ) + ( ( path ) ? ";path=" + path : "" ) + ( ( domain ) ? ";domain=" + domain : "" ) + ( ( secure ) ? ";secure" : "" ); } /* * We use this function when the language should be stripped from an object, like a form RADIO */ function getLanguage ( oObj ) { var specialChars = "!@#$^&%*()+=-[]\/{}|:<>?,."; // Need to clean up code if object came from Mura site. sCode = oObj.value; if (sCode.length > 2) { for (var i = 0; i < specialChars.length; i++) { sCode = sCode.replace(new RegExp("\\" + specialChars[i], 'gi'), ''); } // After cleaning up special chars, we take the first two chars. sCode = sCode.substring(0,2).trim(); } return sCode; } </script> <link rel="stylesheet" type="text/css" href="https://static.ssrn.com/cfincludes/css/custom-bootstrap.min.css?v=429"> <link rel="stylesheet" type="text/css" href="https://static.ssrn.com/cfincludes/css/custom.min.css?v=429"> <link rel="stylesheet" type="text/css" href="https://static.ssrn.com/cfincludes/css/global.min.css?v=429"> <link href="https://cdn.ssrn.com/ssrn-global-header/main.css?v=429" rel="stylesheet"> <div class="accesibility-link"> <a id="skip-to-content" title="Skip to content" href="#maincontent">Skip to main content</a> </div> <meta name="part_id" content="1"> <meta name="www_server" content="www.ssrn.com"> <meta name="static_server" content="https://cdn.ssrn.com"> <meta name="hq_server" content="hq.ssrn.com"> <meta name="papers_server" content="papers.ssrn.com"> <meta name="user_name" content="Public User"> <meta name="is_custom" content="false"> <meta name="own_design" content="false"> <meta name="ab_id" content=""> <meta name="on_behalf" content="false"> <meta name="login_user_id" content=""> <!--GLOBAL HEADER--> <header id="global-header" data-id-plus-auth-enabled="false"></header> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script type="text/javascript">if(typeof jQuery == 'undefined') { document.write(unescape("%3Cscript src='https://#strStaticServer#/libraries/JQuery/v1.12.4/jquery.min.js' type='text/javascript'%3E%3C/script%3E")); }</script> <script> function sentEmailValidation(lngLoginID, forwardURL){ var parameters = { "lngLoginID" : lngLoginID, "strForwardURL" : forwardURL }; $.ajax({ type: "POST", url: "https://static.ssrn.com/cfc/webServices/loginServices.cfc?method=sentValidationEmailNew", data: parameters, dataType: "jsonp", async: false, success: function(data) { if(data.RESULT == 1){ $("#errorMessageLogin").html(data.MESSAGE); } }, error: function(jqXHR, textStatus, errorThrown) { console.log(textStatus, errorThrown); } }); }; </script> <script> $( document ).ready(function() { // Show translation notice on footer on load var hebrewIsSelected = $('.dropdown-lang option:last-child').is(':selected'), $body = $('body'), $loginBox = $('.loginBox'), $menuMain = $('.menu-main'), $profileMenu = $('.profileMenu'); if (hebrewIsSelected) { toggleTranslationNote(); } $('#global-header .auth-menu > div > a:first-child').on('click', function() { appData.push({ event: 'conversionDriverClick', conversionDriver: { name : 'ssrn-header:register' } }); }); $('#global-header .auth-menu > div > a:last-child').click(function(e) { appData.push({ event: 'conversionDriverClick', conversionDriver: { name : 'ssrn-header:sign-in-or-register' } }); }); $('#global-header a[href$="/rankings/Ranking_display.cfm?TRN_gID=10"]').on('click', function() { appData.push({ event: 'conversionDriverClick', conversionDriver: { name : 'rankings-top-papers' } }); }); $('#global-header a[href$="/submissions/CreateNewAbstract.cfm"]').on('click', function() { appData.push({ event: 'conversionDriverClick', conversionDriver: { name : 'ssrn-header:submit-article' } }); }); $('#btnMenu').on('click', function() { $body.addClass('nav-is-open'); $menuMain.addClass('open'); }); $('.mo-nav-close-btn').on('click', function() { $body.removeClass('nav-is-open'); $(this).closest('.mo-nav').removeClass('open'); }); $('.mo-nav-search-btn').on('click', function() { $menuMain.find('.menu-search').toggleClass('open'); }); $(document).on('click','#profile', function(e){ e.preventDefault(); $body.toggleClass('nav-is-open'); $profileMenu.toggleClass('open'); }); /* Cleaning the email text*/ $('#txtLogin').bind("change keyup input",function() { $(".error_show_login").hide(); $("#txtLogin").removeClass("loginError"); $("#errorMessageLogin").hide(); }); /* Cleaning the password text*/ $('.password-inp').bind("change keyup input",function() { $(".error_show_pass").hide(); $("#txtPasswordLogin").removeClass("loginError"); $("#errorMessageLogin").hide(); }); /*Function for encrypt*/ function encrypt(key1, key2, key3){ var key = btoa(key1 + "|" + key2 + "|" + key3); return key; }; function validateFields (){ var emptyLogin = false; var emptyPass = false; if(document.getElementById("txtLogin") == null || document.getElementById("txtLogin").value == "") { $("#txtLogin").addClass('loginError'); $(".error_show_login").show(); emptyLogin = true; } if(document.getElementById("txtPasswordLogin") == null || document.getElementById("txtPasswordLogin").value == "" ) { $("#txtPasswordLogin").addClass('loginError'); $(".error_show_pass").show(); emptyPass = true; } if(emptyLogin == true || emptyPass == true){ return false; } return true; }; $('.password-inp').keypress(function(event) { if (event.keyCode == 13 || event.which == 13) { event.preventDefault(); login(); } }); $('#txtLogin').keypress(function(event) { if (event.keyCode == 13 || event.which == 13) { event.preventDefault(); login(); } }); $("#signin").click(function() { login(); }); function login(){ if (validateFields() != false) { var pageLoadData; var user = document.getElementById("txtLogin").value; var pass = document.getElementById("txtPasswordLogin").value; var remember = $('.remember-me-check').prop('checked'); var keyUser = encrypt(user, pass, remember); var parameters = { "key" : keyUser }; $.ajax({ type: "POST", url: "https://static.ssrn.com/cfc/webServices/loginServices.cfc?method=signinService", data: parameters, dataType: "jsonp", async: false, success: function(data) { if(data.ILOGINRESULT == 0) { var lngPartLogedIn = data.USER.PART_ID; buildmenu(lngPartLogedIn); $("#name-header div.user-name-overflow").text(data.USER.FULLNAME); $("#name-mo-header").text(data.USER.FULLNAME); $('#profile').show(); $("#btnSignin").hide(); $("#btnRegister").hide(); $loginBox.removeClass('open'); $body.removeClass('nav-is-open'); pageData.visitor.loginSuccess = "true"; pageData.visitor.loginStatus = "logged in"; pageData.visitor.accessType = "ss:registered-user"; pageData.visitor.userId = data.USER.ENCRYPT_PART_ID; pageLoadData = pageData; pageLoadData['event'] = 'pageLoad'; appData.push(pageLoadData); } else { pageData.visitor.loginSuccess = "false"; pageLoadData = pageData; pageLoadData['event'] = 'pageLoad'; appData.push(pageLoadData); $("#errorMessageLogin").html(data.MESSAGETOSHOW); $("#errorMessageLogin").show(); } } }); } else { return false; }; }; function buildmenu(lngPartLogedIn){ $("#personal").attr("href", "https://hq.ssrn.com/Participant.cfm?rectype=edit&partid=" + lngPartLogedIn + "&perinf=y"); $("#affil").attr("href", "https://hq.ssrn.com/Affiliations/AffiliationList.cfm?partid=" + lngPartLogedIn); $("#suscr").attr("href", "https://hq.ssrn.com/Subscriptions.cfm?partId=" + lngPartLogedIn); $("#mypapers").attr("href", "https://hq.ssrn.com/submissions/MyPapers.cfm?partid=" + lngPartLogedIn); }; $(document).click(function(event) { if(!$(event.target).closest('.header-tooltip').length && $(event.target)[0] != $('#btnSignin')[0] && $(event.target)[0] != $('#profile')[0] ) { if($('.header-tooltip').is(":visible") && $('.mo-nav-header').is(":hidden")) { $body.removeClass('nav-is-open'); $('.header-tooltip').removeClass('open'); } } // Makes the submenu links accesible by keyboard $('.has-sub-menu a') .focus(function() { $(this).parents("li").addClass("focus"); }) .blur(function() { $(this).parents("li").removeClass("focus"); }); }); // Show translation notice on change $('.dropdown-lang').on('change', function() { toggleTranslationNote(); }); // Accordion functionality on Footer MO var $collapseBtn = $('h4[data-toggle="collapse"]'), $collapsableContent = $('.collapsable'); $collapseBtn.on('click', function(){ var $this = $(this), $parent = $this.parent(), $thisCollapsable = $parent.find('.collapsable'); $collapsableContent.slideUp('fast'); if ( !$thisCollapsable.is(":visible") ) { $thisCollapsable.slideDown('fast'); } }); // Show translation notice on footer function toggleTranslationNote() { $('.translation-notice').toggle(); } }); //Language function function changeLanguage(lang){ var curretUrl = window.location.href; if(curretUrl.indexOf('&lng') != -1) { var new_url = curretUrl.substring(0, curretUrl.indexOf('&lng')); }else{ var new_url = window.location.href; } window.location.href=new_url+'&lng='+lang; } </script> <script type="text/javascript" src="https://cdn.ssrn.com/ssrn-global-header/app.bundle.js?v=429"></script> <script type="text/javascript" async="async" src="https://static.ssrn.com/js/image-lazy-load.js"></script> </header1> <div id="contenthome" class="clearfix"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" crossorigin="anonymous"> <link rel="stylesheet" type="text/css" href="https://static.ssrn.com/cfincludes/css/home.min.css?v=429"> <div class="home-body"> <div class="container" id="maincontent"> <div class="row"> <div class="home-welcome-main"> <h1 class="big-title">Tomorrow&acute;s Research Today</h1> <div class="subtitle"> <p>SSRN provides 1,502,925 preprints and research papers from 1,971,211 researchers in over 65 disciplines.</p> <div class="box-container-image"><img alt="Race and Mpox" height="248" src="/sites/en/assets/image/image/race_mpox.jpg" usemap="#image-map" width="477" /><map name="image-map"><area alt="Race Hub" coords="2,5,240,246" href="https://www.ssrn.com/index.cfm/en/racesocialinequity/" shape="rect" target="_blank" title="Race Hub" /> <area alt="Mpox" coords="262,0,519,243" href="https://www.ssrn.com/index.cfm/en/monkeypox/" shape="rect" target="_blank" title="Mpox Hub" /></map></div> <p>&nbsp;</p> </div> <form action="https://papers.ssrn.com/searchresults.cfm" id="searchForm1" class="form-group big-search-form" method="get" target="_top" name="formQuickSearch"> <div class="big-search"> <input type="text" class="form-control" placeholder="Title, Abstract, Keywords & Authors" aria-label="Title, Abstract, Keywords & Authors" name="term" id="txtKeywords"> <div class="button-wrapper inline"> <button class="primary " type="submit" > <span><i class='icon icon-gizmo-search' aria-label='Quick Search'></i></span> </button> </div> </div> <div class="error">Please fill out this field</div> <a class="advanced-link" href="https://papers.ssrn.com/sol3/DisplayAbstractSearch.cfm">Advanced Search</a> </form> </div> <div class="home-welcome-side pull-right"> <div class="box-hot-research"> <div class="box-container"> <center> <div class="box-container-image"><a data-sc-promo-id="Sust Transport Hub" href="https://www.ssrn.com/index.cfm/en/sustainable-transport/" target="_blank"><img alt="Sustainable Transport Hub" src="/sites/en/assets/Image/Image/SustHome.jpg" /> </a></div> <p>&nbsp;</p> <div class="button-wrapper inline"><a class="button-link primary" data-sc-promo-id="Sust Transport Hub" href="https://www.ssrn.com/index.cfm/en/sustainable-transport/" target="_blank">View the Research</a></div> <p>&nbsp;</p> </center> </div> </div> </div> </div> <div class="row"> <div class="home-main-col"> <div class="box-container box-container-top box-research-networks"> <h2 class="section-title">First Look</h2> <div class="links-list"> <a href="https://www.ssrn.com/index.cfm/en/acta-materialia-inc-fl">Acta Materialia, Inc.</a> <a href="https://www.ssrn.com/index.cfm/en/cell-press-sneak-peek">Cell Press Sneak Peek</a> <a href="https://www.ssrn.com/index.cfm/en/food-microbiology">Food Microbiology</a> <a href="https://www.ssrn.com/index.cfm/en/food-packaging-and-shelf-life">Food Packaging and Shelf Life</a> <a href="https://www.ssrn.com/index.cfm/en/food-structure">Food Structure</a> <a href="https://www.ssrn.com/index.cfm/en/heliyon">Heliyon</a> <a href="https://www.ssrn.com/index.cfm/en/jacc-basic-to-translational-science">JACC: Basic to Translational Science</a> <a href="https://www.ssrn.com/index.cfm/en/jacc-clinical-electrophysiology">JACC: Clinical Electrophysiology</a> <a href="https://www.ssrn.com/index.cfm/en/journal-of-archaeological-science">Journal of Archaeological Science</a> <a href="https://www.ssrn.com/index.cfm/en/journal-of-economic-dynamics-and-control">Journal of Economic Dynamics and Control</a> <a href="https://www.ssrn.com/index.cfm/en/the-journal-of-the-economics-of-ageing">Journal of the Economics of Ageing</a> <a href="https://www.ssrn.com/index.cfm/en/journal-web-semantics">Journal of Web Semantics</a> <a href="https://www.ssrn.com/index.cfm/en/keai">KeAi</a> <a href="https://www.ssrn.com/index.cfm/en/materials-today">Materials Today</a> <a href="https://www.ssrn.com/index.cfm/en/neuroimage-clinical">NeuroImage: Clinical</a> <a href="https://www.ssrn.com/index.cfm/en/neuroscience">Neuroscience</a> <a href="https://www.ssrn.com/index.cfm/en/the-lancet">Preprints with The Lancet</a> <a href="https://www.ssrn.com/index.cfm/en/scientific-african">Scientific African</a> <a href="https://www.ssrn.com/index.cfm/en/social-sciences-humanities-open-fl">Social Sciences & Humanities Open</a> <a href="https://www.ssrn.com/index.cfm/en/stem-cell-research">Stem Cell Research</a> <a href="https://www.ssrn.com/index.cfm/en/surgery-open-science">Surgery Open Science</a> <a href="https://www.ssrn.com/index.cfm/en/ultrasonics-sonochemistry">Ultrasonics Sonochemistry</a> </div> <h2 class="section-title">New Networks</h2> <div class="links-list"> <a href="/index.cfm/en/finplanrn/"> <span>Financial & Investment Planning</span> <span>FIPRN</span> </a> <a href="/index.cfm/en/mathrn/"> <span>Mathematics</span> <span>MathRN</span> </a> <a href="/index.cfm/en/physicsrn/"> <span>Physics</span> <span>PhysicsRN</span> </a> </div> <h2 class="section-title disciplines-title">Research Disciplines</h2> <div class="disciplines-container"> <a href="/index.cfm/en/applied-sciences/" class="discipline-item"> <h1>Applied Sciences <span class="glyphicon glyphicon-menu-right"></span></h1> <p>APPLIED SCIENCES are those disciplines, including applied and pure mathematics, that apply existing scientific knowledge to develop practical applications.</p> </a> <a href="/index.cfm/en/health-sciences/" class="discipline-item"> <h1>Health Sciences <span class="glyphicon glyphicon-menu-right"></span></h1> <p>HEALTH SCIENCES are those disciplines that address the use of science and technology to the delivery of healthcare.</p> </a> <a href="/index.cfm/en/humanities/" class="discipline-item"> <h1>Humanities <span class="glyphicon glyphicon-menu-right"></span></h1> <p>HUMANITIES are those disciplines that investigate human constructs, cultures and concerns, using critical and analytical approaches.</p> </a> <a href="/index.cfm/en/life-sciences/" class="discipline-item"> <h1>Life Sciences <span class="glyphicon glyphicon-menu-right"></span></h1> <p>LIFE SCIENCES are those disciplines that study living organisms, their life processes, and their relationships to each other and their environment.</p> </a> <a href="/index.cfm/en/physical-sciences/" class="discipline-item"> <h1>Physical Sciences <span class="glyphicon glyphicon-menu-right"></span></h1> <p>PHYSICAL SCIENCES are those disciplines that study natural sciences, dealing with nonliving materials.</p> </a> <a href="/index.cfm/en/social-sciences/" class="discipline-item"> <h1>Social Sciences <span class="glyphicon glyphicon-menu-right"></span></h1> <p>SOCIAL SCIENCES are those disciplines that study (a) institutions and functioning of human society and the interpersonal relationships of individuals as members of society; (b) a particular phase or aspect of human society.</p> </a> </div> </div> </div> <div class="home-side-col"> <div class="box-container box-discoverable-research"> <center> <div class="box-container-image"><a data-sc-promo-id="blog posts" href="https://blog.ssrn.com/2024/09/13/meet-the-author-cass-sunstein/" target="_blank"><img alt="Blog" src="/sites/en/assets/Image/Image/cass.jpg" /> </a></div> <p>&nbsp;</p> <div class="button-wrapper inline"><a class="button-link primary" data-sc-promo-id="Blog" href="https://blog.ssrn.com/2024/09/13/meet-the-author-cass-sunstein/" target="_blank">Meet the Author: Cass Sunstein<br /> View the SSRN Blog</a></div> </center> <p>&nbsp;</p> </div> <div class="box-container box-quick-links"> <h2 class="section-title">Products and Services</h2> <div class="quick-links"> <a href="/index.cfm/en/rps/"> <span class="img-container"> <img src="https://www.ssrn.com/sites/en/includes/themes/merced/images/icon-research-paper-series.svg" alt="Icon Research Paper Series"> </span> Research Paper Series </a> <a href="/index.cfm/en/site-subscriptions/"> <span class="img-container"> <img src="https://www.ssrn.com/sites/en/includes/themes/merced/images/icon-site-subscriptions.svg" alt="Icon Site Subscriptions"> </span> Site Subscriptions </a> <a href="/index.cfm/en/sponsored-services/"> <span class="img-container"> <img src="https://www.ssrn.com/sites/en/includes/themes/merced/images/icon-sponsored-services.svg" alt="Icon Sponsored Services"> </span> Sponsored Services </a> <a href="/index.cfm/en/Announcements-Jobs/"> <span class="img-container"> <img src="https://www.ssrn.com/sites/en/includes/themes/merced/images/icon-jobs-and-announcements.svg" alt="Icon Jobs and Announcements"> </span> Jobs &amp; Announcements </a> <a href="/index.cfm/en/conferences/"> <span class="img-container"> <img src="https://www.ssrn.com/sites/en/includes/themes/merced/images/icon-conferences.svg" alt="Icon Conferences Papers"> </span> Conference Papers </a> <a href="/index.cfm/en/partners-in-publishing/"> <span class="img-container"> <img src="https://www.ssrn.com/sites/en/includes/themes/merced/images/icon-partners-in-publishing.svg" alt="Icon Partners in Publishing"> </span> Partners in Publishing </a> <a href="/index.cfm/en/first-look/"> <span class="img-container"> <img src="https://www.ssrn.com/sites/en/includes/themes/merced/images/icon-first-look.svg" alt="First Look"> </span> First Look </a> </div> </div> <!-- /box-container --> </div> <!-- /home-side-col --> </div> <div class="row"> <div class="home-full-col"> <div class="box-container box-recent-announcements"> <h2 class="section-title">Recent Announcements</h2> <div class="links-boxes"> <a href="/index.cfm/en/energyrn/ads/11142024ann002/">Announcing Energy Conference 2023: National &amp; Global Issues (ENCON 23) eJournal<span>14 Nov 2024</span></a> <a href="/index.cfm/en/lsn/ads/11142024ann001/">The University of British Columbia Joins Law School Research Papers - Legal Studies<span>14 Nov 2024</span></a> <a href="/index.cfm/en/lsn/ads/10292024ann002/">Announcing Upgraded LSN European Central Bank Legal Working Paper Series<span>14 Nov 2024</span></a> <a href="/index.cfm/en/srpn/ads/10292024ann001/">Announcing Upgraded SRPN OIDA International Journal of Sustainable Development<span>14 Nov 2024</span></a> <a href="/index.cfm/en/lsn/ads/10162024ann007/">Wolverhampton Law Journal Joins LSN Partners in Publishing Journals<span>14 Nov 2024</span></a> </div> <a class="view-all" href="/index.cfm/en/recent-announcements/"><i class="icon-gizmo-navigate-right" aria-hidden="true"></i> View all announcements</a> </div> </div> </div> </div> </div> <div class="footer-home footer-redesigned"> <div class="container"> <div class="row"> <div class="col-left col-sm-6"> <h3>About SSRN</h3> <p> SSRN is devoted to the rapid worldwide dissemination of preprints and research papers and is composed of a number of specialized research networks. </p> </div> <div class="col-right col-sm-6"> <div class="special-thanks"> <p>Special thanks to:</p> <div class="special-thanks-logos"> <a href="http://www.chicagobooth.edu" target="_blank" class="chicagobooth" alt="Chicago Booth logo" aria-label="Chicago Booth"></a> <a href="http://www.ecgi.org" target="_blank" class="european-coorporate" alt="European Corporate Governance Institute logo" aria-label="European Corporate Governance Institute"></a> <a href="http://biz.korea.ac.kr/en" target="_blank" class="korea-university" alt="Korea University Business School logo" aria-label="Korea University Business School"></a> <a href="http://www.law.stanford.edu" target="_blank" class="stanford" alt="Stanford Law School logo" aria-label="Stanford Law School"></a> </div> </div> </div> </div> </div> </div> <script type="text/javascript" src="js/home_mura.js"></script> <article> </article> </div> <footer> <div class="wrap clearfix"> <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"> <!--FOOTER--> <nav aria-label="footer-navigation" class="footer-integration footer-redesigned "> <div class="container"> <div class="row"> <div class="footer-col"> <div class="button-wrapper inline"> <a href="https://hq.ssrn.com/submission.cfm" class="button-link secondary submit-paper-btn" > <span>Submit a Paper</span> <i class="icon icon-gizmo-navigate-right"></i> </a> </div> <a class="section-508-link" href="https://www.ssrn.com/index.cfm/en/section-508/" title="Section 508 Text Only Pages">Section 508 Text Only Pages</a> </div> <div class="footer-col"> <h4 data-toggle="collapse">SSRN Quick Links <i class="icon-gizmo-navigate-down" aria-hidden="true"></i></h4> <ul class="footer-links collapsable"> <li><a target="_blank" href="https://www.elsevier.com/solutions/ssrn" title="SSRN Solutions">SSRN Solutions</a></li> <li><a href="https://www.ssrn.com/index.cfm/en/rps/" title="Research Paper Series">Research Paper Series</a></li> <li><a href="https://www.ssrn.com/index.cfm/en/conferences/" title="Conference Papers">Conference Papers</a></li> <li><a href="https://papers.ssrn.com/sol3/DisplayPipPublishers.cfm" title="Partners in Publishing">Partners in Publishing</a></li> <li><a href="https://www.ssrn.com/index.cfm/en/Announcements-Jobs/" title="Jobs &amp; Announcements">Jobs &amp; Announcements</a></li> <li><a href="https://www.ssrn.com/index.cfm/en/special-topic-hubs/" title="Jobs &amp; Announcements">Special Topic Hubs</a></li> </ul> </div> <div class="footer-col"> <h4 data-toggle="collapse">SSRN Rankings <i class="icon-gizmo-navigate-down" aria-hidden="true"></i></h4> <ul class="footer-links collapsable"> <li><a href="https://hq.ssrn.com/rankings/Ranking_display.cfm?TRN_gID=10" title="Top Papers">Top Papers</a></li> <li><a href="https://www.ssrn.com/index.cfm/en/top-authors/" title="Top Authors">Top Authors</a></li> <li><a href="https://www.ssrn.com/index.cfm/en/top-organizations/" title="Top Organizations">Top Organizations</a></li> </ul> </div> <div class="footer-col"> <h4 data-toggle="collapse">About SSRN <i class="icon-gizmo-navigate-down" aria-hidden="true"></i></h4> <ul class="footer-links collapsable"> <li><a href="https://www.ssrn.com/index.cfm/en/network-directors/" title="Network Directors">Network Directors</a></li> <li><a href="https://www.ssrn.com/index.cfm/en/recent-announcements/" title="Announcements">Announcements</a></li> <li><a href="https://www.ssrn.com/index.cfm/en/contactus/" title="Contact us">Contact us</a></li> <li><a href="https://service.elsevier.com/app/home/supporthub/ssrn/" title="FAQs">FAQs</a></li> </ul> </div> </div> <ul class="footer-social-links"> <li><a target="_blank" href="https://www.facebook.com/SSRNcommunity/" title="SSRN on Facebook" aria-label="Facebook" role="link"><i class="icon icon-social-facebook" aria-hidden="true"></i></a></li> <li><a target="_blank" href="https://www.linkedin.com/company/493409?trk=tyah&trkInfo=clickedVertical%3Acompany%2CentityType%3AentityHistoryName%2CclickedEntityId%3Acompany_493409%2Cidx%3A0" title="SSRN on Linkedin" aria-label="Linkedin" role="link"><i class="icon icon-social-linkedin" aria-hidden="true"></i></a></li> <li><a target="_blank" href="https://twitter.com/SSRN" title="SSRN on Twitter" aria-label="Twitter" role="link"><i class="icon icon-social-twitter" aria-hidden="true"></i></a></li> </ul> <div class="footer-elsevier"> <div class="footer-left"> <a class="logo-elsevier" target="_blank" href="http://www.elsevier.com/" title="Elsevier"></a> </div> <div class="footer-left"> <div class="footer-links"> <a href="https://www.ssrn.com/index.cfm/en/dmca-notice-policy/" title="Copyright">Copyright</a> <a href="https://www.ssrn.com/index.cfm/en/terms-of-use/" title="Terms and Conditions">Terms and Conditions</a> <a target="_blank" href="https://www.elsevier.com/legal/privacy-policy" title="Privacy Policy">Privacy Policy</a> </div> <div class="footer-text"> <p style="padding-bottom: 0.8em">All content on this site: Copyright 漏 2024 Elsevier Inc., its licensors, and contributors. All rights are reserved, including those for text and data mining, AI training, and similar technologies. For all open access content, the Creative Commons licensing terms apply.</p> <p>We use cookies to help provide and enhance our service and tailor content.</p> <p>To learn more, visit <button id="ot-sdk-btn" class="ot-sdk-show-settings">Cookie Settings</button>. <span class="icon-gizmo-lightning alwaysshowme"> <span class="tooltip top" role="tooltip"> <span class="tooltip-arrow"></span> <span class="tooltip-inner">This page was processed by aws-apollo-l100 in <span id="serverTime"> 0.063</span> seconds <span id="loadingtime"></span></span> </span> </span> </p> </div> </div> <div class="footer-right"> <a class="logo-relx" target="_blank" href="http://www.relx.com/" title="RELX"></a> </div> </div> </div> </nav> <!--END FOOTER--> <script> window.appData = window.appData || []; var pageLoadData = pageData; pageLoadData['event'] = 'pageLoad'; appData.push(pageLoadData); </script> <script type="text/javascript" language="JavaScript"> var participantId="";; var ssrnEnv="production";; var userName="";; var isAuthor="";; var emailAddress="";; var firstName="";; var lastName="";; var remoteIpAddr="8.222.208.146";; var cfSessionId="mura02957AC206B109B55948F51182CAD522_12f527f5-bdb4-4396-ab7d-8b5f98a1df00_0";; var pendoAAUserId = pageData.visitor.userId; var pendoAAVisitorId ; if (typeof window.pageDataTracker !== 'undefined') { pendoAAVisitorId = window.pageDataTracker.getVisitorId(); } </script> <script type="text/javascript" language="JavaScript"> (function(apiKey){ (function(p,e,n,d,o){var v,w,x,y,z;o=p[d]=p[d]||{};o._q=o._q||[]; v=['initialize','identify','updateOptions','pageLoad','track'];for(w=0,x=v.length;w<x;++w)(function(m){ o[m]=o[m]||function(){o._q[m===v[0]?'unshift':'push']([m].concat([].slice.call(arguments,0)));};})(v[w]); y=e.createElement(n);y.async=!0;y.src='https://cdn.pendo.io/agent/static/'+apiKey+'/pendo.js'; z=e.getElementsByTagName(n)[0];z.parentNode.insertBefore(y,z);})(window,document,'script','pendo'); // Call this whenever information about your visitors becomes available // Please use Strings, Numbers, or Bools for value types. pendo.initialize({ visitor: { id: participantId, // Required if user is logged in email: emailAddress, // full_name: // Recommended if using Pendo Feedback // role: // Optional // You can add any additional visitor level key-values here, // as long as it's not one of the above reserved names. env: ssrnEnv, userName: userName, isAuthor: isAuthor, emailAddress: emailAddress, firstName: firstName, lastName: lastName, remoteIpAddress: remoteIpAddr, AAUserId: pendoAAUserId, AAVisitorId: pendoAAVisitorId, CFSessionId: cfSessionId, }, account: { id: 'ACCOUNT-UNIQUE-ID' // Highly recommended // name: // Optional // is_paying: // Recommended if using Pendo Feedback // monthly_value:// Recommended if using Pendo Feedback // planLevel: // Optional // planPrice: // Optional // creationDate: // Optional // You can add any additional account level key-values here, // as long as it's not one of the above reserved names. } }); })('16bd5dd1-e029-4c34-7a4c-3482b1250970'); </script> </div> </footer> </div> <script src="//www.ssrn.com/core/modules/v1/cta/js/mura.displayobject.cta.min.js" ></script> <script src="/core/modules/v1/gatedasset/assets/js/module.js"></script></body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10