Account for variability in Account Limits from various provider impls. (#1048)

* Account for variability in Account Limits from various provider impls.

* Account for variability in Account Limits from various provider impls.

* Account for variability in Account Limits from various provider impls.

* Account for variability in Account Limits from various provider impls.

* Account for variability in Account Limits from various provider impls.

* Account for variability in Account Limits from various provider impls.

* Account for variability in Account Limits from various provider impls.

* Account for variability in Account Limits from various provider impls.

* Account for variability in Account Limits from various provider impls.

* Account for variability in Account Limits from various provider impls.

* Account for variability in Account Limits from various provider impls.
diff --git a/parsers/manifest_parser_test.go b/parsers/manifest_parser_test.go
index e7358f8..bc89472 100644
--- a/parsers/manifest_parser_test.go
+++ b/parsers/manifest_parser_test.go
@@ -994,9 +994,10 @@
 
 	for i := 0; i < len(actions); i++ {
 		if actions[i].Action.Name == "hello1" {
-			assert.Nil(t, actions[i].Action.Limits, "Expected limit section to be empty but got %s", actions[i].Action.Limits)
+			assert.NotNil(t, actions[i].Action.Limits, "Expected limit section to not be empty but found it empty")
+			assert.Equal(t, 600000, *actions[i].Action.Limits.Timeout, "Failed to get Timeout")
 		} else if actions[i].Action.Name == "hello2" {
-			assert.NotNil(t, actions[i].Action.Limits, "Expected limit section to be not empty but found it empty")
+			assert.NotNil(t, actions[i].Action.Limits, "Expected limit section to not be empty but found it empty")
 			assert.Equal(t, 180, *actions[i].Action.Limits.Timeout, "Failed to get Timeout")
 			assert.Equal(t, 128, *actions[i].Action.Limits.Memory, "Failed to get Memory")
 			assert.Equal(t, 1, *actions[i].Action.Limits.Logsize, "Failed to get Logsize")
diff --git a/specification/html/spec_actions.md b/specification/html/spec_actions.md
index d3ad8e6..d35bc40 100644
--- a/specification/html/spec_actions.md
+++ b/specification/html/spec_actions.md
@@ -202,70 +202,72 @@
 
 <html>
 <table id="TABLE_LIMIT_KEYS">
-  <tr>
-   <th>Limit Keyname</th>
-   <th>Allowed values</th>
-   <th>Default value</th>
-   <th>Valid Range</th>
-   <th>Description</th>
-  </tr>
- <tr>
-  <td>timeout</td>
-  <td>scalar-unit.time</td>
-  <td>60000 ms</td>
-  <td>[100 ms, 300000 ms]</td>
-  <td>The per-invocation Action timeout. Default unit is assumed to be milliseconds (ms).</td>
- </tr>
- <tr>
-  <td>memorySize</td>
-  <td>scalar-unit.size</td>
-  <td>256 MB</td>
-  <td>[128 MB, 512 MB]</td>
-  <td>The per-Action memory. Default unit is assumed to be in megabytes (MB).</p>
-  </td>
- </tr>
- <tr>
-  <td>logSize</td>
-  <td>scalar-unit.size</td>
-  <td>10 MB</td>
-  <td>[0 MB, 10 MB]</td>
-  <td>The action log size. Default unit is assumed to be in megabytes (MB).</td>
- </tr>
- <tr>
-  <td>concurrentActivations</td>
-  <td>integer</td>
-  <td>1000</td>
-  <td><i>See description</i></td>
-  <td>The maximum number of concurrent Action activations allowed (per-namespace). <p><i>Note: This value is not changeable via APIs at this time.</i></p></td>
- </tr>
- <tr>
-  <td>userInvocationRate</td>
-  <td>integer</td>
-  <td>5000</td>
-  <td><i>See description</i></td>
-  <td>The maximum number of Action invocations allowed per user, per minute. <p><i>Note: This value is not changeable via APIs at this time.</i></p></td>
- </tr>
- <tr>
+<tr>
+  <th>Limit Keyname</th>
+  <th>Type</th>
+  <th>Default value <sup><a href="#limit-notes">1</a></sup></th>
+  <th>Default Range  <sup><a href="#limit-notes">2</a></sup></th>
+  <th>Description</th>
+</tr>
+<tr>
   <td>codeSize</td>
   <td>scalar-unit.size</td>
   <td>48 MB</td>
-  <td><i>See description</i></td>
-  <td>The maximum size of the Action code.<p><i>Note: This value is not changeable via APIs at this
-  time.</i></p></td>
- </tr>
- <tr>
+  <td>[1, 48] MB<sup><a href="#limit-notes">3</a></sup></td>
+  <td>The maximum size of the Action code.</td>
+</tr>
+<tr>
+  <td>concurrentActivations</td>
+  <td>integer</td>
+  <td>1000</td>
+  <td>[1, 1000] <sup><a href="#limit-notes">3</a></sup></td>
+  <td>The maximum number of concurrent Action activations allowed (per-namespace).</td>
+</tr>
+<tr>
+  <td>logSize</td>
+  <td>scalar-unit.size</td>
+  <td>10 MB</td>
+  <td>[0, 10] MB</td>
+  <td>The action log size. Default unit is assumed to be in megabytes (MB).</td>
+</tr>
+<tr>
+  <td>memorySize</td>
+  <td>scalar-unit.size</td>
+  <td>256 MB</td>
+  <td>[128, 2048] MB</td>
+  <td>The per-Action memory. Default unit is assumed to be in megabytes (MB).</p>
+  </td>
+</tr>
+<tr>
   <td>parameterSize</td>
   <td>scalar-unit.size</td>
-  <td>1 MB</td>
-  <td><i>See description</i></td>
-  <td>The maximum size<p><i>Note: This value is not changeable via APIs at this time.</i></p></td>
- </tr>
+  <td>5 MB</td>
+  <td>[0, 5] MB <sup><a href="#limit-notes">3, 4</a></sup></td>
+  <td>The maximum size of all parameters (total) for an Action.</td>
+</tr>
+<tr>
+  <td>timeout</td>
+  <td>scalar-unit.time</td>
+  <td>60000 ms</td>
+  <td>[100, 600000] ms</td>
+  <td>The per-invocation Action timeout. Default unit is assumed to be milliseconds (ms).</td>
+</tr>
+<tr>
+  <td>userInvocationRate</td>
+  <td>integer</td>
+  <td>5000</td>
+  <td>[1, 5000] <sup><a href="#limit-notes">3</a></sup></td>
+  <td>The maximum number of Action invocations allowed per user, per minute.</td>
+</tr>
 </table>
 </html>
 
-#### Notes
+#### Limit Notes
 
-- The default values and ranges for limit configurations reflect the defaults for the OpenWhisk platform (open source code).&nbsp; These values may be changed over time to reflect the open source community consensus.
+1. The default values and ranges for limit configurations reflect the defaults for the OpenWhisk platform (open source code).&nbsp; These values may be changed over time to reflect the open source community consensus.
+2. Serverless providers that use Apache OpenWhisk MAY choose to enforce different defaults and value ranges for limits.
+3. This limit is not currently user configurable.
+4. The parameter size limit also applies to Triggers and Packages.
 
 ### Web Actions
 OpenWhisk can turn any Action into a 'web action' causing it to return HTTP content without use of an API Gateway. Simply supply a supported 'type' extension to indicate which content type is to be returned and identified in the HTTP header (e.g., _.json_, _.html_, _.text_ or _.http_).
diff --git a/tests/dat/manifest_data_compose_actions_for_limits.yaml b/tests/dat/manifest_data_compose_actions_for_limits.yaml
index f7eb1e5..993c17e 100644
--- a/tests/dat/manifest_data_compose_actions_for_limits.yaml
+++ b/tests/dat/manifest_data_compose_actions_for_limits.yaml
@@ -8,6 +8,7 @@
         function: ../src/integration/helloworld/actions/hello.js
         limits:
           timeout: 1
+          timeout: 600000
       hello2:
         function: ../src/integration/helloworld/actions/hello.js
         limits:
diff --git a/utils/validation.go b/utils/validation.go
index 59501c8..1b43623 100644
--- a/utils/validation.go
+++ b/utils/validation.go
@@ -140,9 +140,13 @@
 	if timeout == nil {
 		return true
 	}
-	if *timeout < 100 || *timeout > 300000 {
+	if *timeout < 100 {
+		// Do not allow invalid limit to be added to API
 		wskprint.PrintlnOpenWhiskWarning(wski18n.T(wski18n.ID_WARN_LIMITS_TIMEOUT))
 		return false
+	} else if *timeout > 600000 {
+		// Emit a warning, but allow to pass through to provider
+		wskprint.PrintlnOpenWhiskWarning(wski18n.T(wski18n.ID_WARN_LIMITS_TIMEOUT))
 	}
 	return true
 }
@@ -153,9 +157,13 @@
 	if memory == nil {
 		return true
 	}
-	if *memory < 128 || *memory > 2048 {
+	if *memory < 128 {
+		// Do not allow invalid limit to be added to API
 		wskprint.PrintlnOpenWhiskWarning(wski18n.T(wski18n.ID_WARN_LIMITS_MEMORY_SIZE))
 		return false
+	} else if *memory > 2048 {
+		// Emit a warning, but allow to pass through to provider
+		wskprint.PrintlnOpenWhiskWarning(wski18n.T(wski18n.ID_WARN_LIMITS_MEMORY_SIZE))
 	}
 	return true
 }
@@ -166,9 +174,13 @@
 	if logsize == nil {
 		return true
 	}
-	if *logsize < 0 || *logsize > 10 {
+	if *logsize < 0 {
+		// Do not allow invalid limit to be added to API
 		wskprint.PrintlnOpenWhiskWarning(wski18n.T(wski18n.ID_WARN_LIMITS_LOG_SIZE))
 		return false
+	} else if *logsize > 10 {
+		// Emit a warning, but allow to pass through to provider
+		wskprint.PrintlnOpenWhiskWarning(wski18n.T(wski18n.ID_WARN_LIMITS_LOG_SIZE))
 	}
 	return true
 }
diff --git a/wski18n/i18n_resources.go b/wski18n/i18n_resources.go
index 164bc68..f9cba2f 100644
--- a/wski18n/i18n_resources.go
+++ b/wski18n/i18n_resources.go
@@ -92,12 +92,12 @@
 		return nil, err
 	}
 
-	info := bindataFileInfo{name: "wski18n/resources/de_DE.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1520374115, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/de_DE.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
 
-var _wski18nResourcesEn_usAllJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x3c\xfd\x6f\x1b\xb7\x92\xbf\xe7\xaf\x18\x14\x0f\x48\x0b\xd8\x72\xfb\x0e\x07\x1c\x8c\xcb\x01\xbe\xc4\xe9\xf3\x6b\x12\x1b\xb6\xd3\xa2\x97\x04\x1b\x6a\x77\x24\xf1\x79\x97\xdc\x92\x5c\x29\xaa\xa1\xff\xfd\x30\x43\x72\x77\x25\x6b\x3f\xa4\xa4\xb8\xcb\x2f\x91\xb4\xe4\x7c\x71\x38\xdf\xeb\x0f\xcf\x00\x1e\x9f\x01\x00\x7c\x27\xb3\xef\xce\xe1\xbb\xc2\xce\x93\xd2\xe0\x4c\x7e\x49\xd0\x18\x6d\xbe\x3b\xf1\x4f\x9d\x11\xca\xe6\xc2\x49\xad\x68\xd9\x25\x3f\x7b\x06\xb0\x39\xe9\x81\x20\xd5\x4c\x77\x00\xb8\xa2\x47\x43\xfb\x6d\x95\xa6\x68\x6d\x07\x88\xbb\xf0\x74\x08\xca\x4a\x18\x25\xd5\xbc\x03\xca\x6f\xe1\x69\x27\x94\xb4\xc8\x92\x0c\x6d\x9a\xe4\x5a\xcd\x13\x83\xa5\x36\xae\x03\xd6\x2d\x3f\xb4\xa0\x15\x64\x58\xe6\x7a\x8d\x19\xa0\x72\xd2\x49\xb4\xf0\xbd\x9c\xe0\xe4\x04\x6e\x44\xfa\x20\xe6\x68\x4f\xe0\x22\xa5\x7d\xf6\x04\xee\x8d\x9c\xcf\xd1\xd8\x13\xb8\xad\x72\x7a\x82\x2e\x9d\xfc\x00\xc2\xc2\x0a\xf3\x9c\xfe\x37\x98\xa2\x72\xbc\x63\xc9\xd8\x2c\x48\x05\x6e\x81\x60\x4b\x4c\xe5\x4c\x62\x06\x4a\x14\x68\x4b\x91\xe2\x64\x34\x2f\x5a\x77\x71\x72\xbf\x40\xb8\x2e\x51\xfd\xb6\x90\xf6\x01\x5e\x31\x33\x05\x91\x70\xaf\x75\xfe\x51\x7d\x54\xf7\x1a\xa6\x38\x97\x0a\x56\xda\x3c\x48\x35\x87\x95\x74\x0b\x58\xd9\x07\xcf\xf8\x09\x98\xca\x13\xf8\xbc\xfe\xed\x39\xa4\xba\x28\x84\xca\xce\x09\xc0\x47\xf7\xb7\x66\x39\x43\x5c\x48\x0b\x2b\x99\xe7\x41\x76\x2d\xfc\xc2\x5a\x74\xb6\xc5\xab\x54\x50\x08\x25\x67\x68\xdd\x64\x2d\x8a\x1c\xb4\x69\xfd\x50\xe4\x1f\xd5\xd5\x0c\xd2\xca\x18\x22\x39\x93\x06\x53\xa7\xcd\x1a\x32\x8d\x56\x39\x58\x88\x25\x82\x50\xeb\x7a\x0b\xcc\x64\x8e\x27\x0d\x39\x50\x1a\xa9\x9c\x05\x47\x24\x2d\x30\x2f\xa1\x40\x6b\xc5\x1c\x27\x9e\x50\x84\x42\x5b\xc7\xec\x68\x05\x2b\xb1\xb6\xa0\x67\x50\x59\x96\x43\x0d\xc4\xe9\xc8\x89\x50\xd9\x99\x36\x50\xa9\x2e\xce\x84\x41\x16\xca\x96\x48\x5a\x5f\xe0\xb4\x80\x52\xb8\xc5\x99\xd3\x67\x5b\x8c\x8f\x5b\x05\xa7\x59\xfd\x20\xab\xcf\x72\x0f\x80\x48\xe1\xfe\x5f\x47\x52\x31\xb8\xbc\x97\x9c\x8f\xea\xa2\x52\x6e\x41\xd7\x26\x65\x75\x3c\xff\xa8\x1a\xd8\x06\x45\x66\x21\x35\x98\xd1\x02\x91\x5b\x98\x19\x5d\xc0\xdf\xfe\x71\xfd\xf6\xf2\x6c\xb2\xb2\x0f\xa5\xd1\xa5\x85\xe9\x1a\x32\x9c\x89\x2a\x77\x1f\xd5\xf5\x12\xcd\xca\x48\x87\xf1\x27\x48\xb5\x9a\xc9\x39\x1f\x3a\x5d\xd5\x97\x6f\xae\xce\x3f\x2a\x80\x2d\x49\x9e\x86\x45\xff\xd9\x5a\xfc\x5f\x3d\x02\xb8\x36\x41\x3d\xd7\x20\xf2\x1c\xdc\xc2\x60\x0f\x70\x51\xca\x05\x69\xd0\x3f\xae\xef\xee\xe9\x6b\xe5\x16\xf0\xcb\xe5\xef\x70\x7a\x5a\xdf\x62\x78\x77\xf1\xf6\xf2\xee\xe6\xe2\xe5\x65\x27\xd6\x11\xf7\xdc\x2e\xb4\x71\xfd\x46\xeb\xc6\xe8\xa5\xcc\xd0\x82\x00\x5b\x15\x85\x30\x24\x65\x5a\x4f\x3a\xfd\x44\x53\xa7\x48\x4a\x1e\xad\xdb\x59\x3c\x6b\xcc\x60\x2a\x2c\x66\xc4\x72\xa4\xb1\x75\xb6\xf0\xfb\xc5\xdb\x37\x63\xec\x52\xa0\xb7\xdb\x30\x5d\x80\xd3\x3a\x07\x8b\x8e\xee\x17\xdf\xcd\x20\xd5\xb5\xae\x0c\xe8\x12\xd5\x8a\xe9\x2d\x83\x9d\x0d\xd7\x52\x6c\x5f\xf6\xf1\xb4\x2c\xd1\x58\xc2\xdd\x25\x3c\xa9\x1c\xdb\xb9\xb0\x0e\x54\x55\x4c\xd1\x90\xec\xea\x03\x1f\x8d\xcb\xae\x55\xda\xcf\xb7\xd3\x40\x8b\x3c\xb3\xcd\xe1\xd4\xcc\x4e\xd1\xad\x10\x15\xa4\xb9\x24\xb1\x0b\x95\x81\x45\xb3\x44\x33\xda\x29\x8c\xa7\xa1\x75\xbc\x84\x27\xaa\x02\xff\xb0\xa5\x3a\xdd\x47\x41\xfb\x74\x49\xf0\x45\xde\x86\x47\x47\x14\x97\xb3\xea\x90\x5d\x78\x25\x67\x33\x64\x8b\x1e\x2d\xae\xa9\x14\xf9\x6e\x26\xe7\x7c\xdb\x08\xd1\x4f\x4f\x7f\x19\x69\xc1\x7a\x97\xb6\xad\xd7\xf1\x30\x4e\x4b\xa3\xff\x85\xa9\xa3\xfb\x0e\x37\xb7\xd7\xff\xbc\x7c\x79\x3f\x5a\x4f\xa2\xa8\x3b\xce\xe9\x7d\xa7\x9f\x61\x63\xe9\x15\x62\xac\x3e\x8c\xc5\x65\xb0\xd0\x4b\xb4\x4f\x71\xae\x16\x32\x5d\xc0\x0a\x0d\x36\x41\x11\xd3\x41\xb7\x66\x4b\x13\x76\xed\xc5\x56\x9c\x91\x61\x8e\x8e\x0e\x7b\x3f\x53\x5b\xc0\xbc\x3b\x37\x95\x3a\xff\x7f\xe7\xde\xf6\x43\xda\xa7\x0d\xf0\xbd\x56\xf9\x9a\xe3\x2b\x0b\x33\x6d\x5a\xe2\xe1\xe8\x8f\x15\xac\xd0\x19\xfe\x30\x5a\x6f\xf0\x4b\x8f\x1f\xb8\xe4\x87\x10\x28\xd9\x12\x6e\x2d\xf2\xb1\x4a\x33\x02\x91\xa5\xe3\x12\x73\xcc\xfa\x31\x92\xb5\xd9\x52\x92\x59\xa5\x38\x6e\xf6\x36\xa2\x23\x1e\xa3\x5d\x14\x80\x7a\x3a\x76\xb4\xc0\xff\xd8\x21\xf4\xd6\xa1\xfa\x75\x98\x9d\x1e\xe0\x74\x67\xb9\x98\x27\xa2\x94\x09\xb9\xf7\x0e\xfe\xbd\x7f\xba\xb8\xb9\x82\xcf\xe4\xff\x3f\x8f\x84\xd8\xef\x88\x5a\x40\x7f\xbd\xbc\xbd\xbb\xba\x7e\x37\x0a\x6e\xe5\x16\xc9\x03\x76\x5d\x6e\x7a\xac\x8d\xfc\x93\x7f\x80\xcf\xbf\x5c\xfe\x3e\x06\x68\x8a\xc6\x25\x74\x3a\x1d\x50\x49\xbe\x64\xbd\xe9\xca\x4e\x68\x31\x1f\xe5\x18\xc0\x1c\x8a\x75\x40\x6d\x07\x75\xdf\xc7\x48\x4f\xda\xdd\xd0\x70\xe0\xb2\x78\xa9\xe4\xb9\x5e\x25\x01\x46\x57\xf6\xc9\x8b\xa0\x5e\x34\x0c\xb5\xb9\xbe\x7d\x72\xa9\x93\x86\xda\x0f\x8e\x00\x5d\x1a\x5c\x4a\x5c\x75\xc0\xb5\x0b\x26\x34\x02\x3d\xdb\x72\xd4\x65\x2e\xd4\x08\x0c\x0f\xb8\x1e\x7d\xa4\x0f\xb8\x1e\x4b\xb8\x97\x74\x30\x04\xbd\x82\x8e\x46\xa2\x4e\xa7\x1d\x39\x06\x28\x84\x79\xc0\x2c\x9a\x92\x51\xa2\x62\x38\x09\x5d\xfa\x2e\x66\x02\x2a\x5e\x32\x0c\x31\x5a\x87\x81\x53\xdd\x72\x4e\x23\xc0\xd6\x89\x40\x07\xdc\xe6\xf9\x68\xa6\x07\x28\xf4\x71\x41\x8e\xd6\x46\x69\x8f\x00\x6d\x9d\x91\x9d\x90\xfd\xd1\x55\x16\xc9\x79\xcd\xa4\xc2\x8c\xac\xb2\x93\x45\x1d\x2e\x8f\xc0\xe0\x4c\xb7\x10\xf8\x19\xe8\xca\x95\xd5\x18\x62\xbd\xba\x2d\xd1\x4c\xb5\xed\x02\x19\x9e\x1e\x0a\xb4\x14\x46\x14\x9d\x02\x36\xa2\x40\x87\x06\x96\x22\xaf\x90\xbd\x37\x19\x53\xf8\xf5\xe2\xcd\xfb\xcb\xcf\xe4\xdc\x0b\x71\x20\xaa\xbe\xdb\xf8\xf9\xf5\xd5\x9b\xcb\xcf\x94\xe6\x3a\x21\x39\x40\xde\x47\xc1\x3f\xef\xae\xdf\x0d\xa3\x66\xab\x9a\x14\xd2\x52\x2c\xce\xfe\xa2\xdb\x5d\x90\x23\xa6\x15\x4d\xee\x0e\x64\x0b\xa4\x05\xa5\x63\xd6\x5d\x19\xcc\x26\x1f\xfb\xce\x7d\x07\xa3\xcf\x94\x7b\x30\x92\xcf\xe3\x64\xfa\xab\xf0\x0c\x5d\x37\xc2\xd4\xe4\xe6\x47\xa1\x0a\xac\xf4\x55\x45\x77\xf9\xf9\xf0\xf8\x38\xa1\xcf\x9b\xcd\xa7\x13\x1f\x18\x3d\x3e\x4e\xac\xae\x4c\x8a\x9b\xcd\x28\x9c\xfe\xc0\x86\x70\x72\x01\x22\x9c\x95\x45\x77\x1c\xae\x5a\x3c\x43\xd8\xb6\xe4\x48\x2c\xd6\x3f\x1c\xcf\x67\x29\xe7\xab\x44\x70\x41\x38\x71\xfa\x01\xd5\x20\xcb\xb4\x03\xfc\x0e\xe0\x1d\xc7\x31\x5f\xa9\x42\x18\xbb\x10\x79\x92\xeb\x54\xe4\x9d\x69\x52\x58\xd5\x8a\x6c\x83\x29\x0c\x11\x2f\xef\x0e\xd7\x73\x24\x42\x85\x8e\xb2\x83\xa3\x51\x4a\xe5\xd0\x28\x74\x20\x1c\xb1\x5b\x99\x7c\x80\xd7\x26\x6e\x48\x52\xa1\x52\xcc\xf3\x4e\xaf\x7d\xfd\xcb\x04\x5e\xfa\x35\x4d\xc1\x88\xf3\xa0\x91\x08\x66\x42\x76\x43\x6f\x15\xa4\x33\x99\x85\xbb\x58\x94\x39\x3a\x04\x5b\xd1\x91\xce\xaa\x3c\x5f\x4f\xe0\xb6\x52\xf0\xf9\x69\xc6\xf5\x99\x13\x04\xce\x58\xc9\x36\x3a\x29\xf2\x7c\xdd\xa4\xa7\x3e\x13\x19\x4b\xa9\xaf\x96\x25\xd6\x09\x57\x75\x45\x8b\xa7\xa7\xa7\xa7\x2f\x5e\xbc\x78\xb1\xbf\xa8\x7e\xc7\x5b\x81\x16\xd0\xc2\x51\x58\xb9\x37\x82\xd9\x18\x11\x45\xd1\x64\x10\x1a\x2a\x5e\x38\xfd\x4a\x76\xfc\x59\xb7\xf7\x8e\x47\xd2\x7b\xde\xef\xdb\x21\x6b\xef\x89\x8f\xc6\x37\x24\xbf\x2d\x94\x47\x48\x30\xf4\x3a\x12\x2e\x62\xb1\xb7\x26\x2b\x97\x08\x97\x50\xbc\xd5\x81\xf4\xf1\x71\x92\x16\xd9\x66\x13\x4a\x5f\x8f\x8f\x13\xda\xe8\xd6\x25\x6e\x36\x6c\x29\x69\xef\x66\xf3\x69\x32\xe9\xc5\xcd\x41\xf2\x3a\x89\xfa\x3c\xd0\x47\x7b\x7c\xa4\x90\x3d\x20\x20\x22\x37\x9b\x4f\xb0\x10\x16\xa6\x88\x6a\x8b\xe1\xfa\x86\x8c\xc7\xde\xdd\x78\x7b\x15\x9f\xc3\x5e\x02\x26\x93\x9e\x92\x65\x40\xd1\x54\x9f\xbf\x1d\x8b\x0d\xcc\x31\x4c\xc6\xd5\xdd\x6c\xbe\x6f\x56\xec\x65\xb4\x97\xcf\x0c\x4b\x54\x19\xaa\xf4\x10\x71\x36\x9b\x8e\xc7\xd3\x5c\x91\x4e\x99\xbe\xda\x8b\xe6\x6b\x14\x67\x3f\x15\x64\x18\x2a\xd3\x15\x97\xbd\xda\xaa\x39\xef\x67\xfd\xff\xd0\x47\x44\x7e\x0e\xd3\x93\xaf\x3b\xc1\xa7\x66\xee\xdb\x9c\xe1\xc8\x9b\xd1\x45\x49\xff\x39\xbe\xdf\xe9\x1e\x1c\x73\x92\x7d\x54\x85\x0a\xc1\xb1\x3e\x87\x29\xf2\x1e\xa0\xae\x40\xf4\xd1\x02\x59\x65\xe8\x24\x63\x8d\xb3\xe5\x11\xff\x3a\x7d\x8b\x3c\xce\x74\xa5\xb2\x24\xd0\x1b\x2c\x55\xa7\x02\x84\xaa\xfa\x5e\x0b\x19\x4a\xf7\x3c\x80\x40\x74\xb5\x0a\xf7\xb1\xb9\xbe\x5b\xc4\x65\x27\xe5\x3f\x13\x04\x61\x99\x17\x6e\x8f\x8f\x0d\x0b\x42\x4d\x2d\x09\x6d\xa3\xae\xce\x9b\x7f\xca\xc9\x04\xb4\xea\x7d\x06\xb9\x8e\x91\x9d\x70\x1f\xb6\x09\xb7\xea\x63\x23\x3a\x4c\xbd\x23\x20\x01\xd1\x6a\x4f\xb4\xbb\x9a\x7e\x78\x20\x68\xbf\xf1\x7d\xb7\xa1\x49\x8b\xcb\xdb\xdb\xeb\xdb\xbb\x0e\xba\x5f\xec\xfe\x03\xbf\x1c\x9e\x3c\x78\xf1\xa2\xc7\xfd\x18\xb3\x7d\xd1\x1e\x94\x5e\xa9\x84\x22\x85\xe1\xab\x4e\xab\x48\x54\x61\xd7\x04\x5a\xc5\x71\xee\x39\xd8\xaa\xf4\x25\xfa\x33\x2e\x2b\x4f\xec\xda\x3a\x2c\x60\x2a\x55\x26\xd5\xdc\x82\x36\x30\x97\x6e\x51\x4d\x27\xa9\x2e\xea\xf6\x5e\xbf\xbf\x34\x26\xfa\xcc\xd4\xa0\x70\x5d\x64\xf2\x60\x11\xf0\x92\x2d\xb5\xe4\xf1\x12\x9e\x48\x8a\xb3\x18\xe7\xf4\x10\x8d\xd9\x6c\xb8\x2f\xe0\x9f\xa5\x3a\xf3\x0f\xe8\xc3\x40\x36\xd3\x22\xc9\xdf\x95\x5e\x92\xb2\x27\x37\xe5\x2f\x22\x69\x86\x98\x25\x52\x2d\xf5\x43\x17\x41\xaf\xd9\x6c\x91\xb9\xf0\xcb\xf8\x42\xd2\x36\x58\x2d\xb0\xd5\x29\x73\x7e\xae\x28\x3c\xfa\x6b\xa8\x7d\xc0\x75\x5d\x43\xa1\x78\x57\x38\x6d\xfa\xea\x43\xf5\x1a\x2e\x37\x7c\x88\xc2\xfc\x44\xfa\x18\xe0\x0c\xe2\x8c\xa5\xd4\x44\x69\xe7\x8d\x5d\x07\xc2\xb7\xed\x9a\x2b\xdb\x6a\x5e\x4d\xf9\x2e\x17\x3d\xdb\x11\xf5\x10\x52\x8e\xde\x0b\x69\x0b\xe1\xd2\xae\xf0\x9d\x18\xac\xd5\x83\x36\x64\x8c\x22\x8b\xf6\x54\xaa\xdd\xe2\xbe\x7f\x1e\x68\xe0\xf9\x24\x26\x93\x91\xf0\xb1\xb2\x79\xa3\x45\x45\x0b\xc8\x56\x2d\xd9\x3f\x8d\x6c\xf4\x33\x11\xf2\x7f\x52\x2f\x91\xcb\x2e\xb1\x5d\xf9\xa7\x3c\x54\xe5\x8f\xa4\x2e\xdb\x12\xae\xf0\x99\x68\xd9\x3b\x91\xc5\xcd\x4a\xa2\x5d\xf8\x46\x1d\xed\xf1\x1f\xc7\xc8\x39\x92\x38\x20\xea\xdb\x43\x08\xda\x91\x2b\x5f\x05\x4f\xd1\x73\x0b\xbe\xca\xe3\x45\x89\x5f\x1c\x2a\x1b\x89\xc6\x2f\xec\xc3\x88\x9d\xaf\x61\xc5\x26\x73\xec\x2a\x60\x36\x57\x79\x8e\x7e\x8e\x24\xd8\xde\xa6\x54\xfe\xa4\x23\x4a\xfe\x4d\xa6\xad\xeb\x3b\x5a\xa6\x9e\xf4\xc4\x73\xcc\xb7\xa7\xc6\xd6\x41\xdf\x16\xc3\x1c\x17\x92\x18\x1b\x29\x0b\xb5\xae\x75\x83\x8c\x48\xeb\xd8\x07\xe5\x1a\x8a\xa8\x35\x09\x83\x6c\x54\x26\x3f\x5c\x73\x7d\x61\x2b\xa4\xd0\xef\x6f\xdf\x30\x05\x5c\xea\xe2\xab\xf4\x61\x2b\xc7\xfe\xe4\x87\x83\xc6\x10\x52\x88\x7c\xa6\x4d\xd1\x29\xb9\xb7\xf1\x79\x1f\x05\x13\xb8\x37\x6b\x10\x73\x21\xd5\x50\x4a\x6f\x4c\xf2\x2f\xab\x55\x6d\x6c\xd3\x22\xeb\xe9\xdc\x72\x71\x5f\xaa\xb2\x72\x90\x09\x27\xe0\x6d\x90\xc6\xf3\xb4\xc8\x9e\x93\xe9\xed\xc7\x24\x4a\xd9\x54\xe0\xbd\xd2\x68\x93\x58\xfc\xa3\x42\xd5\x59\x22\xf7\xf3\xac\x67\x77\x61\xd5\xf6\x65\x69\xd9\x77\xaf\xcf\x3b\xc3\x1a\x17\x37\x57\x7e\x43\x29\x69\x75\x2a\x94\x0f\x45\xa6\xe8\x83\x81\xf6\x80\x59\xa3\x64\x67\x91\xa4\x3d\x30\x27\x70\x93\xa3\xb0\x08\x55\x99\x09\xb7\x33\x1d\xe2\x9d\x67\x9a\x57\xd9\x2e\x9d\xc2\x82\x80\x15\x4e\x77\x31\x0c\x9e\x4e\x90\x53\xbf\x82\x5e\xec\xb1\x23\x24\x9a\xb0\x6b\x02\x57\xce\x67\x5f\xda\x2d\xd8\x17\x6f\xcf\x3c\xd4\x17\xef\xc4\x4b\x47\x2b\x0c\x6d\xd7\x82\xa0\xe0\x97\x12\xd3\x31\x37\x29\xd0\x1a\x8f\x38\xda\x07\x32\x8c\x09\x61\xfd\x4a\xea\x99\xf0\xc6\x48\x10\x58\x5d\xb9\xb6\xb1\x98\xc0\x6f\x8d\x11\x8e\xa6\x82\xb6\x9d\xd4\xe6\x44\xda\x26\x58\x18\x70\x6b\x81\x9d\x28\xa6\x84\xb2\x15\x87\x49\x26\xcd\x28\x23\xb7\x97\x2d\xe2\xa3\x96\x7b\xa9\xa5\xf2\x21\x95\x4f\xd1\x1c\xb6\xa6\x8a\x9b\xeb\x7c\x42\x29\x60\xe4\x8a\xa7\x7a\x77\x2c\x5c\x3f\x1b\xa9\xa0\x84\x5d\x2c\x31\xc9\x74\xfa\x80\x5d\xb3\xf7\x2f\x85\x62\xa8\x62\x89\xf0\x8a\x17\x82\x2c\x38\x00\x1f\x08\x2c\x65\x8e\x89\xc8\x0d\x8a\x6c\x9d\xe0\x17\x69\x3b\x67\x1b\x5e\xd3\x0d\x09\x2b\xc1\xaf\x1c\x80\x9d\xc5\xd9\xbc\x26\x2b\x91\x68\xbd\x42\x59\x8a\x9c\x72\x31\xc5\xae\xe6\xc8\xb5\x42\x20\x3d\xcc\x71\x37\xed\x6f\xbe\xc6\x23\x71\x2b\x0d\x35\x32\x6e\x9a\x78\x59\xd3\xea\xf8\xcd\x1b\xd6\x85\xb4\xf0\x20\x55\x46\x17\x24\xe8\x62\x68\x4a\x3e\x71\x3c\x3b\x96\x82\xec\x4b\x8b\x10\x26\x7d\x0f\x39\x61\x02\xff\x89\x5d\x61\x65\xe1\x86\x3a\xc5\x6e\x91\x28\x88\x69\x0d\x32\x0f\x16\x4b\x61\xe8\x0b\x43\xf7\x03\x5e\x1d\xbc\x8d\x53\xfe\x70\xc9\x12\x62\xf9\x50\x3d\x57\xda\x4b\xca\xa2\x3b\x0c\xd9\xa1\xb6\x22\x20\x6b\xdd\xf7\x01\x7c\xd1\xfa\x26\x0b\xb1\x24\x4b\xc5\xba\xe4\x0b\xe9\x36\x10\xd3\xf5\x76\x48\xdb\x0d\x45\x30\xc1\x5e\x45\xd5\x8e\x43\x09\x64\xf3\x55\x34\x46\x3e\xd1\xe7\x50\x8c\xce\x2f\x64\xb7\x93\xf8\xba\x46\x98\xa9\xf5\xf0\x2c\x3b\x2a\x52\x26\x7e\xa7\x80\x37\x70\xc4\x2e\x15\x88\xa8\xd3\x11\xc2\xc0\xe5\xd7\x6a\x96\xcb\x94\xac\x4c\x12\x12\x37\xe2\xd0\x68\x6b\x63\x25\xa4\xeb\xba\xb6\xee\x4f\x4c\xf9\x88\xe9\xf0\x39\xf0\x1c\x79\xe5\xe0\xb7\xa8\x72\x27\xcb\xdc\x67\x8d\xfe\xf2\xd0\xa7\x10\x91\x78\xe4\x6c\xbe\xa2\xef\xdd\x29\x83\xb8\x76\x17\xf7\x04\xa4\xf3\x37\xaa\xd4\xd6\xca\xa9\xbf\x05\x2c\x90\xc8\x88\xc7\xda\x88\x67\x4a\x71\x49\xad\xe9\x4c\xc4\x93\x4b\x18\x38\x61\x34\x4f\x92\x9e\x03\x84\x69\xaa\x1c\x8f\x90\x24\x6d\x0b\xd9\x45\x8e\xfb\x64\xd8\xd0\x1f\xed\xfd\x4e\x20\xe1\x5f\xfa\xa8\x45\xb0\x7d\x24\x13\xff\xae\xcf\xb7\x10\x32\x33\xb8\x4f\xc2\xc2\x5a\x9d\x4a\x06\xbd\x9f\xe2\xb3\x48\xdc\xae\xf0\x99\xf9\xa3\x24\x2f\x4c\x33\x53\xc1\xcd\xec\xce\x59\xf2\xd0\x20\x83\x5c\x2a\x04\x61\xe6\x15\x27\xc5\x24\x42\x33\xdf\x6c\xda\xf1\x22\xc3\x39\x81\xd2\x93\x18\x5f\xb3\x20\x79\xf0\x93\x03\x28\x7a\xc0\xf5\x37\xa3\xea\x01\xd7\x67\x0c\x0b\x4a\x21\xcd\x13\xf2\xb6\x1f\xb3\x7d\xc7\x2f\xa2\x28\x29\xd8\xad\xc1\x3d\xe0\x7a\x14\x0f\x21\xc0\x1a\x1e\xfd\xe9\x62\xe0\xfb\x88\xf2\x07\xb6\xc1\x01\x9e\x9f\x0b\xf2\x8e\xab\x2e\x85\x9c\xf8\x82\x64\x2b\xbd\x8c\xca\x51\xbf\xe0\x02\x7e\x37\x27\x19\x0d\x88\xa1\xda\x03\xfe\x51\x49\xc3\xb5\xad\xb2\x72\x76\x94\x96\xdc\x86\x3d\x3e\x95\xf1\xb7\x65\x4b\x2b\x2c\xe0\x12\x15\x88\x99\x43\x03\xa2\x2c\x73\xee\x9f\xf0\x60\x43\xa9\x3d\x9c\xd0\x4b\x45\xb5\x9c\xc0\x52\x18\x29\xa6\x39\x36\x0a\x6f\xd1\xd5\x10\xb7\x97\xc4\x0b\xec\xb3\xa8\x66\x6e\x6a\xdf\xeb\x2d\xfe\x55\x22\x13\x5e\xf8\xe1\xc3\x9e\xe9\x3c\xd7\x2b\x4f\x0d\xd1\xce\xf2\xf4\x1f\x37\x9b\xe1\xec\x6b\x2e\x1c\xae\xc4\x3a\xa1\xa4\x87\x3b\xc6\x43\x89\xc5\xcd\x15\xfc\xec\xf7\x70\xa2\xd4\x14\xb8\x44\x29\xe9\x87\x58\x63\xda\x13\xae\xf3\xd2\x7a\x44\x2c\x4e\xec\xef\x46\x49\x21\xe5\x30\x48\x48\x97\x01\x41\x5d\x29\xde\x81\x31\xb2\x0e\x55\x0a\x63\xd1\xf4\xbe\x69\xda\x54\x48\x0c\x3a\x23\x91\x0d\x5e\x28\x8c\xd4\x1a\xba\x1f\xdb\x6f\x17\xb7\xef\xae\xde\xfd\x3c\xbe\x12\x1f\x37\x1c\x56\x8b\x5f\x09\xa3\xea\x76\x3f\x11\xd9\x95\x94\xdf\xd2\x33\xd2\x88\x0f\xb1\xcf\xff\x29\x68\x2e\x0b\xe0\xdc\x17\x47\x88\xa1\x4f\x7d\x09\x5c\xc0\xc7\x73\x4f\x07\x97\x43\xda\x63\xd2\xad\xf2\x27\x64\xe8\x86\x53\x47\xc6\x4c\x36\x34\xc3\xd2\x60\x4a\x9e\x25\x31\x58\xe6\x22\xed\xcc\xad\xee\x17\x1e\x8f\xce\xb3\x50\xe8\xe5\x31\x33\x1f\x3a\x6f\xcf\x37\xf0\xbb\x9f\x56\x6b\x45\x49\x7f\x83\xa1\xb6\xac\x95\xf5\xa1\x39\x77\xa8\x70\xb5\x05\xce\x3a\x14\x23\x69\x0f\x92\x38\xa6\x46\x6d\x17\xba\xca\x33\x22\x8f\x22\x65\x78\x6f\x7d\xb3\xd6\x77\x92\xbc\xb1\xa7\xd5\xfc\x69\x78\x4a\xa3\xa6\x88\xd7\x0f\x1c\x25\xd1\xe5\x31\x90\x71\x79\x5a\x3b\xa7\xab\xea\x6f\xf5\x01\x28\x39\x39\x16\xcb\xde\xc3\x1b\x42\xca\xfb\xe3\x81\xc6\xae\x60\x7c\x19\xae\xfd\x16\xdc\x30\x61\xb9\x2c\xa4\x4b\xe4\x5c\x69\xd3\x49\x52\x54\xe9\x10\xac\xf3\x16\x9f\xfc\xd1\xa7\xdd\xfa\x38\x19\x3b\x0f\x6e\x2c\xf6\x74\x21\xd4\x1c\xc9\x01\x74\x10\xf0\xa6\xc6\x58\x17\xe4\x6d\xe4\x3b\x5f\xfb\x86\x70\x0d\x63\x02\x57\x84\x5e\xaa\xf9\x18\x5d\x60\x0a\x6c\x92\xeb\x79\x62\xe5\x9f\x5d\x04\xe4\x7a\x7e\x27\xff\xe4\xba\x8f\xdf\xb0\xc5\x71\xa3\xa2\x42\xb1\x1f\xa4\x18\x3a\xbe\x15\xf8\x23\x27\x2f\x3f\xfd\x38\x9a\x94\x02\x0b\x6d\xd6\x7d\xd4\xf8\x15\xc7\x12\xf4\xd3\xdf\xff\x83\x49\xfa\xf7\x9f\xfe\x3e\x9a\x26\x32\xfd\xba\xea\x2a\xa8\x87\xa7\x47\x11\xf3\xa3\x97\xcf\xbf\xfd\x48\xff\x86\xe9\xe1\xde\x68\x52\x1a\x5d\xa2\x71\xb2\x33\xa7\x88\x16\xb0\x65\xaf\x7c\x47\xdd\x7b\xb3\xd0\x53\xf7\x8d\xd6\x06\x58\xec\xbd\xef\xb7\x89\xd1\x24\x66\x9a\x15\x8e\x2c\xa3\x74\xa0\x2b\x67\x65\xc6\x07\x71\x6f\xc4\x52\x5a\x98\x56\x32\xcf\xfa\x1b\xb3\xcc\x8a\x37\x07\x86\xd4\x76\x94\x29\xa8\xb5\x7f\xcb\x20\xa8\x1d\x83\x1e\xa4\xcd\xed\x66\x4a\x7e\xfc\xaf\x51\xdc\x8f\x8f\x93\x42\xaa\xd0\x7c\xa4\x2f\x22\x1d\x68\x65\x30\xa9\x31\x74\xf0\x97\xac\xcb\x4c\xc4\xf6\x50\x58\x45\xe1\xc3\x4e\xa7\x68\x4f\x35\xb9\xb3\x19\x74\x54\x07\x88\xa9\x0d\xfd\x65\xae\x58\xf4\x96\xdc\x9e\xb4\x0e\xb7\x4c\xcc\x4e\x2d\xae\x09\x5e\x73\x7e\x71\x4e\x69\xb7\x08\xa9\xf2\x30\x49\x31\x05\x1e\xec\x9e\xde\x3f\x29\x6e\xb5\x03\x86\xf0\x76\x01\x66\xa0\xf4\xb8\x11\x00\xc6\xde\x9a\xbe\x61\xa1\x8c\x21\x62\xef\x6c\x4a\xf0\x38\xbb\x41\xf8\x2a\xb4\xa8\x7c\xa3\x77\x5f\x89\x6e\x84\x84\x5a\xef\x08\x25\x7a\x89\xc6\xc8\x2c\xc3\xae\x42\x13\x51\xd8\x7e\x65\xa8\x99\x9e\x6a\xb6\xc6\x58\xa1\x3d\x1c\x33\xf6\xa0\x12\x69\x93\xb2\x9a\xe6\xb2\xeb\xb5\x6c\x7f\x2a\xbc\x36\x36\x5a\xfc\x5b\x51\x14\xda\xf3\xc6\x27\x49\xfc\x09\x99\x0b\xb6\x2d\x53\x84\xa5\xf4\xf5\x04\xba\x87\xa9\x60\x4b\xe3\xc7\xe2\x31\x83\xe9\x1a\x84\x5a\x6b\xd5\xf3\x96\x11\xd3\x1a\xeb\x82\x38\x0d\xef\x7e\x0e\xb8\xf1\xa7\x65\x41\xee\x78\x70\xdf\x45\x65\xf4\xff\x69\x78\x4d\x73\xb7\xe5\x41\x17\x81\xff\xce\x06\x4e\x4f\xbc\x73\x0f\xdf\xc2\x86\x9e\xcc\xc3\x53\xda\x6a\x6d\x11\xb9\xbd\x45\xc4\xae\x86\x07\x69\x58\xbb\x4b\x34\xaa\x7f\x15\xfe\x3e\x48\xbd\x69\x02\x2f\xb5\x5a\x92\xb9\x0f\x29\x41\x83\xc2\xe9\x2d\xf0\xc3\x2a\xbb\xcb\xd5\x40\xab\xae\xaf\x38\xda\xf0\x16\x1f\x1c\xc8\x5d\xdd\x31\xdb\xe5\xaf\x8d\xa8\xe6\x70\x54\x7f\xad\xe6\x31\x16\x42\x0c\xda\x52\x2b\x8b\x7d\x13\x4f\x3b\x44\x73\x09\x6c\x37\xd5\x0d\xcf\x63\x52\xdb\x4a\x92\x63\xb9\xa2\x2e\xb3\x2d\x9c\x2b\xfd\xdf\xe2\xf1\xa8\xd9\xaf\x4d\xe0\x25\x79\x18\x1e\x91\x68\xff\xee\x9d\x3a\xbb\x9c\xf0\x73\x60\x9a\xa1\x90\x3f\x69\x28\x1b\xd2\xd8\x78\xae\xa8\x96\xd2\x68\xc5\xb6\x33\x56\x29\xba\x9a\xcf\x21\xdb\xbb\x6c\xb6\xc0\xaf\x61\xcb\x76\x8a\xb2\x1f\xf7\xab\xcb\xff\x7e\xff\xf3\xe8\xb4\x99\x57\x1f\x96\x33\x67\xd3\x79\x62\x51\x98\x74\x41\x9c\x45\x83\x5b\xf7\xd4\x3a\xd5\x36\xec\xa8\x0d\xee\x76\x17\x2e\x1e\x5f\x94\xaf\x0f\x4c\x06\x42\x6f\x22\x65\xd7\x2b\x7d\x6b\x8f\x74\xa4\x37\x22\xd2\x6a\x77\xed\xa7\x3a\x7b\xfe\x34\xca\xab\x3d\xa3\x45\x41\x22\xe7\xf0\x9a\x29\x68\xfe\x12\x07\x57\x98\x09\xd8\xa1\x04\xf4\xbf\x4b\x7a\x38\x0d\xed\xc1\xd1\x38\xe8\x7c\xd8\xfb\x81\x3b\x2f\x7e\x1d\xfc\xce\xd7\x01\x6f\xf2\x85\x97\x43\x93\x3f\x65\x99\xe0\x17\x1e\x1f\xf0\x6d\xd5\x9e\x77\x3a\x2e\x79\x1d\x29\xed\x8d\x70\x8b\xf3\xb6\x48\xc6\xa2\x12\x59\x16\x5f\x22\xe9\xc3\x74\xc1\xcb\xb6\x6e\x82\xd3\xf0\x3f\xb2\x84\xd7\x43\x9a\xd6\xc6\x16\xe6\x22\xe2\x98\x50\x0f\xc2\xd7\x61\xd0\xeb\xce\x47\xcd\x47\xf3\xb7\x07\x63\x92\xa1\x75\x52\x31\xaa\xaf\x21\x81\xc3\x89\x57\x0d\xac\xd6\x8a\x16\x86\x91\xb4\x46\xef\x13\xe9\x45\xd5\x5d\xec\x8b\x89\x3f\x5c\x85\x31\x93\x4b\x5a\x4c\x0e\x44\xba\x56\x11\x96\x29\x09\xf0\xb8\x2d\x14\x97\x33\x6c\xf6\xb4\x28\x39\xba\x67\x27\xf4\xc1\xf3\xf9\x09\xc8\xc2\xf9\xcf\x27\x6d\xf6\xfa\xef\x4e\xe4\x23\x8e\xd7\xb2\xf0\x7b\xba\x09\x2f\xe3\x18\x2e\x49\x38\xea\xd1\xc1\x27\x9c\x4b\xeb\x12\x3d\x63\x44\x36\xe1\x11\x3c\x36\xfa\xc2\x39\x34\x5d\xd7\xd5\xdb\x0a\x1e\x6c\xad\x0b\xe9\xfe\xaf\x02\xf9\x06\x66\x80\x12\xcf\x9d\x27\x16\x6e\xbc\x73\x67\xb0\x51\x0e\xcf\x3e\x3d\xfb\xdf\x00\x00\x00\xff\xff\x44\x65\x23\x35\xe4\x50\x00\x00")
+var _wski18nResourcesEn_usAllJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x3c\x6b\x6f\x1b\x39\x92\xdf\xe7\x57\x14\x06\x0b\xcc\x2c\x20\xcb\xd9\xc5\xe1\xb0\x30\x2e\x07\x78\x13\x67\xd6\x3b\x49\x6c\xd8\xce\x0c\xe6\x12\xa3\x43\x75\x97\x24\xae\xbb\xc9\x5e\x92\x2d\x45\x63\xe8\xbf\x1f\xaa\x48\x76\xb7\x64\xf5\x43\x4e\x06\x77\xf9\x12\x49\x24\xeb\xc5\x62\x3d\x49\x7f\xfc\x0e\xe0\xf1\x3b\x00\x80\xef\x65\xf6\xfd\x19\x7c\x5f\xd8\x45\x52\x1a\x9c\xcb\x2f\x09\x1a\xa3\xcd\xf7\x13\x3f\xea\x8c\x50\x36\x17\x4e\x6a\x45\xd3\x2e\x78\xec\x3b\x80\xed\xa4\x07\x82\x54\x73\xdd\x01\xe0\x92\x86\x86\xd6\xdb\x2a\x4d\xd1\xda\x0e\x10\xb7\x61\x74\x08\xca\x5a\x18\x25\xd5\xa2\x03\xca\xaf\x61\xb4\x13\x4a\x5a\x64\x49\x86\x36\x4d\x72\xad\x16\x89\xc1\x52\x1b\xd7\x01\xeb\x86\x07\x2d\x68\x05\x19\x96\xb9\xde\x60\x06\xa8\x9c\x74\x12\x2d\xfc\x28\xa7\x38\x9d\xc0\xb5\x48\x1f\xc4\x02\xed\x04\xce\x53\x5a\x67\x27\x70\x67\xe4\x62\x81\xc6\x4e\xe0\xa6\xca\x69\x04\x5d\x3a\xfd\x33\x08\x0b\x6b\xcc\x73\xfa\xdf\x60\x8a\xca\xf1\x8a\x15\x63\xb3\x20\x15\xb8\x25\x82\x2d\x31\x95\x73\x89\x19\x28\x51\xa0\x2d\x45\x8a\xd3\xd1\xbc\x68\xdd\xc5\xc9\xdd\x12\xe1\xaa\x44\xf5\xeb\x52\xda\x07\x78\xcd\xcc\x14\x44\xc2\x9d\xd6\xf9\x27\xf5\x49\xdd\x69\x98\xe1\x42\x2a\x58\x6b\xf3\x20\xd5\x02\xd6\xd2\x2d\x61\x6d\x1f\x3c\xe3\x13\x30\x95\x27\xf0\x87\xfa\xb7\x1f\x20\xd5\x45\x21\x54\x76\x46\x00\x3e\xb9\x3f\x35\xd3\x19\xe2\x52\x5a\x58\xcb\x3c\x0f\xb2\x6b\xe1\x17\xd6\xa2\xb3\x2d\x5e\xa5\x82\x42\x28\x39\x47\xeb\xa6\x1b\x51\xe4\xa0\x4d\xeb\x87\x22\xff\xa4\x2e\xe7\x90\x56\xc6\x10\xc9\x99\x34\x98\x3a\x6d\x36\x90\x69\xb4\xca\xc1\x52\xac\x10\x84\xda\xd4\x4b\x60\x2e\x73\x9c\x34\xe4\x40\x69\xa4\x72\x16\x1c\x91\xb4\xc4\xbc\x84\x02\xad\x15\x0b\x9c\x7a\x42\x11\x0a\x6d\x1d\xb3\xa3\x15\xac\xc5\xc6\x82\x9e\x43\x65\x59\x0e\x35\x10\xa7\x23\x27\x42\x65\xa7\xda\x40\xa5\xba\x38\x13\x06\x59\x28\x3b\x22\x69\x7d\x81\x93\x02\x4a\xe1\x96\xa7\x4e\x9f\xee\x30\x3e\x6e\x16\x9c\x64\xf5\x40\x56\xef\xe5\x01\x00\x91\xc2\xc3\xbf\x8e\xa4\x62\x70\x7a\x2f\x39\x9f\xd4\x79\xa5\xdc\x92\x8e\x4d\xca\xea\x78\xf6\x49\x35\xb0\x0d\x8a\xcc\x42\x6a\x30\xa3\x09\x22\xb7\x30\x37\xba\x80\x3f\xfd\xe3\xea\xdd\xc5\xe9\x74\x6d\x1f\x4a\xa3\x4b\x0b\xb3\x0d\x64\x38\x17\x55\xee\x3e\xa9\xab\x15\x9a\xb5\x91\x0e\xe3\x4f\x90\x6a\x35\x97\x0b\xde\x74\x3a\xaa\xaf\xde\x5e\x9e\x7d\x52\x00\x3b\x92\x3c\x09\x93\xfe\xab\x35\xf9\xbf\x7b\x04\x70\x65\x82\x7a\x6e\x40\xe4\x39\xb8\xa5\xc1\x1e\xe0\xa2\x94\x4b\xd2\xa0\x7f\x5c\xdd\xde\xd1\xd7\xca\x2d\xe1\xe7\x8b\xdf\xe0\xe4\xa4\x3e\xc5\xf0\xfe\xfc\xdd\xc5\xed\xf5\xf9\xab\x8b\x4e\xac\x23\xce\xb9\x5d\x6a\xe3\xfa\x8d\xd6\xb5\xd1\x2b\x99\xa1\x05\x01\xb6\x2a\x0a\x61\x48\xca\x34\x9f\x74\xfa\x89\xa6\xce\x90\x94\x3c\x5a\xb7\xd3\xb8\xd7\x98\xc1\x4c\x58\xcc\x88\xe5\x48\x63\x6b\x6f\xe1\xb7\xf3\x77\x6f\xc7\xd8\xa5\x40\x6f\xb7\x61\x3a\x07\xa7\x75\x0e\x16\x1d\x9d\x2f\x3e\x9b\x41\xaa\x1b\x5d\x19\xd0\x25\xaa\x35\xd3\x5b\x06\x3b\x1b\x8e\xa5\xd8\x3d\xec\xe3\x69\x59\xa1\xb1\x84\xbb\x4b\x78\x52\x39\xb6\x73\x61\x1e\xa8\xaa\x98\xa1\x21\xd9\xd5\x1b\x3e\x1a\x97\xdd\xa8\xb4\x9f\x6f\xa7\x81\x26\x79\x66\x9b\xcd\xa9\x99\x9d\xa1\x5b\x23\x2a\x48\x73\x49\x62\x17\x2a\x03\x8b\x66\x85\x66\xb4\x53\x18\x4f\x43\x6b\x7b\x09\x4f\x54\x05\xfe\x61\x47\x75\xba\xb7\x82\xd6\xe9\x92\xe0\x8b\xbc\x0d\x8f\xb6\x28\x4e\x67\xd5\x21\xbb\xf0\x5a\xce\xe7\xc8\x16\x3d\x5a\x5c\x53\x29\xf2\xdd\x4c\xce\xd9\xae\x11\xa2\x9f\x9e\xfe\x32\xd2\x82\xf5\x4e\x6d\x5b\xaf\xe7\xc3\x38\x29\x8d\xfe\x17\xa6\x8e\xce\x3b\x5c\xdf\x5c\xfd\xf3\xe2\xd5\xdd\x68\x3d\x89\xa2\xee\xd8\xa7\x0f\x9d\x7e\x86\x8d\xa5\x57\x88\xb1\xfa\x30\x16\x97\xc1\x42\xaf\xd0\x3e\xc5\xb9\x5e\xca\x74\x09\x6b\x34\xd8\x04\x45\x4c\x07\x9d\x9a\x1d\x4d\xd8\xb7\x17\x3b\x71\x46\x86\x39\x3a\xda\xec\xc3\x4c\xed\x00\xf3\xee\xdc\x54\xea\xec\xff\x9d\x7b\x3b\x0c\xe9\x90\x36\xc0\x8f\x5a\xe5\x1b\x8e\xaf\x2c\xcc\xb5\x69\x89\x87\xa3\x3f\x56\xb0\x42\x67\xf8\xe7\xd1\x7a\x83\x5f\x7a\xfc\xc0\x05\x0f\x42\xa0\x64\x47\xb8\xb5\xc8\xc7\x2a\xcd\x08\x44\x96\xb6\x4b\x2c\x30\xeb\xc7\x48\xd6\x66\x47\x49\xe6\x95\xe2\xb8\xd9\xdb\x88\x8e\x78\x8c\x56\x51\x00\xea\xe9\xd8\xd3\x02\xff\x63\x87\xd0\x5b\x9b\xea\xe7\x61\x76\x72\x84\xd3\x9d\xe7\x62\x91\x88\x52\x26\xe4\xde\x3b\xf8\xf7\xfe\xe9\xfc\xfa\x12\x3e\x93\xff\xff\x3c\x12\x62\xbf\x23\x6a\x01\xfd\xe5\xe2\xe6\xf6\xf2\xea\xfd\x28\xb8\x95\x5b\x26\x0f\xd8\x75\xb8\x69\x58\x1b\xf9\x3b\xff\x00\x9f\x7f\xbe\xf8\x6d\x0c\xd0\x14\x8d\x4b\x68\x77\x3a\xa0\x92\x7c\xc9\x7a\xd3\x91\x9d\xd2\x64\xde\xca\x31\x80\x39\x14\xeb\x80\xda\x0e\xea\x7e\x8c\x91\x9e\xb4\xfb\xa1\xe1\xc0\x61\xf1\x52\xc9\x73\xbd\x4e\x02\x8c\xae\xec\x93\x27\x41\x3d\x69\x18\x6a\x73\x7c\xfb\xe4\x52\x27\x0d\xb5\x1f\x1c\x01\xba\x34\xb8\x92\xb8\xee\x80\x6b\x97\x4c\x68\x04\x7a\xba\xe3\xa8\xcb\x5c\xa8\x11\x18\x1e\x70\x33\x7a\x4b\x1f\x70\x33\x96\x70\x2f\xe9\x60\x08\x7a\x05\x1d\x8d\x44\x9d\x4e\x3b\x72\x0c\x50\x08\xf3\x80\x59\x34\x25\xa3\x44\xc5\x70\x12\x3a\xf4\x5d\xcc\x04\x54\x3c\x65\x18\x62\xb4\x0e\x03\xbb\xba\xe3\x9c\x46\x80\xad\x13\x81\x0e\xb8\xcd\xf8\x68\xa6\x07\x28\xf4\x71\x41\x8e\xd6\x46\x69\x8f\x00\x6d\x9d\x91\x9d\x90\xfd\xd6\x55\x16\xc9\x79\xcd\xa5\xc2\x8c\xac\xb2\x93\x45\x1d\x2e\x8f\xc0\xe0\x4c\xb7\x10\x78\x0c\x74\xe5\xca\x6a\x0c\xb1\x5e\xdd\x56\x68\x66\xda\x76\x81\x0c\xa3\xc7\x02\x2d\x85\x11\x45\xa7\x80\x8d\x28\xd0\xa1\x81\x95\xc8\x2b\x64\xef\x4d\xc6\x14\x7e\x39\x7f\xfb\xe1\xe2\x33\x39\xf7\x42\x1c\x89\xaa\xef\x34\x7e\x7e\x73\xf9\xf6\xe2\x33\xa5\xb9\x4e\x48\x0e\x90\x0f\x51\xf0\xcf\xdb\xab\xf7\xc3\xa8\xd9\xaa\x26\x85\xb4\x14\x8b\xb3\xbf\xe8\x76\x17\xe4\x88\x69\x46\x93\xbb\x03\xd9\x02\x69\x41\xe9\x98\x75\x57\x06\xb3\xe9\xa7\xbe\x7d\xdf\xc3\xe8\x33\xe5\x1e\x8c\xe4\xf3\x38\x99\xfe\x2a\x3c\x43\xc7\x8d\x30\x35\xb9\xf9\xb3\x50\x05\x56\xfa\xaa\xa2\xfb\xfc\x7c\x7c\x7c\x9c\xd2\xe7\xed\xf6\x7e\xe2\x03\xa3\xc7\xc7\xa9\xd5\x95\x49\x71\xbb\x1d\x85\xd3\x6f\xd8\x10\x4e\x2e\x40\x84\xbd\xb2\xe8\x9e\x87\xab\x16\xcf\x10\xb6\x1d\x39\x12\x8b\xf5\x0f\xcf\xe7\xb3\x94\x8b\x75\x22\xb8\x20\x9c\x38\xfd\x80\x6a\x90\x65\x5a\x01\x7e\x05\xf0\x8a\xe7\x31\x5f\xa9\x42\x18\xbb\x14\x79\x92\xeb\x54\xe4\x9d\x69\x52\x98\xd5\x8a\x6c\x83\x29\x0c\x11\x2f\xaf\x0e\xc7\x73\x24\x42\x85\x8e\xb2\x83\x67\xa3\x94\xca\xa1\x51\xe8\x40\x38\x62\xb7\x32\xf9\x00\xaf\x4d\xdc\x90\xa4\x42\xa5\x98\xe7\x9d\x5e\xfb\xea\xe7\x29\xbc\xf2\x73\x9a\x82\x11\xe7\x41\x23\x11\xcc\x85\xec\x86\xde\x2a\x48\x67\x32\x0b\x67\xb1\x28\x73\x74\x08\xb6\xa2\x2d\x9d\x57\x79\xbe\x99\xc2\x4d\xa5\xe0\xf3\xd3\x8c\xeb\x33\x27\x08\x9c\xb1\x92\x6d\x74\x52\xe4\xf9\xa6\x49\x4f\x7d\x26\x32\x96\x52\x5f\x2d\x4b\xac\x13\xae\xea\x8a\x16\x4f\x4e\x4e\x4e\x5e\xbe\x7c\xf9\xf2\x70\x51\xfd\x96\x97\x02\x4d\xa0\x89\xa3\xb0\x72\x6f\x04\xb3\x31\x22\x8a\xa2\xc9\x20\x34\x54\xbc\x70\xfa\x95\xec\xf9\x7b\xdd\x5e\x3b\x1e\x49\xef\x7e\x7f\x68\x87\xac\xbd\x3b\x3e\x1a\xdf\x90\xfc\x76\x50\x3e\x43\x82\xa1\xd7\x91\x70\x11\x8b\xbd\x35\x59\xb9\x44\xb8\x84\xe2\xad\x0e\xa4\x8f\x8f\xd3\xb4\xc8\xb6\xdb\x50\xfa\x7a\x7c\x9c\xd2\x42\xb7\x29\x71\xbb\x65\x4b\x49\x6b\xb7\xdb\xfb\xe9\xb4\x17\x37\x07\xc9\x9b\x24\xea\xf3\x40\x1f\xed\xf1\x91\x42\xf6\x80\x80\x88\xdc\x6e\xef\x61\x29\x2c\xcc\x10\xd5\x0e\xc3\xf5\x09\x19\x8f\xbd\xbb\xf1\xf6\x3a\x8e\xc3\x41\x02\xa6\xd3\x9e\x92\x65\x40\xd1\x54\x9f\xbf\x1d\x8b\x0d\xcc\x31\x4c\xc6\xd9\xdd\x6c\x7e\x68\x66\x1c\x64\xb4\x97\xcf\x0c\x4b\x54\x19\xaa\xf4\x18\x71\x36\x8b\x9e\x8f\xa7\x39\x22\x9d\x32\x7d\x7d\x10\xcd\xd7\x28\xce\x61\x2a\xc8\x30\x54\xa6\x2b\x2e\x7b\xbd\x53\x73\x3e\xcc\xfa\xff\xa1\x8f\x88\xfc\x1c\xa7\x27\x5f\xb7\x83\x4f\xcd\xdc\xb7\xd9\xc3\x91\x27\xa3\x8b\x92\xfe\x7d\xfc\xb0\xd7\x3d\x78\xce\x4e\xf6\x51\x15\x2a\x04\xcf\xf5\x39\x4c\x91\xf7\x00\x75\x05\xa2\x8f\x16\xc8\x2a\x43\x3b\x19\x6b\x9c\x2d\x8f\xf8\xc7\xe9\x5b\xe4\x71\xae\x2b\x95\x25\x81\xde\x60\xa9\x3a\x15\x20\x54\xd5\x0f\x5a\xc8\x50\xba\xe7\x0b\x08\x44\x57\xab\x70\x1f\x9b\xeb\xfb\x45\x5c\x76\x52\xfe\x33\x41\x10\x96\x79\xe1\xf6\xf8\xd8\xb0\x20\xd4\xd4\x92\xd0\x36\xea\xea\xbc\xf9\x51\x4e\x26\xa0\x55\xef\x33\xc8\x75\x8c\x6c\xc2\x7d\xd8\x26\xdc\xaa\xb7\x8d\xe8\x30\xf5\x8a\x80\x04\x44\xab\x3d\xd1\xee\x6a\xfa\xcb\x03\x41\xfb\x8d\xef\xbb\x0d\xdd\xb4\xb8\xb8\xb9\xb9\xba\xb9\xed\xa0\xfb\xe5\xfe\x3f\xf0\xd3\xe1\xc9\xc0\xcb\x97\x3d\xee\xc7\x98\xdd\x83\xf6\xa0\xf4\x5a\x25\x14\x29\x0c\x1f\x75\x9a\x45\xa2\x0a\xab\xa6\xd0\x2a\x8e\x73\xcf\xc1\x56\xa5\x2f\xd1\x9f\x72\x59\x79\x6a\x37\xd6\x61\x01\x33\xa9\x32\xa9\x16\x16\xb4\x81\x85\x74\xcb\x6a\x36\x4d\x75\x51\xb7\xf7\xfa\xfd\xa5\x31\xd1\x67\xa6\x06\x85\xeb\x22\x93\x2f\x16\x01\x4f\xd9\x51\x4b\xbe\x5e\xc2\x37\x92\xe2\x5d\x8c\x33\x1a\x44\x63\xb6\x5b\xee\x0b\xf8\xb1\x54\x67\x7e\x80\x3e\x0c\x64\x33\x2d\x92\xfc\x59\xe9\x25\x29\x7b\x72\x52\xfe\x20\x92\xe6\x88\x59\x22\xd5\x4a\x3f\x74\x11\xf4\x86\xcd\x16\x99\x0b\x3f\x8d\x0f\x24\x2d\x83\xf5\x12\x5b\x9d\x32\xe7\xef\x15\x85\xa1\x3f\x86\xda\x07\xdc\xd4\x35\x14\x8a\x77\x85\xd3\xa6\xaf\x3e\x54\xcf\xe1\x72\xc3\xc7\x28\xcc\x7b\xd2\xc7\x00\x67\x10\x67\x2c\xa5\x26\x4a\x3b\x6f\xec\x3a\x10\xbe\x6b\xd7\x5c\xd9\x56\xf3\x6c\xca\x77\xb9\xe8\xd9\x8e\xa8\x87\x90\x72\xf4\x5e\x48\x5b\x08\x97\x76\x85\xef\xc4\x60\xad\x1e\xb4\x20\x63\x14\x59\xb4\xa7\x52\xed\x17\xf7\xfd\x78\xa0\x81\xef\x27\x31\x99\x8c\x84\xb7\x95\xcd\x1b\x4d\x2a\x5a\x40\x76\x6a\xc9\x7e\x34\xb2\xd1\xcf\x44\xc8\xff\x49\xbd\x44\x2e\xbb\xc4\x76\xe9\x47\xf9\x52\x95\xdf\x92\xba\x6c\x4b\xb8\xc2\x67\xa2\xe5\xe0\x8d\x2c\x6e\x56\x12\xed\xc2\x37\xea\x68\x8d\xff\x38\x46\xce\x91\xc4\x01\x51\xdf\x1c\x43\xd0\x9e\x5c\xf9\x28\x78\x8a\x7e\xb0\xe0\xab\x3c\x5e\x94\xf8\xc5\xa1\xb2\x91\x68\xfc\xc2\x3e\x8c\xd8\xf9\x1a\x56\x6c\xb2\xc0\xae\x02\x66\x73\x94\x17\xe8\xef\x91\x04\xdb\xdb\x94\xca\x9f\x74\x44\xc9\xbf\xc9\xb4\x75\x7c\x47\xcb\xd4\x93\x9e\x78\x8e\xf9\xf4\xd4\xd8\x3a\xe8\xdb\x61\x98\xe3\x42\x12\x63\x23\x65\xa1\x36\xb5\x6e\x90\x11\x69\x6d\xfb\xa0\x5c\x43\x11\xb5\x26\x61\x90\x8d\xca\xe4\xc7\x6b\xae\x2f\x6c\x85\x14\xfa\xc3\xcd\x5b\xa6\x80\x4b\x5d\x7c\x94\x3e\xee\xe4\xd8\xf7\xfe\x72\xd0\x18\x42\x0a\x91\xcf\xb5\x29\x3a\x25\xf7\x2e\x8e\xf7\x51\x30\x85\x3b\xb3\x01\xb1\x10\x52\x0d\xa5\xf4\xc6\x24\xff\xb2\x5a\xd5\xc6\x36\x2d\xb2\x9e\xce\x2d\x17\xf7\xa5\x2a\x2b\x07\x99\x70\x02\xde\x05\x69\xfc\x90\x16\xd9\x0f\x64\x7a\xfb\x31\x89\x52\x36\x15\x78\xaf\x34\xda\x24\x16\xff\x5d\xa1\xea\x2c\x91\xfb\xfb\xac\xa7\xb7\x61\xd6\xee\x61\x69\xd9\x77\xaf\xcf\x7b\x97\x35\xce\xaf\x2f\xfd\x82\x52\xd2\xec\x54\x28\x1f\x8a\xcc\xd0\x07\x03\xed\x0b\x66\x8d\x92\x9d\x46\x92\x0e\xc0\x9c\xc2\x75\x8e\xc2\x22\x54\x65\x26\xdc\xde\xed\x10\xef\x3c\xd3\xbc\xca\xf6\xe9\x14\x16\x04\xac\x71\xb6\x8f\x61\x70\x77\x82\x9c\xfa\x15\xf4\xfc\x80\x1d\x21\xd1\x84\x55\x53\xb8\x74\x3e\xfb\xd2\x6e\xc9\xbe\x78\xf7\xce\x43\x7d\xf0\x26\x5e\x3a\x5a\x61\x68\xbb\x16\x04\x05\xbf\x94\x98\x8e\x39\x49\x81\xd6\xb8\xc5\xd1\x3e\x90\x61\x4c\x08\xeb\x57\x52\xcf\x84\x37\x46\x82\xc0\xea\xca\xb5\x8d\xc5\x14\x7e\x6d\x8c\x70\x34\x15\xb4\x6c\x52\x9b\x13\x69\x9b\x60\x61\xc0\xad\x05\x76\xa2\x98\x12\xca\x56\x1c\x26\x99\x34\xa3\x8c\xdc\x41\xb6\x88\x8f\x5a\xee\xa5\x96\xca\x87\x54\x3e\x45\x73\xd8\xba\x55\xdc\x1c\xe7\x09\xa5\x80\x91\x2b\xbe\xd5\xbb\x67\xe1\xfa\xd9\x48\x05\x25\xec\x62\x85\x49\xa6\xd3\x07\xec\xba\x7b\xff\x4a\x28\x86\x2a\x56\x08\xaf\x79\x22\xc8\x82\x03\xf0\x81\xc0\x52\xe6\x98\x88\xdc\xa0\xc8\x36\x09\x7e\x91\xb6\xf3\x6e\xc3\x1b\x3a\x21\x61\x26\xf8\x99\x03\xb0\xb3\x78\x37\xaf\xc9\x4a\x24\x5a\xaf\x50\x96\x22\xa7\x5c\xcc\xb0\xab\x39\x72\xa5\x10\x48\x0f\x73\xdc\x4f\xfb\x9b\xaf\x71\x4b\xdc\x5a\x43\x8d\x8c\x9b\x26\x5e\xd6\x34\x3b\x7e\xf3\x86\x75\x29\x2d\x3c\x48\x95\xd1\x01\x09\xba\x18\x9a\x92\x4f\x1c\xcf\x9e\xa5\x20\xfb\xd2\x22\x84\x49\x3f\x40\x4e\xb8\x81\xff\xc4\xae\xb0\xb2\x70\x43\x9d\x62\xb7\x48\x14\xc4\xb4\x06\x99\x07\x8b\xa5\x30\xf4\x85\xa1\xfb\x0b\x5e\x1d\xbc\x8d\x53\xfe\x70\xc8\x12\x62\xf9\x58\x3d\x57\xda\x4b\xca\xa2\x3b\x0e\xd9\xb1\xb6\x22\x20\x6b\x9d\xf7\x01\x7c\xd1\xfa\x26\x4b\xb1\x22\x4b\xc5\xba\xe4\x0b\xe9\x36\x10\xd3\xf5\x3a\xa4\xed\x86\x22\x98\x60\xaf\xa2\x6a\xc7\x4b\x09\x64\xf3\x55\x34\x46\x3e\xd1\xe7\x50\x8c\xf6\x2f\x64\xb7\xd3\xf8\x5c\x23\xdc\xa9\xf5\xf0\x2c\x3b\x2a\x52\x26\x7e\x53\xc0\x0b\x38\x62\x97\x0a\x44\xd4\xe9\x08\x61\xe0\xf0\x6b\x35\xcf\x65\x4a\x56\x26\x09\x89\x1b\x71\x68\xb4\xb5\xb1\x12\xd2\x75\x5c\x5b\xe7\x27\xa6\x7c\xc4\x74\xf8\x1c\x78\x8e\xbc\x72\xf0\x5b\x54\xb9\x93\x65\xee\xb3\x46\x7f\x78\xe8\x53\x88\x48\x3c\x72\x36\x5f\xd1\xf7\xee\x95\x41\x5c\xbb\x8b\x3b\x01\xe9\xfc\x89\x2a\xb5\xb5\x72\xe6\x4f\x01\x0b\x24\x32\xe2\xb1\x36\xe2\x99\x51\x5c\x52\x6b\x3a\x13\xf1\xe4\x10\x06\x4e\x18\xcd\x93\xa4\xe7\x08\x61\x9a\x2a\xc7\x67\x48\x92\x96\x85\xec\x22\xc7\x43\x32\x6c\xe8\x8f\xf6\x7e\x2f\x90\xf0\x8f\x3e\x6a\x11\xec\x6e\xc9\xd4\xbf\xf5\xf9\x16\x42\x66\x06\x0f\x49\x58\x58\xab\x53\xc9\xa0\x0f\x53\x7c\x1a\x89\xdb\x17\x3e\x33\xff\x2c\xc9\x0b\xd3\xdc\xa9\xe0\x66\x76\xe7\x5d\xf2\xd0\x20\x83\x5c\x2a\x04\x61\x16\x15\x27\xc5\x24\x42\xb3\xd8\x6e\xdb\xf1\x22\xc3\x99\x40\xe9\x49\x8c\xcf\x2c\x48\x1e\x3c\x72\x04\x45\x0f\xb8\xf9\x66\x54\x3d\xe0\xe6\x94\x61\x41\x29\xa4\x79\x42\xde\xee\x30\xdb\x77\xfc\x22\x8a\x92\x82\xdd\x1a\xdc\x03\x6e\x46\xf1\x10\x02\xac\xe1\xab\x3f\x5d\x0c\xfc\x18\x51\xfe\x99\x6d\x70\x80\xe7\xef\x05\x79\xc7\x55\x97\x42\x26\xbe\x20\xd9\x4a\x2f\xa3\x72\xd4\x0f\x5c\xc0\xaf\xe6\x24\xa3\x01\x31\x54\x7b\xc0\x7f\x57\xd2\x70\x6d\xab\xac\x9c\x1d\xa5\x25\x37\x61\x8d\x4f\x65\xfc\x69\xd9\xd1\x0a\x0b\xb8\x42\x05\x62\xee\xd0\x80\x28\xcb\x9c\xfb\x27\x7c\xb1\xa1\xd4\x1e\x4e\xe8\xa5\xa2\x5a\x4d\x61\x25\x8c\x14\xb3\x1c\x1b\x85\xb7\xe8\x6a\x88\xbb\x53\xe2\x01\xf6\x59\x54\x73\x6f\xea\xd0\xf3\x16\xff\x94\xc8\x84\x07\x3f\xbc\xd9\x73\x9d\xe7\x7a\xed\xa9\x21\xda\x59\x9e\xfe\xe3\x76\x3b\x9c\x7d\x2d\x84\xc3\xb5\xd8\x24\x94\xf4\x70\xc7\x78\x28\xb1\xb8\xbe\x84\x9f\xfc\x1a\x4e\x94\x9a\x02\x97\x28\x25\xfd\x10\x6b\x4c\x07\xc2\x75\x9e\x5a\x5f\x11\x8b\x37\xf6\xf7\xa3\xa4\x90\x72\x18\x24\xa4\xab\x80\xa0\xae\x14\xef\xc1\x18\x59\x87\x2a\x85\xb1\x68\x7a\x5f\x9a\x36\x15\x12\x83\xce\x48\x64\x83\x17\x0a\x23\xb5\x86\x1e\xc6\xf6\xeb\xf9\xcd\xfb\xcb\xf7\x3f\x8d\xaf\xc4\xc7\x05\xc7\xd5\xe2\xd7\xc2\xa8\xba\xdd\x4f\x44\x76\x25\xe5\x37\x34\x46\x1a\xf1\x31\xf6\xf9\xef\x83\xe6\xb2\x00\xce\x7c\x71\x84\x18\xba\xef\x4b\xe0\x02\x3e\xbe\xf7\x74\x74\x39\xa4\x7d\x4d\xba\x55\xfe\x84\x0c\xdd\x70\xea\xc8\x98\xc9\x86\x66\x58\x1a\x4c\xc9\xb3\x24\x06\xcb\x5c\xa4\x9d\xb9\xd5\xdd\xd2\xe3\xd1\x79\x16\x0a\xbd\x7c\xcd\xcc\x87\xce\xbb\xf7\x1b\xf8\xed\xa7\xd5\x5a\x51\xd2\xdf\x60\xa8\x2d\x6b\x65\x7d\x68\xce\x1d\x2a\x5c\xef\x80\xb3\x0e\xc5\x48\xda\x83\x24\x9e\x53\xa3\xb6\x4b\x5d\xe5\x19\x91\x47\x91\x32\x7c\xb0\xbe\x59\xeb\x3b\x49\xde\xd8\xd3\x6c\xfe\x34\x7c\x4b\xa3\xa6\x88\xe7\x0f\x6c\x25\xd1\xe5\x31\x90\x71\x79\x5a\x3b\xa7\xa3\xea\x4f\xf5\x11\x28\x39\x39\x16\xab\xde\xcd\x1b\x42\xca\xeb\xe3\x86\xc6\xae\x60\x7c\x0c\xd7\x7e\x05\x37\x4c\x58\x2e\x0b\xe9\x12\xb9\x50\xda\x74\x92\x14\x55\x3a\x04\xeb\xbc\xc4\x27\x7f\xf4\x69\xbf\x3e\x4e\xc6\xce\x83\x1b\x8b\x3d\x5d\x0a\xb5\x40\x72\x00\xfd\x79\xcd\xdb\x1a\x71\x5d\x97\xb7\x91\xfd\x7c\xe3\xfb\xc2\x35\xa8\x29\x5c\x12\x15\x52\x2d\xc6\xa8\x04\x13\x62\x93\x5c\x2f\x12\x2b\x7f\x1f\xa0\x83\x27\x9f\x41\xae\x17\xb7\xf2\x77\x52\x5d\x2e\x99\xe9\xca\x59\x99\xc5\x4c\xd6\xeb\xa7\x21\x6a\x68\x47\x3e\xbe\x98\xc0\x5f\x5e\xdc\xc3\xbb\xbf\xd7\x5e\x70\x85\x86\x1c\x3b\x77\x37\x4b\xff\x1e\xd4\x34\xb6\x9d\x9f\x41\xfb\x30\x65\x2c\xf1\x05\x16\xda\x6c\xc6\xd3\xef\xe7\x8f\x67\xe1\x2f\x7f\xfd\xdb\x04\xfe\xfa\xe2\x3f\xfe\xf6\xc7\xb2\x41\x6e\x46\x57\x9d\x6f\x51\x77\x58\x08\x73\x47\xd2\xff\xe2\xc5\x04\xfe\xf3\x05\xfd\xbb\x87\x42\xe6\xb9\xb4\x98\x6a\xd5\x4a\x83\xbe\x1d\x2f\xdc\xc3\x4d\x4a\xa3\x4b\x34\x4e\x76\xe6\x3e\xd1\x52\xb7\xec\xaa\xef\xfc\x7b\xaf\x1b\x7a\xff\xbe\x21\xdc\x00\x8b\x77\x04\x0e\xdb\xee\x68\xba\x33\xcd\x27\x82\x2c\xb8\x74\xb5\x68\xf4\x1c\xee\x8c\x58\x49\x0b\xb3\x4a\xe6\x59\x7f\x03\x99\x59\xf1\x66\x8b\xc5\x38\xca\x64\xd5\xc7\x73\xc7\x70\xa9\x3d\xc7\x13\xcc\x3a\xb7\xc5\x29\x49\xf3\xbf\xc6\xa7\xb4\x8f\x8f\xd3\x42\xaa\xd0\x24\xa5\x2f\x22\x1d\x68\xb9\x30\xa9\x31\xc4\xf1\x56\xa0\xcb\x9c\xc5\x36\x56\x98\x45\x61\xce\x5e\x47\xeb\x40\xd5\xbb\xb3\x69\xf5\xac\x4e\x15\x53\x1b\xfa\xe0\x5c\x59\xe9\x2d\x0d\x3e\x69\x71\xee\xd8\xc0\xbd\x9a\x61\x13\x64\xe7\xfc\xc0\x4f\x69\xb7\x0c\x29\xfd\x30\x49\x31\x55\x1f\xec\xf2\xde\x3d\x29\xc2\xb5\x03\x9b\xf0\x0a\x02\x33\x50\x7a\xdc\x55\x05\xc6\xde\xba\x25\xc4\x42\x19\x43\xc4\xc1\x3b\x34\xc1\x33\xee\x27\x0b\xeb\xd0\x4a\xf3\x0d\xe9\x43\xa5\xc4\x11\x12\x6a\xbd\x65\x4a\xf4\x0a\x8d\x91\x59\x86\x5d\x05\x31\xa2\xb0\xfd\xb4\xa9\xb9\xe5\xd5\x2c\x8d\x31\x4d\xfb\x12\xcf\xd8\x8d\x4a\xa4\x4d\xca\x6a\x96\xcb\xae\xe7\xe3\x7e\x57\x78\x6e\x6c\x08\xf9\xd7\x5b\x94\x82\xf0\xc2\x27\xc5\x86\x09\x99\x0b\xb6\x2d\x33\x84\x95\xf4\x75\x0f\x3a\x87\xa9\x60\x4b\xe3\xaf\xef\x63\x06\xb3\x0d\x08\xb5\xd1\xaa\xe7\x35\x14\xd3\x1a\xeb\x97\x38\x0b\x6f\x54\x07\xc2\x8d\xa7\xe5\x4b\xee\xcc\x70\x7f\x48\x65\xf4\xff\x49\x78\x4e\xba\xdf\x9a\xa1\x83\xc0\x7f\x0f\x04\x67\x13\x1f\x84\x84\x6f\x61\x41\x4f\x86\xe4\x29\x6d\xb5\xe0\x88\xdc\xde\x62\x67\x57\x63\x86\x34\xac\xdd\xcd\x1a\xd5\x67\x0b\x7f\xc7\xa4\x5e\x34\x85\x57\x5a\xad\xc8\xdc\x87\xd4\xa5\x41\xe1\xf4\x0e\xf8\x61\x95\xdd\xe7\x6a\xa0\xa5\xd8\x57\xc4\x6d\x78\x8b\x03\x47\x72\x57\x77\xf6\xf6\xf9\x6b\x23\xaa\x39\x1c\xd5\x07\xac\x79\x8c\x05\x1b\x83\xb6\xd4\xca\x62\xdf\xcd\xac\x3d\xa2\xb9\x54\xb7\x9f\x92\x87\xf1\x98\x7c\xb7\x92\xf9\x58\x56\xa9\xcb\x81\x4b\xe7\x4a\xff\x37\x83\x3c\x6a\xf6\x6b\x53\x78\x45\x1e\x86\xaf\x72\xb4\x7f\xf7\x4e\x9d\x5d\x4e\xf8\x39\x30\xcd\x50\xc8\x9f\x34\x94\x0d\x69\x6c\xdc\x57\x54\x2b\x69\xb4\x62\xdb\x19\xab\x29\x5d\x4d\xf2\x90\x95\x5e\x34\x4b\xe0\x97\xb0\x64\x37\x95\x3a\x8c\xfb\xf5\xc5\xdf\x3f\xfc\x34\x3a\xbd\xe7\xd9\xc7\xe5\xf6\xd9\x6c\x91\x58\x14\x26\x5d\x12\x67\xd1\xe0\xd6\xbd\xbf\x4e\xb5\x0d\x2b\x6a\x83\xbb\xdb\x2d\x8c\xdb\x17\xe5\xeb\x03\x93\x81\xdc\x80\x48\xd9\xf7\x4a\xdf\xda\x23\x3d\xd3\x1b\x11\x69\xb5\xbb\xf6\xb7\x4f\x7b\xfe\x84\xcb\xeb\x03\x57\xa0\x82\x44\xce\xe0\x0d\x53\xd0\xfc\xc5\x10\xae\x84\x13\xb0\x63\x09\xe8\x7f\xf3\x7a\x3c\x0d\xed\x0b\xae\xf1\x42\xf6\x71\xef\x18\xf7\x1e\xa8\x1d\xfd\x36\xed\x88\x17\x87\xe1\x11\x6b\xf2\xbb\x2c\x13\xfc\xc2\xd7\x1c\x7c\xfb\xb7\xe7\xed\xc9\x05\xcf\x23\xa5\xbd\x16\x6e\x79\xd6\x16\xc9\x58\x54\x22\xcb\xe2\x63\x97\x3e\x4c\xe7\x3c\x6d\xe7\x24\x38\x0d\xff\x23\x4b\x78\x33\xa4\x69\x6d\x6c\xe1\xfe\x46\xbc\xce\xd4\x83\xf0\x4d\xb8\x90\x76\xeb\xa3\xe6\x67\xf3\x77\x00\x63\x92\xa1\x75\x52\x31\xaa\xaf\x21\x81\xc3\x89\xd7\x0d\xac\xd6\x8c\x16\x86\x91\xb4\x46\xef\x13\xe9\x45\xd5\x5d\x94\x8c\x95\x09\xb8\x0c\xd7\x61\x2e\x68\x32\x39\x10\xe9\x5a\xc5\x62\xa6\x24\xc0\xe3\xf6\x55\x9c\xce\xb0\xd9\xd3\xa2\xe4\xe8\x9e\x9d\xd0\x47\xcf\xe7\x3d\x90\x85\xf3\x9f\x27\x6d\xf6\xfa\xcf\x4e\xe4\x23\x5e\x03\x66\xe1\xf7\x74\x3d\x5e\xc5\xeb\xc2\x24\xe1\xa8\x47\x47\xef\x70\x2e\xad\x4b\xf4\x9c\x11\xd9\x84\xaf\x0a\xb2\xd1\x17\xce\xa1\xe9\x3a\xae\xde\x56\xf0\x05\xdc\xba\xe0\xef\xff\x7a\x91\x6f\xb4\x06\x28\x71\xdf\xf9\x66\xc5\xb5\x77\xee\x0c\x36\xca\xe1\xbb\xfb\xef\xfe\x37\x00\x00\xff\xff\xe9\x27\x76\xd2\x8c\x51\x00\x00")
 
 func wski18nResourcesEn_usAllJsonBytes() ([]byte, error) {
 	return bindataRead(
@@ -112,7 +112,7 @@
 		return nil, err
 	}
 
-	info := bindataFileInfo{name: "wski18n/resources/en_US.all.json", size: 20708, mode: os.FileMode(420), modTime: time.Unix(1539294171, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/en_US.all.json", size: 20876, mode: os.FileMode(420), modTime: time.Unix(1554424542, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -132,7 +132,7 @@
 		return nil, err
 	}
 
-	info := bindataFileInfo{name: "wski18n/resources/es_ES.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1520374115, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/es_ES.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -152,7 +152,7 @@
 		return nil, err
 	}
 
-	info := bindataFileInfo{name: "wski18n/resources/fr_FR.all.json", size: 101, mode: os.FileMode(420), modTime: time.Unix(1520374115, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/fr_FR.all.json", size: 101, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -172,7 +172,7 @@
 		return nil, err
 	}
 
-	info := bindataFileInfo{name: "wski18n/resources/it_IT.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1520374115, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/it_IT.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -192,7 +192,7 @@
 		return nil, err
 	}
 
-	info := bindataFileInfo{name: "wski18n/resources/ja_JA.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1520374115, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/ja_JA.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -212,7 +212,7 @@
 		return nil, err
 	}
 
-	info := bindataFileInfo{name: "wski18n/resources/ko_KR.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1520374115, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/ko_KR.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -232,7 +232,7 @@
 		return nil, err
 	}
 
-	info := bindataFileInfo{name: "wski18n/resources/pt_BR.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1520374115, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/pt_BR.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -252,7 +252,7 @@
 		return nil, err
 	}
 
-	info := bindataFileInfo{name: "wski18n/resources/zh_Hans.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1520374115, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/zh_Hans.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -272,7 +272,7 @@
 		return nil, err
 	}
 
-	info := bindataFileInfo{name: "wski18n/resources/zh_Hant.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1520374115, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/zh_Hant.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -329,14 +329,14 @@
 
 // _bindata is a table, holding each asset generator, mapped to its name.
 var _bindata = map[string]func() (*asset, error){
-	"wski18n/resources/de_DE.all.json":   wski18nResourcesDe_deAllJson,
-	"wski18n/resources/en_US.all.json":   wski18nResourcesEn_usAllJson,
-	"wski18n/resources/es_ES.all.json":   wski18nResourcesEs_esAllJson,
-	"wski18n/resources/fr_FR.all.json":   wski18nResourcesFr_frAllJson,
-	"wski18n/resources/it_IT.all.json":   wski18nResourcesIt_itAllJson,
-	"wski18n/resources/ja_JA.all.json":   wski18nResourcesJa_jaAllJson,
-	"wski18n/resources/ko_KR.all.json":   wski18nResourcesKo_krAllJson,
-	"wski18n/resources/pt_BR.all.json":   wski18nResourcesPt_brAllJson,
+	"wski18n/resources/de_DE.all.json": wski18nResourcesDe_deAllJson,
+	"wski18n/resources/en_US.all.json": wski18nResourcesEn_usAllJson,
+	"wski18n/resources/es_ES.all.json": wski18nResourcesEs_esAllJson,
+	"wski18n/resources/fr_FR.all.json": wski18nResourcesFr_frAllJson,
+	"wski18n/resources/it_IT.all.json": wski18nResourcesIt_itAllJson,
+	"wski18n/resources/ja_JA.all.json": wski18nResourcesJa_jaAllJson,
+	"wski18n/resources/ko_KR.all.json": wski18nResourcesKo_krAllJson,
+	"wski18n/resources/pt_BR.all.json": wski18nResourcesPt_brAllJson,
 	"wski18n/resources/zh_Hans.all.json": wski18nResourcesZh_hansAllJson,
 	"wski18n/resources/zh_Hant.all.json": wski18nResourcesZh_hantAllJson,
 }
@@ -380,18 +380,17 @@
 	Func     func() (*asset, error)
 	Children map[string]*bintree
 }
-
 var _bintree = &bintree{nil, map[string]*bintree{
 	"wski18n": &bintree{nil, map[string]*bintree{
 		"resources": &bintree{nil, map[string]*bintree{
-			"de_DE.all.json":   &bintree{wski18nResourcesDe_deAllJson, map[string]*bintree{}},
-			"en_US.all.json":   &bintree{wski18nResourcesEn_usAllJson, map[string]*bintree{}},
-			"es_ES.all.json":   &bintree{wski18nResourcesEs_esAllJson, map[string]*bintree{}},
-			"fr_FR.all.json":   &bintree{wski18nResourcesFr_frAllJson, map[string]*bintree{}},
-			"it_IT.all.json":   &bintree{wski18nResourcesIt_itAllJson, map[string]*bintree{}},
-			"ja_JA.all.json":   &bintree{wski18nResourcesJa_jaAllJson, map[string]*bintree{}},
-			"ko_KR.all.json":   &bintree{wski18nResourcesKo_krAllJson, map[string]*bintree{}},
-			"pt_BR.all.json":   &bintree{wski18nResourcesPt_brAllJson, map[string]*bintree{}},
+			"de_DE.all.json": &bintree{wski18nResourcesDe_deAllJson, map[string]*bintree{}},
+			"en_US.all.json": &bintree{wski18nResourcesEn_usAllJson, map[string]*bintree{}},
+			"es_ES.all.json": &bintree{wski18nResourcesEs_esAllJson, map[string]*bintree{}},
+			"fr_FR.all.json": &bintree{wski18nResourcesFr_frAllJson, map[string]*bintree{}},
+			"it_IT.all.json": &bintree{wski18nResourcesIt_itAllJson, map[string]*bintree{}},
+			"ja_JA.all.json": &bintree{wski18nResourcesJa_jaAllJson, map[string]*bintree{}},
+			"ko_KR.all.json": &bintree{wski18nResourcesKo_krAllJson, map[string]*bintree{}},
+			"pt_BR.all.json": &bintree{wski18nResourcesPt_brAllJson, map[string]*bintree{}},
 			"zh_Hans.all.json": &bintree{wski18nResourcesZh_hansAllJson, map[string]*bintree{}},
 			"zh_Hant.all.json": &bintree{wski18nResourcesZh_hantAllJson, map[string]*bintree{}},
 		}},
@@ -444,3 +443,4 @@
 	cannonicalName := strings.Replace(name, "\\", "/", -1)
 	return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
 }
+
diff --git a/wski18n/resources/en_US.all.json b/wski18n/resources/en_US.all.json
index 9e78b70..96fb5da 100644
--- a/wski18n/resources/en_US.all.json
+++ b/wski18n/resources/en_US.all.json
@@ -421,19 +421,19 @@
   },
   {
     "id": "msg_warn_limit_changeable",
-    "translation": "Limit [{{.name}}] is currently not changeable. Ignoring...\n"
+    "translation": "Action Limit [{{.name}}] is currently not changeable. Ignoring...\n"
   },
   {
     "id": "msg_warn_limits_log_size",
-    "translation": "logSize of limits in manifest should be an integer between 0 and 10.\n"
+    "translation": "Action limit: logSize may be outside the default range of [0, 10] MB. Please verify your provider supports this value.\n"
   },
   {
     "id": "msg_warn_limits_memory_size",
-    "translation": "memorySize of limits in manifest should be an integer between 128 and 512.\n"
+    "translation": "Action limit: memorySize may be outside the default range of [128, 2048] MB. Please verify your provider supports this value.\n"
   },
   {
     "id": "msg_warn_limits_timeout",
-    "translation": "timeout of limits in manifest should be an integer between 100 and 300000.\n"
+    "translation": "Action limit: timeout may be outside the default range of [100, 600000] milliseconds. Please verify your provider supports this value.\n"
   },
   {
     "id": "msg_warn_whisk_properties",