{"version":3,"file":"jquery.number.min.js","sources":["Scripts/commun/lib/plugins/jquery.number.js"],"sourcesContent":["/**\r\n * jQuery number plug-in 2.1.0\r\n * Copyright 2012, Digital Fusion\r\n * Licensed under the MIT license.\r\n * http://opensource.teamdf.com/license/\r\n *\r\n * A jQuery plugin which implements a permutation of phpjs.org's number_format to provide\r\n * simple number formatting, insertion, and as-you-type masking of a number.\r\n * \r\n * @author\tSam Sehnert\r\n * @docs\thttps://github.com/customd/jquery-number\r\n */\n(function ($) {\n  /**\r\n   * Method for selecting a range of characters in an input/textarea.\r\n   *\r\n   * @param int rangeStart\t\t\t: Where we want the selection to start.\r\n   * @param int rangeEnd\t\t\t\t: Where we want the selection to end.\r\n   *\r\n   * @return void;\r\n   */\n  function setSelectionRange(rangeStart, rangeEnd) {\n    // Check which way we need to define the text range.\n    if (this.createTextRange) {\n      var range = this.createTextRange();\n      range.collapse(true);\n      range.moveStart('character', rangeStart);\n      range.moveEnd('character', rangeEnd - rangeStart);\n      range.select();\n    }\n\n    // Alternate setSelectionRange method for supporting browsers.\n    else if (this.setSelectionRange) {\n      this.focus();\n      this.setSelectionRange(rangeStart, rangeEnd);\n    }\n  }\n\n  /**\r\n   * Get the selection position for the given part.\r\n   * \r\n   * @param string part\t\t\t: Options, 'Start' or 'End'. The selection position to get.\r\n   *\r\n   * @return int : The index position of the selection part.\r\n   */\n  function getSelection(part) {\n    var pos = this.value.length;\n\n    // Work out the selection part.\n    part = part.toLowerCase() == 'start' ? 'Start' : 'End';\n    if (document.selection) {\n      // The current selection\n      var range = document.selection.createRange(),\n        stored_range,\n        selectionStart,\n        selectionEnd;\n      // We'll use this as a 'dummy'\n      stored_range = range.duplicate();\n      // Select all text\n      //stored_range.moveToElementText( this );\n      stored_range.expand('textedit');\n      // Now move 'dummy' end point to end point of original range\n      stored_range.setEndPoint('EndToEnd', range);\n      // Now we can calculate start and end points\n      selectionStart = stored_range.text.length - range.text.length;\n      selectionEnd = selectionStart + range.text.length;\n      return part == 'Start' ? selectionStart : selectionEnd;\n    } else if (typeof this['selection' + part] != \"undefined\") {\n      pos = this['selection' + part];\n    }\n    return pos;\n  }\n\n  /**\r\n   * Substitutions for keydown keycodes.\r\n   * Allows conversion from e.which to ascii characters.\r\n   */\n  var _keydown = {\n    codes: {\n      188: 44,\n      109: 45,\n      190: 46,\n      191: 47,\n      192: 96,\n      220: 92,\n      222: 39,\n      221: 93,\n      219: 91,\n      173: 45,\n      187: 61,\n      //IE Key codes\n      186: 59,\n      //IE Key codes\n      189: 45,\n      //IE Key codes\n      110: 46 //IE Key codes\n    },\n    shifts: {\n      96: \"~\",\n      49: \"!\",\n      50: \"@\",\n      51: \"#\",\n      52: \"$\",\n      53: \"%\",\n      54: \"^\",\n      55: \"&\",\n      56: \"*\",\n      57: \"(\",\n      48: \")\",\n      45: \"_\",\n      61: \"+\",\n      91: \"{\",\n      93: \"}\",\n      92: \"|\",\n      59: \":\",\n      39: \"\\\"\",\n      44: \"<\",\n      46: \">\",\n      47: \"?\"\n    }\n  };\n\n  /**\r\n   * jQuery number formatter plugin. This will allow you to format numbers on an element.\r\n   *\r\n   * @params proxied for format_number method.\r\n   *\r\n   * @return : The jQuery collection the method was called with.\r\n   */\n  $.fn.number = function (number, decimals, dec_point, thousands_sep) {\n    // Enter the default thousands separator, and the decimal placeholder.\n    thousands_sep = typeof thousands_sep === 'undefined' ? ',' : thousands_sep;\n    dec_point = typeof dec_point === 'undefined' ? '.' : dec_point;\n    decimals = typeof decimals === 'undefined' ? 0 : decimals;\n\n    // Work out the unicode character for the decimal placeholder.\n    var u_dec = \"\\\\u\" + ('0000' + dec_point.charCodeAt(0).toString(16)).slice(-4),\n      regex_dec_num = new RegExp('[^' + u_dec + '0-9]', 'g'),\n      regex_dec = new RegExp(u_dec, 'g');\n\n    // If we've specified to take the number from the target element,\n    // we loop over the collection, and get the number.\n    if (number === true) {\n      // If this element is a number, then we add a keyup\n      if (this.is('input:text')) {\n        // Return the jquery collection.\n        return this.on({\n          /**\r\n           * Handles keyup events, re-formatting numbers.\r\n           *\r\n           * @param object e\t\t\t: the keyup event object.s\r\n           *\r\n           * @return void;\r\n           */\n          'keydown.format': function keydownFormat(e) {\n            // Define variables used in the code below.\n            var $this = $(this),\n              data = $this.data('numFormat'),\n              code = e.keyCode ? e.keyCode : e.which,\n              chara = '',\n              //unescape(e.originalEvent.keyIdentifier.replace('U+','%u')),\n              start = getSelection.apply(this, ['start']),\n              end = getSelection.apply(this, ['end']),\n              val = '',\n              setPos = false;\n\n            // Webkit (Chrome & Safari) on windows screws up the keyIdentifier detection\n            // for numpad characters. I've disabled this for now, because while keyCode munging\n            // below is hackish and ugly, it actually works cross browser & platform.\n\n            //\t    \t\t\t\tif( typeof e.originalEvent.keyIdentifier !== 'undefined' )\n            //\t    \t\t\t\t{\n            //\t    \t\t\t\t\tchara = unescape(e.originalEvent.keyIdentifier.replace('U+','%u'));\n            //\t    \t\t\t\t}\n            //\t    \t\t\t\telse\n            //\t    \t\t\t\t{\n            if (_keydown.codes.hasOwnProperty(code)) {\n              code = _keydown.codes[code];\n            }\n            if (!e.shiftKey && code >= 65 && code <= 90) {\n              code += 32;\n            } else if (!e.shiftKey && code >= 69 && code <= 105) {\n              code -= 48;\n            } else if (e.shiftKey && _keydown.shifts.hasOwnProperty(code)) {\n              //get shifted keyCode value\n              chara = _keydown.shifts[code];\n            }\n            if (chara == '') chara = String.fromCharCode(code);\n            //\t    \t\t\t\t}\n\n            // Stop executing if the user didn't type a number key, a decimal character, or backspace.\n            if (code !== 8 && chara != dec_point && !chara.match(/[0-9]/)) {\n              // We need the original keycode now...\n              var key = e.keyCode ? e.keyCode : e.which;\n              if (\n              // Allow control keys to go through... (delete, etc)\n              key == 46 || key == 8 || key == 9 || key == 27 || key == 13 ||\n              // Allow: Ctrl+A, Ctrl+R\n              (key == 65 || key == 82) && (e.ctrlKey || e.metaKey) === true ||\n              // Allow: home, end, left, right\n              key >= 35 && key <= 39) {\n                return;\n              }\n              // But prevent all other keys.\n              e.preventDefault();\n              return false;\n            }\n\n            //console.log('Continuing on: ', code, chara);\n\n            // The whole lot has been selected, or if the field is empty, and the character\n            if ((start == 0 && end == this.value.length || $this.val() == 0) && !e.metaKey && !e.ctrlKey && !e.altKey && chara.length === 1 && chara != 0) {\n              // Blank out the field, but only if the data object has already been instanciated.\n              start = end = 1;\n              this.value = '';\n\n              // Reset the cursor position.\n              data.init = decimals > 0 ? -1 : 0;\n              data.c = decimals > 0 ? -(decimals + 1) : 0;\n              setSelectionRange.apply(this, [0, 0]);\n            }\n\n            // Otherwise, we need to reset the caret position\n            // based on the users selection.\n            else {\n              data.c = end - this.value.length;\n            }\n\n            // If the start position is before the decimal point,\n            // and the user has typed a decimal point, we need to move the caret\n            // past the decimal place.\n            if (decimals > 0 && chara == dec_point && start == this.value.length - decimals - 1) {\n              data.c++;\n              data.init = Math.max(0, data.init);\n              e.preventDefault();\n\n              // Set the selection position.\n              setPos = this.value.length + data.c;\n            }\n\n            // If the user is just typing the decimal place,\n            // we simply ignore it.\n            else if (chara == dec_point) {\n              data.init = Math.max(0, data.init);\n              e.preventDefault();\n            }\n\n            // If hitting the delete key, and the cursor is behind a decimal place,\n            // we simply move the cursor to the other side of the decimal place.\n            else if (decimals > 0 && code == 8 && start == this.value.length - decimals) {\n              e.preventDefault();\n              data.c--;\n\n              // Set the selection position.\n              setPos = this.value.length + data.c;\n            }\n\n            // If hitting the delete key, and the cursor is to the right of the decimal\n            // (but not directly to the right) we replace the character preceeding the\n            // caret with a 0.\n            else if (decimals > 0 && code == 8 && start > this.value.length - decimals) {\n              if (this.value === '') return;\n\n              // If the character preceeding is not already a 0,\n              // replace it with one.\n              if (this.value.slice(start - 1, start) != '0') {\n                val = this.value.slice(0, start - 1) + '0' + this.value.slice(start);\n                $this.val(val.replace(regex_dec_num, '').replace(regex_dec, dec_point));\n              }\n              e.preventDefault();\n              data.c--;\n\n              // Set the selection position.\n              setPos = this.value.length + data.c;\n            }\n\n            // If the delete key was pressed, and the character immediately\n            // before the caret is a thousands_separator character, simply\n            // step over it.\n            else if (code == 8 && this.value.slice(start - 1, start) == thousands_sep) {\n              e.preventDefault();\n              data.c--;\n\n              // Set the selection position.\n              setPos = this.value.length + data.c;\n            }\n\n            // If the caret is to the right of the decimal place, and the user is entering a\n            // number, remove the following character before putting in the new one. \n            else if (decimals > 0 && start == end && this.value.length > decimals + 1 && start > this.value.length - decimals - 1 && isFinite(+chara) && !e.metaKey && !e.ctrlKey && !e.altKey && chara.length === 1) {\n              // If the character preceeding is not already a 0,\n              // replace it with one.\n              if (end === this.value.length) {\n                val = this.value.slice(0, start - 1);\n              } else {\n                val = this.value.slice(0, start) + this.value.slice(start + 1);\n              }\n\n              // Reset the position.\n              this.value = val;\n              setPos = start;\n            }\n\n            // If we need to re-position the characters.\n            if (setPos !== false) {\n              //console.log('Setpos keydown: ', setPos );\n              setSelectionRange.apply(this, [setPos, setPos]);\n            }\n\n            // Store the data on the element.\n            $this.data('numFormat', data);\n          },\n          /**\r\n           * Handles keyup events, re-formatting numbers.\r\n           *\r\n           * @param object e\t\t\t: the keyup event object.s\r\n           *\r\n           * @return void;\r\n           */\n          'keyup.format': function keyupFormat(e) {\n            // Store these variables for use below.\n            var $this = $(this),\n              data = $this.data('numFormat'),\n              code = e.keyCode ? e.keyCode : e.which,\n              start = getSelection.apply(this, ['start']),\n              setPos;\n\n            // Stop executing if the user didn't type a number key, a decimal, or a comma.\n            if (this.value === '' || (code < 48 || code > 57) && (code < 96 || code > 105) && code !== 8) return;\n\n            // Re-format the textarea.\n            $this.val($this.val());\n            if (decimals > 0) {\n              // If we haven't marked this item as 'initialised'\n              // then do so now. It means we should place the caret just \n              // before the decimal. This will never be un-initialised before\n              // the decimal character itself is entered.\n              if (data.init < 1) {\n                start = this.value.length - decimals - (data.init < 0 ? 1 : 0);\n                data.c = start - this.value.length;\n                data.init = 1;\n                $this.data('numFormat', data);\n              }\n\n              // Increase the cursor position if the caret is to the right\n              // of the decimal place, and the character pressed isn't the delete key.\n              else if (start > this.value.length - decimals && code != 8) {\n                data.c++;\n\n                // Store the data, now that it's changed.\n                $this.data('numFormat', data);\n              }\n            }\n\n            //console.log( 'Setting pos: ', start, decimals, this.value.length + data.c, this.value.length, data.c );\n\n            // Set the selection position.\n            setPos = this.value.length + data.c;\n            setSelectionRange.apply(this, [setPos, setPos]);\n          },\n          /**\r\n           * Reformat when pasting into the field.\r\n           *\r\n           * @param object e \t\t: jQuery event object.\r\n           *\r\n           * @return false : prevent default action.\r\n           */\n          'paste.format': function pasteFormat(e) {\n            // Defint $this. It's used twice!.\n            var $this = $(this),\n              original = e.originalEvent,\n              val = null;\n\n            // Get the text content stream.\n            if (window.clipboardData && window.clipboardData.getData) {\n              // IE\n              val = window.clipboardData.getData('Text');\n            } else if (original.clipboardData && original.clipboardData.getData) {\n              val = original.clipboardData.getData('text/plain');\n            }\n\n            // Do the reformat operation.\n            $this.val(val);\n\n            // Stop the actual content from being pasted.\n            e.preventDefault();\n            return false;\n          }\n        })\n\n        // Loop each element (which isn't blank) and do the format.\n        .each(function () {\n          var $this = $(this).data('numFormat', {\n            c: -(decimals + 1),\n            decimals: decimals,\n            thousands_sep: thousands_sep,\n            dec_point: dec_point,\n            regex_dec_num: regex_dec_num,\n            regex_dec: regex_dec,\n            init: false\n          });\n\n          // Return if the element is empty.\n          if (this.value === '') return;\n\n          // Otherwise... format!!\n          $this.val($this.val());\n        });\n      } else {\n        // return the collection.\n        return this.each(function () {\n          var $this = $(this),\n            num = +$this.text().replace(regex_dec_num, '').replace(regex_dec, '.');\n          $this.number(!isFinite(num) ? 0 : +num, decimals, dec_point, thousands_sep);\n        });\n      }\n    }\n\n    // Add this number to the element as text.\n    return this.text($.number.apply(window, arguments));\n  };\n\n  //\n  // Create .val() hooks to get and set formatted numbers in inputs.\n  //\n\n  // We check if any hooks already exist, and cache\n  // them in case we need to re-use them later on.\n  var origHookGet = null,\n    origHookSet = null;\n\n  // Check if a text valHook already exists.\n  if ($.valHooks.text) {\n    // Preserve the original valhook function\n    // we'll call this for values we're not \n    // explicitly handling.\n    origHookGet = $.valHooks.text.get;\n    origHookSet = $.valHooks.text.set;\n  } else {\n    // Define an object for the new valhook.\n    $.valHooks.text = {};\n  }\n\n  /**\r\n   * Define the valHook to return normalised field data against an input\r\n   * which has been tagged by the number formatter.\r\n   *\r\n   * @param object el\t\t\t: The raw DOM element that we're getting the value from.\r\n   *\r\n   * @return mixed : Returns the value that was written to the element as a\r\n   *\t\t\t\t   javascript number, or undefined to let jQuery handle it normally.\r\n   */\n  $.valHooks.text.get = function (el) {\n    // Get the element, and its data.\n    var $this = $(el),\n      num,\n      data = $this.data('numFormat');\n\n    // Does this element have our data field?\n    if (!data) {\n      // Check if the valhook function already existed\n      if ($.isFunction(origHookGet)) {\n        // There was, so go ahead and call it\n        return origHookGet(el);\n      } else {\n        // No previous function, return undefined to have jQuery\n        // take care of retrieving the value\n        return undefined;\n      }\n    } else {\n      // Remove formatting, and return as number.\n      if (el.value === '') return '';\n\n      // Convert to a number.\n      num = +el.value.replace(data.regex_dec_num, '').replace(data.regex_dec, '.');\n\n      // If we've got a finite number, return it.\n      // Otherwise, simply return 0.\n      // Return as a string... thats what we're\n      // used to with .val()\n      return '' + (isFinite(num) ? num : 0);\n    }\n  };\n\n  /**\r\n   * A valhook which formats a number when run against an input\r\n   * which has been tagged by the number formatter.\r\n   *\r\n   * @param object el\t\t: The raw DOM element (input element).\r\n   * @param float\t\t\t: The number to set into the value field.\r\n   *\r\n   * @return mixed : Returns the value that was written to the element,\r\n   *\t\t\t\t   or undefined to let jQuery handle it normally. \r\n   */\n  $.valHooks.text.set = function (el, val) {\n    // Get the element, and its data.\n    var $this = $(el),\n      data = $this.data('numFormat');\n\n    // Does this element have our data field?\n    if (!data) {\n      // Check if the valhook function already existed\n      if ($.isFunction(origHookSet)) {\n        // There was, so go ahead and call it\n        return origHookSet(el, val);\n      } else {\n        // No previous function, return undefined to have jQuery\n        // take care of retrieving the value\n        return undefined;\n      }\n    } else {\n      return el.value = $.number(val, data.decimals, data.dec_point, data.thousands_sep);\n    }\n  };\n\n  /**\r\n   * The (modified) excellent number formatting method from PHPJS.org.\r\n   * http://phpjs.org/functions/number_format/\r\n   *\r\n   * @modified by Sam Sehnert (teamdf.com)\r\n   *\t- don't redefine dec_point, thousands_sep... just overwrite with defaults.\r\n   *\t- don't redefine decimals, just overwrite as numeric.\r\n   *\t- Generate regex for normalizing pre-formatted numbers.\r\n   *\r\n   * @param float number\t\t\t: The number you wish to format, or TRUE to use the text contents\r\n   *\t\t\t\t\t\t\t\t  of the element as the number. Please note that this won't work for\r\n   *\t\t\t\t\t\t\t\t  elements which have child nodes with text content.\r\n   * @param int decimals\t\t\t: The number of decimal places that should be displayed. Defaults to 0.\r\n   * @param string dec_point\t\t: The character to use as a decimal point. Defaults to '.'.\r\n   * @param string thousands_sep\t: The character to use as a thousands separator. Defaults to ','.\r\n   *\r\n   * @return string : The formatted number as a string.\r\n   */\n  $.number = function (number, decimals, dec_point, thousands_sep) {\n    // Set the default values here, instead so we can use them in the replace below.\n    thousands_sep = typeof thousands_sep === 'undefined' ? ',' : thousands_sep;\n    dec_point = typeof dec_point === 'undefined' ? '.' : dec_point;\n    decimals = !isFinite(+decimals) ? 0 : Math.abs(decimals);\n\n    // Work out the unicode representation for the decimal place.\t\n    var u_dec = \"\\\\u\" + ('0000' + dec_point.charCodeAt(0).toString(16)).slice(-4);\n\n    // Fix the number, so that it's an actual number.\n    number = (number + '').replace(new RegExp(u_dec, 'g'), '.').replace(new RegExp('[^0-9+\\-Ee.]', 'g'), '');\n    var n = !isFinite(+number) ? 0 : +number,\n      s = '',\n      toFixedFix = function toFixedFix(n, decimals) {\n        var k = Math.pow(10, decimals);\n        return '' + Math.round(n * k) / k;\n      };\n\n    // Fix for IE parseFloat(0.55).toFixed(0) = 0;(function(k){var a=new Hashtable();var f=[\"ae\",\"au\",\"ca\",\"cn\",\"eg\",\"gb\",\"hk\",\"il\",\"in\",\"jp\",\"sk\",\"th\",\"tw\",\"us\"];var b=[\"at\",\"br\",\"de\",\"dk\",\"es\",\"gr\",\"it\",\"nl\",\"pt\",\"tr\",\"vn\"];var i=[\"bg\",\"cz\",\"fi\",\"fr\",\"no\",\"pl\",\"ru\",\"se\"];var d=[\"ch\"];var g=[[\".\",\",\"],[\",\",\".\"],[\",\",\" \"],[\".\",\"'\"]];var c=[f,b,i,d];function j(n,l,m){this.dec=n;this.group=l;this.neg=m}function h(){for(var l=0;l<c.length;l++){var n=c[l];for(var m=0;m<n.length;m++){a.put(n[m],l)}}}function e(l,r){if(a.size()==0){h()}var q=\".\";var o=\",\";var p=\"-\";if(r==false){if(l.indexOf(\"_\")!=-1){l=l.split(\"_\")[1].toLowerCase()}else{if(l.indexOf(\"-\")!=-1){l=l.split(\"-\")[1].toLowerCase()}}}var n=a.get(l);if(n){var m=g[n];if(m){q=m[0];o=m[1]}}return new j(q,o,p)}k.fn.formatNumber=function(l,m,n){return this.each(function(){if(m==null){m=true}if(n==null){n=true}var p;if(k(this).is(\":input\")){p=new String(k(this).val())}else{p=new String(k(this).text())}var o=k.formatNumber(p,l);if(m){if(k(this).is(\":input\")){k(this).val(o)}else{k(this).text(o)}}if(n){return o}})};k.formatNumber=function(q,w){var w=k.extend({},k.fn.formatNumber.defaults,w);var l=e(w.locale.toLowerCase(),w.isFullLocale);var n=l.dec;var u=l.group;var o=l.neg;var m=\"0#-,.\";var t=\"\";var s=false;for(var r=0;r<w.format.length;r++){if(m.indexOf(w.format.charAt(r))==-1){t=t+w.format.charAt(r)}else{if(r==0&&w.format.charAt(r)==\"-\"){s=true;continue}else{break}}}var v=\"\";for(var r=w.format.length-1;r>=0;r--){if(m.indexOf(w.format.charAt(r))==-1){v=w.format.charAt(r)+v}else{break}}w.format=w.format.substring(t.length);w.format=w.format.substring(0,w.format.length-v.length);var p=new Number(q);return k._formatNumber(p,w,v,t,s)};k._formatNumber=function(m,q,n,H,t){var q=k.extend({},k.fn.formatNumber.defaults,q);var F=e(q.locale.toLowerCase(),q.isFullLocale);var E=F.dec;var w=F.group;var l=F.neg;if(q.overrideGroupSep!=null){w=q.overrideGroupSep}if(q.overrideDecSep!=null){E=q.overrideDecSep}if(q.overrideNegSign!=null){l=q.overrideNegSign}var z=false;if(isNaN(m)){if(q.nanForceZero==true){m=0;z=true}else{return\"\"}}if(q.isPercentage==true||(q.autoDetectPercentage&&n.charAt(n.length-1)==\"%\")){m=m*100}var B=\"\";if(q.format.indexOf(\".\")>-1){var G=E;var u=q.format.substring(q.format.lastIndexOf(\".\")+1);if(q.round==true){m=new Number(m.toFixed(u.length))}else{var L=m.toString();if(L.lastIndexOf(\".\")>0){L=L.substring(0,L.lastIndexOf(\".\")+u.length+1)}m=new Number(L)}var A=new Number(m.toString().substring(m.toString().indexOf(\".\")));decimalString=new String(A.toFixed(u.length));decimalString=decimalString.substring(decimalString.lastIndexOf(\".\")+1);for(var I=0;I<u.length;I++){if(u.charAt(I)==\"#\"&&decimalString.charAt(I)!=\"0\"){G+=decimalString.charAt(I);continue}else{if(u.charAt(I)==\"#\"&&decimalString.charAt(I)==\"0\"){var r=decimalString.substring(I);if(r.match(\"[1-9]\")){G+=decimalString.charAt(I);continue}else{break}}else{if(u.charAt(I)==\"0\"){G+=decimalString.charAt(I)}}}}B+=G}else{m=Math.round(m)}var v=Math.floor(m);if(m<0){v=Math.ceil(m)}var D=\"\";if(q.format.indexOf(\".\")==-1){D=q.format}else{D=q.format.substring(0,q.format.indexOf(\".\"))}var K=\"\";if(!(v==0&&D.substr(D.length-1)==\"#\")||z){var x=new String(Math.abs(v));var p=9999;if(D.lastIndexOf(\",\")!=-1){p=D.length-D.lastIndexOf(\",\")-1}var o=0;for(var I=x.length-1;I>-1;I--){K=x.charAt(I)+K;o++;if(o==p&&I!=0){K=w+K;o=0}}if(D.length>K.length){var J=D.indexOf(\"0\");if(J!=-1){var C=D.length-J;var s=D.length-K.length-1;while(K.length<C){var y=D.charAt(s);if(y==\",\"){y=w}K=y+K;s--}}}}if(!K&&D.indexOf(\"0\",D.length-1)!==-1){K=\"0\"}B=K+B;if(m<0&&t&&H.length>0){H=l+H}else{if(m<0){B=l+B}}if(!q.decimalSeparatorAlwaysShown){if(B.lastIndexOf(E)==B.length-1){B=B.substring(0,B.length-1)}}B=H+B+n;return B};k.fn.parseNumber=function(l,m,o){if(m==null){m=true}if(o==null){o=true}var p;if(k(this).is(\":input\")){p=new String(k(this).val())}else{p=new String(k(this).text())}var n=k.parseNumber(p,l);if(n){if(m){if(k(this).is(\":input\")){k(this).val(n.toString())}else{k(this).text(n.toString())}}if(o){return n}}};k.parseNumber=function(u,z){var z=k.extend({},k.fn.parseNumber.defaults,z);var m=e(z.locale.toLowerCase(),z.isFullLocale);var r=m.dec;var x=m.group;var s=m.neg;if(z.overrideGroupSep!=null){x=z.overrideGroupSep}if(z.overrideDecSep!=null){r=z.overrideDecSep}if(z.overrideNegSign!=null){s=z.overrideNegSign}var l=\"1234567890\";var p=\".-\";var n=z.strict;while(u.indexOf(x)>-1){u=u.replace(x,\"\")}u=u.replace(r,\".\").replace(s,\"-\");var y=\"\";var q=false;if(z.isPercentage==true||(z.autoDetectPercentage&&u.charAt(u.length-1)==\"%\")){q=true}for(var v=0;v<u.length;v++){if(l.indexOf(u.charAt(v))>-1){y=y+u.charAt(v)}else{if(p.indexOf(u.charAt(v))>-1){y=y+u.charAt(v);p=p.replace(u.charAt(v),\"\")}else{if(z.allowPostfix){break}else{if(n){y=\"NaN\";break}}}}}var t=new Number(y);if(q){t=t/100;var w=y.indexOf(\".\");if(w!=-1){var o=y.length-w-1;t=t.toFixed(o+2)}else{t=t.toFixed(2)}}return t};k.fn.parseNumber.defaults={locale:\"us\",decimalSeparatorAlwaysShown:false,isPercentage:false,autoDetectPercentage:true,isFullLocale:false,strict:false,overrideGroupSep:null,overrideDecSep:null,overrideNegSign:null,allowPostfix:false};k.fn.formatNumber.defaults={format:\"#,###.00\",locale:\"us\",decimalSeparatorAlwaysShown:false,nanForceZero:true,round:true,isFullLocale:false,overrideGroupSep:null,overrideDecSep:null,overrideNegSign:null,isPercentage:false,autoDetectPercentage:true};Number.prototype.toFixed=function(l){return k._roundNumber(this,l)};k._roundNumber=function(n,m){var l=Math.pow(10,m||0);var o=String(Math.round(n*l)/l);if(m>0){var p=o.indexOf(\".\");if(p==-1){o+=\".\";p=0}else{p=o.length-(p+1)}while(p<m){o+=\"0\";p++}}return o}})(jQuery);\n    s = (decimals ? toFixedFix(n, decimals) : '' + Math.round(n)).split('.');\n    if (s[0].length > 3) {\n      s[0] = s[0].replace(/\\B(?=(?:\\d{3})+(?!\\d))/g, thousands_sep);\n    }\n    if ((s[1] || '').length < decimals) {\n      s[1] = s[1] || '';\n      s[1] += new Array(decimals - s[1].length + 1).join('0');\n    }\n    return s.join(dec_point);\n  };\n})(jQuery);"],"names":["$","setSelectionRange","rangeStart","rangeEnd","range","this","createTextRange","collapse","moveStart","moveEnd","select","focus","getSelection","part","selectionEnd","stored_range","pos","value","length","toLowerCase","document","selection","createRange","duplicate","expand","setEndPoint","selectionStart","text","_keydown","codes","188","109","190","191","192","220","222","221","219","173","187","186","189","110","shifts","96","49","50","51","52","53","54","55","56","57","48","45","61","91","93","92","59","39","44","46","47","origHookGet","fn","number","decimals","dec_point","thousands_sep","u_dec","charCodeAt","toString","slice","regex_dec_num","RegExp","regex_dec","is","on","keydown.format","e","key","$this","data","code","keyCode","which","chara","start","apply","end","val","setPos","hasOwnProperty","shiftKey","String","fromCharCode","match","ctrlKey","metaKey","preventDefault","altKey","c","init","Math","max","replace","isFinite","keyup.format","paste.format","original","originalEvent","window","clipboardData","getData","each","num","arguments","origHookSet","valHooks","get","set","el","isFunction","abs","n","s","k","pow","round","split","Array","join","jQuery"],"mappings":"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"}