fork download
  1. /* -----------------------------------------------------------------------------
  2. Program file: cbarryp4.c
  3. Author: Christopher Barry
  4. Date: July 12, 2015
  5. Assignment: #4
  6. Objective: This program will allow the user to make simple banking
  7.   transactions. This program prompts a user to enter their current
  8.   starting balance to include dollars and cents, but must be
  9.   a positive value. The program will ask the user to perform a
  10.   number of transactions to include up to five deposits and
  11.   withdrawals. The program will store deposit and withdrawal information
  12.   using arrays. Once all deposits and withdrawals have been entered,
  13.   the program will output the ending balance. Based on the the
  14.   closing balance of the users account, the user will be given
  15.   a message in regards to their current account balance. Upon
  16.   completion of the program a banking statement will also be
  17.   printed for the user. A series of error checking methods are
  18.   built into this program.
  19. ------------------------------------------------------------------------------*/
  20. #include <stdio.h>
  21. int main(void)
  22. {
  23.  
  24. /* Declares initial variables */
  25.  
  26. int i, num_deposits, num_withdrawals;
  27. float current_bal, withdraw[5], deposit[5], closing_bal;
  28.  
  29. /* Displays message for the user */
  30.  
  31. printf("Welcome to the Computer Banking System \n\n");
  32.  
  33. /* Prompts the user to enter their current starting balance. There is an error
  34.   check built in to ensure the user enters a value greater or equal to 0. If
  35.   the user enters a value less than 0, the user is prompted to re-enter a
  36.   value. */
  37.  
  38. do {
  39. printf("Enter your current balance in dollars and cents: ");
  40. scanf("%f", &current_bal);
  41. printf("\n");
  42. if (current_bal < 0) {
  43. printf("*** Beginning balance must be at least zero, please re-enter\n");
  44. } /* end if */
  45. } while (current_bal < 0); /* end do-while */
  46.  
  47. /* Set closing_bal = to current_bal, closing_bal keeps track of the balance
  48.   throughout the program. */
  49.  
  50. closing_bal = current_bal;
  51.  
  52. /* Prompt the user for the number of deposits and withdrawals to be processed.
  53.   Throw an error for the user if the number of deposits or withdrawals is not
  54.   between 0 and 5. Reprompt the user until deposits or withdrawals is between
  55.   0 and 5. */
  56.  
  57. do {
  58. printf("Enter the number of deposits (0 - 5): ");
  59. scanf("%i", &num_deposits);
  60. printf("\n");
  61. if (num_deposits < 0 || num_deposits > 5) {
  62. printf("*** Invalid number of deposits, please re-enter.\n");
  63. } /* end if */
  64. } while (num_deposits < 0 || num_deposits > 5); /* end do-while */
  65.  
  66. do {
  67. printf("Enter the number of withdrawals (0 - 5): ");
  68. scanf("%i", &num_withdrawals);
  69. printf("\n");
  70. if (num_withdrawals < 0 || num_withdrawals > 5) {
  71. printf("*** Invalid number of withdrawals, please re-enter.\n");
  72. } /* end if */
  73. } while (num_withdrawals < 0 || num_withdrawals > 5); /* end do-while */
  74.  
  75. /* Prompt the user for all the deposits to be made to the account. Store the
  76.   deposits in the float array deposit. Throw an error for the user if the deposit
  77.   is a negative number and reprompt the user for input. Add the deposit to
  78.   closing_bal to keep track of the running account balance. */
  79.  
  80. for (i = 0; i < num_deposits; i++) {
  81. do {
  82. printf("Enter the amount of deposit #%i: ", i+1); /* Use i+1 to account for array starting index being 0. */
  83. scanf("%f", &deposit[i]);
  84. if (deposit[i] < 0) {
  85. printf("*** Deposit amount must be a positive value.\n");
  86. } /* end if */
  87. } while(deposit[i] < 0); /* end do-while loop */
  88. closing_bal += deposit[i];
  89. } /* end for statement */
  90.  
  91. printf("\n");
  92.  
  93. /* Prompt the user for all withdrawals to be made from the account. Store the
  94.   withdrawals in the float array withdraw. Throw an error for the user if the
  95.   withdrawal amount exceeds the current account balance or is a negative number
  96.   and reprompt the user for input. Subtract the withdrawal from closing_bal
  97.   to keep track of the running account balance. */
  98.  
  99. for (i = 0; i < num_withdrawals; i++) {
  100. do {
  101. printf("Enter the amount of withdraw #%i: ", i+1); /* Use i+1 to account for array starting index being 0. */
  102. scanf("%f", &withdraw[i]);
  103. if (withdraw[i] > closing_bal) {
  104. printf("*** Withdrawal amount exceeds current balance.\n");
  105. } /* end if */
  106. if (withdraw[i] < 0) {
  107. printf("*** Withdrawal amount must be a positive value.\n");
  108. } /* end if */
  109. } while (withdraw[i] > closing_bal || withdraw[i] < 0); /* end do-while loop */
  110. closing_bal -= withdraw[i];
  111. } /* end for loop */
  112.  
  113. /* Print the closing balance of the account. */
  114.  
  115. printf("\n*** The closing balance is $%.2f ***\n", closing_bal);
  116.  
  117. /* If-else statement to print specialized message for the users closing account
  118.   balance. */
  119.  
  120. if (closing_bal >= 50000.00) {
  121. printf("*** It is time to invest some money! ***\n");
  122. } else if (closing_bal >= 15000.00 && closing_bal <= 49999.99) {
  123. printf("*** Maybe you should consider a CD. ***\n");
  124. } else if (closing_bal >= 1000.00 && closing_bal <= 14999.99) {
  125. printf("*** Keep up the good work! ***\n");
  126. } else if (closing_bal >= 0.00 && closing_bal <= 999.99) {
  127. printf("*** Your balance is getting low! ***\n");
  128. } /*end if else statement */
  129.  
  130. /* Print the users banking record including starting account balance, all
  131.   deposits made to the account, all withdrawals and the closing balance of the
  132.   account */
  133.  
  134. printf("\n\n*** Bank Record ***\n\n");
  135. printf("Starting Balance: $ %.2f \n\n", current_bal);
  136.  
  137. /* Loop through the deposit array to print all the users deposits */
  138.  
  139. for (i = 0; i < num_deposits; i++) {
  140. printf("Deposit #%i: %.2f\n", i+1, deposit[i]); /* Use i+1 to account for array starting index being 0. */
  141. } /* end for-loop */
  142.  
  143. printf("\n");
  144. /* Loop through the withdraw array to print all the users withdrawals */
  145.  
  146. for (i = 0; i < num_withdrawals; i++) {
  147. printf("Withdrawal #%i: %.2f\n", i+1, withdraw[i]); /* Use i+1 to account for array starting index being 0. */
  148. } /* end for-loop */
  149.  
  150. printf("\nEnding Balance:$ %.2f\n\n", closing_bal);
  151.  
  152. return 0;
  153. } /* end main statement */
Runtime error #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
Welcome to the Computer Banking System 

Enter your current balance in dollars and cents: 
Enter the number of deposits (0 - 5): 
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals, please re-enter.
Enter the number of withdrawals (0 - 5): 
*** Invalid number of withdrawals,