Completed
Branch develop (3f9c38)
by
unknown
25:32
created
htdocs/includes/stripe/stripe-php/lib/Util/Util.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -77,9 +77,9 @@  discard block
 block discarded – undo
77 77
             self::$isMbstringAvailable = \function_exists('mb_detect_encoding') && \function_exists('mb_convert_encoding');
78 78
 
79 79
             if (!self::$isMbstringAvailable) {
80
-                \trigger_error('It looks like the mbstring extension is not enabled. ' .
81
-                    'UTF-8 strings will not properly be encoded. Ask your system ' .
82
-                    'administrator to enable the mbstring extension, or write to ' .
80
+                \trigger_error('It looks like the mbstring extension is not enabled. '.
81
+                    'UTF-8 strings will not properly be encoded. Ask your system '.
82
+                    'administrator to enable the mbstring extension, or write to '.
83 83
                     '[email protected] if you have any questions.', \E_USER_WARNING);
84 84
             }
85 85
         }
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
         $pieces = [];
170 170
         foreach ($flattenedParams as $param) {
171 171
             list($k, $v) = $param;
172
-            $pieces[] = self::urlEncode($k) . '=' . self::urlEncode($v);
172
+            $pieces[] = self::urlEncode($k).'='.self::urlEncode($v);
173 173
         }
174 174
 
175 175
         return \implode('&', $pieces);
Please login to merge, or discard this patch.
htdocs/includes/stripe/stripe-php/lib/Quote.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
             $opts->apiBase = Stripe::$apiUploadBase;
77 77
         }
78 78
 
79
-        $url = $this->instanceUrl() . '/pdf';
79
+        $url = $this->instanceUrl().'/pdf';
80 80
         $this->_requestStream('get', $url, $readBodyChunkCallable, $params, $opts);
81 81
     }
82 82
 
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      */
91 91
     public function accept($params = null, $opts = null)
92 92
     {
93
-        $url = $this->instanceUrl() . '/accept';
93
+        $url = $this->instanceUrl().'/accept';
94 94
         list($response, $opts) = $this->_request('post', $url, $params, $opts);
95 95
         $this->refreshFrom($response, $opts);
96 96
 
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      */
108 108
     public function cancel($params = null, $opts = null)
109 109
     {
110
-        $url = $this->instanceUrl() . '/cancel';
110
+        $url = $this->instanceUrl().'/cancel';
111 111
         list($response, $opts) = $this->_request('post', $url, $params, $opts);
112 112
         $this->refreshFrom($response, $opts);
113 113
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
      */
125 125
     public function finalizeQuote($params = null, $opts = null)
126 126
     {
127
-        $url = $this->instanceUrl() . '/finalize';
127
+        $url = $this->instanceUrl().'/finalize';
128 128
         list($response, $opts) = $this->_request('post', $url, $params, $opts);
129 129
         $this->refreshFrom($response, $opts);
130 130
 
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
      */
143 143
     public static function allComputedUpfrontLineItems($id, $params = null, $opts = null)
144 144
     {
145
-        $url = static::resourceUrl($id) . '/computed_upfront_line_items';
145
+        $url = static::resourceUrl($id).'/computed_upfront_line_items';
146 146
         list($response, $opts) = static::_staticRequest('get', $url, $params, $opts);
147 147
         $obj = \Stripe\Util\Util::convertToStripeObject($response->json, $opts);
148 148
         $obj->setLastResponse($response);
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
      */
162 162
     public static function allLineItems($id, $params = null, $opts = null)
163 163
     {
164
-        $url = static::resourceUrl($id) . '/line_items';
164
+        $url = static::resourceUrl($id).'/line_items';
165 165
         list($response, $opts) = static::_staticRequest('get', $url, $params, $opts);
166 166
         $obj = \Stripe\Util\Util::convertToStripeObject($response->json, $opts);
167 167
         $obj->setLastResponse($response);
Please login to merge, or discard this patch.
htdocs/includes/stripe/stripe-php/lib/OAuth.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         }
25 25
         $query = Util\Util::encodeParameters($params);
26 26
 
27
-        return $base . '/oauth/authorize?' . $query;
27
+        return $base.'/oauth/authorize?'.$query;
28 28
     }
29 29
 
30 30
     /**
Please login to merge, or discard this patch.
htdocs/includes/stripe/stripe-php/init.php 1 patch
Spacing   +270 added lines, -270 removed lines patch added patch discarded remove patch
@@ -2,299 +2,299 @@
 block discarded – undo
2 2
 
3 3
 // File generated from our OpenAPI spec
4 4
 
5
-require __DIR__ . '/lib/Util/ApiVersion.php';
5
+require __DIR__.'/lib/Util/ApiVersion.php';
6 6
 
7 7
 // Stripe singleton
8
-require __DIR__ . '/lib/Stripe.php';
8
+require __DIR__.'/lib/Stripe.php';
9 9
 
10 10
 // Utilities
11
-require __DIR__ . '/lib/Util/CaseInsensitiveArray.php';
12
-require __DIR__ . '/lib/Util/LoggerInterface.php';
13
-require __DIR__ . '/lib/Util/DefaultLogger.php';
14
-require __DIR__ . '/lib/Util/RandomGenerator.php';
15
-require __DIR__ . '/lib/Util/RequestOptions.php';
16
-require __DIR__ . '/lib/Util/Set.php';
17
-require __DIR__ . '/lib/Util/Util.php';
18
-require __DIR__ . '/lib/Util/ObjectTypes.php';
11
+require __DIR__.'/lib/Util/CaseInsensitiveArray.php';
12
+require __DIR__.'/lib/Util/LoggerInterface.php';
13
+require __DIR__.'/lib/Util/DefaultLogger.php';
14
+require __DIR__.'/lib/Util/RandomGenerator.php';
15
+require __DIR__.'/lib/Util/RequestOptions.php';
16
+require __DIR__.'/lib/Util/Set.php';
17
+require __DIR__.'/lib/Util/Util.php';
18
+require __DIR__.'/lib/Util/ObjectTypes.php';
19 19
 
20 20
 // HttpClient
21
-require __DIR__ . '/lib/HttpClient/ClientInterface.php';
22
-require __DIR__ . '/lib/HttpClient/StreamingClientInterface.php';
23
-require __DIR__ . '/lib/HttpClient/CurlClient.php';
21
+require __DIR__.'/lib/HttpClient/ClientInterface.php';
22
+require __DIR__.'/lib/HttpClient/StreamingClientInterface.php';
23
+require __DIR__.'/lib/HttpClient/CurlClient.php';
24 24
 
25 25
 // Exceptions
26
-require __DIR__ . '/lib/Exception/ExceptionInterface.php';
27
-require __DIR__ . '/lib/Exception/ApiErrorException.php';
28
-require __DIR__ . '/lib/Exception/ApiConnectionException.php';
29
-require __DIR__ . '/lib/Exception/AuthenticationException.php';
30
-require __DIR__ . '/lib/Exception/BadMethodCallException.php';
31
-require __DIR__ . '/lib/Exception/CardException.php';
32
-require __DIR__ . '/lib/Exception/IdempotencyException.php';
33
-require __DIR__ . '/lib/Exception/InvalidArgumentException.php';
34
-require __DIR__ . '/lib/Exception/InvalidRequestException.php';
35
-require __DIR__ . '/lib/Exception/PermissionException.php';
36
-require __DIR__ . '/lib/Exception/RateLimitException.php';
37
-require __DIR__ . '/lib/Exception/SignatureVerificationException.php';
38
-require __DIR__ . '/lib/Exception/UnexpectedValueException.php';
39
-require __DIR__ . '/lib/Exception/UnknownApiErrorException.php';
26
+require __DIR__.'/lib/Exception/ExceptionInterface.php';
27
+require __DIR__.'/lib/Exception/ApiErrorException.php';
28
+require __DIR__.'/lib/Exception/ApiConnectionException.php';
29
+require __DIR__.'/lib/Exception/AuthenticationException.php';
30
+require __DIR__.'/lib/Exception/BadMethodCallException.php';
31
+require __DIR__.'/lib/Exception/CardException.php';
32
+require __DIR__.'/lib/Exception/IdempotencyException.php';
33
+require __DIR__.'/lib/Exception/InvalidArgumentException.php';
34
+require __DIR__.'/lib/Exception/InvalidRequestException.php';
35
+require __DIR__.'/lib/Exception/PermissionException.php';
36
+require __DIR__.'/lib/Exception/RateLimitException.php';
37
+require __DIR__.'/lib/Exception/SignatureVerificationException.php';
38
+require __DIR__.'/lib/Exception/UnexpectedValueException.php';
39
+require __DIR__.'/lib/Exception/UnknownApiErrorException.php';
40 40
 
41 41
 // OAuth exceptions
42
-require __DIR__ . '/lib/Exception/OAuth/ExceptionInterface.php';
43
-require __DIR__ . '/lib/Exception/OAuth/OAuthErrorException.php';
44
-require __DIR__ . '/lib/Exception/OAuth/InvalidClientException.php';
45
-require __DIR__ . '/lib/Exception/OAuth/InvalidGrantException.php';
46
-require __DIR__ . '/lib/Exception/OAuth/InvalidRequestException.php';
47
-require __DIR__ . '/lib/Exception/OAuth/InvalidScopeException.php';
48
-require __DIR__ . '/lib/Exception/OAuth/UnknownOAuthErrorException.php';
49
-require __DIR__ . '/lib/Exception/OAuth/UnsupportedGrantTypeException.php';
50
-require __DIR__ . '/lib/Exception/OAuth/UnsupportedResponseTypeException.php';
42
+require __DIR__.'/lib/Exception/OAuth/ExceptionInterface.php';
43
+require __DIR__.'/lib/Exception/OAuth/OAuthErrorException.php';
44
+require __DIR__.'/lib/Exception/OAuth/InvalidClientException.php';
45
+require __DIR__.'/lib/Exception/OAuth/InvalidGrantException.php';
46
+require __DIR__.'/lib/Exception/OAuth/InvalidRequestException.php';
47
+require __DIR__.'/lib/Exception/OAuth/InvalidScopeException.php';
48
+require __DIR__.'/lib/Exception/OAuth/UnknownOAuthErrorException.php';
49
+require __DIR__.'/lib/Exception/OAuth/UnsupportedGrantTypeException.php';
50
+require __DIR__.'/lib/Exception/OAuth/UnsupportedResponseTypeException.php';
51 51
 
52 52
 // API operations
53
-require __DIR__ . '/lib/ApiOperations/All.php';
54
-require __DIR__ . '/lib/ApiOperations/Create.php';
55
-require __DIR__ . '/lib/ApiOperations/Delete.php';
56
-require __DIR__ . '/lib/ApiOperations/NestedResource.php';
57
-require __DIR__ . '/lib/ApiOperations/Request.php';
58
-require __DIR__ . '/lib/ApiOperations/Retrieve.php';
59
-require __DIR__ . '/lib/ApiOperations/Search.php';
60
-require __DIR__ . '/lib/ApiOperations/SingletonRetrieve.php';
61
-require __DIR__ . '/lib/ApiOperations/Update.php';
53
+require __DIR__.'/lib/ApiOperations/All.php';
54
+require __DIR__.'/lib/ApiOperations/Create.php';
55
+require __DIR__.'/lib/ApiOperations/Delete.php';
56
+require __DIR__.'/lib/ApiOperations/NestedResource.php';
57
+require __DIR__.'/lib/ApiOperations/Request.php';
58
+require __DIR__.'/lib/ApiOperations/Retrieve.php';
59
+require __DIR__.'/lib/ApiOperations/Search.php';
60
+require __DIR__.'/lib/ApiOperations/SingletonRetrieve.php';
61
+require __DIR__.'/lib/ApiOperations/Update.php';
62 62
 
63 63
 // Plumbing
64
-require __DIR__ . '/lib/ApiResponse.php';
65
-require __DIR__ . '/lib/RequestTelemetry.php';
66
-require __DIR__ . '/lib/StripeObject.php';
67
-require __DIR__ . '/lib/ApiRequestor.php';
68
-require __DIR__ . '/lib/ApiResource.php';
69
-require __DIR__ . '/lib/SingletonApiResource.php';
70
-require __DIR__ . '/lib/Service/AbstractService.php';
71
-require __DIR__ . '/lib/Service/AbstractServiceFactory.php';
64
+require __DIR__.'/lib/ApiResponse.php';
65
+require __DIR__.'/lib/RequestTelemetry.php';
66
+require __DIR__.'/lib/StripeObject.php';
67
+require __DIR__.'/lib/ApiRequestor.php';
68
+require __DIR__.'/lib/ApiResource.php';
69
+require __DIR__.'/lib/SingletonApiResource.php';
70
+require __DIR__.'/lib/Service/AbstractService.php';
71
+require __DIR__.'/lib/Service/AbstractServiceFactory.php';
72 72
 
73 73
 // StripeClient
74
-require __DIR__ . '/lib/BaseStripeClientInterface.php';
75
-require __DIR__ . '/lib/StripeClientInterface.php';
76
-require __DIR__ . '/lib/StripeStreamingClientInterface.php';
77
-require __DIR__ . '/lib/BaseStripeClient.php';
78
-require __DIR__ . '/lib/StripeClient.php';
74
+require __DIR__.'/lib/BaseStripeClientInterface.php';
75
+require __DIR__.'/lib/StripeClientInterface.php';
76
+require __DIR__.'/lib/StripeStreamingClientInterface.php';
77
+require __DIR__.'/lib/BaseStripeClient.php';
78
+require __DIR__.'/lib/StripeClient.php';
79 79
 
80 80
 // Stripe API Resources
81
-require __DIR__ . '/lib/Account.php';
82
-require __DIR__ . '/lib/AccountLink.php';
83
-require __DIR__ . '/lib/ApplePayDomain.php';
84
-require __DIR__ . '/lib/ApplicationFee.php';
85
-require __DIR__ . '/lib/ApplicationFeeRefund.php';
86
-require __DIR__ . '/lib/Apps/Secret.php';
87
-require __DIR__ . '/lib/Balance.php';
88
-require __DIR__ . '/lib/BalanceTransaction.php';
89
-require __DIR__ . '/lib/BankAccount.php';
90
-require __DIR__ . '/lib/BillingPortal/Configuration.php';
91
-require __DIR__ . '/lib/BillingPortal/Session.php';
92
-require __DIR__ . '/lib/Capability.php';
93
-require __DIR__ . '/lib/Card.php';
94
-require __DIR__ . '/lib/CashBalance.php';
95
-require __DIR__ . '/lib/Charge.php';
96
-require __DIR__ . '/lib/Checkout/Session.php';
97
-require __DIR__ . '/lib/Collection.php';
98
-require __DIR__ . '/lib/CountrySpec.php';
99
-require __DIR__ . '/lib/Coupon.php';
100
-require __DIR__ . '/lib/CreditNote.php';
101
-require __DIR__ . '/lib/CreditNoteLineItem.php';
102
-require __DIR__ . '/lib/Customer.php';
103
-require __DIR__ . '/lib/CustomerBalanceTransaction.php';
104
-require __DIR__ . '/lib/CustomerCashBalanceTransaction.php';
105
-require __DIR__ . '/lib/Discount.php';
106
-require __DIR__ . '/lib/Dispute.php';
107
-require __DIR__ . '/lib/EphemeralKey.php';
108
-require __DIR__ . '/lib/ErrorObject.php';
109
-require __DIR__ . '/lib/Event.php';
110
-require __DIR__ . '/lib/ExchangeRate.php';
111
-require __DIR__ . '/lib/File.php';
112
-require __DIR__ . '/lib/FileLink.php';
113
-require __DIR__ . '/lib/FinancialConnections/Account.php';
114
-require __DIR__ . '/lib/FinancialConnections/AccountOwner.php';
115
-require __DIR__ . '/lib/FinancialConnections/AccountOwnership.php';
116
-require __DIR__ . '/lib/FinancialConnections/Session.php';
117
-require __DIR__ . '/lib/FundingInstructions.php';
118
-require __DIR__ . '/lib/Identity/VerificationReport.php';
119
-require __DIR__ . '/lib/Identity/VerificationSession.php';
120
-require __DIR__ . '/lib/Invoice.php';
121
-require __DIR__ . '/lib/InvoiceItem.php';
122
-require __DIR__ . '/lib/InvoiceLineItem.php';
123
-require __DIR__ . '/lib/Issuing/Authorization.php';
124
-require __DIR__ . '/lib/Issuing/Card.php';
125
-require __DIR__ . '/lib/Issuing/CardDetails.php';
126
-require __DIR__ . '/lib/Issuing/Cardholder.php';
127
-require __DIR__ . '/lib/Issuing/Dispute.php';
128
-require __DIR__ . '/lib/Issuing/Transaction.php';
129
-require __DIR__ . '/lib/LineItem.php';
130
-require __DIR__ . '/lib/LoginLink.php';
131
-require __DIR__ . '/lib/Mandate.php';
132
-require __DIR__ . '/lib/PaymentIntent.php';
133
-require __DIR__ . '/lib/PaymentLink.php';
134
-require __DIR__ . '/lib/PaymentMethod.php';
135
-require __DIR__ . '/lib/Payout.php';
136
-require __DIR__ . '/lib/Person.php';
137
-require __DIR__ . '/lib/Plan.php';
138
-require __DIR__ . '/lib/Price.php';
139
-require __DIR__ . '/lib/Product.php';
140
-require __DIR__ . '/lib/PromotionCode.php';
141
-require __DIR__ . '/lib/Quote.php';
142
-require __DIR__ . '/lib/Radar/EarlyFraudWarning.php';
143
-require __DIR__ . '/lib/Radar/ValueList.php';
144
-require __DIR__ . '/lib/Radar/ValueListItem.php';
145
-require __DIR__ . '/lib/Refund.php';
146
-require __DIR__ . '/lib/Reporting/ReportRun.php';
147
-require __DIR__ . '/lib/Reporting/ReportType.php';
148
-require __DIR__ . '/lib/Review.php';
149
-require __DIR__ . '/lib/SearchResult.php';
150
-require __DIR__ . '/lib/SetupAttempt.php';
151
-require __DIR__ . '/lib/SetupIntent.php';
152
-require __DIR__ . '/lib/ShippingRate.php';
153
-require __DIR__ . '/lib/Sigma/ScheduledQueryRun.php';
154
-require __DIR__ . '/lib/Source.php';
155
-require __DIR__ . '/lib/SourceTransaction.php';
156
-require __DIR__ . '/lib/Subscription.php';
157
-require __DIR__ . '/lib/SubscriptionItem.php';
158
-require __DIR__ . '/lib/SubscriptionSchedule.php';
159
-require __DIR__ . '/lib/TaxCode.php';
160
-require __DIR__ . '/lib/TaxId.php';
161
-require __DIR__ . '/lib/TaxRate.php';
162
-require __DIR__ . '/lib/Terminal/Configuration.php';
163
-require __DIR__ . '/lib/Terminal/ConnectionToken.php';
164
-require __DIR__ . '/lib/Terminal/Location.php';
165
-require __DIR__ . '/lib/Terminal/Reader.php';
166
-require __DIR__ . '/lib/TestHelpers/TestClock.php';
167
-require __DIR__ . '/lib/Token.php';
168
-require __DIR__ . '/lib/Topup.php';
169
-require __DIR__ . '/lib/Transfer.php';
170
-require __DIR__ . '/lib/TransferReversal.php';
171
-require __DIR__ . '/lib/Treasury/CreditReversal.php';
172
-require __DIR__ . '/lib/Treasury/DebitReversal.php';
173
-require __DIR__ . '/lib/Treasury/FinancialAccount.php';
174
-require __DIR__ . '/lib/Treasury/FinancialAccountFeatures.php';
175
-require __DIR__ . '/lib/Treasury/InboundTransfer.php';
176
-require __DIR__ . '/lib/Treasury/OutboundPayment.php';
177
-require __DIR__ . '/lib/Treasury/OutboundTransfer.php';
178
-require __DIR__ . '/lib/Treasury/ReceivedCredit.php';
179
-require __DIR__ . '/lib/Treasury/ReceivedDebit.php';
180
-require __DIR__ . '/lib/Treasury/Transaction.php';
181
-require __DIR__ . '/lib/Treasury/TransactionEntry.php';
182
-require __DIR__ . '/lib/UsageRecord.php';
183
-require __DIR__ . '/lib/UsageRecordSummary.php';
184
-require __DIR__ . '/lib/WebhookEndpoint.php';
81
+require __DIR__.'/lib/Account.php';
82
+require __DIR__.'/lib/AccountLink.php';
83
+require __DIR__.'/lib/ApplePayDomain.php';
84
+require __DIR__.'/lib/ApplicationFee.php';
85
+require __DIR__.'/lib/ApplicationFeeRefund.php';
86
+require __DIR__.'/lib/Apps/Secret.php';
87
+require __DIR__.'/lib/Balance.php';
88
+require __DIR__.'/lib/BalanceTransaction.php';
89
+require __DIR__.'/lib/BankAccount.php';
90
+require __DIR__.'/lib/BillingPortal/Configuration.php';
91
+require __DIR__.'/lib/BillingPortal/Session.php';
92
+require __DIR__.'/lib/Capability.php';
93
+require __DIR__.'/lib/Card.php';
94
+require __DIR__.'/lib/CashBalance.php';
95
+require __DIR__.'/lib/Charge.php';
96
+require __DIR__.'/lib/Checkout/Session.php';
97
+require __DIR__.'/lib/Collection.php';
98
+require __DIR__.'/lib/CountrySpec.php';
99
+require __DIR__.'/lib/Coupon.php';
100
+require __DIR__.'/lib/CreditNote.php';
101
+require __DIR__.'/lib/CreditNoteLineItem.php';
102
+require __DIR__.'/lib/Customer.php';
103
+require __DIR__.'/lib/CustomerBalanceTransaction.php';
104
+require __DIR__.'/lib/CustomerCashBalanceTransaction.php';
105
+require __DIR__.'/lib/Discount.php';
106
+require __DIR__.'/lib/Dispute.php';
107
+require __DIR__.'/lib/EphemeralKey.php';
108
+require __DIR__.'/lib/ErrorObject.php';
109
+require __DIR__.'/lib/Event.php';
110
+require __DIR__.'/lib/ExchangeRate.php';
111
+require __DIR__.'/lib/File.php';
112
+require __DIR__.'/lib/FileLink.php';
113
+require __DIR__.'/lib/FinancialConnections/Account.php';
114
+require __DIR__.'/lib/FinancialConnections/AccountOwner.php';
115
+require __DIR__.'/lib/FinancialConnections/AccountOwnership.php';
116
+require __DIR__.'/lib/FinancialConnections/Session.php';
117
+require __DIR__.'/lib/FundingInstructions.php';
118
+require __DIR__.'/lib/Identity/VerificationReport.php';
119
+require __DIR__.'/lib/Identity/VerificationSession.php';
120
+require __DIR__.'/lib/Invoice.php';
121
+require __DIR__.'/lib/InvoiceItem.php';
122
+require __DIR__.'/lib/InvoiceLineItem.php';
123
+require __DIR__.'/lib/Issuing/Authorization.php';
124
+require __DIR__.'/lib/Issuing/Card.php';
125
+require __DIR__.'/lib/Issuing/CardDetails.php';
126
+require __DIR__.'/lib/Issuing/Cardholder.php';
127
+require __DIR__.'/lib/Issuing/Dispute.php';
128
+require __DIR__.'/lib/Issuing/Transaction.php';
129
+require __DIR__.'/lib/LineItem.php';
130
+require __DIR__.'/lib/LoginLink.php';
131
+require __DIR__.'/lib/Mandate.php';
132
+require __DIR__.'/lib/PaymentIntent.php';
133
+require __DIR__.'/lib/PaymentLink.php';
134
+require __DIR__.'/lib/PaymentMethod.php';
135
+require __DIR__.'/lib/Payout.php';
136
+require __DIR__.'/lib/Person.php';
137
+require __DIR__.'/lib/Plan.php';
138
+require __DIR__.'/lib/Price.php';
139
+require __DIR__.'/lib/Product.php';
140
+require __DIR__.'/lib/PromotionCode.php';
141
+require __DIR__.'/lib/Quote.php';
142
+require __DIR__.'/lib/Radar/EarlyFraudWarning.php';
143
+require __DIR__.'/lib/Radar/ValueList.php';
144
+require __DIR__.'/lib/Radar/ValueListItem.php';
145
+require __DIR__.'/lib/Refund.php';
146
+require __DIR__.'/lib/Reporting/ReportRun.php';
147
+require __DIR__.'/lib/Reporting/ReportType.php';
148
+require __DIR__.'/lib/Review.php';
149
+require __DIR__.'/lib/SearchResult.php';
150
+require __DIR__.'/lib/SetupAttempt.php';
151
+require __DIR__.'/lib/SetupIntent.php';
152
+require __DIR__.'/lib/ShippingRate.php';
153
+require __DIR__.'/lib/Sigma/ScheduledQueryRun.php';
154
+require __DIR__.'/lib/Source.php';
155
+require __DIR__.'/lib/SourceTransaction.php';
156
+require __DIR__.'/lib/Subscription.php';
157
+require __DIR__.'/lib/SubscriptionItem.php';
158
+require __DIR__.'/lib/SubscriptionSchedule.php';
159
+require __DIR__.'/lib/TaxCode.php';
160
+require __DIR__.'/lib/TaxId.php';
161
+require __DIR__.'/lib/TaxRate.php';
162
+require __DIR__.'/lib/Terminal/Configuration.php';
163
+require __DIR__.'/lib/Terminal/ConnectionToken.php';
164
+require __DIR__.'/lib/Terminal/Location.php';
165
+require __DIR__.'/lib/Terminal/Reader.php';
166
+require __DIR__.'/lib/TestHelpers/TestClock.php';
167
+require __DIR__.'/lib/Token.php';
168
+require __DIR__.'/lib/Topup.php';
169
+require __DIR__.'/lib/Transfer.php';
170
+require __DIR__.'/lib/TransferReversal.php';
171
+require __DIR__.'/lib/Treasury/CreditReversal.php';
172
+require __DIR__.'/lib/Treasury/DebitReversal.php';
173
+require __DIR__.'/lib/Treasury/FinancialAccount.php';
174
+require __DIR__.'/lib/Treasury/FinancialAccountFeatures.php';
175
+require __DIR__.'/lib/Treasury/InboundTransfer.php';
176
+require __DIR__.'/lib/Treasury/OutboundPayment.php';
177
+require __DIR__.'/lib/Treasury/OutboundTransfer.php';
178
+require __DIR__.'/lib/Treasury/ReceivedCredit.php';
179
+require __DIR__.'/lib/Treasury/ReceivedDebit.php';
180
+require __DIR__.'/lib/Treasury/Transaction.php';
181
+require __DIR__.'/lib/Treasury/TransactionEntry.php';
182
+require __DIR__.'/lib/UsageRecord.php';
183
+require __DIR__.'/lib/UsageRecordSummary.php';
184
+require __DIR__.'/lib/WebhookEndpoint.php';
185 185
 
186 186
 // Services
187
-require __DIR__ . '/lib/Service/AccountService.php';
188
-require __DIR__ . '/lib/Service/AccountLinkService.php';
189
-require __DIR__ . '/lib/Service/ApplePayDomainService.php';
190
-require __DIR__ . '/lib/Service/ApplicationFeeService.php';
191
-require __DIR__ . '/lib/Service/Apps/SecretService.php';
192
-require __DIR__ . '/lib/Service/BalanceService.php';
193
-require __DIR__ . '/lib/Service/BalanceTransactionService.php';
194
-require __DIR__ . '/lib/Service/BillingPortal/ConfigurationService.php';
195
-require __DIR__ . '/lib/Service/BillingPortal/SessionService.php';
196
-require __DIR__ . '/lib/Service/ChargeService.php';
197
-require __DIR__ . '/lib/Service/Checkout/SessionService.php';
198
-require __DIR__ . '/lib/Service/CountrySpecService.php';
199
-require __DIR__ . '/lib/Service/CouponService.php';
200
-require __DIR__ . '/lib/Service/CreditNoteService.php';
201
-require __DIR__ . '/lib/Service/CustomerService.php';
202
-require __DIR__ . '/lib/Service/DisputeService.php';
203
-require __DIR__ . '/lib/Service/EphemeralKeyService.php';
204
-require __DIR__ . '/lib/Service/EventService.php';
205
-require __DIR__ . '/lib/Service/ExchangeRateService.php';
206
-require __DIR__ . '/lib/Service/FileService.php';
207
-require __DIR__ . '/lib/Service/FileLinkService.php';
208
-require __DIR__ . '/lib/Service/FinancialConnections/AccountService.php';
209
-require __DIR__ . '/lib/Service/FinancialConnections/SessionService.php';
210
-require __DIR__ . '/lib/Service/Identity/VerificationReportService.php';
211
-require __DIR__ . '/lib/Service/Identity/VerificationSessionService.php';
212
-require __DIR__ . '/lib/Service/InvoiceService.php';
213
-require __DIR__ . '/lib/Service/InvoiceItemService.php';
214
-require __DIR__ . '/lib/Service/Issuing/AuthorizationService.php';
215
-require __DIR__ . '/lib/Service/Issuing/CardService.php';
216
-require __DIR__ . '/lib/Service/Issuing/CardholderService.php';
217
-require __DIR__ . '/lib/Service/Issuing/DisputeService.php';
218
-require __DIR__ . '/lib/Service/Issuing/TransactionService.php';
219
-require __DIR__ . '/lib/Service/MandateService.php';
220
-require __DIR__ . '/lib/Service/PaymentIntentService.php';
221
-require __DIR__ . '/lib/Service/PaymentLinkService.php';
222
-require __DIR__ . '/lib/Service/PaymentMethodService.php';
223
-require __DIR__ . '/lib/Service/PayoutService.php';
224
-require __DIR__ . '/lib/Service/PlanService.php';
225
-require __DIR__ . '/lib/Service/PriceService.php';
226
-require __DIR__ . '/lib/Service/ProductService.php';
227
-require __DIR__ . '/lib/Service/PromotionCodeService.php';
228
-require __DIR__ . '/lib/Service/QuoteService.php';
229
-require __DIR__ . '/lib/Service/Radar/EarlyFraudWarningService.php';
230
-require __DIR__ . '/lib/Service/Radar/ValueListService.php';
231
-require __DIR__ . '/lib/Service/Radar/ValueListItemService.php';
232
-require __DIR__ . '/lib/Service/RefundService.php';
233
-require __DIR__ . '/lib/Service/Reporting/ReportRunService.php';
234
-require __DIR__ . '/lib/Service/Reporting/ReportTypeService.php';
235
-require __DIR__ . '/lib/Service/ReviewService.php';
236
-require __DIR__ . '/lib/Service/SetupAttemptService.php';
237
-require __DIR__ . '/lib/Service/SetupIntentService.php';
238
-require __DIR__ . '/lib/Service/ShippingRateService.php';
239
-require __DIR__ . '/lib/Service/Sigma/ScheduledQueryRunService.php';
240
-require __DIR__ . '/lib/Service/SourceService.php';
241
-require __DIR__ . '/lib/Service/SubscriptionService.php';
242
-require __DIR__ . '/lib/Service/SubscriptionItemService.php';
243
-require __DIR__ . '/lib/Service/SubscriptionScheduleService.php';
244
-require __DIR__ . '/lib/Service/TaxCodeService.php';
245
-require __DIR__ . '/lib/Service/TaxRateService.php';
246
-require __DIR__ . '/lib/Service/Terminal/ConfigurationService.php';
247
-require __DIR__ . '/lib/Service/Terminal/ConnectionTokenService.php';
248
-require __DIR__ . '/lib/Service/Terminal/LocationService.php';
249
-require __DIR__ . '/lib/Service/Terminal/ReaderService.php';
250
-require __DIR__ . '/lib/Service/TestHelpers/CustomerService.php';
251
-require __DIR__ . '/lib/Service/TestHelpers/Issuing/CardService.php';
252
-require __DIR__ . '/lib/Service/TestHelpers/RefundService.php';
253
-require __DIR__ . '/lib/Service/TestHelpers/Terminal/ReaderService.php';
254
-require __DIR__ . '/lib/Service/TestHelpers/TestClockService.php';
255
-require __DIR__ . '/lib/Service/TestHelpers/Treasury/InboundTransferService.php';
256
-require __DIR__ . '/lib/Service/TestHelpers/Treasury/OutboundPaymentService.php';
257
-require __DIR__ . '/lib/Service/TestHelpers/Treasury/OutboundTransferService.php';
258
-require __DIR__ . '/lib/Service/TestHelpers/Treasury/ReceivedCreditService.php';
259
-require __DIR__ . '/lib/Service/TestHelpers/Treasury/ReceivedDebitService.php';
260
-require __DIR__ . '/lib/Service/TokenService.php';
261
-require __DIR__ . '/lib/Service/TopupService.php';
262
-require __DIR__ . '/lib/Service/TransferService.php';
263
-require __DIR__ . '/lib/Service/Treasury/CreditReversalService.php';
264
-require __DIR__ . '/lib/Service/Treasury/DebitReversalService.php';
265
-require __DIR__ . '/lib/Service/Treasury/FinancialAccountService.php';
266
-require __DIR__ . '/lib/Service/Treasury/InboundTransferService.php';
267
-require __DIR__ . '/lib/Service/Treasury/OutboundPaymentService.php';
268
-require __DIR__ . '/lib/Service/Treasury/OutboundTransferService.php';
269
-require __DIR__ . '/lib/Service/Treasury/ReceivedCreditService.php';
270
-require __DIR__ . '/lib/Service/Treasury/ReceivedDebitService.php';
271
-require __DIR__ . '/lib/Service/Treasury/TransactionService.php';
272
-require __DIR__ . '/lib/Service/Treasury/TransactionEntryService.php';
273
-require __DIR__ . '/lib/Service/WebhookEndpointService.php';
187
+require __DIR__.'/lib/Service/AccountService.php';
188
+require __DIR__.'/lib/Service/AccountLinkService.php';
189
+require __DIR__.'/lib/Service/ApplePayDomainService.php';
190
+require __DIR__.'/lib/Service/ApplicationFeeService.php';
191
+require __DIR__.'/lib/Service/Apps/SecretService.php';
192
+require __DIR__.'/lib/Service/BalanceService.php';
193
+require __DIR__.'/lib/Service/BalanceTransactionService.php';
194
+require __DIR__.'/lib/Service/BillingPortal/ConfigurationService.php';
195
+require __DIR__.'/lib/Service/BillingPortal/SessionService.php';
196
+require __DIR__.'/lib/Service/ChargeService.php';
197
+require __DIR__.'/lib/Service/Checkout/SessionService.php';
198
+require __DIR__.'/lib/Service/CountrySpecService.php';
199
+require __DIR__.'/lib/Service/CouponService.php';
200
+require __DIR__.'/lib/Service/CreditNoteService.php';
201
+require __DIR__.'/lib/Service/CustomerService.php';
202
+require __DIR__.'/lib/Service/DisputeService.php';
203
+require __DIR__.'/lib/Service/EphemeralKeyService.php';
204
+require __DIR__.'/lib/Service/EventService.php';
205
+require __DIR__.'/lib/Service/ExchangeRateService.php';
206
+require __DIR__.'/lib/Service/FileService.php';
207
+require __DIR__.'/lib/Service/FileLinkService.php';
208
+require __DIR__.'/lib/Service/FinancialConnections/AccountService.php';
209
+require __DIR__.'/lib/Service/FinancialConnections/SessionService.php';
210
+require __DIR__.'/lib/Service/Identity/VerificationReportService.php';
211
+require __DIR__.'/lib/Service/Identity/VerificationSessionService.php';
212
+require __DIR__.'/lib/Service/InvoiceService.php';
213
+require __DIR__.'/lib/Service/InvoiceItemService.php';
214
+require __DIR__.'/lib/Service/Issuing/AuthorizationService.php';
215
+require __DIR__.'/lib/Service/Issuing/CardService.php';
216
+require __DIR__.'/lib/Service/Issuing/CardholderService.php';
217
+require __DIR__.'/lib/Service/Issuing/DisputeService.php';
218
+require __DIR__.'/lib/Service/Issuing/TransactionService.php';
219
+require __DIR__.'/lib/Service/MandateService.php';
220
+require __DIR__.'/lib/Service/PaymentIntentService.php';
221
+require __DIR__.'/lib/Service/PaymentLinkService.php';
222
+require __DIR__.'/lib/Service/PaymentMethodService.php';
223
+require __DIR__.'/lib/Service/PayoutService.php';
224
+require __DIR__.'/lib/Service/PlanService.php';
225
+require __DIR__.'/lib/Service/PriceService.php';
226
+require __DIR__.'/lib/Service/ProductService.php';
227
+require __DIR__.'/lib/Service/PromotionCodeService.php';
228
+require __DIR__.'/lib/Service/QuoteService.php';
229
+require __DIR__.'/lib/Service/Radar/EarlyFraudWarningService.php';
230
+require __DIR__.'/lib/Service/Radar/ValueListService.php';
231
+require __DIR__.'/lib/Service/Radar/ValueListItemService.php';
232
+require __DIR__.'/lib/Service/RefundService.php';
233
+require __DIR__.'/lib/Service/Reporting/ReportRunService.php';
234
+require __DIR__.'/lib/Service/Reporting/ReportTypeService.php';
235
+require __DIR__.'/lib/Service/ReviewService.php';
236
+require __DIR__.'/lib/Service/SetupAttemptService.php';
237
+require __DIR__.'/lib/Service/SetupIntentService.php';
238
+require __DIR__.'/lib/Service/ShippingRateService.php';
239
+require __DIR__.'/lib/Service/Sigma/ScheduledQueryRunService.php';
240
+require __DIR__.'/lib/Service/SourceService.php';
241
+require __DIR__.'/lib/Service/SubscriptionService.php';
242
+require __DIR__.'/lib/Service/SubscriptionItemService.php';
243
+require __DIR__.'/lib/Service/SubscriptionScheduleService.php';
244
+require __DIR__.'/lib/Service/TaxCodeService.php';
245
+require __DIR__.'/lib/Service/TaxRateService.php';
246
+require __DIR__.'/lib/Service/Terminal/ConfigurationService.php';
247
+require __DIR__.'/lib/Service/Terminal/ConnectionTokenService.php';
248
+require __DIR__.'/lib/Service/Terminal/LocationService.php';
249
+require __DIR__.'/lib/Service/Terminal/ReaderService.php';
250
+require __DIR__.'/lib/Service/TestHelpers/CustomerService.php';
251
+require __DIR__.'/lib/Service/TestHelpers/Issuing/CardService.php';
252
+require __DIR__.'/lib/Service/TestHelpers/RefundService.php';
253
+require __DIR__.'/lib/Service/TestHelpers/Terminal/ReaderService.php';
254
+require __DIR__.'/lib/Service/TestHelpers/TestClockService.php';
255
+require __DIR__.'/lib/Service/TestHelpers/Treasury/InboundTransferService.php';
256
+require __DIR__.'/lib/Service/TestHelpers/Treasury/OutboundPaymentService.php';
257
+require __DIR__.'/lib/Service/TestHelpers/Treasury/OutboundTransferService.php';
258
+require __DIR__.'/lib/Service/TestHelpers/Treasury/ReceivedCreditService.php';
259
+require __DIR__.'/lib/Service/TestHelpers/Treasury/ReceivedDebitService.php';
260
+require __DIR__.'/lib/Service/TokenService.php';
261
+require __DIR__.'/lib/Service/TopupService.php';
262
+require __DIR__.'/lib/Service/TransferService.php';
263
+require __DIR__.'/lib/Service/Treasury/CreditReversalService.php';
264
+require __DIR__.'/lib/Service/Treasury/DebitReversalService.php';
265
+require __DIR__.'/lib/Service/Treasury/FinancialAccountService.php';
266
+require __DIR__.'/lib/Service/Treasury/InboundTransferService.php';
267
+require __DIR__.'/lib/Service/Treasury/OutboundPaymentService.php';
268
+require __DIR__.'/lib/Service/Treasury/OutboundTransferService.php';
269
+require __DIR__.'/lib/Service/Treasury/ReceivedCreditService.php';
270
+require __DIR__.'/lib/Service/Treasury/ReceivedDebitService.php';
271
+require __DIR__.'/lib/Service/Treasury/TransactionService.php';
272
+require __DIR__.'/lib/Service/Treasury/TransactionEntryService.php';
273
+require __DIR__.'/lib/Service/WebhookEndpointService.php';
274 274
 
275 275
 // Service factories
276
-require __DIR__ . '/lib/Service/Apps/AppsServiceFactory.php';
277
-require __DIR__ . '/lib/Service/BillingPortal/BillingPortalServiceFactory.php';
278
-require __DIR__ . '/lib/Service/Checkout/CheckoutServiceFactory.php';
279
-require __DIR__ . '/lib/Service/CoreServiceFactory.php';
280
-require __DIR__ . '/lib/Service/FinancialConnections/FinancialConnectionsServiceFactory.php';
281
-require __DIR__ . '/lib/Service/Identity/IdentityServiceFactory.php';
282
-require __DIR__ . '/lib/Service/Issuing/IssuingServiceFactory.php';
283
-require __DIR__ . '/lib/Service/Radar/RadarServiceFactory.php';
284
-require __DIR__ . '/lib/Service/Reporting/ReportingServiceFactory.php';
285
-require __DIR__ . '/lib/Service/Sigma/SigmaServiceFactory.php';
286
-require __DIR__ . '/lib/Service/Terminal/TerminalServiceFactory.php';
287
-require __DIR__ . '/lib/Service/TestHelpers/Issuing/IssuingServiceFactory.php';
288
-require __DIR__ . '/lib/Service/TestHelpers/Terminal/TerminalServiceFactory.php';
289
-require __DIR__ . '/lib/Service/TestHelpers/TestHelpersServiceFactory.php';
290
-require __DIR__ . '/lib/Service/TestHelpers/Treasury/TreasuryServiceFactory.php';
291
-require __DIR__ . '/lib/Service/Treasury/TreasuryServiceFactory.php';
276
+require __DIR__.'/lib/Service/Apps/AppsServiceFactory.php';
277
+require __DIR__.'/lib/Service/BillingPortal/BillingPortalServiceFactory.php';
278
+require __DIR__.'/lib/Service/Checkout/CheckoutServiceFactory.php';
279
+require __DIR__.'/lib/Service/CoreServiceFactory.php';
280
+require __DIR__.'/lib/Service/FinancialConnections/FinancialConnectionsServiceFactory.php';
281
+require __DIR__.'/lib/Service/Identity/IdentityServiceFactory.php';
282
+require __DIR__.'/lib/Service/Issuing/IssuingServiceFactory.php';
283
+require __DIR__.'/lib/Service/Radar/RadarServiceFactory.php';
284
+require __DIR__.'/lib/Service/Reporting/ReportingServiceFactory.php';
285
+require __DIR__.'/lib/Service/Sigma/SigmaServiceFactory.php';
286
+require __DIR__.'/lib/Service/Terminal/TerminalServiceFactory.php';
287
+require __DIR__.'/lib/Service/TestHelpers/Issuing/IssuingServiceFactory.php';
288
+require __DIR__.'/lib/Service/TestHelpers/Terminal/TerminalServiceFactory.php';
289
+require __DIR__.'/lib/Service/TestHelpers/TestHelpersServiceFactory.php';
290
+require __DIR__.'/lib/Service/TestHelpers/Treasury/TreasuryServiceFactory.php';
291
+require __DIR__.'/lib/Service/Treasury/TreasuryServiceFactory.php';
292 292
 
293 293
 // OAuth
294
-require __DIR__ . '/lib/OAuth.php';
295
-require __DIR__ . '/lib/OAuthErrorObject.php';
296
-require __DIR__ . '/lib/Service/OAuthService.php';
294
+require __DIR__.'/lib/OAuth.php';
295
+require __DIR__.'/lib/OAuthErrorObject.php';
296
+require __DIR__.'/lib/Service/OAuthService.php';
297 297
 
298 298
 // Webhooks
299
-require __DIR__ . '/lib/Webhook.php';
300
-require __DIR__ . '/lib/WebhookSignature.php';
299
+require __DIR__.'/lib/Webhook.php';
300
+require __DIR__.'/lib/WebhookSignature.php';
Please login to merge, or discard this patch.
htdocs/includes/tecnickcom/tcpdf/include/barcodes/datamatrix.php 1 patch
Spacing   +100 added lines, -100 removed lines patch added patch discarded remove patch
@@ -144,37 +144,37 @@  discard block
 block discarded – undo
144 144
 	 */
145 145
 	protected $symbattr = array(
146 146
 		// square form ---------------------------------------------------------------------------------------
147
-		array(0x00a,0x00a,0x008,0x008,0x00a,0x00a,0x008,0x008,0x001,0x001,0x001,0x003,0x005,0x001,0x003,0x005), // 10x10
148
-		array(0x00c,0x00c,0x00a,0x00a,0x00c,0x00c,0x00a,0x00a,0x001,0x001,0x001,0x005,0x007,0x001,0x005,0x007), // 12x12
149
-		array(0x00e,0x00e,0x00c,0x00c,0x00e,0x00e,0x00c,0x00c,0x001,0x001,0x001,0x008,0x00a,0x001,0x008,0x00a), // 14x14
150
-		array(0x010,0x010,0x00e,0x00e,0x010,0x010,0x00e,0x00e,0x001,0x001,0x001,0x00c,0x00c,0x001,0x00c,0x00c), // 16x16
151
-		array(0x012,0x012,0x010,0x010,0x012,0x012,0x010,0x010,0x001,0x001,0x001,0x012,0x00e,0x001,0x012,0x00e), // 18x18
152
-		array(0x014,0x014,0x012,0x012,0x014,0x014,0x012,0x012,0x001,0x001,0x001,0x016,0x012,0x001,0x016,0x012), // 20x20
153
-		array(0x016,0x016,0x014,0x014,0x016,0x016,0x014,0x014,0x001,0x001,0x001,0x01e,0x014,0x001,0x01e,0x014), // 22x22
154
-		array(0x018,0x018,0x016,0x016,0x018,0x018,0x016,0x016,0x001,0x001,0x001,0x024,0x018,0x001,0x024,0x018), // 24x24
155
-		array(0x01a,0x01a,0x018,0x018,0x01a,0x01a,0x018,0x018,0x001,0x001,0x001,0x02c,0x01c,0x001,0x02c,0x01c), // 26x26
156
-		array(0x020,0x020,0x01c,0x01c,0x010,0x010,0x00e,0x00e,0x002,0x002,0x004,0x03e,0x024,0x001,0x03e,0x024), // 32x32
157
-		array(0x024,0x024,0x020,0x020,0x012,0x012,0x010,0x010,0x002,0x002,0x004,0x056,0x02a,0x001,0x056,0x02a), // 36x36
158
-		array(0x028,0x028,0x024,0x024,0x014,0x014,0x012,0x012,0x002,0x002,0x004,0x072,0x030,0x001,0x072,0x030), // 40x40
159
-		array(0x02c,0x02c,0x028,0x028,0x016,0x016,0x014,0x014,0x002,0x002,0x004,0x090,0x038,0x001,0x090,0x038), // 44x44
160
-		array(0x030,0x030,0x02c,0x02c,0x018,0x018,0x016,0x016,0x002,0x002,0x004,0x0ae,0x044,0x001,0x0ae,0x044), // 48x48
161
-		array(0x034,0x034,0x030,0x030,0x01a,0x01a,0x018,0x018,0x002,0x002,0x004,0x0cc,0x054,0x002,0x066,0x02a), // 52x52
162
-		array(0x040,0x040,0x038,0x038,0x010,0x010,0x00e,0x00e,0x004,0x004,0x010,0x118,0x070,0x002,0x08c,0x038), // 64x64
163
-		array(0x048,0x048,0x040,0x040,0x012,0x012,0x010,0x010,0x004,0x004,0x010,0x170,0x090,0x004,0x05c,0x024), // 72x72
164
-		array(0x050,0x050,0x048,0x048,0x014,0x014,0x012,0x012,0x004,0x004,0x010,0x1c8,0x0c0,0x004,0x072,0x030), // 80x80
165
-		array(0x058,0x058,0x050,0x050,0x016,0x016,0x014,0x014,0x004,0x004,0x010,0x240,0x0e0,0x004,0x090,0x038), // 88x88
166
-		array(0x060,0x060,0x058,0x058,0x018,0x018,0x016,0x016,0x004,0x004,0x010,0x2b8,0x110,0x004,0x0ae,0x044), // 96x96
167
-		array(0x068,0x068,0x060,0x060,0x01a,0x01a,0x018,0x018,0x004,0x004,0x010,0x330,0x150,0x006,0x088,0x038), // 104x104
168
-		array(0x078,0x078,0x06c,0x06c,0x014,0x014,0x012,0x012,0x006,0x006,0x024,0x41a,0x198,0x006,0x0af,0x044), // 120x120
169
-		array(0x084,0x084,0x078,0x078,0x016,0x016,0x014,0x014,0x006,0x006,0x024,0x518,0x1f0,0x008,0x0a3,0x03e), // 132x132
170
-		array(0x090,0x090,0x084,0x084,0x018,0x018,0x016,0x016,0x006,0x006,0x024,0x616,0x26c,0x00a,0x09c,0x03e), // 144x144
147
+		array(0x00a, 0x00a, 0x008, 0x008, 0x00a, 0x00a, 0x008, 0x008, 0x001, 0x001, 0x001, 0x003, 0x005, 0x001, 0x003, 0x005), // 10x10
148
+		array(0x00c, 0x00c, 0x00a, 0x00a, 0x00c, 0x00c, 0x00a, 0x00a, 0x001, 0x001, 0x001, 0x005, 0x007, 0x001, 0x005, 0x007), // 12x12
149
+		array(0x00e, 0x00e, 0x00c, 0x00c, 0x00e, 0x00e, 0x00c, 0x00c, 0x001, 0x001, 0x001, 0x008, 0x00a, 0x001, 0x008, 0x00a), // 14x14
150
+		array(0x010, 0x010, 0x00e, 0x00e, 0x010, 0x010, 0x00e, 0x00e, 0x001, 0x001, 0x001, 0x00c, 0x00c, 0x001, 0x00c, 0x00c), // 16x16
151
+		array(0x012, 0x012, 0x010, 0x010, 0x012, 0x012, 0x010, 0x010, 0x001, 0x001, 0x001, 0x012, 0x00e, 0x001, 0x012, 0x00e), // 18x18
152
+		array(0x014, 0x014, 0x012, 0x012, 0x014, 0x014, 0x012, 0x012, 0x001, 0x001, 0x001, 0x016, 0x012, 0x001, 0x016, 0x012), // 20x20
153
+		array(0x016, 0x016, 0x014, 0x014, 0x016, 0x016, 0x014, 0x014, 0x001, 0x001, 0x001, 0x01e, 0x014, 0x001, 0x01e, 0x014), // 22x22
154
+		array(0x018, 0x018, 0x016, 0x016, 0x018, 0x018, 0x016, 0x016, 0x001, 0x001, 0x001, 0x024, 0x018, 0x001, 0x024, 0x018), // 24x24
155
+		array(0x01a, 0x01a, 0x018, 0x018, 0x01a, 0x01a, 0x018, 0x018, 0x001, 0x001, 0x001, 0x02c, 0x01c, 0x001, 0x02c, 0x01c), // 26x26
156
+		array(0x020, 0x020, 0x01c, 0x01c, 0x010, 0x010, 0x00e, 0x00e, 0x002, 0x002, 0x004, 0x03e, 0x024, 0x001, 0x03e, 0x024), // 32x32
157
+		array(0x024, 0x024, 0x020, 0x020, 0x012, 0x012, 0x010, 0x010, 0x002, 0x002, 0x004, 0x056, 0x02a, 0x001, 0x056, 0x02a), // 36x36
158
+		array(0x028, 0x028, 0x024, 0x024, 0x014, 0x014, 0x012, 0x012, 0x002, 0x002, 0x004, 0x072, 0x030, 0x001, 0x072, 0x030), // 40x40
159
+		array(0x02c, 0x02c, 0x028, 0x028, 0x016, 0x016, 0x014, 0x014, 0x002, 0x002, 0x004, 0x090, 0x038, 0x001, 0x090, 0x038), // 44x44
160
+		array(0x030, 0x030, 0x02c, 0x02c, 0x018, 0x018, 0x016, 0x016, 0x002, 0x002, 0x004, 0x0ae, 0x044, 0x001, 0x0ae, 0x044), // 48x48
161
+		array(0x034, 0x034, 0x030, 0x030, 0x01a, 0x01a, 0x018, 0x018, 0x002, 0x002, 0x004, 0x0cc, 0x054, 0x002, 0x066, 0x02a), // 52x52
162
+		array(0x040, 0x040, 0x038, 0x038, 0x010, 0x010, 0x00e, 0x00e, 0x004, 0x004, 0x010, 0x118, 0x070, 0x002, 0x08c, 0x038), // 64x64
163
+		array(0x048, 0x048, 0x040, 0x040, 0x012, 0x012, 0x010, 0x010, 0x004, 0x004, 0x010, 0x170, 0x090, 0x004, 0x05c, 0x024), // 72x72
164
+		array(0x050, 0x050, 0x048, 0x048, 0x014, 0x014, 0x012, 0x012, 0x004, 0x004, 0x010, 0x1c8, 0x0c0, 0x004, 0x072, 0x030), // 80x80
165
+		array(0x058, 0x058, 0x050, 0x050, 0x016, 0x016, 0x014, 0x014, 0x004, 0x004, 0x010, 0x240, 0x0e0, 0x004, 0x090, 0x038), // 88x88
166
+		array(0x060, 0x060, 0x058, 0x058, 0x018, 0x018, 0x016, 0x016, 0x004, 0x004, 0x010, 0x2b8, 0x110, 0x004, 0x0ae, 0x044), // 96x96
167
+		array(0x068, 0x068, 0x060, 0x060, 0x01a, 0x01a, 0x018, 0x018, 0x004, 0x004, 0x010, 0x330, 0x150, 0x006, 0x088, 0x038), // 104x104
168
+		array(0x078, 0x078, 0x06c, 0x06c, 0x014, 0x014, 0x012, 0x012, 0x006, 0x006, 0x024, 0x41a, 0x198, 0x006, 0x0af, 0x044), // 120x120
169
+		array(0x084, 0x084, 0x078, 0x078, 0x016, 0x016, 0x014, 0x014, 0x006, 0x006, 0x024, 0x518, 0x1f0, 0x008, 0x0a3, 0x03e), // 132x132
170
+		array(0x090, 0x090, 0x084, 0x084, 0x018, 0x018, 0x016, 0x016, 0x006, 0x006, 0x024, 0x616, 0x26c, 0x00a, 0x09c, 0x03e), // 144x144
171 171
 		// rectangular form (currently unused) ---------------------------------------------------------------------------
172
-		array(0x008,0x012,0x006,0x010,0x008,0x012,0x006,0x010,0x001,0x001,0x001,0x005,0x007,0x001,0x005,0x007), // 8x18
173
-		array(0x008,0x020,0x006,0x01c,0x008,0x010,0x006,0x00e,0x001,0x002,0x002,0x00a,0x00b,0x001,0x00a,0x00b), // 8x32
174
-		array(0x00c,0x01a,0x00a,0x018,0x00c,0x01a,0x00a,0x018,0x001,0x001,0x001,0x010,0x00e,0x001,0x010,0x00e), // 12x26
175
-		array(0x00c,0x024,0x00a,0x020,0x00c,0x012,0x00a,0x010,0x001,0x002,0x002,0x00c,0x012,0x001,0x00c,0x012), // 12x36
176
-		array(0x010,0x024,0x00e,0x020,0x010,0x012,0x00e,0x010,0x001,0x002,0x002,0x020,0x018,0x001,0x020,0x018), // 16x36
177
-		array(0x010,0x030,0x00e,0x02c,0x010,0x018,0x00e,0x016,0x001,0x002,0x002,0x031,0x01c,0x001,0x031,0x01c)  // 16x48
172
+		array(0x008, 0x012, 0x006, 0x010, 0x008, 0x012, 0x006, 0x010, 0x001, 0x001, 0x001, 0x005, 0x007, 0x001, 0x005, 0x007), // 8x18
173
+		array(0x008, 0x020, 0x006, 0x01c, 0x008, 0x010, 0x006, 0x00e, 0x001, 0x002, 0x002, 0x00a, 0x00b, 0x001, 0x00a, 0x00b), // 8x32
174
+		array(0x00c, 0x01a, 0x00a, 0x018, 0x00c, 0x01a, 0x00a, 0x018, 0x001, 0x001, 0x001, 0x010, 0x00e, 0x001, 0x010, 0x00e), // 12x26
175
+		array(0x00c, 0x024, 0x00a, 0x020, 0x00c, 0x012, 0x00a, 0x010, 0x001, 0x002, 0x002, 0x00c, 0x012, 0x001, 0x00c, 0x012), // 12x36
176
+		array(0x010, 0x024, 0x00e, 0x020, 0x010, 0x012, 0x00e, 0x010, 0x001, 0x002, 0x002, 0x020, 0x018, 0x001, 0x020, 0x018), // 16x36
177
+		array(0x010, 0x030, 0x00e, 0x02c, 0x010, 0x018, 0x00e, 0x016, 0x001, 0x002, 0x002, 0x031, 0x01c, 0x001, 0x031, 0x01c)  // 16x48
178 178
 	);
179 179
 
180 180
 	/**
@@ -189,39 +189,39 @@  discard block
 block discarded – undo
189 189
 	 */
190 190
 	protected $chset = array(
191 191
 		'C40' => array( // Basic set for C40 ----------------------------------------------------------------------------
192
-			'S1'=>0x00,'S2'=>0x01,'S3'=>0x02,0x20=>0x03,0x30=>0x04,0x31=>0x05,0x32=>0x06,0x33=>0x07,0x34=>0x08,0x35=>0x09, //
193
-			0x36=>0x0a,0x37=>0x0b,0x38=>0x0c,0x39=>0x0d,0x41=>0x0e,0x42=>0x0f,0x43=>0x10,0x44=>0x11,0x45=>0x12,0x46=>0x13, //
194
-			0x47=>0x14,0x48=>0x15,0x49=>0x16,0x4a=>0x17,0x4b=>0x18,0x4c=>0x19,0x4d=>0x1a,0x4e=>0x1b,0x4f=>0x1c,0x50=>0x1d, //
195
-			0x51=>0x1e,0x52=>0x1f,0x53=>0x20,0x54=>0x21,0x55=>0x22,0x56=>0x23,0x57=>0x24,0x58=>0x25,0x59=>0x26,0x5a=>0x27),//
192
+			'S1'=>0x00, 'S2'=>0x01, 'S3'=>0x02, 0x20=>0x03, 0x30=>0x04, 0x31=>0x05, 0x32=>0x06, 0x33=>0x07, 0x34=>0x08, 0x35=>0x09, //
193
+			0x36=>0x0a, 0x37=>0x0b, 0x38=>0x0c, 0x39=>0x0d, 0x41=>0x0e, 0x42=>0x0f, 0x43=>0x10, 0x44=>0x11, 0x45=>0x12, 0x46=>0x13, //
194
+			0x47=>0x14, 0x48=>0x15, 0x49=>0x16, 0x4a=>0x17, 0x4b=>0x18, 0x4c=>0x19, 0x4d=>0x1a, 0x4e=>0x1b, 0x4f=>0x1c, 0x50=>0x1d, //
195
+			0x51=>0x1e, 0x52=>0x1f, 0x53=>0x20, 0x54=>0x21, 0x55=>0x22, 0x56=>0x23, 0x57=>0x24, 0x58=>0x25, 0x59=>0x26, 0x5a=>0x27), //
196 196
 		'TXT' => array( // Basic set for TEXT ---------------------------------------------------------------------------
197
-			'S1'=>0x00,'S2'=>0x01,'S3'=>0x02,0x20=>0x03,0x30=>0x04,0x31=>0x05,0x32=>0x06,0x33=>0x07,0x34=>0x08,0x35=>0x09, //
198
-			0x36=>0x0a,0x37=>0x0b,0x38=>0x0c,0x39=>0x0d,0x61=>0x0e,0x62=>0x0f,0x63=>0x10,0x64=>0x11,0x65=>0x12,0x66=>0x13, //
199
-			0x67=>0x14,0x68=>0x15,0x69=>0x16,0x6a=>0x17,0x6b=>0x18,0x6c=>0x19,0x6d=>0x1a,0x6e=>0x1b,0x6f=>0x1c,0x70=>0x1d, //
200
-			0x71=>0x1e,0x72=>0x1f,0x73=>0x20,0x74=>0x21,0x75=>0x22,0x76=>0x23,0x77=>0x24,0x78=>0x25,0x79=>0x26,0x7a=>0x27),//
197
+			'S1'=>0x00, 'S2'=>0x01, 'S3'=>0x02, 0x20=>0x03, 0x30=>0x04, 0x31=>0x05, 0x32=>0x06, 0x33=>0x07, 0x34=>0x08, 0x35=>0x09, //
198
+			0x36=>0x0a, 0x37=>0x0b, 0x38=>0x0c, 0x39=>0x0d, 0x61=>0x0e, 0x62=>0x0f, 0x63=>0x10, 0x64=>0x11, 0x65=>0x12, 0x66=>0x13, //
199
+			0x67=>0x14, 0x68=>0x15, 0x69=>0x16, 0x6a=>0x17, 0x6b=>0x18, 0x6c=>0x19, 0x6d=>0x1a, 0x6e=>0x1b, 0x6f=>0x1c, 0x70=>0x1d, //
200
+			0x71=>0x1e, 0x72=>0x1f, 0x73=>0x20, 0x74=>0x21, 0x75=>0x22, 0x76=>0x23, 0x77=>0x24, 0x78=>0x25, 0x79=>0x26, 0x7a=>0x27), //
201 201
 		'SH1' => array( // Shift 1 set ----------------------------------------------------------------------------------
202
-			0x00=>0x00,0x01=>0x01,0x02=>0x02,0x03=>0x03,0x04=>0x04,0x05=>0x05,0x06=>0x06,0x07=>0x07,0x08=>0x08,0x09=>0x09, //
203
-			0x0a=>0x0a,0x0b=>0x0b,0x0c=>0x0c,0x0d=>0x0d,0x0e=>0x0e,0x0f=>0x0f,0x10=>0x10,0x11=>0x11,0x12=>0x12,0x13=>0x13, //
204
-			0x14=>0x14,0x15=>0x15,0x16=>0x16,0x17=>0x17,0x18=>0x18,0x19=>0x19,0x1a=>0x1a,0x1b=>0x1b,0x1c=>0x1c,0x1d=>0x1d, //
205
-			0x1e=>0x1e,0x1f=>0x1f),                                                                                        //
202
+			0x00=>0x00, 0x01=>0x01, 0x02=>0x02, 0x03=>0x03, 0x04=>0x04, 0x05=>0x05, 0x06=>0x06, 0x07=>0x07, 0x08=>0x08, 0x09=>0x09, //
203
+			0x0a=>0x0a, 0x0b=>0x0b, 0x0c=>0x0c, 0x0d=>0x0d, 0x0e=>0x0e, 0x0f=>0x0f, 0x10=>0x10, 0x11=>0x11, 0x12=>0x12, 0x13=>0x13, //
204
+			0x14=>0x14, 0x15=>0x15, 0x16=>0x16, 0x17=>0x17, 0x18=>0x18, 0x19=>0x19, 0x1a=>0x1a, 0x1b=>0x1b, 0x1c=>0x1c, 0x1d=>0x1d, //
205
+			0x1e=>0x1e, 0x1f=>0x1f), //
206 206
 		'SH2' => array( // Shift 2 set ----------------------------------------------------------------------------------
207
-			0x21=>0x00,0x22=>0x01,0x23=>0x02,0x24=>0x03,0x25=>0x04,0x26=>0x05,0x27=>0x06,0x28=>0x07,0x29=>0x08,0x2a=>0x09, //
208
-			0x2b=>0x0a,0x2c=>0x0b,0x2d=>0x0c,0x2e=>0x0d,0x2f=>0x0e,0x3a=>0x0f,0x3b=>0x10,0x3c=>0x11,0x3d=>0x12,0x3e=>0x13, //
209
-			0x3f=>0x14,0x40=>0x15,0x5b=>0x16,0x5c=>0x17,0x5d=>0x18,0x5e=>0x19,0x5f=>0x1a,'F1'=>0x1b,'US'=>0x1e),           //
207
+			0x21=>0x00, 0x22=>0x01, 0x23=>0x02, 0x24=>0x03, 0x25=>0x04, 0x26=>0x05, 0x27=>0x06, 0x28=>0x07, 0x29=>0x08, 0x2a=>0x09, //
208
+			0x2b=>0x0a, 0x2c=>0x0b, 0x2d=>0x0c, 0x2e=>0x0d, 0x2f=>0x0e, 0x3a=>0x0f, 0x3b=>0x10, 0x3c=>0x11, 0x3d=>0x12, 0x3e=>0x13, //
209
+			0x3f=>0x14, 0x40=>0x15, 0x5b=>0x16, 0x5c=>0x17, 0x5d=>0x18, 0x5e=>0x19, 0x5f=>0x1a, 'F1'=>0x1b, 'US'=>0x1e), //
210 210
 		'S3C' => array( // Shift 3 set for C40 --------------------------------------------------------------------------
211
-			0x60=>0x00,0x61=>0x01,0x62=>0x02,0x63=>0x03,0x64=>0x04,0x65=>0x05,0x66=>0x06,0x67=>0x07,0x68=>0x08,0x69=>0x09, //
212
-			0x6a=>0x0a,0x6b=>0x0b,0x6c=>0x0c,0x6d=>0x0d,0x6e=>0x0e,0x6f=>0x0f,0x70=>0x10,0x71=>0x11,0x72=>0x12,0x73=>0x13, //
213
-			0x74=>0x14,0x75=>0x15,0x76=>0x16,0x77=>0x17,0x78=>0x18,0x79=>0x19,0x7a=>0x1a,0x7b=>0x1b,0x7c=>0x1c,0x7d=>0x1d, //
214
-			0x7e=>0x1e,0x7f=>0x1f),
211
+			0x60=>0x00, 0x61=>0x01, 0x62=>0x02, 0x63=>0x03, 0x64=>0x04, 0x65=>0x05, 0x66=>0x06, 0x67=>0x07, 0x68=>0x08, 0x69=>0x09, //
212
+			0x6a=>0x0a, 0x6b=>0x0b, 0x6c=>0x0c, 0x6d=>0x0d, 0x6e=>0x0e, 0x6f=>0x0f, 0x70=>0x10, 0x71=>0x11, 0x72=>0x12, 0x73=>0x13, //
213
+			0x74=>0x14, 0x75=>0x15, 0x76=>0x16, 0x77=>0x17, 0x78=>0x18, 0x79=>0x19, 0x7a=>0x1a, 0x7b=>0x1b, 0x7c=>0x1c, 0x7d=>0x1d, //
214
+			0x7e=>0x1e, 0x7f=>0x1f),
215 215
 		'S3T' => array( // Shift 3 set for TEXT -------------------------------------------------------------------------
216
-			0x60=>0x00,0x41=>0x01,0x42=>0x02,0x43=>0x03,0x44=>0x04,0x45=>0x05,0x46=>0x06,0x47=>0x07,0x48=>0x08,0x49=>0x09, //
217
-			0x4a=>0x0a,0x4b=>0x0b,0x4c=>0x0c,0x4d=>0x0d,0x4e=>0x0e,0x4f=>0x0f,0x50=>0x10,0x51=>0x11,0x52=>0x12,0x53=>0x13, //
218
-			0x54=>0x14,0x55=>0x15,0x56=>0x16,0x57=>0x17,0x58=>0x18,0x59=>0x19,0x5a=>0x1a,0x7b=>0x1b,0x7c=>0x1c,0x7d=>0x1d, //
219
-			0x7e=>0x1e,0x7f=>0x1f),                                                                                        //
216
+			0x60=>0x00, 0x41=>0x01, 0x42=>0x02, 0x43=>0x03, 0x44=>0x04, 0x45=>0x05, 0x46=>0x06, 0x47=>0x07, 0x48=>0x08, 0x49=>0x09, //
217
+			0x4a=>0x0a, 0x4b=>0x0b, 0x4c=>0x0c, 0x4d=>0x0d, 0x4e=>0x0e, 0x4f=>0x0f, 0x50=>0x10, 0x51=>0x11, 0x52=>0x12, 0x53=>0x13, //
218
+			0x54=>0x14, 0x55=>0x15, 0x56=>0x16, 0x57=>0x17, 0x58=>0x18, 0x59=>0x19, 0x5a=>0x1a, 0x7b=>0x1b, 0x7c=>0x1c, 0x7d=>0x1d, //
219
+			0x7e=>0x1e, 0x7f=>0x1f), //
220 220
 		'X12' => array( // Set for X12 ----------------------------------------------------------------------------------
221
-			0x0d=>0x00,0x2a=>0x01,0x3e=>0x02,0x20=>0x03,0x30=>0x04,0x31=>0x05,0x32=>0x06,0x33=>0x07,0x34=>0x08,0x35=>0x09, //
222
-			0x36=>0x0a,0x37=>0x0b,0x38=>0x0c,0x39=>0x0d,0x41=>0x0e,0x42=>0x0f,0x43=>0x10,0x44=>0x11,0x45=>0x12,0x46=>0x13, //
223
-			0x47=>0x14,0x48=>0x15,0x49=>0x16,0x4a=>0x17,0x4b=>0x18,0x4c=>0x19,0x4d=>0x1a,0x4e=>0x1b,0x4f=>0x1c,0x50=>0x1d, //
224
-			0x51=>0x1e,0x52=>0x1f,0x53=>0x20,0x54=>0x21,0x55=>0x22,0x56=>0x23,0x57=>0x24,0x58=>0x25,0x59=>0x26,0x5a=>0x27) //
221
+			0x0d=>0x00, 0x2a=>0x01, 0x3e=>0x02, 0x20=>0x03, 0x30=>0x04, 0x31=>0x05, 0x32=>0x06, 0x33=>0x07, 0x34=>0x08, 0x35=>0x09, //
222
+			0x36=>0x0a, 0x37=>0x0b, 0x38=>0x0c, 0x39=>0x0d, 0x41=>0x0e, 0x42=>0x0f, 0x43=>0x10, 0x44=>0x11, 0x45=>0x12, 0x46=>0x13, //
223
+			0x47=>0x14, 0x48=>0x15, 0x49=>0x16, 0x4a=>0x17, 0x4b=>0x18, 0x4c=>0x19, 0x4d=>0x1a, 0x4e=>0x1b, 0x4f=>0x1c, 0x50=>0x1d, //
224
+			0x51=>0x1e, 0x52=>0x1f, 0x53=>0x20, 0x54=>0x21, 0x55=>0x22, 0x56=>0x23, 0x57=>0x24, 0x58=>0x25, 0x59=>0x26, 0x5a=>0x27) //
225 225
 		);
226 226
 
227 227
 // -----------------------------------------------------------------------------
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
 	 * @return array data codewords + error codewords
382 382
 	 * @protected
383 383
 	 */
384
-	protected function getErrorCorrection($wd, $nb, $nd, $nc, $gf=256, $pp=301) {
384
+	protected function getErrorCorrection($wd, $nb, $nd, $nc, $gf = 256, $pp = 301) {
385 385
 		// generate the log ($log) and antilog ($alog) tables
386 386
 		$log[0] = 0;
387 387
 		$alog[0] = 1;
@@ -397,7 +397,7 @@  discard block
 block discarded – undo
397 397
 		$c = array_fill(0, ($nc + 1), 0);
398 398
 		$c[0] = 1;
399 399
 		for ($i = 1; $i <= $nc; ++$i) {
400
-			$c[$i] = $c[($i-1)];
400
+			$c[$i] = $c[($i - 1)];
401 401
 			for ($j = ($i - 1); $j >= 1; --$j) {
402 402
 				$c[$j] = $c[($j - 1)] ^ $this->getGFProduct($c[$j], $alog[$i], $log, $alog, $gf);
403 403
 			}
@@ -907,7 +907,7 @@  discard block
 block discarded – undo
907 907
 								$cw[] = $tcw;
908 908
 								$cw_num++;
909 909
 							}
910
-							$tcw= (($temp_cw[1] & 0x0F) << 4) + (($temp_cw[2] & 0x3C) >> 2);
910
+							$tcw = (($temp_cw[1] & 0x0F) << 4) + (($temp_cw[2] & 0x3C) >> 2);
911 911
 							if ($tcw > 0) {
912 912
 								$cw[] = $tcw;
913 913
 								$cw_num++;
@@ -1006,14 +1006,14 @@  discard block
 block discarded – undo
1006 1006
 	 * @protected
1007 1007
 	 */
1008 1008
 	protected function placeUtah($marr, $nrow, $ncol, $row, $col, $chr) {
1009
-		$marr = $this->placeModule($marr, $nrow, $ncol, $row-2, $col-2, $chr, 1);
1010
-		$marr = $this->placeModule($marr, $nrow, $ncol, $row-2, $col-1, $chr, 2);
1011
-		$marr = $this->placeModule($marr, $nrow, $ncol, $row-1, $col-2, $chr, 3);
1012
-		$marr = $this->placeModule($marr, $nrow, $ncol, $row-1, $col-1, $chr, 4);
1013
-		$marr = $this->placeModule($marr, $nrow, $ncol, $row-1, $col,   $chr, 5);
1014
-		$marr = $this->placeModule($marr, $nrow, $ncol, $row,   $col-2, $chr, 6);
1015
-		$marr = $this->placeModule($marr, $nrow, $ncol, $row,   $col-1, $chr, 7);
1016
-		$marr = $this->placeModule($marr, $nrow, $ncol, $row,   $col,   $chr, 8);
1009
+		$marr = $this->placeModule($marr, $nrow, $ncol, $row - 2, $col - 2, $chr, 1);
1010
+		$marr = $this->placeModule($marr, $nrow, $ncol, $row - 2, $col - 1, $chr, 2);
1011
+		$marr = $this->placeModule($marr, $nrow, $ncol, $row - 1, $col - 2, $chr, 3);
1012
+		$marr = $this->placeModule($marr, $nrow, $ncol, $row - 1, $col - 1, $chr, 4);
1013
+		$marr = $this->placeModule($marr, $nrow, $ncol, $row - 1, $col, $chr, 5);
1014
+		$marr = $this->placeModule($marr, $nrow, $ncol, $row, $col - 2, $chr, 6);
1015
+		$marr = $this->placeModule($marr, $nrow, $ncol, $row, $col - 1, $chr, 7);
1016
+		$marr = $this->placeModule($marr, $nrow, $ncol, $row, $col, $chr, 8);
1017 1017
 		return $marr;
1018 1018
 	}
1019 1019
 
@@ -1028,14 +1028,14 @@  discard block
 block discarded – undo
1028 1028
 	 * @protected
1029 1029
 	 */
1030 1030
 	protected function placeCornerA($marr, $nrow, $ncol, $chr) {
1031
-		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow-1, 0,       $chr, 1);
1032
-		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow-1, 1,       $chr, 2);
1033
-		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow-1, 2,       $chr, 3);
1034
-		$marr = $this->placeModule($marr, $nrow, $ncol, 0,       $ncol-2, $chr, 4);
1035
-		$marr = $this->placeModule($marr, $nrow, $ncol, 0,       $ncol-1, $chr, 5);
1036
-		$marr = $this->placeModule($marr, $nrow, $ncol, 1,       $ncol-1, $chr, 6);
1037
-		$marr = $this->placeModule($marr, $nrow, $ncol, 2,       $ncol-1, $chr, 7);
1038
-		$marr = $this->placeModule($marr, $nrow, $ncol, 3,       $ncol-1, $chr, 8);
1031
+		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow - 1, 0, $chr, 1);
1032
+		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow - 1, 1, $chr, 2);
1033
+		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow - 1, 2, $chr, 3);
1034
+		$marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol - 2, $chr, 4);
1035
+		$marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol - 1, $chr, 5);
1036
+		$marr = $this->placeModule($marr, $nrow, $ncol, 1, $ncol - 1, $chr, 6);
1037
+		$marr = $this->placeModule($marr, $nrow, $ncol, 2, $ncol - 1, $chr, 7);
1038
+		$marr = $this->placeModule($marr, $nrow, $ncol, 3, $ncol - 1, $chr, 8);
1039 1039
 		return $marr;
1040 1040
 	}
1041 1041
 
@@ -1050,14 +1050,14 @@  discard block
 block discarded – undo
1050 1050
 	 * @protected
1051 1051
 	 */
1052 1052
 	protected function placeCornerB($marr, $nrow, $ncol, $chr) {
1053
-		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow-3, 0,       $chr, 1);
1054
-		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow-2, 0,       $chr, 2);
1055
-		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow-1, 0,       $chr, 3);
1056
-		$marr = $this->placeModule($marr, $nrow, $ncol, 0,       $ncol-4, $chr, 4);
1057
-		$marr = $this->placeModule($marr, $nrow, $ncol, 0,       $ncol-3, $chr, 5);
1058
-		$marr = $this->placeModule($marr, $nrow, $ncol, 0,       $ncol-2, $chr, 6);
1059
-		$marr = $this->placeModule($marr, $nrow, $ncol, 0,       $ncol-1, $chr, 7);
1060
-		$marr = $this->placeModule($marr, $nrow, $ncol, 1,       $ncol-1, $chr, 8);
1053
+		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow - 3, 0, $chr, 1);
1054
+		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow - 2, 0, $chr, 2);
1055
+		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow - 1, 0, $chr, 3);
1056
+		$marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol - 4, $chr, 4);
1057
+		$marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol - 3, $chr, 5);
1058
+		$marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol - 2, $chr, 6);
1059
+		$marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol - 1, $chr, 7);
1060
+		$marr = $this->placeModule($marr, $nrow, $ncol, 1, $ncol - 1, $chr, 8);
1061 1061
 		return $marr;
1062 1062
 	}
1063 1063
 
@@ -1072,14 +1072,14 @@  discard block
 block discarded – undo
1072 1072
 	 * @protected
1073 1073
 	 */
1074 1074
 	protected function placeCornerC($marr, $nrow, $ncol, $chr) {
1075
-		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow-3, 0,       $chr, 1);
1076
-		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow-2, 0,       $chr, 2);
1077
-		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow-1, 0,       $chr, 3);
1078
-		$marr = $this->placeModule($marr, $nrow, $ncol, 0,       $ncol-2, $chr, 4);
1079
-		$marr = $this->placeModule($marr, $nrow, $ncol, 0,       $ncol-1, $chr, 5);
1080
-		$marr = $this->placeModule($marr, $nrow, $ncol, 1,       $ncol-1, $chr, 6);
1081
-		$marr = $this->placeModule($marr, $nrow, $ncol, 2,       $ncol-1, $chr, 7);
1082
-		$marr = $this->placeModule($marr, $nrow, $ncol, 3,       $ncol-1, $chr, 8);
1075
+		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow - 3, 0, $chr, 1);
1076
+		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow - 2, 0, $chr, 2);
1077
+		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow - 1, 0, $chr, 3);
1078
+		$marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol - 2, $chr, 4);
1079
+		$marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol - 1, $chr, 5);
1080
+		$marr = $this->placeModule($marr, $nrow, $ncol, 1, $ncol - 1, $chr, 6);
1081
+		$marr = $this->placeModule($marr, $nrow, $ncol, 2, $ncol - 1, $chr, 7);
1082
+		$marr = $this->placeModule($marr, $nrow, $ncol, 3, $ncol - 1, $chr, 8);
1083 1083
 		return $marr;
1084 1084
 	}
1085 1085
 
@@ -1094,14 +1094,14 @@  discard block
 block discarded – undo
1094 1094
 	 * @protected
1095 1095
 	 */
1096 1096
 	protected function placeCornerD($marr, $nrow, $ncol, $chr) {
1097
-		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow-1, 0,       $chr, 1);
1098
-		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow-1, $ncol-1, $chr, 2);
1099
-		$marr = $this->placeModule($marr, $nrow, $ncol, 0,       $ncol-3, $chr, 3);
1100
-		$marr = $this->placeModule($marr, $nrow, $ncol, 0,       $ncol-2, $chr, 4);
1101
-		$marr = $this->placeModule($marr, $nrow, $ncol, 0,       $ncol-1, $chr, 5);
1102
-		$marr = $this->placeModule($marr, $nrow, $ncol, 1,       $ncol-3, $chr, 6);
1103
-		$marr = $this->placeModule($marr, $nrow, $ncol, 1,       $ncol-2, $chr, 7);
1104
-		$marr = $this->placeModule($marr, $nrow, $ncol, 1,       $ncol-1, $chr, 8);
1097
+		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow - 1, 0, $chr, 1);
1098
+		$marr = $this->placeModule($marr, $nrow, $ncol, $nrow - 1, $ncol - 1, $chr, 2);
1099
+		$marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol - 3, $chr, 3);
1100
+		$marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol - 2, $chr, 4);
1101
+		$marr = $this->placeModule($marr, $nrow, $ncol, 0, $ncol - 1, $chr, 5);
1102
+		$marr = $this->placeModule($marr, $nrow, $ncol, 1, $ncol - 3, $chr, 6);
1103
+		$marr = $this->placeModule($marr, $nrow, $ncol, 1, $ncol - 2, $chr, 7);
1104
+		$marr = $this->placeModule($marr, $nrow, $ncol, 1, $ncol - 1, $chr, 8);
1105 1105
 		return $marr;
1106 1106
 	}
1107 1107
 
Please login to merge, or discard this patch.
htdocs/includes/tecnickcom/tcpdf/include/tcpdf_images.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 	 * @since 4.8.017 (2009-11-27)
69 69
 	 * @public static
70 70
 	 */
71
-	public static function getImageFileType($imgfile, $iminfo=array()) {
71
+	public static function getImageFileType($imgfile, $iminfo = array()) {
72 72
 		$type = '';
73 73
 		if (isset($iminfo['mime']) AND !empty($iminfo['mime'])) {
74 74
 			$mime = explode('/', $iminfo['mime']);
Please login to merge, or discard this patch.
htdocs/includes/tecnickcom/tcpdf/include/tcpdf_font_data.php 1 patch
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -17864,7 +17864,7 @@  discard block
 block discarded – undo
17864 17864
  * Mirror unicode characters. For information on bidi mirroring, see UAX #9: Bidirectional Algorithm, at http://www.unicode.org/unicode/reports/tr9/
17865 17865
  * @public
17866 17866
  */
17867
-public static $uni_mirror = array (
17867
+public static $uni_mirror = array(
17868 17868
 0x0028=>0x0029,
17869 17869
 0x0029=>0x0028,
17870 17870
 0x003C=>0x003E,
@@ -18305,7 +18305,7 @@  discard block
 block discarded – undo
18305 18305
  * Arabic laa letter: (char code => isolated, final, initial, medial).
18306 18306
  * @public
18307 18307
  */
18308
-public static $uni_laa_array = array (
18308
+public static $uni_laa_array = array(
18309 18309
 1570 =>array(65269, 65270, 65269, 65270),
18310 18310
 1571 =>array(65271, 65272, 65271, 65272),
18311 18311
 1573 =>array(65273, 65274, 65273, 65274),
@@ -18318,7 +18318,7 @@  discard block
 block discarded – undo
18318 18318
  * second NSM char code => substitution char
18319 18319
  * @public
18320 18320
  */
18321
-public static $uni_diacritics = array (
18321
+public static $uni_diacritics = array(
18322 18322
 1612=>64606, # Shadda + Dammatan
18323 18323
 1613=>64607, # Shadda + Kasratan
18324 18324
 1614=>64608, # Shadda + Fatha
@@ -18330,23 +18330,23 @@  discard block
 block discarded – undo
18330 18330
  * Array of character substitutions from UTF-8 Unicode to Latin1.
18331 18331
  * @public
18332 18332
  */
18333
-public static $uni_utf8tolatin = array (
18333
+public static $uni_utf8tolatin = array(
18334 18334
 8364=>128, # Euro1
18335
-338=>140,  # OE
18336
-352=>138,  # Scaron
18337
-376=>159,  # Ydieresis
18338
-381=>142,  # Zcaron2
18335
+338=>140, # OE
18336
+352=>138, # Scaron
18337
+376=>159, # Ydieresis
18338
+381=>142, # Zcaron2
18339 18339
 8226=>149, # bullet3
18340
-710=>136,  # circumflex
18340
+710=>136, # circumflex
18341 18341
 8224=>134, # dagger
18342 18342
 8225=>135, # daggerdbl
18343 18343
 8230=>133, # ellipsis
18344 18344
 8212=>151, # emdash
18345 18345
 8211=>150, # endash
18346
-402=>131,  # florin
18346
+402=>131, # florin
18347 18347
 8249=>139, # guilsinglleft
18348 18348
 8250=>155, # guilsinglright
18349
-339=>156,  # oe
18349
+339=>156, # oe
18350 18350
 8240=>137, # perthousand
18351 18351
 8222=>132, # quotedblbase
18352 18352
 8220=>147, # quotedblleft
@@ -18354,8 +18354,8 @@  discard block
 block discarded – undo
18354 18354
 8216=>145, # quoteleft
18355 18355
 8217=>146, # quoteright
18356 18356
 8218=>130, # quotesinglbase
18357
-353=>154,  # scaron
18358
-732=>152,  # tilde
18357
+353=>154, # scaron
18358
+732=>152, # tilde
18359 18359
 8482=>153, # trademark
18360 18360
 382=>158   # zcaron2
18361 18361
 );
@@ -18367,70 +18367,70 @@  discard block
 block discarded – undo
18367 18367
 public static $encmap = array(
18368 18368
 
18369 18369
 // encoding map for: cp874
18370
-'cp874' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'ellipsis',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'kokaithai',162=>'khokhaithai',163=>'khokhuatthai',164=>'khokhwaithai',165=>'khokhonthai',166=>'khorakhangthai',167=>'ngonguthai',168=>'chochanthai',169=>'chochingthai',170=>'chochangthai',171=>'sosothai',172=>'chochoethai',173=>'yoyingthai',174=>'dochadathai',175=>'topatakthai',176=>'thothanthai',177=>'thonangmonthothai',178=>'thophuthaothai',179=>'nonenthai',180=>'dodekthai',181=>'totaothai',182=>'thothungthai',183=>'thothahanthai',184=>'thothongthai',185=>'nonuthai',186=>'bobaimaithai',187=>'poplathai',188=>'phophungthai',189=>'fofathai',190=>'phophanthai',191=>'fofanthai',192=>'phosamphaothai',193=>'momathai',194=>'yoyakthai',195=>'roruathai',196=>'ruthai',197=>'lolingthai',198=>'luthai',199=>'wowaenthai',200=>'sosalathai',201=>'sorusithai',202=>'sosuathai',203=>'hohipthai',204=>'lochulathai',205=>'oangthai',206=>'honokhukthai',207=>'paiyannoithai',208=>'saraathai',209=>'maihanakatthai',210=>'saraaathai',211=>'saraamthai',212=>'saraithai',213=>'saraiithai',214=>'sarauethai',215=>'saraueethai',216=>'sarauthai',217=>'sarauuthai',218=>'phinthuthai',219=>'.notdef',220=>'.notdef',221=>'.notdef',222=>'.notdef',223=>'bahtthai',224=>'saraethai',225=>'saraaethai',226=>'saraothai',227=>'saraaimaimuanthai',228=>'saraaimaimalaithai',229=>'lakkhangyaothai',230=>'maiyamokthai',231=>'maitaikhuthai',232=>'maiekthai',233=>'maithothai',234=>'maitrithai',235=>'maichattawathai',236=>'thanthakhatthai',237=>'nikhahitthai',238=>'yamakkanthai',239=>'fongmanthai',240=>'zerothai',241=>'onethai',242=>'twothai',243=>'threethai',244=>'fourthai',245=>'fivethai',246=>'sixthai',247=>'seventhai',248=>'eightthai',249=>'ninethai',250=>'angkhankhuthai',251=>'khomutthai',252=>'.notdef',253=>'.notdef',254=>'.notdef',255=>'.notdef'),
18370
+'cp874' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'Euro', 129=>'.notdef', 130=>'.notdef', 131=>'.notdef', 132=>'.notdef', 133=>'ellipsis', 134=>'.notdef', 135=>'.notdef', 136=>'.notdef', 137=>'.notdef', 138=>'.notdef', 139=>'.notdef', 140=>'.notdef', 141=>'.notdef', 142=>'.notdef', 143=>'.notdef', 144=>'.notdef', 145=>'quoteleft', 146=>'quoteright', 147=>'quotedblleft', 148=>'quotedblright', 149=>'bullet', 150=>'endash', 151=>'emdash', 152=>'.notdef', 153=>'.notdef', 154=>'.notdef', 155=>'.notdef', 156=>'.notdef', 157=>'.notdef', 158=>'.notdef', 159=>'.notdef', 160=>'space', 161=>'kokaithai', 162=>'khokhaithai', 163=>'khokhuatthai', 164=>'khokhwaithai', 165=>'khokhonthai', 166=>'khorakhangthai', 167=>'ngonguthai', 168=>'chochanthai', 169=>'chochingthai', 170=>'chochangthai', 171=>'sosothai', 172=>'chochoethai', 173=>'yoyingthai', 174=>'dochadathai', 175=>'topatakthai', 176=>'thothanthai', 177=>'thonangmonthothai', 178=>'thophuthaothai', 179=>'nonenthai', 180=>'dodekthai', 181=>'totaothai', 182=>'thothungthai', 183=>'thothahanthai', 184=>'thothongthai', 185=>'nonuthai', 186=>'bobaimaithai', 187=>'poplathai', 188=>'phophungthai', 189=>'fofathai', 190=>'phophanthai', 191=>'fofanthai', 192=>'phosamphaothai', 193=>'momathai', 194=>'yoyakthai', 195=>'roruathai', 196=>'ruthai', 197=>'lolingthai', 198=>'luthai', 199=>'wowaenthai', 200=>'sosalathai', 201=>'sorusithai', 202=>'sosuathai', 203=>'hohipthai', 204=>'lochulathai', 205=>'oangthai', 206=>'honokhukthai', 207=>'paiyannoithai', 208=>'saraathai', 209=>'maihanakatthai', 210=>'saraaathai', 211=>'saraamthai', 212=>'saraithai', 213=>'saraiithai', 214=>'sarauethai', 215=>'saraueethai', 216=>'sarauthai', 217=>'sarauuthai', 218=>'phinthuthai', 219=>'.notdef', 220=>'.notdef', 221=>'.notdef', 222=>'.notdef', 223=>'bahtthai', 224=>'saraethai', 225=>'saraaethai', 226=>'saraothai', 227=>'saraaimaimuanthai', 228=>'saraaimaimalaithai', 229=>'lakkhangyaothai', 230=>'maiyamokthai', 231=>'maitaikhuthai', 232=>'maiekthai', 233=>'maithothai', 234=>'maitrithai', 235=>'maichattawathai', 236=>'thanthakhatthai', 237=>'nikhahitthai', 238=>'yamakkanthai', 239=>'fongmanthai', 240=>'zerothai', 241=>'onethai', 242=>'twothai', 243=>'threethai', 244=>'fourthai', 245=>'fivethai', 246=>'sixthai', 247=>'seventhai', 248=>'eightthai', 249=>'ninethai', 250=>'angkhankhuthai', 251=>'khomutthai', 252=>'.notdef', 253=>'.notdef', 254=>'.notdef', 255=>'.notdef'),
18371 18371
 
18372 18372
 // encoding map for: cp1250
18373
-'cp1250' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'.notdef',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'.notdef',137=>'perthousand',138=>'Scaron',139=>'guilsinglleft',140=>'Sacute',141=>'Tcaron',142=>'Zcaron',143=>'Zacute',144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'.notdef',153=>'trademark',154=>'scaron',155=>'guilsinglright',156=>'sacute',157=>'tcaron',158=>'zcaron',159=>'zacute',160=>'space',161=>'caron',162=>'breve',163=>'Lslash',164=>'currency',165=>'Aogonek',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'Scedilla',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'Zdotaccent',176=>'degree',177=>'plusminus',178=>'ogonek',179=>'lslash',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'cedilla',185=>'aogonek',186=>'scedilla',187=>'guillemotright',188=>'Lcaron',189=>'hungarumlaut',190=>'lcaron',191=>'zdotaccent',192=>'Racute',193=>'Aacute',194=>'Acircumflex',195=>'Abreve',196=>'Adieresis',197=>'Lacute',198=>'Cacute',199=>'Ccedilla',200=>'Ccaron',201=>'Eacute',202=>'Eogonek',203=>'Edieresis',204=>'Ecaron',205=>'Iacute',206=>'Icircumflex',207=>'Dcaron',208=>'Dcroat',209=>'Nacute',210=>'Ncaron',211=>'Oacute',212=>'Ocircumflex',213=>'Ohungarumlaut',214=>'Odieresis',215=>'multiply',216=>'Rcaron',217=>'Uring',218=>'Uacute',219=>'Uhungarumlaut',220=>'Udieresis',221=>'Yacute',222=>'Tcommaaccent',223=>'germandbls',224=>'racute',225=>'aacute',226=>'acircumflex',227=>'abreve',228=>'adieresis',229=>'lacute',230=>'cacute',231=>'ccedilla',232=>'ccaron',233=>'eacute',234=>'eogonek',235=>'edieresis',236=>'ecaron',237=>'iacute',238=>'icircumflex',239=>'dcaron',240=>'dcroat',241=>'nacute',242=>'ncaron',243=>'oacute',244=>'ocircumflex',245=>'ohungarumlaut',246=>'odieresis',247=>'divide',248=>'rcaron',249=>'uring',250=>'uacute',251=>'uhungarumlaut',252=>'udieresis',253=>'yacute',254=>'tcommaaccent',255=>'dotaccent'),
18373
+'cp1250' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'Euro', 129=>'.notdef', 130=>'quotesinglbase', 131=>'.notdef', 132=>'quotedblbase', 133=>'ellipsis', 134=>'dagger', 135=>'daggerdbl', 136=>'.notdef', 137=>'perthousand', 138=>'Scaron', 139=>'guilsinglleft', 140=>'Sacute', 141=>'Tcaron', 142=>'Zcaron', 143=>'Zacute', 144=>'.notdef', 145=>'quoteleft', 146=>'quoteright', 147=>'quotedblleft', 148=>'quotedblright', 149=>'bullet', 150=>'endash', 151=>'emdash', 152=>'.notdef', 153=>'trademark', 154=>'scaron', 155=>'guilsinglright', 156=>'sacute', 157=>'tcaron', 158=>'zcaron', 159=>'zacute', 160=>'space', 161=>'caron', 162=>'breve', 163=>'Lslash', 164=>'currency', 165=>'Aogonek', 166=>'brokenbar', 167=>'section', 168=>'dieresis', 169=>'copyright', 170=>'Scedilla', 171=>'guillemotleft', 172=>'logicalnot', 173=>'hyphen', 174=>'registered', 175=>'Zdotaccent', 176=>'degree', 177=>'plusminus', 178=>'ogonek', 179=>'lslash', 180=>'acute', 181=>'mu', 182=>'paragraph', 183=>'periodcentered', 184=>'cedilla', 185=>'aogonek', 186=>'scedilla', 187=>'guillemotright', 188=>'Lcaron', 189=>'hungarumlaut', 190=>'lcaron', 191=>'zdotaccent', 192=>'Racute', 193=>'Aacute', 194=>'Acircumflex', 195=>'Abreve', 196=>'Adieresis', 197=>'Lacute', 198=>'Cacute', 199=>'Ccedilla', 200=>'Ccaron', 201=>'Eacute', 202=>'Eogonek', 203=>'Edieresis', 204=>'Ecaron', 205=>'Iacute', 206=>'Icircumflex', 207=>'Dcaron', 208=>'Dcroat', 209=>'Nacute', 210=>'Ncaron', 211=>'Oacute', 212=>'Ocircumflex', 213=>'Ohungarumlaut', 214=>'Odieresis', 215=>'multiply', 216=>'Rcaron', 217=>'Uring', 218=>'Uacute', 219=>'Uhungarumlaut', 220=>'Udieresis', 221=>'Yacute', 222=>'Tcommaaccent', 223=>'germandbls', 224=>'racute', 225=>'aacute', 226=>'acircumflex', 227=>'abreve', 228=>'adieresis', 229=>'lacute', 230=>'cacute', 231=>'ccedilla', 232=>'ccaron', 233=>'eacute', 234=>'eogonek', 235=>'edieresis', 236=>'ecaron', 237=>'iacute', 238=>'icircumflex', 239=>'dcaron', 240=>'dcroat', 241=>'nacute', 242=>'ncaron', 243=>'oacute', 244=>'ocircumflex', 245=>'ohungarumlaut', 246=>'odieresis', 247=>'divide', 248=>'rcaron', 249=>'uring', 250=>'uacute', 251=>'uhungarumlaut', 252=>'udieresis', 253=>'yacute', 254=>'tcommaaccent', 255=>'dotaccent'),
18374 18374
 
18375 18375
 // encoding map for: cp1251
18376
-'cp1251' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'afii10051',129=>'afii10052',130=>'quotesinglbase',131=>'afii10100',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'Euro',137=>'perthousand',138=>'afii10058',139=>'guilsinglleft',140=>'afii10059',141=>'afii10061',142=>'afii10060',143=>'afii10145',144=>'afii10099',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'.notdef',153=>'trademark',154=>'afii10106',155=>'guilsinglright',156=>'afii10107',157=>'afii10109',158=>'afii10108',159=>'afii10193',160=>'space',161=>'afii10062',162=>'afii10110',163=>'afii10057',164=>'currency',165=>'afii10050',166=>'brokenbar',167=>'section',168=>'afii10023',169=>'copyright',170=>'afii10053',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'afii10056',176=>'degree',177=>'plusminus',178=>'afii10055',179=>'afii10103',180=>'afii10098',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'afii10071',185=>'afii61352',186=>'afii10101',187=>'guillemotright',188=>'afii10105',189=>'afii10054',190=>'afii10102',191=>'afii10104',192=>'afii10017',193=>'afii10018',194=>'afii10019',195=>'afii10020',196=>'afii10021',197=>'afii10022',198=>'afii10024',199=>'afii10025',200=>'afii10026',201=>'afii10027',202=>'afii10028',203=>'afii10029',204=>'afii10030',205=>'afii10031',206=>'afii10032',207=>'afii10033',208=>'afii10034',209=>'afii10035',210=>'afii10036',211=>'afii10037',212=>'afii10038',213=>'afii10039',214=>'afii10040',215=>'afii10041',216=>'afii10042',217=>'afii10043',218=>'afii10044',219=>'afii10045',220=>'afii10046',221=>'afii10047',222=>'afii10048',223=>'afii10049',224=>'afii10065',225=>'afii10066',226=>'afii10067',227=>'afii10068',228=>'afii10069',229=>'afii10070',230=>'afii10072',231=>'afii10073',232=>'afii10074',233=>'afii10075',234=>'afii10076',235=>'afii10077',236=>'afii10078',237=>'afii10079',238=>'afii10080',239=>'afii10081',240=>'afii10082',241=>'afii10083',242=>'afii10084',243=>'afii10085',244=>'afii10086',245=>'afii10087',246=>'afii10088',247=>'afii10089',248=>'afii10090',249=>'afii10091',250=>'afii10092',251=>'afii10093',252=>'afii10094',253=>'afii10095',254=>'afii10096',255=>'afii10097'),
18376
+'cp1251' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'afii10051', 129=>'afii10052', 130=>'quotesinglbase', 131=>'afii10100', 132=>'quotedblbase', 133=>'ellipsis', 134=>'dagger', 135=>'daggerdbl', 136=>'Euro', 137=>'perthousand', 138=>'afii10058', 139=>'guilsinglleft', 140=>'afii10059', 141=>'afii10061', 142=>'afii10060', 143=>'afii10145', 144=>'afii10099', 145=>'quoteleft', 146=>'quoteright', 147=>'quotedblleft', 148=>'quotedblright', 149=>'bullet', 150=>'endash', 151=>'emdash', 152=>'.notdef', 153=>'trademark', 154=>'afii10106', 155=>'guilsinglright', 156=>'afii10107', 157=>'afii10109', 158=>'afii10108', 159=>'afii10193', 160=>'space', 161=>'afii10062', 162=>'afii10110', 163=>'afii10057', 164=>'currency', 165=>'afii10050', 166=>'brokenbar', 167=>'section', 168=>'afii10023', 169=>'copyright', 170=>'afii10053', 171=>'guillemotleft', 172=>'logicalnot', 173=>'hyphen', 174=>'registered', 175=>'afii10056', 176=>'degree', 177=>'plusminus', 178=>'afii10055', 179=>'afii10103', 180=>'afii10098', 181=>'mu', 182=>'paragraph', 183=>'periodcentered', 184=>'afii10071', 185=>'afii61352', 186=>'afii10101', 187=>'guillemotright', 188=>'afii10105', 189=>'afii10054', 190=>'afii10102', 191=>'afii10104', 192=>'afii10017', 193=>'afii10018', 194=>'afii10019', 195=>'afii10020', 196=>'afii10021', 197=>'afii10022', 198=>'afii10024', 199=>'afii10025', 200=>'afii10026', 201=>'afii10027', 202=>'afii10028', 203=>'afii10029', 204=>'afii10030', 205=>'afii10031', 206=>'afii10032', 207=>'afii10033', 208=>'afii10034', 209=>'afii10035', 210=>'afii10036', 211=>'afii10037', 212=>'afii10038', 213=>'afii10039', 214=>'afii10040', 215=>'afii10041', 216=>'afii10042', 217=>'afii10043', 218=>'afii10044', 219=>'afii10045', 220=>'afii10046', 221=>'afii10047', 222=>'afii10048', 223=>'afii10049', 224=>'afii10065', 225=>'afii10066', 226=>'afii10067', 227=>'afii10068', 228=>'afii10069', 229=>'afii10070', 230=>'afii10072', 231=>'afii10073', 232=>'afii10074', 233=>'afii10075', 234=>'afii10076', 235=>'afii10077', 236=>'afii10078', 237=>'afii10079', 238=>'afii10080', 239=>'afii10081', 240=>'afii10082', 241=>'afii10083', 242=>'afii10084', 243=>'afii10085', 244=>'afii10086', 245=>'afii10087', 246=>'afii10088', 247=>'afii10089', 248=>'afii10090', 249=>'afii10091', 250=>'afii10092', 251=>'afii10093', 252=>'afii10094', 253=>'afii10095', 254=>'afii10096', 255=>'afii10097'),
18377 18377
 
18378 18378
 // encoding map for: cp1252
18379
-'cp1252' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'circumflex',137=>'perthousand',138=>'Scaron',139=>'guilsinglleft',140=>'OE',141=>'.notdef',142=>'Zcaron',143=>'.notdef',144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'tilde',153=>'trademark',154=>'scaron',155=>'guilsinglright',156=>'oe',157=>'.notdef',158=>'zcaron',159=>'Ydieresis',160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'cedilla',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown',192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla',200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis',208=>'Eth',209=>'Ntilde',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply',216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Yacute',222=>'Thorn',223=>'germandbls',224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla',232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis',240=>'eth',241=>'ntilde',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide',248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'yacute',254=>'thorn',255=>'ydieresis'),
18379
+'cp1252' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'Euro', 129=>'.notdef', 130=>'quotesinglbase', 131=>'florin', 132=>'quotedblbase', 133=>'ellipsis', 134=>'dagger', 135=>'daggerdbl', 136=>'circumflex', 137=>'perthousand', 138=>'Scaron', 139=>'guilsinglleft', 140=>'OE', 141=>'.notdef', 142=>'Zcaron', 143=>'.notdef', 144=>'.notdef', 145=>'quoteleft', 146=>'quoteright', 147=>'quotedblleft', 148=>'quotedblright', 149=>'bullet', 150=>'endash', 151=>'emdash', 152=>'tilde', 153=>'trademark', 154=>'scaron', 155=>'guilsinglright', 156=>'oe', 157=>'.notdef', 158=>'zcaron', 159=>'Ydieresis', 160=>'space', 161=>'exclamdown', 162=>'cent', 163=>'sterling', 164=>'currency', 165=>'yen', 166=>'brokenbar', 167=>'section', 168=>'dieresis', 169=>'copyright', 170=>'ordfeminine', 171=>'guillemotleft', 172=>'logicalnot', 173=>'hyphen', 174=>'registered', 175=>'macron', 176=>'degree', 177=>'plusminus', 178=>'twosuperior', 179=>'threesuperior', 180=>'acute', 181=>'mu', 182=>'paragraph', 183=>'periodcentered', 184=>'cedilla', 185=>'onesuperior', 186=>'ordmasculine', 187=>'guillemotright', 188=>'onequarter', 189=>'onehalf', 190=>'threequarters', 191=>'questiondown', 192=>'Agrave', 193=>'Aacute', 194=>'Acircumflex', 195=>'Atilde', 196=>'Adieresis', 197=>'Aring', 198=>'AE', 199=>'Ccedilla', 200=>'Egrave', 201=>'Eacute', 202=>'Ecircumflex', 203=>'Edieresis', 204=>'Igrave', 205=>'Iacute', 206=>'Icircumflex', 207=>'Idieresis', 208=>'Eth', 209=>'Ntilde', 210=>'Ograve', 211=>'Oacute', 212=>'Ocircumflex', 213=>'Otilde', 214=>'Odieresis', 215=>'multiply', 216=>'Oslash', 217=>'Ugrave', 218=>'Uacute', 219=>'Ucircumflex', 220=>'Udieresis', 221=>'Yacute', 222=>'Thorn', 223=>'germandbls', 224=>'agrave', 225=>'aacute', 226=>'acircumflex', 227=>'atilde', 228=>'adieresis', 229=>'aring', 230=>'ae', 231=>'ccedilla', 232=>'egrave', 233=>'eacute', 234=>'ecircumflex', 235=>'edieresis', 236=>'igrave', 237=>'iacute', 238=>'icircumflex', 239=>'idieresis', 240=>'eth', 241=>'ntilde', 242=>'ograve', 243=>'oacute', 244=>'ocircumflex', 245=>'otilde', 246=>'odieresis', 247=>'divide', 248=>'oslash', 249=>'ugrave', 250=>'uacute', 251=>'ucircumflex', 252=>'udieresis', 253=>'yacute', 254=>'thorn', 255=>'ydieresis'),
18380 18380
 
18381 18381
 // encoding map for: cp1253
18382
-'cp1253' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'.notdef',137=>'perthousand',138=>'.notdef',139=>'guilsinglleft',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'.notdef',153=>'trademark',154=>'.notdef',155=>'guilsinglright',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'dieresistonos',162=>'Alphatonos',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'.notdef',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'afii00208',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'tonos',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'Epsilontonos',185=>'Etatonos',186=>'Iotatonos',187=>'guillemotright',188=>'Omicrontonos',189=>'onehalf',190=>'Upsilontonos',191=>'Omegatonos',192=>'iotadieresistonos',193=>'Alpha',194=>'Beta',195=>'Gamma',196=>'Delta',197=>'Epsilon',198=>'Zeta',199=>'Eta',200=>'Theta',201=>'Iota',202=>'Kappa',203=>'Lambda',204=>'Mu',205=>'Nu',206=>'Xi',207=>'Omicron',208=>'Pi',209=>'Rho',210=>'.notdef',211=>'Sigma',212=>'Tau',213=>'Upsilon',214=>'Phi',215=>'Chi',216=>'Psi',217=>'Omega',218=>'Iotadieresis',219=>'Upsilondieresis',220=>'alphatonos',221=>'epsilontonos',222=>'etatonos',223=>'iotatonos',224=>'upsilondieresistonos',225=>'alpha',226=>'beta',227=>'gamma',228=>'delta',229=>'epsilon',230=>'zeta',231=>'eta',232=>'theta',233=>'iota',234=>'kappa',235=>'lambda',236=>'mu',237=>'nu',238=>'xi',239=>'omicron',240=>'pi',241=>'rho',242=>'sigma1',243=>'sigma',244=>'tau',245=>'upsilon',246=>'phi',247=>'chi',248=>'psi',249=>'omega',250=>'iotadieresis',251=>'upsilondieresis',252=>'omicrontonos',253=>'upsilontonos',254=>'omegatonos',255=>'.notdef'),
18382
+'cp1253' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'Euro', 129=>'.notdef', 130=>'quotesinglbase', 131=>'florin', 132=>'quotedblbase', 133=>'ellipsis', 134=>'dagger', 135=>'daggerdbl', 136=>'.notdef', 137=>'perthousand', 138=>'.notdef', 139=>'guilsinglleft', 140=>'.notdef', 141=>'.notdef', 142=>'.notdef', 143=>'.notdef', 144=>'.notdef', 145=>'quoteleft', 146=>'quoteright', 147=>'quotedblleft', 148=>'quotedblright', 149=>'bullet', 150=>'endash', 151=>'emdash', 152=>'.notdef', 153=>'trademark', 154=>'.notdef', 155=>'guilsinglright', 156=>'.notdef', 157=>'.notdef', 158=>'.notdef', 159=>'.notdef', 160=>'space', 161=>'dieresistonos', 162=>'Alphatonos', 163=>'sterling', 164=>'currency', 165=>'yen', 166=>'brokenbar', 167=>'section', 168=>'dieresis', 169=>'copyright', 170=>'.notdef', 171=>'guillemotleft', 172=>'logicalnot', 173=>'hyphen', 174=>'registered', 175=>'afii00208', 176=>'degree', 177=>'plusminus', 178=>'twosuperior', 179=>'threesuperior', 180=>'tonos', 181=>'mu', 182=>'paragraph', 183=>'periodcentered', 184=>'Epsilontonos', 185=>'Etatonos', 186=>'Iotatonos', 187=>'guillemotright', 188=>'Omicrontonos', 189=>'onehalf', 190=>'Upsilontonos', 191=>'Omegatonos', 192=>'iotadieresistonos', 193=>'Alpha', 194=>'Beta', 195=>'Gamma', 196=>'Delta', 197=>'Epsilon', 198=>'Zeta', 199=>'Eta', 200=>'Theta', 201=>'Iota', 202=>'Kappa', 203=>'Lambda', 204=>'Mu', 205=>'Nu', 206=>'Xi', 207=>'Omicron', 208=>'Pi', 209=>'Rho', 210=>'.notdef', 211=>'Sigma', 212=>'Tau', 213=>'Upsilon', 214=>'Phi', 215=>'Chi', 216=>'Psi', 217=>'Omega', 218=>'Iotadieresis', 219=>'Upsilondieresis', 220=>'alphatonos', 221=>'epsilontonos', 222=>'etatonos', 223=>'iotatonos', 224=>'upsilondieresistonos', 225=>'alpha', 226=>'beta', 227=>'gamma', 228=>'delta', 229=>'epsilon', 230=>'zeta', 231=>'eta', 232=>'theta', 233=>'iota', 234=>'kappa', 235=>'lambda', 236=>'mu', 237=>'nu', 238=>'xi', 239=>'omicron', 240=>'pi', 241=>'rho', 242=>'sigma1', 243=>'sigma', 244=>'tau', 245=>'upsilon', 246=>'phi', 247=>'chi', 248=>'psi', 249=>'omega', 250=>'iotadieresis', 251=>'upsilondieresis', 252=>'omicrontonos', 253=>'upsilontonos', 254=>'omegatonos', 255=>'.notdef'),
18383 18383
 
18384 18384
 // encoding map for: cp1254
18385
-'cp1254' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'circumflex',137=>'perthousand',138=>'Scaron',139=>'guilsinglleft',140=>'OE',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'tilde',153=>'trademark',154=>'scaron',155=>'guilsinglright',156=>'oe',157=>'.notdef',158=>'.notdef',159=>'Ydieresis',160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'cedilla',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown',192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla',200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis',208=>'Gbreve',209=>'Ntilde',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply',216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Idotaccent',222=>'Scedilla',223=>'germandbls',224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla',232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis',240=>'gbreve',241=>'ntilde',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide',248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'dotlessi',254=>'scedilla',255=>'ydieresis'),
18385
+'cp1254' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'Euro', 129=>'.notdef', 130=>'quotesinglbase', 131=>'florin', 132=>'quotedblbase', 133=>'ellipsis', 134=>'dagger', 135=>'daggerdbl', 136=>'circumflex', 137=>'perthousand', 138=>'Scaron', 139=>'guilsinglleft', 140=>'OE', 141=>'.notdef', 142=>'.notdef', 143=>'.notdef', 144=>'.notdef', 145=>'quoteleft', 146=>'quoteright', 147=>'quotedblleft', 148=>'quotedblright', 149=>'bullet', 150=>'endash', 151=>'emdash', 152=>'tilde', 153=>'trademark', 154=>'scaron', 155=>'guilsinglright', 156=>'oe', 157=>'.notdef', 158=>'.notdef', 159=>'Ydieresis', 160=>'space', 161=>'exclamdown', 162=>'cent', 163=>'sterling', 164=>'currency', 165=>'yen', 166=>'brokenbar', 167=>'section', 168=>'dieresis', 169=>'copyright', 170=>'ordfeminine', 171=>'guillemotleft', 172=>'logicalnot', 173=>'hyphen', 174=>'registered', 175=>'macron', 176=>'degree', 177=>'plusminus', 178=>'twosuperior', 179=>'threesuperior', 180=>'acute', 181=>'mu', 182=>'paragraph', 183=>'periodcentered', 184=>'cedilla', 185=>'onesuperior', 186=>'ordmasculine', 187=>'guillemotright', 188=>'onequarter', 189=>'onehalf', 190=>'threequarters', 191=>'questiondown', 192=>'Agrave', 193=>'Aacute', 194=>'Acircumflex', 195=>'Atilde', 196=>'Adieresis', 197=>'Aring', 198=>'AE', 199=>'Ccedilla', 200=>'Egrave', 201=>'Eacute', 202=>'Ecircumflex', 203=>'Edieresis', 204=>'Igrave', 205=>'Iacute', 206=>'Icircumflex', 207=>'Idieresis', 208=>'Gbreve', 209=>'Ntilde', 210=>'Ograve', 211=>'Oacute', 212=>'Ocircumflex', 213=>'Otilde', 214=>'Odieresis', 215=>'multiply', 216=>'Oslash', 217=>'Ugrave', 218=>'Uacute', 219=>'Ucircumflex', 220=>'Udieresis', 221=>'Idotaccent', 222=>'Scedilla', 223=>'germandbls', 224=>'agrave', 225=>'aacute', 226=>'acircumflex', 227=>'atilde', 228=>'adieresis', 229=>'aring', 230=>'ae', 231=>'ccedilla', 232=>'egrave', 233=>'eacute', 234=>'ecircumflex', 235=>'edieresis', 236=>'igrave', 237=>'iacute', 238=>'icircumflex', 239=>'idieresis', 240=>'gbreve', 241=>'ntilde', 242=>'ograve', 243=>'oacute', 244=>'ocircumflex', 245=>'otilde', 246=>'odieresis', 247=>'divide', 248=>'oslash', 249=>'ugrave', 250=>'uacute', 251=>'ucircumflex', 252=>'udieresis', 253=>'dotlessi', 254=>'scedilla', 255=>'ydieresis'),
18386 18386
 
18387 18387
 // encoding map for: cp1255
18388
-'cp1255' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'circumflex',137=>'perthousand',138=>'.notdef',139=>'guilsinglleft',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'tilde',153=>'trademark',154=>'.notdef',155=>'guilsinglright',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'afii57636',165=>'yen',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'multiply',171=>'guillemotleft',172=>'logicalnot',173=>'sfthyphen',174=>'registered',175=>'macron',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'middot',184=>'cedilla',185=>'onesuperior',186=>'divide',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown',192=>'afii57799',193=>'afii57801',194=>'afii57800',195=>'afii57802',196=>'afii57793',197=>'afii57794',198=>'afii57795',199=>'afii57798',200=>'afii57797',201=>'afii57806',202=>'.notdef',203=>'afii57796',204=>'afii57807',205=>'afii57839',206=>'afii57645',207=>'afii57841',208=>'afii57842',209=>'afii57804',210=>'afii57803',211=>'afii57658',212=>'afii57716',213=>'afii57717',214=>'afii57718',215=>'gereshhebrew',216=>'gershayimhebrew',217=>'.notdef',218=>'.notdef',219=>'.notdef',220=>'.notdef',221=>'.notdef',222=>'.notdef',223=>'.notdef',224=>'afii57664',225=>'afii57665',226=>'afii57666',227=>'afii57667',228=>'afii57668',229=>'afii57669',230=>'afii57670',231=>'afii57671',232=>'afii57672',233=>'afii57673',234=>'afii57674',235=>'afii57675',236=>'afii57676',237=>'afii57677',238=>'afii57678',239=>'afii57679',240=>'afii57680',241=>'afii57681',242=>'afii57682',243=>'afii57683',244=>'afii57684',245=>'afii57685',246=>'afii57686',247=>'afii57687',248=>'afii57688',249=>'afii57689',250=>'afii57690',251=>'.notdef',252=>'.notdef',253=>'afii299',254=>'afii300',255=>'.notdef'),
18388
+'cp1255' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'Euro', 129=>'.notdef', 130=>'quotesinglbase', 131=>'florin', 132=>'quotedblbase', 133=>'ellipsis', 134=>'dagger', 135=>'daggerdbl', 136=>'circumflex', 137=>'perthousand', 138=>'.notdef', 139=>'guilsinglleft', 140=>'.notdef', 141=>'.notdef', 142=>'.notdef', 143=>'.notdef', 144=>'.notdef', 145=>'quoteleft', 146=>'quoteright', 147=>'quotedblleft', 148=>'quotedblright', 149=>'bullet', 150=>'endash', 151=>'emdash', 152=>'tilde', 153=>'trademark', 154=>'.notdef', 155=>'guilsinglright', 156=>'.notdef', 157=>'.notdef', 158=>'.notdef', 159=>'.notdef', 160=>'space', 161=>'exclamdown', 162=>'cent', 163=>'sterling', 164=>'afii57636', 165=>'yen', 166=>'brokenbar', 167=>'section', 168=>'dieresis', 169=>'copyright', 170=>'multiply', 171=>'guillemotleft', 172=>'logicalnot', 173=>'sfthyphen', 174=>'registered', 175=>'macron', 176=>'degree', 177=>'plusminus', 178=>'twosuperior', 179=>'threesuperior', 180=>'acute', 181=>'mu', 182=>'paragraph', 183=>'middot', 184=>'cedilla', 185=>'onesuperior', 186=>'divide', 187=>'guillemotright', 188=>'onequarter', 189=>'onehalf', 190=>'threequarters', 191=>'questiondown', 192=>'afii57799', 193=>'afii57801', 194=>'afii57800', 195=>'afii57802', 196=>'afii57793', 197=>'afii57794', 198=>'afii57795', 199=>'afii57798', 200=>'afii57797', 201=>'afii57806', 202=>'.notdef', 203=>'afii57796', 204=>'afii57807', 205=>'afii57839', 206=>'afii57645', 207=>'afii57841', 208=>'afii57842', 209=>'afii57804', 210=>'afii57803', 211=>'afii57658', 212=>'afii57716', 213=>'afii57717', 214=>'afii57718', 215=>'gereshhebrew', 216=>'gershayimhebrew', 217=>'.notdef', 218=>'.notdef', 219=>'.notdef', 220=>'.notdef', 221=>'.notdef', 222=>'.notdef', 223=>'.notdef', 224=>'afii57664', 225=>'afii57665', 226=>'afii57666', 227=>'afii57667', 228=>'afii57668', 229=>'afii57669', 230=>'afii57670', 231=>'afii57671', 232=>'afii57672', 233=>'afii57673', 234=>'afii57674', 235=>'afii57675', 236=>'afii57676', 237=>'afii57677', 238=>'afii57678', 239=>'afii57679', 240=>'afii57680', 241=>'afii57681', 242=>'afii57682', 243=>'afii57683', 244=>'afii57684', 245=>'afii57685', 246=>'afii57686', 247=>'afii57687', 248=>'afii57688', 249=>'afii57689', 250=>'afii57690', 251=>'.notdef', 252=>'.notdef', 253=>'afii299', 254=>'afii300', 255=>'.notdef'),
18389 18389
 
18390 18390
 // encoding map for: cp1256
18391
-'cp1256' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'afii57506',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'circumflex',137=>'perthousand',138=>'afii57511',139=>'guilsinglleft',140=>'OE',141=>'afii57507',142=>'afii57508',143=>'afii57512',144=>'afii57509',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'.notdef',153=>'trademark',154=>'afii57513',155=>'guilsinglright',156=>'oe',157=>'afii61664',158=>'afii301',159=>'afii57514',160=>'space',161=>'afii57388',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'.notdef',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'cedilla',185=>'onesuperior',186=>'afii57403',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'afii57407',192=>'.notdef',193=>'afii57409',194=>'afii57410',195=>'afii57411',196=>'afii57412',197=>'afii57413',198=>'afii57414',199=>'afii57415',200=>'afii57416',201=>'afii57417',202=>'afii57418',203=>'afii57419',204=>'afii57420',205=>'afii57421',206=>'afii57422',207=>'afii57423',208=>'afii57424',209=>'afii57425',210=>'afii57426',211=>'afii57427',212=>'afii57428',213=>'afii57429',214=>'afii57430',215=>'multiply',216=>'afii57431',217=>'afii57432',218=>'afii57433',219=>'afii57434',220=>'afii57440',221=>'afii57441',222=>'afii57442',223=>'afii57443',224=>'agrave',225=>'afii57444',226=>'acircumflex',227=>'afii57445',228=>'afii57446',229=>'afii57470',230=>'afii57448',231=>'ccedilla',232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'afii57449',237=>'afii57450',238=>'icircumflex',239=>'idieresis',240=>'afii57451',241=>'afii57452',242=>'afii57453',243=>'afii57454',244=>'ocircumflex',245=>'afii57455',246=>'afii57456',247=>'divide',248=>'afii57457',249=>'ugrave',250=>'afii57458',251=>'ucircumflex',252=>'udieresis',253=>'afii299',254=>'afii300',255=>'afii57519'),
18391
+'cp1256' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'Euro', 129=>'afii57506', 130=>'quotesinglbase', 131=>'florin', 132=>'quotedblbase', 133=>'ellipsis', 134=>'dagger', 135=>'daggerdbl', 136=>'circumflex', 137=>'perthousand', 138=>'afii57511', 139=>'guilsinglleft', 140=>'OE', 141=>'afii57507', 142=>'afii57508', 143=>'afii57512', 144=>'afii57509', 145=>'quoteleft', 146=>'quoteright', 147=>'quotedblleft', 148=>'quotedblright', 149=>'bullet', 150=>'endash', 151=>'emdash', 152=>'.notdef', 153=>'trademark', 154=>'afii57513', 155=>'guilsinglright', 156=>'oe', 157=>'afii61664', 158=>'afii301', 159=>'afii57514', 160=>'space', 161=>'afii57388', 162=>'cent', 163=>'sterling', 164=>'currency', 165=>'yen', 166=>'brokenbar', 167=>'section', 168=>'dieresis', 169=>'copyright', 170=>'.notdef', 171=>'guillemotleft', 172=>'logicalnot', 173=>'hyphen', 174=>'registered', 175=>'macron', 176=>'degree', 177=>'plusminus', 178=>'twosuperior', 179=>'threesuperior', 180=>'acute', 181=>'mu', 182=>'paragraph', 183=>'periodcentered', 184=>'cedilla', 185=>'onesuperior', 186=>'afii57403', 187=>'guillemotright', 188=>'onequarter', 189=>'onehalf', 190=>'threequarters', 191=>'afii57407', 192=>'.notdef', 193=>'afii57409', 194=>'afii57410', 195=>'afii57411', 196=>'afii57412', 197=>'afii57413', 198=>'afii57414', 199=>'afii57415', 200=>'afii57416', 201=>'afii57417', 202=>'afii57418', 203=>'afii57419', 204=>'afii57420', 205=>'afii57421', 206=>'afii57422', 207=>'afii57423', 208=>'afii57424', 209=>'afii57425', 210=>'afii57426', 211=>'afii57427', 212=>'afii57428', 213=>'afii57429', 214=>'afii57430', 215=>'multiply', 216=>'afii57431', 217=>'afii57432', 218=>'afii57433', 219=>'afii57434', 220=>'afii57440', 221=>'afii57441', 222=>'afii57442', 223=>'afii57443', 224=>'agrave', 225=>'afii57444', 226=>'acircumflex', 227=>'afii57445', 228=>'afii57446', 229=>'afii57470', 230=>'afii57448', 231=>'ccedilla', 232=>'egrave', 233=>'eacute', 234=>'ecircumflex', 235=>'edieresis', 236=>'afii57449', 237=>'afii57450', 238=>'icircumflex', 239=>'idieresis', 240=>'afii57451', 241=>'afii57452', 242=>'afii57453', 243=>'afii57454', 244=>'ocircumflex', 245=>'afii57455', 246=>'afii57456', 247=>'divide', 248=>'afii57457', 249=>'ugrave', 250=>'afii57458', 251=>'ucircumflex', 252=>'udieresis', 253=>'afii299', 254=>'afii300', 255=>'afii57519'),
18392 18392
 
18393 18393
 // encoding map for: cp1257
18394
-'cp1257' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'.notdef',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'.notdef',137=>'perthousand',138=>'.notdef',139=>'guilsinglleft',140=>'.notdef',141=>'dieresis',142=>'caron',143=>'cedilla',144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'.notdef',153=>'trademark',154=>'.notdef',155=>'guilsinglright',156=>'.notdef',157=>'macron',158=>'ogonek',159=>'.notdef',160=>'space',161=>'.notdef',162=>'cent',163=>'sterling',164=>'currency',165=>'.notdef',166=>'brokenbar',167=>'section',168=>'Oslash',169=>'copyright',170=>'Rcommaaccent',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'AE',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'oslash',185=>'onesuperior',186=>'rcommaaccent',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'ae',192=>'Aogonek',193=>'Iogonek',194=>'Amacron',195=>'Cacute',196=>'Adieresis',197=>'Aring',198=>'Eogonek',199=>'Emacron',200=>'Ccaron',201=>'Eacute',202=>'Zacute',203=>'Edotaccent',204=>'Gcommaaccent',205=>'Kcommaaccent',206=>'Imacron',207=>'Lcommaaccent',208=>'Scaron',209=>'Nacute',210=>'Ncommaaccent',211=>'Oacute',212=>'Omacron',213=>'Otilde',214=>'Odieresis',215=>'multiply',216=>'Uogonek',217=>'Lslash',218=>'Sacute',219=>'Umacron',220=>'Udieresis',221=>'Zdotaccent',222=>'Zcaron',223=>'germandbls',224=>'aogonek',225=>'iogonek',226=>'amacron',227=>'cacute',228=>'adieresis',229=>'aring',230=>'eogonek',231=>'emacron',232=>'ccaron',233=>'eacute',234=>'zacute',235=>'edotaccent',236=>'gcommaaccent',237=>'kcommaaccent',238=>'imacron',239=>'lcommaaccent',240=>'scaron',241=>'nacute',242=>'ncommaaccent',243=>'oacute',244=>'omacron',245=>'otilde',246=>'odieresis',247=>'divide',248=>'uogonek',249=>'lslash',250=>'sacute',251=>'umacron',252=>'udieresis',253=>'zdotaccent',254=>'zcaron',255=>'dotaccent'),
18394
+'cp1257' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'Euro', 129=>'.notdef', 130=>'quotesinglbase', 131=>'.notdef', 132=>'quotedblbase', 133=>'ellipsis', 134=>'dagger', 135=>'daggerdbl', 136=>'.notdef', 137=>'perthousand', 138=>'.notdef', 139=>'guilsinglleft', 140=>'.notdef', 141=>'dieresis', 142=>'caron', 143=>'cedilla', 144=>'.notdef', 145=>'quoteleft', 146=>'quoteright', 147=>'quotedblleft', 148=>'quotedblright', 149=>'bullet', 150=>'endash', 151=>'emdash', 152=>'.notdef', 153=>'trademark', 154=>'.notdef', 155=>'guilsinglright', 156=>'.notdef', 157=>'macron', 158=>'ogonek', 159=>'.notdef', 160=>'space', 161=>'.notdef', 162=>'cent', 163=>'sterling', 164=>'currency', 165=>'.notdef', 166=>'brokenbar', 167=>'section', 168=>'Oslash', 169=>'copyright', 170=>'Rcommaaccent', 171=>'guillemotleft', 172=>'logicalnot', 173=>'hyphen', 174=>'registered', 175=>'AE', 176=>'degree', 177=>'plusminus', 178=>'twosuperior', 179=>'threesuperior', 180=>'acute', 181=>'mu', 182=>'paragraph', 183=>'periodcentered', 184=>'oslash', 185=>'onesuperior', 186=>'rcommaaccent', 187=>'guillemotright', 188=>'onequarter', 189=>'onehalf', 190=>'threequarters', 191=>'ae', 192=>'Aogonek', 193=>'Iogonek', 194=>'Amacron', 195=>'Cacute', 196=>'Adieresis', 197=>'Aring', 198=>'Eogonek', 199=>'Emacron', 200=>'Ccaron', 201=>'Eacute', 202=>'Zacute', 203=>'Edotaccent', 204=>'Gcommaaccent', 205=>'Kcommaaccent', 206=>'Imacron', 207=>'Lcommaaccent', 208=>'Scaron', 209=>'Nacute', 210=>'Ncommaaccent', 211=>'Oacute', 212=>'Omacron', 213=>'Otilde', 214=>'Odieresis', 215=>'multiply', 216=>'Uogonek', 217=>'Lslash', 218=>'Sacute', 219=>'Umacron', 220=>'Udieresis', 221=>'Zdotaccent', 222=>'Zcaron', 223=>'germandbls', 224=>'aogonek', 225=>'iogonek', 226=>'amacron', 227=>'cacute', 228=>'adieresis', 229=>'aring', 230=>'eogonek', 231=>'emacron', 232=>'ccaron', 233=>'eacute', 234=>'zacute', 235=>'edotaccent', 236=>'gcommaaccent', 237=>'kcommaaccent', 238=>'imacron', 239=>'lcommaaccent', 240=>'scaron', 241=>'nacute', 242=>'ncommaaccent', 243=>'oacute', 244=>'omacron', 245=>'otilde', 246=>'odieresis', 247=>'divide', 248=>'uogonek', 249=>'lslash', 250=>'sacute', 251=>'umacron', 252=>'udieresis', 253=>'zdotaccent', 254=>'zcaron', 255=>'dotaccent'),
18395 18395
 
18396 18396
 // encoding map for: cp1258
18397
-'cp1258' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'circumflex',137=>'perthousand',138=>'.notdef',139=>'guilsinglleft',140=>'OE',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'tilde',153=>'trademark',154=>'.notdef',155=>'guilsinglright',156=>'oe',157=>'.notdef',158=>'.notdef',159=>'Ydieresis',160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'cedilla',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown',192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Abreve',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla',200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'gravecomb',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis',208=>'Dcroat',209=>'Ntilde',210=>'hookabovecomb',211=>'Oacute',212=>'Ocircumflex',213=>'Ohorn',214=>'Odieresis',215=>'multiply',216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Uhorn',222=>'tildecomb',223=>'germandbls',224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'abreve',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla',232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'acutecomb',237=>'iacute',238=>'icircumflex',239=>'idieresis',240=>'dcroat',241=>'ntilde',242=>'dotbelowcomb',243=>'oacute',244=>'ocircumflex',245=>'ohorn',246=>'odieresis',247=>'divide',248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'uhorn',254=>'dong',255=>'ydieresis'),
18397
+'cp1258' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'Euro', 129=>'.notdef', 130=>'quotesinglbase', 131=>'florin', 132=>'quotedblbase', 133=>'ellipsis', 134=>'dagger', 135=>'daggerdbl', 136=>'circumflex', 137=>'perthousand', 138=>'.notdef', 139=>'guilsinglleft', 140=>'OE', 141=>'.notdef', 142=>'.notdef', 143=>'.notdef', 144=>'.notdef', 145=>'quoteleft', 146=>'quoteright', 147=>'quotedblleft', 148=>'quotedblright', 149=>'bullet', 150=>'endash', 151=>'emdash', 152=>'tilde', 153=>'trademark', 154=>'.notdef', 155=>'guilsinglright', 156=>'oe', 157=>'.notdef', 158=>'.notdef', 159=>'Ydieresis', 160=>'space', 161=>'exclamdown', 162=>'cent', 163=>'sterling', 164=>'currency', 165=>'yen', 166=>'brokenbar', 167=>'section', 168=>'dieresis', 169=>'copyright', 170=>'ordfeminine', 171=>'guillemotleft', 172=>'logicalnot', 173=>'hyphen', 174=>'registered', 175=>'macron', 176=>'degree', 177=>'plusminus', 178=>'twosuperior', 179=>'threesuperior', 180=>'acute', 181=>'mu', 182=>'paragraph', 183=>'periodcentered', 184=>'cedilla', 185=>'onesuperior', 186=>'ordmasculine', 187=>'guillemotright', 188=>'onequarter', 189=>'onehalf', 190=>'threequarters', 191=>'questiondown', 192=>'Agrave', 193=>'Aacute', 194=>'Acircumflex', 195=>'Abreve', 196=>'Adieresis', 197=>'Aring', 198=>'AE', 199=>'Ccedilla', 200=>'Egrave', 201=>'Eacute', 202=>'Ecircumflex', 203=>'Edieresis', 204=>'gravecomb', 205=>'Iacute', 206=>'Icircumflex', 207=>'Idieresis', 208=>'Dcroat', 209=>'Ntilde', 210=>'hookabovecomb', 211=>'Oacute', 212=>'Ocircumflex', 213=>'Ohorn', 214=>'Odieresis', 215=>'multiply', 216=>'Oslash', 217=>'Ugrave', 218=>'Uacute', 219=>'Ucircumflex', 220=>'Udieresis', 221=>'Uhorn', 222=>'tildecomb', 223=>'germandbls', 224=>'agrave', 225=>'aacute', 226=>'acircumflex', 227=>'abreve', 228=>'adieresis', 229=>'aring', 230=>'ae', 231=>'ccedilla', 232=>'egrave', 233=>'eacute', 234=>'ecircumflex', 235=>'edieresis', 236=>'acutecomb', 237=>'iacute', 238=>'icircumflex', 239=>'idieresis', 240=>'dcroat', 241=>'ntilde', 242=>'dotbelowcomb', 243=>'oacute', 244=>'ocircumflex', 245=>'ohorn', 246=>'odieresis', 247=>'divide', 248=>'oslash', 249=>'ugrave', 250=>'uacute', 251=>'ucircumflex', 252=>'udieresis', 253=>'uhorn', 254=>'dong', 255=>'ydieresis'),
18398 18398
 
18399 18399
 // encoding map for: iso-8859-1
18400
-'iso-8859-1' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'cedilla',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown',192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla',200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis',208=>'Eth',209=>'Ntilde',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply',216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Yacute',222=>'Thorn',223=>'germandbls',224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla',232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis',240=>'eth',241=>'ntilde',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide',248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'yacute',254=>'thorn',255=>'ydieresis'),
18400
+'iso-8859-1' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'.notdef', 129=>'.notdef', 130=>'.notdef', 131=>'.notdef', 132=>'.notdef', 133=>'.notdef', 134=>'.notdef', 135=>'.notdef', 136=>'.notdef', 137=>'.notdef', 138=>'.notdef', 139=>'.notdef', 140=>'.notdef', 141=>'.notdef', 142=>'.notdef', 143=>'.notdef', 144=>'.notdef', 145=>'.notdef', 146=>'.notdef', 147=>'.notdef', 148=>'.notdef', 149=>'.notdef', 150=>'.notdef', 151=>'.notdef', 152=>'.notdef', 153=>'.notdef', 154=>'.notdef', 155=>'.notdef', 156=>'.notdef', 157=>'.notdef', 158=>'.notdef', 159=>'.notdef', 160=>'space', 161=>'exclamdown', 162=>'cent', 163=>'sterling', 164=>'currency', 165=>'yen', 166=>'brokenbar', 167=>'section', 168=>'dieresis', 169=>'copyright', 170=>'ordfeminine', 171=>'guillemotleft', 172=>'logicalnot', 173=>'hyphen', 174=>'registered', 175=>'macron', 176=>'degree', 177=>'plusminus', 178=>'twosuperior', 179=>'threesuperior', 180=>'acute', 181=>'mu', 182=>'paragraph', 183=>'periodcentered', 184=>'cedilla', 185=>'onesuperior', 186=>'ordmasculine', 187=>'guillemotright', 188=>'onequarter', 189=>'onehalf', 190=>'threequarters', 191=>'questiondown', 192=>'Agrave', 193=>'Aacute', 194=>'Acircumflex', 195=>'Atilde', 196=>'Adieresis', 197=>'Aring', 198=>'AE', 199=>'Ccedilla', 200=>'Egrave', 201=>'Eacute', 202=>'Ecircumflex', 203=>'Edieresis', 204=>'Igrave', 205=>'Iacute', 206=>'Icircumflex', 207=>'Idieresis', 208=>'Eth', 209=>'Ntilde', 210=>'Ograve', 211=>'Oacute', 212=>'Ocircumflex', 213=>'Otilde', 214=>'Odieresis', 215=>'multiply', 216=>'Oslash', 217=>'Ugrave', 218=>'Uacute', 219=>'Ucircumflex', 220=>'Udieresis', 221=>'Yacute', 222=>'Thorn', 223=>'germandbls', 224=>'agrave', 225=>'aacute', 226=>'acircumflex', 227=>'atilde', 228=>'adieresis', 229=>'aring', 230=>'ae', 231=>'ccedilla', 232=>'egrave', 233=>'eacute', 234=>'ecircumflex', 235=>'edieresis', 236=>'igrave', 237=>'iacute', 238=>'icircumflex', 239=>'idieresis', 240=>'eth', 241=>'ntilde', 242=>'ograve', 243=>'oacute', 244=>'ocircumflex', 245=>'otilde', 246=>'odieresis', 247=>'divide', 248=>'oslash', 249=>'ugrave', 250=>'uacute', 251=>'ucircumflex', 252=>'udieresis', 253=>'yacute', 254=>'thorn', 255=>'ydieresis'),
18401 18401
 
18402 18402
 // encoding map for: iso-8859-2
18403
-'iso-8859-2' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'Aogonek',162=>'breve',163=>'Lslash',164=>'currency',165=>'Lcaron',166=>'Sacute',167=>'section',168=>'dieresis',169=>'Scaron',170=>'Scedilla',171=>'Tcaron',172=>'Zacute',173=>'hyphen',174=>'Zcaron',175=>'Zdotaccent',176=>'degree',177=>'aogonek',178=>'ogonek',179=>'lslash',180=>'acute',181=>'lcaron',182=>'sacute',183=>'caron',184=>'cedilla',185=>'scaron',186=>'scedilla',187=>'tcaron',188=>'zacute',189=>'hungarumlaut',190=>'zcaron',191=>'zdotaccent',192=>'Racute',193=>'Aacute',194=>'Acircumflex',195=>'Abreve',196=>'Adieresis',197=>'Lacute',198=>'Cacute',199=>'Ccedilla',200=>'Ccaron',201=>'Eacute',202=>'Eogonek',203=>'Edieresis',204=>'Ecaron',205=>'Iacute',206=>'Icircumflex',207=>'Dcaron',208=>'Dcroat',209=>'Nacute',210=>'Ncaron',211=>'Oacute',212=>'Ocircumflex',213=>'Ohungarumlaut',214=>'Odieresis',215=>'multiply',216=>'Rcaron',217=>'Uring',218=>'Uacute',219=>'Uhungarumlaut',220=>'Udieresis',221=>'Yacute',222=>'Tcommaaccent',223=>'germandbls',224=>'racute',225=>'aacute',226=>'acircumflex',227=>'abreve',228=>'adieresis',229=>'lacute',230=>'cacute',231=>'ccedilla',232=>'ccaron',233=>'eacute',234=>'eogonek',235=>'edieresis',236=>'ecaron',237=>'iacute',238=>'icircumflex',239=>'dcaron',240=>'dcroat',241=>'nacute',242=>'ncaron',243=>'oacute',244=>'ocircumflex',245=>'ohungarumlaut',246=>'odieresis',247=>'divide',248=>'rcaron',249=>'uring',250=>'uacute',251=>'uhungarumlaut',252=>'udieresis',253=>'yacute',254=>'tcommaaccent',255=>'dotaccent'),
18403
+'iso-8859-2' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'.notdef', 129=>'.notdef', 130=>'.notdef', 131=>'.notdef', 132=>'.notdef', 133=>'.notdef', 134=>'.notdef', 135=>'.notdef', 136=>'.notdef', 137=>'.notdef', 138=>'.notdef', 139=>'.notdef', 140=>'.notdef', 141=>'.notdef', 142=>'.notdef', 143=>'.notdef', 144=>'.notdef', 145=>'.notdef', 146=>'.notdef', 147=>'.notdef', 148=>'.notdef', 149=>'.notdef', 150=>'.notdef', 151=>'.notdef', 152=>'.notdef', 153=>'.notdef', 154=>'.notdef', 155=>'.notdef', 156=>'.notdef', 157=>'.notdef', 158=>'.notdef', 159=>'.notdef', 160=>'space', 161=>'Aogonek', 162=>'breve', 163=>'Lslash', 164=>'currency', 165=>'Lcaron', 166=>'Sacute', 167=>'section', 168=>'dieresis', 169=>'Scaron', 170=>'Scedilla', 171=>'Tcaron', 172=>'Zacute', 173=>'hyphen', 174=>'Zcaron', 175=>'Zdotaccent', 176=>'degree', 177=>'aogonek', 178=>'ogonek', 179=>'lslash', 180=>'acute', 181=>'lcaron', 182=>'sacute', 183=>'caron', 184=>'cedilla', 185=>'scaron', 186=>'scedilla', 187=>'tcaron', 188=>'zacute', 189=>'hungarumlaut', 190=>'zcaron', 191=>'zdotaccent', 192=>'Racute', 193=>'Aacute', 194=>'Acircumflex', 195=>'Abreve', 196=>'Adieresis', 197=>'Lacute', 198=>'Cacute', 199=>'Ccedilla', 200=>'Ccaron', 201=>'Eacute', 202=>'Eogonek', 203=>'Edieresis', 204=>'Ecaron', 205=>'Iacute', 206=>'Icircumflex', 207=>'Dcaron', 208=>'Dcroat', 209=>'Nacute', 210=>'Ncaron', 211=>'Oacute', 212=>'Ocircumflex', 213=>'Ohungarumlaut', 214=>'Odieresis', 215=>'multiply', 216=>'Rcaron', 217=>'Uring', 218=>'Uacute', 219=>'Uhungarumlaut', 220=>'Udieresis', 221=>'Yacute', 222=>'Tcommaaccent', 223=>'germandbls', 224=>'racute', 225=>'aacute', 226=>'acircumflex', 227=>'abreve', 228=>'adieresis', 229=>'lacute', 230=>'cacute', 231=>'ccedilla', 232=>'ccaron', 233=>'eacute', 234=>'eogonek', 235=>'edieresis', 236=>'ecaron', 237=>'iacute', 238=>'icircumflex', 239=>'dcaron', 240=>'dcroat', 241=>'nacute', 242=>'ncaron', 243=>'oacute', 244=>'ocircumflex', 245=>'ohungarumlaut', 246=>'odieresis', 247=>'divide', 248=>'rcaron', 249=>'uring', 250=>'uacute', 251=>'uhungarumlaut', 252=>'udieresis', 253=>'yacute', 254=>'tcommaaccent', 255=>'dotaccent'),
18404 18404
 
18405 18405
 // encoding map for: iso-8859-4
18406
-'iso-8859-4' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'Aogonek',162=>'kgreenlandic',163=>'Rcommaaccent',164=>'currency',165=>'Itilde',166=>'Lcommaaccent',167=>'section',168=>'dieresis',169=>'Scaron',170=>'Emacron',171=>'Gcommaaccent',172=>'Tbar',173=>'hyphen',174=>'Zcaron',175=>'macron',176=>'degree',177=>'aogonek',178=>'ogonek',179=>'rcommaaccent',180=>'acute',181=>'itilde',182=>'lcommaaccent',183=>'caron',184=>'cedilla',185=>'scaron',186=>'emacron',187=>'gcommaaccent',188=>'tbar',189=>'Eng',190=>'zcaron',191=>'eng',192=>'Amacron',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Iogonek',200=>'Ccaron',201=>'Eacute',202=>'Eogonek',203=>'Edieresis',204=>'Edotaccent',205=>'Iacute',206=>'Icircumflex',207=>'Imacron',208=>'Dcroat',209=>'Ncommaaccent',210=>'Omacron',211=>'Kcommaaccent',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply',216=>'Oslash',217=>'Uogonek',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Utilde',222=>'Umacron',223=>'germandbls',224=>'amacron',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'iogonek',232=>'ccaron',233=>'eacute',234=>'eogonek',235=>'edieresis',236=>'edotaccent',237=>'iacute',238=>'icircumflex',239=>'imacron',240=>'dcroat',241=>'ncommaaccent',242=>'omacron',243=>'kcommaaccent',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide',248=>'oslash',249=>'uogonek',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'utilde',254=>'umacron',255=>'dotaccent'),
18406
+'iso-8859-4' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'.notdef', 129=>'.notdef', 130=>'.notdef', 131=>'.notdef', 132=>'.notdef', 133=>'.notdef', 134=>'.notdef', 135=>'.notdef', 136=>'.notdef', 137=>'.notdef', 138=>'.notdef', 139=>'.notdef', 140=>'.notdef', 141=>'.notdef', 142=>'.notdef', 143=>'.notdef', 144=>'.notdef', 145=>'.notdef', 146=>'.notdef', 147=>'.notdef', 148=>'.notdef', 149=>'.notdef', 150=>'.notdef', 151=>'.notdef', 152=>'.notdef', 153=>'.notdef', 154=>'.notdef', 155=>'.notdef', 156=>'.notdef', 157=>'.notdef', 158=>'.notdef', 159=>'.notdef', 160=>'space', 161=>'Aogonek', 162=>'kgreenlandic', 163=>'Rcommaaccent', 164=>'currency', 165=>'Itilde', 166=>'Lcommaaccent', 167=>'section', 168=>'dieresis', 169=>'Scaron', 170=>'Emacron', 171=>'Gcommaaccent', 172=>'Tbar', 173=>'hyphen', 174=>'Zcaron', 175=>'macron', 176=>'degree', 177=>'aogonek', 178=>'ogonek', 179=>'rcommaaccent', 180=>'acute', 181=>'itilde', 182=>'lcommaaccent', 183=>'caron', 184=>'cedilla', 185=>'scaron', 186=>'emacron', 187=>'gcommaaccent', 188=>'tbar', 189=>'Eng', 190=>'zcaron', 191=>'eng', 192=>'Amacron', 193=>'Aacute', 194=>'Acircumflex', 195=>'Atilde', 196=>'Adieresis', 197=>'Aring', 198=>'AE', 199=>'Iogonek', 200=>'Ccaron', 201=>'Eacute', 202=>'Eogonek', 203=>'Edieresis', 204=>'Edotaccent', 205=>'Iacute', 206=>'Icircumflex', 207=>'Imacron', 208=>'Dcroat', 209=>'Ncommaaccent', 210=>'Omacron', 211=>'Kcommaaccent', 212=>'Ocircumflex', 213=>'Otilde', 214=>'Odieresis', 215=>'multiply', 216=>'Oslash', 217=>'Uogonek', 218=>'Uacute', 219=>'Ucircumflex', 220=>'Udieresis', 221=>'Utilde', 222=>'Umacron', 223=>'germandbls', 224=>'amacron', 225=>'aacute', 226=>'acircumflex', 227=>'atilde', 228=>'adieresis', 229=>'aring', 230=>'ae', 231=>'iogonek', 232=>'ccaron', 233=>'eacute', 234=>'eogonek', 235=>'edieresis', 236=>'edotaccent', 237=>'iacute', 238=>'icircumflex', 239=>'imacron', 240=>'dcroat', 241=>'ncommaaccent', 242=>'omacron', 243=>'kcommaaccent', 244=>'ocircumflex', 245=>'otilde', 246=>'odieresis', 247=>'divide', 248=>'oslash', 249=>'uogonek', 250=>'uacute', 251=>'ucircumflex', 252=>'udieresis', 253=>'utilde', 254=>'umacron', 255=>'dotaccent'),
18407 18407
 
18408 18408
 // encoding map for: iso-8859-5
18409
-'iso-8859-5' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'afii10023',162=>'afii10051',163=>'afii10052',164=>'afii10053',165=>'afii10054',166=>'afii10055',167=>'afii10056',168=>'afii10057',169=>'afii10058',170=>'afii10059',171=>'afii10060',172=>'afii10061',173=>'hyphen',174=>'afii10062',175=>'afii10145',176=>'afii10017',177=>'afii10018',178=>'afii10019',179=>'afii10020',180=>'afii10021',181=>'afii10022',182=>'afii10024',183=>'afii10025',184=>'afii10026',185=>'afii10027',186=>'afii10028',187=>'afii10029',188=>'afii10030',189=>'afii10031',190=>'afii10032',191=>'afii10033',192=>'afii10034',193=>'afii10035',194=>'afii10036',195=>'afii10037',196=>'afii10038',197=>'afii10039',198=>'afii10040',199=>'afii10041',200=>'afii10042',201=>'afii10043',202=>'afii10044',203=>'afii10045',204=>'afii10046',205=>'afii10047',206=>'afii10048',207=>'afii10049',208=>'afii10065',209=>'afii10066',210=>'afii10067',211=>'afii10068',212=>'afii10069',213=>'afii10070',214=>'afii10072',215=>'afii10073',216=>'afii10074',217=>'afii10075',218=>'afii10076',219=>'afii10077',220=>'afii10078',221=>'afii10079',222=>'afii10080',223=>'afii10081',224=>'afii10082',225=>'afii10083',226=>'afii10084',227=>'afii10085',228=>'afii10086',229=>'afii10087',230=>'afii10088',231=>'afii10089',232=>'afii10090',233=>'afii10091',234=>'afii10092',235=>'afii10093',236=>'afii10094',237=>'afii10095',238=>'afii10096',239=>'afii10097',240=>'afii61352',241=>'afii10071',242=>'afii10099',243=>'afii10100',244=>'afii10101',245=>'afii10102',246=>'afii10103',247=>'afii10104',248=>'afii10105',249=>'afii10106',250=>'afii10107',251=>'afii10108',252=>'afii10109',253=>'section',254=>'afii10110',255=>'afii10193'),
18409
+'iso-8859-5' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'.notdef', 129=>'.notdef', 130=>'.notdef', 131=>'.notdef', 132=>'.notdef', 133=>'.notdef', 134=>'.notdef', 135=>'.notdef', 136=>'.notdef', 137=>'.notdef', 138=>'.notdef', 139=>'.notdef', 140=>'.notdef', 141=>'.notdef', 142=>'.notdef', 143=>'.notdef', 144=>'.notdef', 145=>'.notdef', 146=>'.notdef', 147=>'.notdef', 148=>'.notdef', 149=>'.notdef', 150=>'.notdef', 151=>'.notdef', 152=>'.notdef', 153=>'.notdef', 154=>'.notdef', 155=>'.notdef', 156=>'.notdef', 157=>'.notdef', 158=>'.notdef', 159=>'.notdef', 160=>'space', 161=>'afii10023', 162=>'afii10051', 163=>'afii10052', 164=>'afii10053', 165=>'afii10054', 166=>'afii10055', 167=>'afii10056', 168=>'afii10057', 169=>'afii10058', 170=>'afii10059', 171=>'afii10060', 172=>'afii10061', 173=>'hyphen', 174=>'afii10062', 175=>'afii10145', 176=>'afii10017', 177=>'afii10018', 178=>'afii10019', 179=>'afii10020', 180=>'afii10021', 181=>'afii10022', 182=>'afii10024', 183=>'afii10025', 184=>'afii10026', 185=>'afii10027', 186=>'afii10028', 187=>'afii10029', 188=>'afii10030', 189=>'afii10031', 190=>'afii10032', 191=>'afii10033', 192=>'afii10034', 193=>'afii10035', 194=>'afii10036', 195=>'afii10037', 196=>'afii10038', 197=>'afii10039', 198=>'afii10040', 199=>'afii10041', 200=>'afii10042', 201=>'afii10043', 202=>'afii10044', 203=>'afii10045', 204=>'afii10046', 205=>'afii10047', 206=>'afii10048', 207=>'afii10049', 208=>'afii10065', 209=>'afii10066', 210=>'afii10067', 211=>'afii10068', 212=>'afii10069', 213=>'afii10070', 214=>'afii10072', 215=>'afii10073', 216=>'afii10074', 217=>'afii10075', 218=>'afii10076', 219=>'afii10077', 220=>'afii10078', 221=>'afii10079', 222=>'afii10080', 223=>'afii10081', 224=>'afii10082', 225=>'afii10083', 226=>'afii10084', 227=>'afii10085', 228=>'afii10086', 229=>'afii10087', 230=>'afii10088', 231=>'afii10089', 232=>'afii10090', 233=>'afii10091', 234=>'afii10092', 235=>'afii10093', 236=>'afii10094', 237=>'afii10095', 238=>'afii10096', 239=>'afii10097', 240=>'afii61352', 241=>'afii10071', 242=>'afii10099', 243=>'afii10100', 244=>'afii10101', 245=>'afii10102', 246=>'afii10103', 247=>'afii10104', 248=>'afii10105', 249=>'afii10106', 250=>'afii10107', 251=>'afii10108', 252=>'afii10109', 253=>'section', 254=>'afii10110', 255=>'afii10193'),
18410 18410
 
18411 18411
 // encoding map for: iso-8859-7
18412
-'iso-8859-7' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'quoteleft',162=>'quoteright',163=>'sterling',164=>'.notdef',165=>'.notdef',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'.notdef',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'.notdef',175=>'afii00208',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'tonos',181=>'dieresistonos',182=>'Alphatonos',183=>'periodcentered',184=>'Epsilontonos',185=>'Etatonos',186=>'Iotatonos',187=>'guillemotright',188=>'Omicrontonos',189=>'onehalf',190=>'Upsilontonos',191=>'Omegatonos',192=>'iotadieresistonos',193=>'Alpha',194=>'Beta',195=>'Gamma',196=>'Delta',197=>'Epsilon',198=>'Zeta',199=>'Eta',200=>'Theta',201=>'Iota',202=>'Kappa',203=>'Lambda',204=>'Mu',205=>'Nu',206=>'Xi',207=>'Omicron',208=>'Pi',209=>'Rho',210=>'.notdef',211=>'Sigma',212=>'Tau',213=>'Upsilon',214=>'Phi',215=>'Chi',216=>'Psi',217=>'Omega',218=>'Iotadieresis',219=>'Upsilondieresis',220=>'alphatonos',221=>'epsilontonos',222=>'etatonos',223=>'iotatonos',224=>'upsilondieresistonos',225=>'alpha',226=>'beta',227=>'gamma',228=>'delta',229=>'epsilon',230=>'zeta',231=>'eta',232=>'theta',233=>'iota',234=>'kappa',235=>'lambda',236=>'mu',237=>'nu',238=>'xi',239=>'omicron',240=>'pi',241=>'rho',242=>'sigma1',243=>'sigma',244=>'tau',245=>'upsilon',246=>'phi',247=>'chi',248=>'psi',249=>'omega',250=>'iotadieresis',251=>'upsilondieresis',252=>'omicrontonos',253=>'upsilontonos',254=>'omegatonos',255=>'.notdef'),
18412
+'iso-8859-7' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'.notdef', 129=>'.notdef', 130=>'.notdef', 131=>'.notdef', 132=>'.notdef', 133=>'.notdef', 134=>'.notdef', 135=>'.notdef', 136=>'.notdef', 137=>'.notdef', 138=>'.notdef', 139=>'.notdef', 140=>'.notdef', 141=>'.notdef', 142=>'.notdef', 143=>'.notdef', 144=>'.notdef', 145=>'.notdef', 146=>'.notdef', 147=>'.notdef', 148=>'.notdef', 149=>'.notdef', 150=>'.notdef', 151=>'.notdef', 152=>'.notdef', 153=>'.notdef', 154=>'.notdef', 155=>'.notdef', 156=>'.notdef', 157=>'.notdef', 158=>'.notdef', 159=>'.notdef', 160=>'space', 161=>'quoteleft', 162=>'quoteright', 163=>'sterling', 164=>'.notdef', 165=>'.notdef', 166=>'brokenbar', 167=>'section', 168=>'dieresis', 169=>'copyright', 170=>'.notdef', 171=>'guillemotleft', 172=>'logicalnot', 173=>'hyphen', 174=>'.notdef', 175=>'afii00208', 176=>'degree', 177=>'plusminus', 178=>'twosuperior', 179=>'threesuperior', 180=>'tonos', 181=>'dieresistonos', 182=>'Alphatonos', 183=>'periodcentered', 184=>'Epsilontonos', 185=>'Etatonos', 186=>'Iotatonos', 187=>'guillemotright', 188=>'Omicrontonos', 189=>'onehalf', 190=>'Upsilontonos', 191=>'Omegatonos', 192=>'iotadieresistonos', 193=>'Alpha', 194=>'Beta', 195=>'Gamma', 196=>'Delta', 197=>'Epsilon', 198=>'Zeta', 199=>'Eta', 200=>'Theta', 201=>'Iota', 202=>'Kappa', 203=>'Lambda', 204=>'Mu', 205=>'Nu', 206=>'Xi', 207=>'Omicron', 208=>'Pi', 209=>'Rho', 210=>'.notdef', 211=>'Sigma', 212=>'Tau', 213=>'Upsilon', 214=>'Phi', 215=>'Chi', 216=>'Psi', 217=>'Omega', 218=>'Iotadieresis', 219=>'Upsilondieresis', 220=>'alphatonos', 221=>'epsilontonos', 222=>'etatonos', 223=>'iotatonos', 224=>'upsilondieresistonos', 225=>'alpha', 226=>'beta', 227=>'gamma', 228=>'delta', 229=>'epsilon', 230=>'zeta', 231=>'eta', 232=>'theta', 233=>'iota', 234=>'kappa', 235=>'lambda', 236=>'mu', 237=>'nu', 238=>'xi', 239=>'omicron', 240=>'pi', 241=>'rho', 242=>'sigma1', 243=>'sigma', 244=>'tau', 245=>'upsilon', 246=>'phi', 247=>'chi', 248=>'psi', 249=>'omega', 250=>'iotadieresis', 251=>'upsilondieresis', 252=>'omicrontonos', 253=>'upsilontonos', 254=>'omegatonos', 255=>'.notdef'),
18413 18413
 
18414 18414
 // encoding map for: iso-8859-9
18415
-'iso-8859-9' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'cedilla',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown',192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla',200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis',208=>'Gbreve',209=>'Ntilde',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply',216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Idotaccent',222=>'Scedilla',223=>'germandbls',224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla',232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis',240=>'gbreve',241=>'ntilde',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide',248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'dotlessi',254=>'scedilla',255=>'ydieresis'),
18415
+'iso-8859-9' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'.notdef', 129=>'.notdef', 130=>'.notdef', 131=>'.notdef', 132=>'.notdef', 133=>'.notdef', 134=>'.notdef', 135=>'.notdef', 136=>'.notdef', 137=>'.notdef', 138=>'.notdef', 139=>'.notdef', 140=>'.notdef', 141=>'.notdef', 142=>'.notdef', 143=>'.notdef', 144=>'.notdef', 145=>'.notdef', 146=>'.notdef', 147=>'.notdef', 148=>'.notdef', 149=>'.notdef', 150=>'.notdef', 151=>'.notdef', 152=>'.notdef', 153=>'.notdef', 154=>'.notdef', 155=>'.notdef', 156=>'.notdef', 157=>'.notdef', 158=>'.notdef', 159=>'.notdef', 160=>'space', 161=>'exclamdown', 162=>'cent', 163=>'sterling', 164=>'currency', 165=>'yen', 166=>'brokenbar', 167=>'section', 168=>'dieresis', 169=>'copyright', 170=>'ordfeminine', 171=>'guillemotleft', 172=>'logicalnot', 173=>'hyphen', 174=>'registered', 175=>'macron', 176=>'degree', 177=>'plusminus', 178=>'twosuperior', 179=>'threesuperior', 180=>'acute', 181=>'mu', 182=>'paragraph', 183=>'periodcentered', 184=>'cedilla', 185=>'onesuperior', 186=>'ordmasculine', 187=>'guillemotright', 188=>'onequarter', 189=>'onehalf', 190=>'threequarters', 191=>'questiondown', 192=>'Agrave', 193=>'Aacute', 194=>'Acircumflex', 195=>'Atilde', 196=>'Adieresis', 197=>'Aring', 198=>'AE', 199=>'Ccedilla', 200=>'Egrave', 201=>'Eacute', 202=>'Ecircumflex', 203=>'Edieresis', 204=>'Igrave', 205=>'Iacute', 206=>'Icircumflex', 207=>'Idieresis', 208=>'Gbreve', 209=>'Ntilde', 210=>'Ograve', 211=>'Oacute', 212=>'Ocircumflex', 213=>'Otilde', 214=>'Odieresis', 215=>'multiply', 216=>'Oslash', 217=>'Ugrave', 218=>'Uacute', 219=>'Ucircumflex', 220=>'Udieresis', 221=>'Idotaccent', 222=>'Scedilla', 223=>'germandbls', 224=>'agrave', 225=>'aacute', 226=>'acircumflex', 227=>'atilde', 228=>'adieresis', 229=>'aring', 230=>'ae', 231=>'ccedilla', 232=>'egrave', 233=>'eacute', 234=>'ecircumflex', 235=>'edieresis', 236=>'igrave', 237=>'iacute', 238=>'icircumflex', 239=>'idieresis', 240=>'gbreve', 241=>'ntilde', 242=>'ograve', 243=>'oacute', 244=>'ocircumflex', 245=>'otilde', 246=>'odieresis', 247=>'divide', 248=>'oslash', 249=>'ugrave', 250=>'uacute', 251=>'ucircumflex', 252=>'udieresis', 253=>'dotlessi', 254=>'scedilla', 255=>'ydieresis'),
18416 18416
 
18417 18417
 // encoding map for: iso-8859-11
18418
-'iso-8859-11' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'kokaithai',162=>'khokhaithai',163=>'khokhuatthai',164=>'khokhwaithai',165=>'khokhonthai',166=>'khorakhangthai',167=>'ngonguthai',168=>'chochanthai',169=>'chochingthai',170=>'chochangthai',171=>'sosothai',172=>'chochoethai',173=>'yoyingthai',174=>'dochadathai',175=>'topatakthai',176=>'thothanthai',177=>'thonangmonthothai',178=>'thophuthaothai',179=>'nonenthai',180=>'dodekthai',181=>'totaothai',182=>'thothungthai',183=>'thothahanthai',184=>'thothongthai',185=>'nonuthai',186=>'bobaimaithai',187=>'poplathai',188=>'phophungthai',189=>'fofathai',190=>'phophanthai',191=>'fofanthai',192=>'phosamphaothai',193=>'momathai',194=>'yoyakthai',195=>'roruathai',196=>'ruthai',197=>'lolingthai',198=>'luthai',199=>'wowaenthai',200=>'sosalathai',201=>'sorusithai',202=>'sosuathai',203=>'hohipthai',204=>'lochulathai',205=>'oangthai',206=>'honokhukthai',207=>'paiyannoithai',208=>'saraathai',209=>'maihanakatthai',210=>'saraaathai',211=>'saraamthai',212=>'saraithai',213=>'saraiithai',214=>'sarauethai',215=>'saraueethai',216=>'sarauthai',217=>'sarauuthai',218=>'phinthuthai',219=>'.notdef',220=>'.notdef',221=>'.notdef',222=>'.notdef',223=>'bahtthai',224=>'saraethai',225=>'saraaethai',226=>'saraothai',227=>'saraaimaimuanthai',228=>'saraaimaimalaithai',229=>'lakkhangyaothai',230=>'maiyamokthai',231=>'maitaikhuthai',232=>'maiekthai',233=>'maithothai',234=>'maitrithai',235=>'maichattawathai',236=>'thanthakhatthai',237=>'nikhahitthai',238=>'yamakkanthai',239=>'fongmanthai',240=>'zerothai',241=>'onethai',242=>'twothai',243=>'threethai',244=>'fourthai',245=>'fivethai',246=>'sixthai',247=>'seventhai',248=>'eightthai',249=>'ninethai',250=>'angkhankhuthai',251=>'khomutthai',252=>'.notdef',253=>'.notdef',254=>'.notdef',255=>'.notdef'),
18418
+'iso-8859-11' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'.notdef', 129=>'.notdef', 130=>'.notdef', 131=>'.notdef', 132=>'.notdef', 133=>'.notdef', 134=>'.notdef', 135=>'.notdef', 136=>'.notdef', 137=>'.notdef', 138=>'.notdef', 139=>'.notdef', 140=>'.notdef', 141=>'.notdef', 142=>'.notdef', 143=>'.notdef', 144=>'.notdef', 145=>'.notdef', 146=>'.notdef', 147=>'.notdef', 148=>'.notdef', 149=>'.notdef', 150=>'.notdef', 151=>'.notdef', 152=>'.notdef', 153=>'.notdef', 154=>'.notdef', 155=>'.notdef', 156=>'.notdef', 157=>'.notdef', 158=>'.notdef', 159=>'.notdef', 160=>'space', 161=>'kokaithai', 162=>'khokhaithai', 163=>'khokhuatthai', 164=>'khokhwaithai', 165=>'khokhonthai', 166=>'khorakhangthai', 167=>'ngonguthai', 168=>'chochanthai', 169=>'chochingthai', 170=>'chochangthai', 171=>'sosothai', 172=>'chochoethai', 173=>'yoyingthai', 174=>'dochadathai', 175=>'topatakthai', 176=>'thothanthai', 177=>'thonangmonthothai', 178=>'thophuthaothai', 179=>'nonenthai', 180=>'dodekthai', 181=>'totaothai', 182=>'thothungthai', 183=>'thothahanthai', 184=>'thothongthai', 185=>'nonuthai', 186=>'bobaimaithai', 187=>'poplathai', 188=>'phophungthai', 189=>'fofathai', 190=>'phophanthai', 191=>'fofanthai', 192=>'phosamphaothai', 193=>'momathai', 194=>'yoyakthai', 195=>'roruathai', 196=>'ruthai', 197=>'lolingthai', 198=>'luthai', 199=>'wowaenthai', 200=>'sosalathai', 201=>'sorusithai', 202=>'sosuathai', 203=>'hohipthai', 204=>'lochulathai', 205=>'oangthai', 206=>'honokhukthai', 207=>'paiyannoithai', 208=>'saraathai', 209=>'maihanakatthai', 210=>'saraaathai', 211=>'saraamthai', 212=>'saraithai', 213=>'saraiithai', 214=>'sarauethai', 215=>'saraueethai', 216=>'sarauthai', 217=>'sarauuthai', 218=>'phinthuthai', 219=>'.notdef', 220=>'.notdef', 221=>'.notdef', 222=>'.notdef', 223=>'bahtthai', 224=>'saraethai', 225=>'saraaethai', 226=>'saraothai', 227=>'saraaimaimuanthai', 228=>'saraaimaimalaithai', 229=>'lakkhangyaothai', 230=>'maiyamokthai', 231=>'maitaikhuthai', 232=>'maiekthai', 233=>'maithothai', 234=>'maitrithai', 235=>'maichattawathai', 236=>'thanthakhatthai', 237=>'nikhahitthai', 238=>'yamakkanthai', 239=>'fongmanthai', 240=>'zerothai', 241=>'onethai', 242=>'twothai', 243=>'threethai', 244=>'fourthai', 245=>'fivethai', 246=>'sixthai', 247=>'seventhai', 248=>'eightthai', 249=>'ninethai', 250=>'angkhankhuthai', 251=>'khomutthai', 252=>'.notdef', 253=>'.notdef', 254=>'.notdef', 255=>'.notdef'),
18419 18419
 
18420 18420
 // encoding map for: iso-8859-15
18421
-'iso-8859-15' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'Euro',165=>'yen',166=>'Scaron',167=>'section',168=>'scaron',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'Zcaron',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'zcaron',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'OE',189=>'oe',190=>'Ydieresis',191=>'questiondown',192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla',200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis',208=>'Eth',209=>'Ntilde',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply',216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Yacute',222=>'Thorn',223=>'germandbls',224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla',232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis',240=>'eth',241=>'ntilde',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide',248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'yacute',254=>'thorn',255=>'ydieresis'),
18421
+'iso-8859-15' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'.notdef', 129=>'.notdef', 130=>'.notdef', 131=>'.notdef', 132=>'.notdef', 133=>'.notdef', 134=>'.notdef', 135=>'.notdef', 136=>'.notdef', 137=>'.notdef', 138=>'.notdef', 139=>'.notdef', 140=>'.notdef', 141=>'.notdef', 142=>'.notdef', 143=>'.notdef', 144=>'.notdef', 145=>'.notdef', 146=>'.notdef', 147=>'.notdef', 148=>'.notdef', 149=>'.notdef', 150=>'.notdef', 151=>'.notdef', 152=>'.notdef', 153=>'.notdef', 154=>'.notdef', 155=>'.notdef', 156=>'.notdef', 157=>'.notdef', 158=>'.notdef', 159=>'.notdef', 160=>'space', 161=>'exclamdown', 162=>'cent', 163=>'sterling', 164=>'Euro', 165=>'yen', 166=>'Scaron', 167=>'section', 168=>'scaron', 169=>'copyright', 170=>'ordfeminine', 171=>'guillemotleft', 172=>'logicalnot', 173=>'hyphen', 174=>'registered', 175=>'macron', 176=>'degree', 177=>'plusminus', 178=>'twosuperior', 179=>'threesuperior', 180=>'Zcaron', 181=>'mu', 182=>'paragraph', 183=>'periodcentered', 184=>'zcaron', 185=>'onesuperior', 186=>'ordmasculine', 187=>'guillemotright', 188=>'OE', 189=>'oe', 190=>'Ydieresis', 191=>'questiondown', 192=>'Agrave', 193=>'Aacute', 194=>'Acircumflex', 195=>'Atilde', 196=>'Adieresis', 197=>'Aring', 198=>'AE', 199=>'Ccedilla', 200=>'Egrave', 201=>'Eacute', 202=>'Ecircumflex', 203=>'Edieresis', 204=>'Igrave', 205=>'Iacute', 206=>'Icircumflex', 207=>'Idieresis', 208=>'Eth', 209=>'Ntilde', 210=>'Ograve', 211=>'Oacute', 212=>'Ocircumflex', 213=>'Otilde', 214=>'Odieresis', 215=>'multiply', 216=>'Oslash', 217=>'Ugrave', 218=>'Uacute', 219=>'Ucircumflex', 220=>'Udieresis', 221=>'Yacute', 222=>'Thorn', 223=>'germandbls', 224=>'agrave', 225=>'aacute', 226=>'acircumflex', 227=>'atilde', 228=>'adieresis', 229=>'aring', 230=>'ae', 231=>'ccedilla', 232=>'egrave', 233=>'eacute', 234=>'ecircumflex', 235=>'edieresis', 236=>'igrave', 237=>'iacute', 238=>'icircumflex', 239=>'idieresis', 240=>'eth', 241=>'ntilde', 242=>'ograve', 243=>'oacute', 244=>'ocircumflex', 245=>'otilde', 246=>'odieresis', 247=>'divide', 248=>'oslash', 249=>'ugrave', 250=>'uacute', 251=>'ucircumflex', 252=>'udieresis', 253=>'yacute', 254=>'thorn', 255=>'ydieresis'),
18422 18422
 
18423 18423
 // encoding map for: iso-8859-16
18424
-'iso-8859-16' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'Aogonek',162=>'aogonek',163=>'Lslash',164=>'Euro',165=>'quotedblbase',166=>'Scaron',167=>'section',168=>'scaron',169=>'copyright',170=>'Scommaaccent',171=>'guillemotleft',172=>'Zacute',173=>'hyphen',174=>'zacute',175=>'Zdotaccent',176=>'degree',177=>'plusminus',178=>'Ccaron',179=>'lslash',180=>'Zcaron',181=>'quotedblright',182=>'paragraph',183=>'periodcentered',184=>'zcaron',185=>'ccaron',186=>'scommaaccent',187=>'guillemotright',188=>'OE',189=>'oe',190=>'Ydieresis',191=>'zdotaccent',192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Abreve',196=>'Adieresis',197=>'Cacute',198=>'AE',199=>'Ccedilla',200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis',208=>'Dcroat',209=>'Nacute',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Ohungarumlaut',214=>'Odieresis',215=>'Sacute',216=>'Uhungarumlaut',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Eogonek',222=>'Tcommaaccent',223=>'germandbls',224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'abreve',228=>'adieresis',229=>'cacute',230=>'ae',231=>'ccedilla',232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis',240=>'dcroat',241=>'nacute',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'ohungarumlaut',246=>'odieresis',247=>'sacute',248=>'uhungarumlaut',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'eogonek',254=>'tcommaaccent',255=>'ydieresis'),
18424
+'iso-8859-16' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'.notdef', 129=>'.notdef', 130=>'.notdef', 131=>'.notdef', 132=>'.notdef', 133=>'.notdef', 134=>'.notdef', 135=>'.notdef', 136=>'.notdef', 137=>'.notdef', 138=>'.notdef', 139=>'.notdef', 140=>'.notdef', 141=>'.notdef', 142=>'.notdef', 143=>'.notdef', 144=>'.notdef', 145=>'.notdef', 146=>'.notdef', 147=>'.notdef', 148=>'.notdef', 149=>'.notdef', 150=>'.notdef', 151=>'.notdef', 152=>'.notdef', 153=>'.notdef', 154=>'.notdef', 155=>'.notdef', 156=>'.notdef', 157=>'.notdef', 158=>'.notdef', 159=>'.notdef', 160=>'space', 161=>'Aogonek', 162=>'aogonek', 163=>'Lslash', 164=>'Euro', 165=>'quotedblbase', 166=>'Scaron', 167=>'section', 168=>'scaron', 169=>'copyright', 170=>'Scommaaccent', 171=>'guillemotleft', 172=>'Zacute', 173=>'hyphen', 174=>'zacute', 175=>'Zdotaccent', 176=>'degree', 177=>'plusminus', 178=>'Ccaron', 179=>'lslash', 180=>'Zcaron', 181=>'quotedblright', 182=>'paragraph', 183=>'periodcentered', 184=>'zcaron', 185=>'ccaron', 186=>'scommaaccent', 187=>'guillemotright', 188=>'OE', 189=>'oe', 190=>'Ydieresis', 191=>'zdotaccent', 192=>'Agrave', 193=>'Aacute', 194=>'Acircumflex', 195=>'Abreve', 196=>'Adieresis', 197=>'Cacute', 198=>'AE', 199=>'Ccedilla', 200=>'Egrave', 201=>'Eacute', 202=>'Ecircumflex', 203=>'Edieresis', 204=>'Igrave', 205=>'Iacute', 206=>'Icircumflex', 207=>'Idieresis', 208=>'Dcroat', 209=>'Nacute', 210=>'Ograve', 211=>'Oacute', 212=>'Ocircumflex', 213=>'Ohungarumlaut', 214=>'Odieresis', 215=>'Sacute', 216=>'Uhungarumlaut', 217=>'Ugrave', 218=>'Uacute', 219=>'Ucircumflex', 220=>'Udieresis', 221=>'Eogonek', 222=>'Tcommaaccent', 223=>'germandbls', 224=>'agrave', 225=>'aacute', 226=>'acircumflex', 227=>'abreve', 228=>'adieresis', 229=>'cacute', 230=>'ae', 231=>'ccedilla', 232=>'egrave', 233=>'eacute', 234=>'ecircumflex', 235=>'edieresis', 236=>'igrave', 237=>'iacute', 238=>'icircumflex', 239=>'idieresis', 240=>'dcroat', 241=>'nacute', 242=>'ograve', 243=>'oacute', 244=>'ocircumflex', 245=>'ohungarumlaut', 246=>'odieresis', 247=>'sacute', 248=>'uhungarumlaut', 249=>'ugrave', 250=>'uacute', 251=>'ucircumflex', 252=>'udieresis', 253=>'eogonek', 254=>'tcommaaccent', 255=>'ydieresis'),
18425 18425
 
18426 18426
 // encoding map for: koi8-r
18427
-'koi8-r' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'SF100000',129=>'SF110000',130=>'SF010000',131=>'SF030000',132=>'SF020000',133=>'SF040000',134=>'SF080000',135=>'SF090000',136=>'SF060000',137=>'SF070000',138=>'SF050000',139=>'upblock',140=>'dnblock',141=>'block',142=>'lfblock',143=>'rtblock',144=>'ltshade',145=>'shade',146=>'dkshade',147=>'integraltp',148=>'filledbox',149=>'periodcentered',150=>'radical',151=>'approxequal',152=>'lessequal',153=>'greaterequal',154=>'space',155=>'integralbt',156=>'degree',157=>'twosuperior',158=>'periodcentered',159=>'divide',160=>'SF430000',161=>'SF240000',162=>'SF510000',163=>'afii10071',164=>'SF520000',165=>'SF390000',166=>'SF220000',167=>'SF210000',168=>'SF250000',169=>'SF500000',170=>'SF490000',171=>'SF380000',172=>'SF280000',173=>'SF270000',174=>'SF260000',175=>'SF360000',176=>'SF370000',177=>'SF420000',178=>'SF190000',179=>'afii10023',180=>'SF200000',181=>'SF230000',182=>'SF470000',183=>'SF480000',184=>'SF410000',185=>'SF450000',186=>'SF460000',187=>'SF400000',188=>'SF540000',189=>'SF530000',190=>'SF440000',191=>'copyright',192=>'afii10096',193=>'afii10065',194=>'afii10066',195=>'afii10088',196=>'afii10069',197=>'afii10070',198=>'afii10086',199=>'afii10068',200=>'afii10087',201=>'afii10074',202=>'afii10075',203=>'afii10076',204=>'afii10077',205=>'afii10078',206=>'afii10079',207=>'afii10080',208=>'afii10081',209=>'afii10097',210=>'afii10082',211=>'afii10083',212=>'afii10084',213=>'afii10085',214=>'afii10072',215=>'afii10067',216=>'afii10094',217=>'afii10093',218=>'afii10073',219=>'afii10090',220=>'afii10095',221=>'afii10091',222=>'afii10089',223=>'afii10092',224=>'afii10048',225=>'afii10017',226=>'afii10018',227=>'afii10040',228=>'afii10021',229=>'afii10022',230=>'afii10038',231=>'afii10020',232=>'afii10039',233=>'afii10026',234=>'afii10027',235=>'afii10028',236=>'afii10029',237=>'afii10030',238=>'afii10031',239=>'afii10032',240=>'afii10033',241=>'afii10049',242=>'afii10034',243=>'afii10035',244=>'afii10036',245=>'afii10037',246=>'afii10024',247=>'afii10019',248=>'afii10046',249=>'afii10045',250=>'afii10025',251=>'afii10042',252=>'afii10047',253=>'afii10043',254=>'afii10041',255=>'afii10044'),
18427
+'koi8-r' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'SF100000', 129=>'SF110000', 130=>'SF010000', 131=>'SF030000', 132=>'SF020000', 133=>'SF040000', 134=>'SF080000', 135=>'SF090000', 136=>'SF060000', 137=>'SF070000', 138=>'SF050000', 139=>'upblock', 140=>'dnblock', 141=>'block', 142=>'lfblock', 143=>'rtblock', 144=>'ltshade', 145=>'shade', 146=>'dkshade', 147=>'integraltp', 148=>'filledbox', 149=>'periodcentered', 150=>'radical', 151=>'approxequal', 152=>'lessequal', 153=>'greaterequal', 154=>'space', 155=>'integralbt', 156=>'degree', 157=>'twosuperior', 158=>'periodcentered', 159=>'divide', 160=>'SF430000', 161=>'SF240000', 162=>'SF510000', 163=>'afii10071', 164=>'SF520000', 165=>'SF390000', 166=>'SF220000', 167=>'SF210000', 168=>'SF250000', 169=>'SF500000', 170=>'SF490000', 171=>'SF380000', 172=>'SF280000', 173=>'SF270000', 174=>'SF260000', 175=>'SF360000', 176=>'SF370000', 177=>'SF420000', 178=>'SF190000', 179=>'afii10023', 180=>'SF200000', 181=>'SF230000', 182=>'SF470000', 183=>'SF480000', 184=>'SF410000', 185=>'SF450000', 186=>'SF460000', 187=>'SF400000', 188=>'SF540000', 189=>'SF530000', 190=>'SF440000', 191=>'copyright', 192=>'afii10096', 193=>'afii10065', 194=>'afii10066', 195=>'afii10088', 196=>'afii10069', 197=>'afii10070', 198=>'afii10086', 199=>'afii10068', 200=>'afii10087', 201=>'afii10074', 202=>'afii10075', 203=>'afii10076', 204=>'afii10077', 205=>'afii10078', 206=>'afii10079', 207=>'afii10080', 208=>'afii10081', 209=>'afii10097', 210=>'afii10082', 211=>'afii10083', 212=>'afii10084', 213=>'afii10085', 214=>'afii10072', 215=>'afii10067', 216=>'afii10094', 217=>'afii10093', 218=>'afii10073', 219=>'afii10090', 220=>'afii10095', 221=>'afii10091', 222=>'afii10089', 223=>'afii10092', 224=>'afii10048', 225=>'afii10017', 226=>'afii10018', 227=>'afii10040', 228=>'afii10021', 229=>'afii10022', 230=>'afii10038', 231=>'afii10020', 232=>'afii10039', 233=>'afii10026', 234=>'afii10027', 235=>'afii10028', 236=>'afii10029', 237=>'afii10030', 238=>'afii10031', 239=>'afii10032', 240=>'afii10033', 241=>'afii10049', 242=>'afii10034', 243=>'afii10035', 244=>'afii10036', 245=>'afii10037', 246=>'afii10024', 247=>'afii10019', 248=>'afii10046', 249=>'afii10045', 250=>'afii10025', 251=>'afii10042', 252=>'afii10047', 253=>'afii10043', 254=>'afii10041', 255=>'afii10044'),
18428 18428
 
18429 18429
 // encoding map for: koi8-u
18430
-'koi8-u' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'SF100000',129=>'SF110000',130=>'SF010000',131=>'SF030000',132=>'SF020000',133=>'SF040000',134=>'SF080000',135=>'SF090000',136=>'SF060000',137=>'SF070000',138=>'SF050000',139=>'upblock',140=>'dnblock',141=>'block',142=>'lfblock',143=>'rtblock',144=>'ltshade',145=>'shade',146=>'dkshade',147=>'integraltp',148=>'filledbox',149=>'bullet',150=>'radical',151=>'approxequal',152=>'lessequal',153=>'greaterequal',154=>'space',155=>'integralbt',156=>'degree',157=>'twosuperior',158=>'periodcentered',159=>'divide',160=>'SF430000',161=>'SF240000',162=>'SF510000',163=>'afii10071',164=>'afii10101',165=>'SF390000',166=>'afii10103',167=>'afii10104',168=>'SF250000',169=>'SF500000',170=>'SF490000',171=>'SF380000',172=>'SF280000',173=>'afii10098',174=>'SF260000',175=>'SF360000',176=>'SF370000',177=>'SF420000',178=>'SF190000',179=>'afii10023',180=>'afii10053',181=>'SF230000',182=>'afii10055',183=>'afii10056',184=>'SF410000',185=>'SF450000',186=>'SF460000',187=>'SF400000',188=>'SF540000',189=>'afii10050',190=>'SF440000',191=>'copyright',192=>'afii10096',193=>'afii10065',194=>'afii10066',195=>'afii10088',196=>'afii10069',197=>'afii10070',198=>'afii10086',199=>'afii10068',200=>'afii10087',201=>'afii10074',202=>'afii10075',203=>'afii10076',204=>'afii10077',205=>'afii10078',206=>'afii10079',207=>'afii10080',208=>'afii10081',209=>'afii10097',210=>'afii10082',211=>'afii10083',212=>'afii10084',213=>'afii10085',214=>'afii10072',215=>'afii10067',216=>'afii10094',217=>'afii10093',218=>'afii10073',219=>'afii10090',220=>'afii10095',221=>'afii10091',222=>'afii10089',223=>'afii10092',224=>'afii10048',225=>'afii10017',226=>'afii10018',227=>'afii10040',228=>'afii10021',229=>'afii10022',230=>'afii10038',231=>'afii10020',232=>'afii10039',233=>'afii10026',234=>'afii10027',235=>'afii10028',236=>'afii10029',237=>'afii10030',238=>'afii10031',239=>'afii10032',240=>'afii10033',241=>'afii10049',242=>'afii10034',243=>'afii10035',244=>'afii10036',245=>'afii10037',246=>'afii10024',247=>'afii10019',248=>'afii10046',249=>'afii10045',250=>'afii10025',251=>'afii10042',252=>'afii10047',253=>'afii10043',254=>'afii10041',255=>'afii10044'),
18430
+'koi8-u' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'quotedbl', 35=>'numbersign', 36=>'dollar', 37=>'percent', 38=>'ampersand', 39=>'quotesingle', 40=>'parenleft', 41=>'parenright', 42=>'asterisk', 43=>'plus', 44=>'comma', 45=>'hyphen', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'at', 65=>'A', 66=>'B', 67=>'C', 68=>'D', 69=>'E', 70=>'F', 71=>'G', 72=>'H', 73=>'I', 74=>'J', 75=>'K', 76=>'L', 77=>'M', 78=>'N', 79=>'O', 80=>'P', 81=>'Q', 82=>'R', 83=>'S', 84=>'T', 85=>'U', 86=>'V', 87=>'W', 88=>'X', 89=>'Y', 90=>'Z', 91=>'bracketleft', 92=>'backslash', 93=>'bracketright', 94=>'asciicircum', 95=>'underscore', 96=>'grave', 97=>'a', 98=>'b', 99=>'c', 100=>'d', 101=>'e', 102=>'f', 103=>'g', 104=>'h', 105=>'i', 106=>'j', 107=>'k', 108=>'l', 109=>'m', 110=>'n', 111=>'o', 112=>'p', 113=>'q', 114=>'r', 115=>'s', 116=>'t', 117=>'u', 118=>'v', 119=>'w', 120=>'x', 121=>'y', 122=>'z', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'asciitilde', 127=>'.notdef', 128=>'SF100000', 129=>'SF110000', 130=>'SF010000', 131=>'SF030000', 132=>'SF020000', 133=>'SF040000', 134=>'SF080000', 135=>'SF090000', 136=>'SF060000', 137=>'SF070000', 138=>'SF050000', 139=>'upblock', 140=>'dnblock', 141=>'block', 142=>'lfblock', 143=>'rtblock', 144=>'ltshade', 145=>'shade', 146=>'dkshade', 147=>'integraltp', 148=>'filledbox', 149=>'bullet', 150=>'radical', 151=>'approxequal', 152=>'lessequal', 153=>'greaterequal', 154=>'space', 155=>'integralbt', 156=>'degree', 157=>'twosuperior', 158=>'periodcentered', 159=>'divide', 160=>'SF430000', 161=>'SF240000', 162=>'SF510000', 163=>'afii10071', 164=>'afii10101', 165=>'SF390000', 166=>'afii10103', 167=>'afii10104', 168=>'SF250000', 169=>'SF500000', 170=>'SF490000', 171=>'SF380000', 172=>'SF280000', 173=>'afii10098', 174=>'SF260000', 175=>'SF360000', 176=>'SF370000', 177=>'SF420000', 178=>'SF190000', 179=>'afii10023', 180=>'afii10053', 181=>'SF230000', 182=>'afii10055', 183=>'afii10056', 184=>'SF410000', 185=>'SF450000', 186=>'SF460000', 187=>'SF400000', 188=>'SF540000', 189=>'afii10050', 190=>'SF440000', 191=>'copyright', 192=>'afii10096', 193=>'afii10065', 194=>'afii10066', 195=>'afii10088', 196=>'afii10069', 197=>'afii10070', 198=>'afii10086', 199=>'afii10068', 200=>'afii10087', 201=>'afii10074', 202=>'afii10075', 203=>'afii10076', 204=>'afii10077', 205=>'afii10078', 206=>'afii10079', 207=>'afii10080', 208=>'afii10081', 209=>'afii10097', 210=>'afii10082', 211=>'afii10083', 212=>'afii10084', 213=>'afii10085', 214=>'afii10072', 215=>'afii10067', 216=>'afii10094', 217=>'afii10093', 218=>'afii10073', 219=>'afii10090', 220=>'afii10095', 221=>'afii10091', 222=>'afii10089', 223=>'afii10092', 224=>'afii10048', 225=>'afii10017', 226=>'afii10018', 227=>'afii10040', 228=>'afii10021', 229=>'afii10022', 230=>'afii10038', 231=>'afii10020', 232=>'afii10039', 233=>'afii10026', 234=>'afii10027', 235=>'afii10028', 236=>'afii10029', 237=>'afii10030', 238=>'afii10031', 239=>'afii10032', 240=>'afii10033', 241=>'afii10049', 242=>'afii10034', 243=>'afii10035', 244=>'afii10036', 245=>'afii10037', 246=>'afii10024', 247=>'afii10019', 248=>'afii10046', 249=>'afii10045', 250=>'afii10025', 251=>'afii10042', 252=>'afii10047', 253=>'afii10043', 254=>'afii10041', 255=>'afii10044'),
18431 18431
 
18432 18432
 // encoding map for: symbol
18433
-'symbol' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'universal',35=>'numbersign',36=>'existential',37=>'percent',38=>'ampersand',39=>'suchthat',40=>'parenleft',41=>'parenright',42=>'asteriskmath',43=>'plus',44=>'comma',45=>'minus',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'congruent',65=>'Alpha',66=>'Beta',67=>'Chi',68=>'Delta',69=>'Epsilon',70=>'Phi',71=>'Gamma',72=>'Eta',73=>'Iota',74=>'theta1',75=>'Kappa',76=>'Lambda',77=>'Mu',78=>'Nu',79=>'Omicron',80=>'Pi',81=>'Theta',82=>'Rho',83=>'Sigma',84=>'Tau',85=>'Upsilon',86=>'sigma1',87=>'Omega',88=>'Xi',89=>'Psi',90=>'Zeta',91=>'bracketleft',92=>'therefore',93=>'bracketright',94=>'perpendicular',95=>'underscore',96=>'radicalex',97=>'alpha',98=>'beta',99=>'chi',100=>'delta',101=>'epsilon',102=>'phi',103=>'gamma',104=>'eta',105=>'iota',106=>'phi1',107=>'kappa',108=>'lambda',109=>'mu',110=>'nu',111=>'omicron',112=>'pi',113=>'theta',114=>'rho',115=>'sigma',116=>'tau',117=>'upsilon',118=>'omega1',119=>'omega',120=>'xi',121=>'psi',122=>'zeta',123=>'braceleft',124=>'bar',125=>'braceright',126=>'similar',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'Euro',161=>'Upsilon1',162=>'minute',163=>'lessequal',164=>'fraction',165=>'infinity',166=>'florin',167=>'club',168=>'diamond',169=>'heart',170=>'spade',171=>'arrowboth',172=>'arrowleft',173=>'arrowup',174=>'arrowright',175=>'arrowdown',176=>'degree',177=>'plusminus',178=>'second',179=>'greaterequal',180=>'multiply',181=>'proportional',182=>'partialdiff',183=>'bullet',184=>'divide',185=>'notequal',186=>'equivalence',187=>'approxequal',188=>'ellipsis',189=>'arrowvertex',190=>'arrowhorizex',191=>'carriagereturn',192=>'aleph',193=>'Ifraktur',194=>'Rfraktur',195=>'weierstrass',196=>'circlemultiply',197=>'circleplus',198=>'emptyset',199=>'intersection',200=>'union',201=>'propersuperset',202=>'reflexsuperset',203=>'notsubset',204=>'propersubset',205=>'reflexsubset',206=>'element',207=>'notelement',208=>'angle',209=>'gradient',210=>'registerserif',211=>'copyrightserif',212=>'trademarkserif',213=>'product',214=>'radical',215=>'dotmath',216=>'logicalnot',217=>'logicaland',218=>'logicalor',219=>'arrowdblboth',220=>'arrowdblleft',221=>'arrowdblup',222=>'arrowdblright',223=>'arrowdbldown',224=>'lozenge',225=>'angleleft',226=>'registersans',227=>'copyrightsans',228=>'trademarksans',229=>'summation',230=>'parenlefttp',231=>'parenleftex',232=>'parenleftbt',233=>'bracketlefttp',234=>'bracketleftex',235=>'bracketleftbt',236=>'bracelefttp',237=>'braceleftmid',238=>'braceleftbt',239=>'braceex',240=>'.notdef',241=>'angleright',242=>'integral',243=>'integraltp',244=>'integralex',245=>'integralbt',246=>'parenrighttp',247=>'parenrightex',248=>'parenrightbt',249=>'bracketrighttp',250=>'bracketrightex',251=>'bracketrightbt',252=>'bracerighttp',253=>'bracerightmid',254=>'bracerightbt',255=>'.notdef',1226=>'registered',1227=>'copyright',1228=>'trademark')
18433
+'symbol' => array(0=>'.notdef', 1=>'.notdef', 2=>'.notdef', 3=>'.notdef', 4=>'.notdef', 5=>'.notdef', 6=>'.notdef', 7=>'.notdef', 8=>'.notdef', 9=>'.notdef', 10=>'.notdef', 11=>'.notdef', 12=>'.notdef', 13=>'.notdef', 14=>'.notdef', 15=>'.notdef', 16=>'.notdef', 17=>'.notdef', 18=>'.notdef', 19=>'.notdef', 20=>'.notdef', 21=>'.notdef', 22=>'.notdef', 23=>'.notdef', 24=>'.notdef', 25=>'.notdef', 26=>'.notdef', 27=>'.notdef', 28=>'.notdef', 29=>'.notdef', 30=>'.notdef', 31=>'.notdef', 32=>'space', 33=>'exclam', 34=>'universal', 35=>'numbersign', 36=>'existential', 37=>'percent', 38=>'ampersand', 39=>'suchthat', 40=>'parenleft', 41=>'parenright', 42=>'asteriskmath', 43=>'plus', 44=>'comma', 45=>'minus', 46=>'period', 47=>'slash', 48=>'zero', 49=>'one', 50=>'two', 51=>'three', 52=>'four', 53=>'five', 54=>'six', 55=>'seven', 56=>'eight', 57=>'nine', 58=>'colon', 59=>'semicolon', 60=>'less', 61=>'equal', 62=>'greater', 63=>'question', 64=>'congruent', 65=>'Alpha', 66=>'Beta', 67=>'Chi', 68=>'Delta', 69=>'Epsilon', 70=>'Phi', 71=>'Gamma', 72=>'Eta', 73=>'Iota', 74=>'theta1', 75=>'Kappa', 76=>'Lambda', 77=>'Mu', 78=>'Nu', 79=>'Omicron', 80=>'Pi', 81=>'Theta', 82=>'Rho', 83=>'Sigma', 84=>'Tau', 85=>'Upsilon', 86=>'sigma1', 87=>'Omega', 88=>'Xi', 89=>'Psi', 90=>'Zeta', 91=>'bracketleft', 92=>'therefore', 93=>'bracketright', 94=>'perpendicular', 95=>'underscore', 96=>'radicalex', 97=>'alpha', 98=>'beta', 99=>'chi', 100=>'delta', 101=>'epsilon', 102=>'phi', 103=>'gamma', 104=>'eta', 105=>'iota', 106=>'phi1', 107=>'kappa', 108=>'lambda', 109=>'mu', 110=>'nu', 111=>'omicron', 112=>'pi', 113=>'theta', 114=>'rho', 115=>'sigma', 116=>'tau', 117=>'upsilon', 118=>'omega1', 119=>'omega', 120=>'xi', 121=>'psi', 122=>'zeta', 123=>'braceleft', 124=>'bar', 125=>'braceright', 126=>'similar', 127=>'.notdef', 128=>'.notdef', 129=>'.notdef', 130=>'.notdef', 131=>'.notdef', 132=>'.notdef', 133=>'.notdef', 134=>'.notdef', 135=>'.notdef', 136=>'.notdef', 137=>'.notdef', 138=>'.notdef', 139=>'.notdef', 140=>'.notdef', 141=>'.notdef', 142=>'.notdef', 143=>'.notdef', 144=>'.notdef', 145=>'.notdef', 146=>'.notdef', 147=>'.notdef', 148=>'.notdef', 149=>'.notdef', 150=>'.notdef', 151=>'.notdef', 152=>'.notdef', 153=>'.notdef', 154=>'.notdef', 155=>'.notdef', 156=>'.notdef', 157=>'.notdef', 158=>'.notdef', 159=>'.notdef', 160=>'Euro', 161=>'Upsilon1', 162=>'minute', 163=>'lessequal', 164=>'fraction', 165=>'infinity', 166=>'florin', 167=>'club', 168=>'diamond', 169=>'heart', 170=>'spade', 171=>'arrowboth', 172=>'arrowleft', 173=>'arrowup', 174=>'arrowright', 175=>'arrowdown', 176=>'degree', 177=>'plusminus', 178=>'second', 179=>'greaterequal', 180=>'multiply', 181=>'proportional', 182=>'partialdiff', 183=>'bullet', 184=>'divide', 185=>'notequal', 186=>'equivalence', 187=>'approxequal', 188=>'ellipsis', 189=>'arrowvertex', 190=>'arrowhorizex', 191=>'carriagereturn', 192=>'aleph', 193=>'Ifraktur', 194=>'Rfraktur', 195=>'weierstrass', 196=>'circlemultiply', 197=>'circleplus', 198=>'emptyset', 199=>'intersection', 200=>'union', 201=>'propersuperset', 202=>'reflexsuperset', 203=>'notsubset', 204=>'propersubset', 205=>'reflexsubset', 206=>'element', 207=>'notelement', 208=>'angle', 209=>'gradient', 210=>'registerserif', 211=>'copyrightserif', 212=>'trademarkserif', 213=>'product', 214=>'radical', 215=>'dotmath', 216=>'logicalnot', 217=>'logicaland', 218=>'logicalor', 219=>'arrowdblboth', 220=>'arrowdblleft', 221=>'arrowdblup', 222=>'arrowdblright', 223=>'arrowdbldown', 224=>'lozenge', 225=>'angleleft', 226=>'registersans', 227=>'copyrightsans', 228=>'trademarksans', 229=>'summation', 230=>'parenlefttp', 231=>'parenleftex', 232=>'parenleftbt', 233=>'bracketlefttp', 234=>'bracketleftex', 235=>'bracketleftbt', 236=>'bracelefttp', 237=>'braceleftmid', 238=>'braceleftbt', 239=>'braceex', 240=>'.notdef', 241=>'angleright', 242=>'integral', 243=>'integraltp', 244=>'integralex', 245=>'integralbt', 246=>'parenrighttp', 247=>'parenrightex', 248=>'parenrightbt', 249=>'bracketrighttp', 250=>'bracketrightex', 251=>'bracketrightbt', 252=>'bracerighttp', 253=>'bracerightmid', 254=>'bracerightbt', 255=>'.notdef', 1226=>'registered', 1227=>'copyright', 1228=>'trademark')
18434 18434
 
18435 18435
 ); // end of encoding maps
18436 18436
 
Please login to merge, or discard this patch.
htdocs/includes/tecnickcom/tcpdf/include/tcpdf_filters.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
 		// position inside a group of 4 bytes (0-3)
215 215
 		$group_pos = 0;
216 216
 		$tuple = 0;
217
-		$pow85 = array((85*85*85*85), (85*85*85), (85*85), 85, 1);
217
+		$pow85 = array((85 * 85 * 85 * 85), (85 * 85 * 85), (85 * 85), 85, 1);
218 218
 		$last_pos = ($data_length - 1);
219 219
 		// for each byte
220 220
 		for ($i = 0; $i < $data_length; ++$i) {
@@ -374,7 +374,7 @@  discard block
 block discarded – undo
374 374
 		// data length
375 375
 		$data_length = strlen($data);
376 376
 		$i = 0;
377
-		while($i < $data_length) {
377
+		while ($i < $data_length) {
378 378
 			// get current byte value
379 379
 			$byte = ord($data[$i]);
380 380
 			if ($byte == 128) {
Please login to merge, or discard this patch.
htdocs/includes/tecnickcom/tcpdf/config/tcpdf_config.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -84,102 +84,102 @@  discard block
 block discarded – undo
84 84
 /**
85 85
  * Generic name for a blank image.
86 86
  */
87
-define ('K_BLANK_IMAGE', '_blank.png');
87
+define('K_BLANK_IMAGE', '_blank.png');
88 88
 
89 89
 /**
90 90
  * Page format.
91 91
  */
92
-define ('PDF_PAGE_FORMAT', 'A4');
92
+define('PDF_PAGE_FORMAT', 'A4');
93 93
 
94 94
 /**
95 95
  * Page orientation (P=portrait, L=landscape).
96 96
  */
97
-define ('PDF_PAGE_ORIENTATION', 'P');
97
+define('PDF_PAGE_ORIENTATION', 'P');
98 98
 
99 99
 /**
100 100
  * Document creator.
101 101
  */
102
-define ('PDF_CREATOR', 'TCPDF');
102
+define('PDF_CREATOR', 'TCPDF');
103 103
 
104 104
 /**
105 105
  * Document author.
106 106
  */
107
-define ('PDF_AUTHOR', 'TCPDF');
107
+define('PDF_AUTHOR', 'TCPDF');
108 108
 
109 109
 /**
110 110
  * Header title.
111 111
  */
112
-define ('PDF_HEADER_TITLE', 'TCPDF Example');
112
+define('PDF_HEADER_TITLE', 'TCPDF Example');
113 113
 
114 114
 /**
115 115
  * Header description string.
116 116
  */
117
-define ('PDF_HEADER_STRING', "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org");
117
+define('PDF_HEADER_STRING', "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org");
118 118
 
119 119
 /**
120 120
  * Document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch].
121 121
  */
122
-define ('PDF_UNIT', 'mm');
122
+define('PDF_UNIT', 'mm');
123 123
 
124 124
 /**
125 125
  * Header margin.
126 126
  */
127
-define ('PDF_MARGIN_HEADER', 5);
127
+define('PDF_MARGIN_HEADER', 5);
128 128
 
129 129
 /**
130 130
  * Footer margin.
131 131
  */
132
-define ('PDF_MARGIN_FOOTER', 10);
132
+define('PDF_MARGIN_FOOTER', 10);
133 133
 
134 134
 /**
135 135
  * Top margin.
136 136
  */
137
-define ('PDF_MARGIN_TOP', 27);
137
+define('PDF_MARGIN_TOP', 27);
138 138
 
139 139
 /**
140 140
  * Bottom margin.
141 141
  */
142
-define ('PDF_MARGIN_BOTTOM', 25);
142
+define('PDF_MARGIN_BOTTOM', 25);
143 143
 
144 144
 /**
145 145
  * Left margin.
146 146
  */
147
-define ('PDF_MARGIN_LEFT', 15);
147
+define('PDF_MARGIN_LEFT', 15);
148 148
 
149 149
 /**
150 150
  * Right margin.
151 151
  */
152
-define ('PDF_MARGIN_RIGHT', 15);
152
+define('PDF_MARGIN_RIGHT', 15);
153 153
 
154 154
 /**
155 155
  * Default main font name.
156 156
  */
157
-define ('PDF_FONT_NAME_MAIN', 'helvetica');
157
+define('PDF_FONT_NAME_MAIN', 'helvetica');
158 158
 
159 159
 /**
160 160
  * Default main font size.
161 161
  */
162
-define ('PDF_FONT_SIZE_MAIN', 10);
162
+define('PDF_FONT_SIZE_MAIN', 10);
163 163
 
164 164
 /**
165 165
  * Default data font name.
166 166
  */
167
-define ('PDF_FONT_NAME_DATA', 'helvetica');
167
+define('PDF_FONT_NAME_DATA', 'helvetica');
168 168
 
169 169
 /**
170 170
  * Default data font size.
171 171
  */
172
-define ('PDF_FONT_SIZE_DATA', 8);
172
+define('PDF_FONT_SIZE_DATA', 8);
173 173
 
174 174
 /**
175 175
  * Default monospaced font name.
176 176
  */
177
-define ('PDF_FONT_MONOSPACED', 'courier');
177
+define('PDF_FONT_MONOSPACED', 'courier');
178 178
 
179 179
 /**
180 180
  * Ratio used to adjust the conversion of pixels to user units.
181 181
  */
182
-define ('PDF_IMAGE_SCALE_RATIO', 1.25);
182
+define('PDF_IMAGE_SCALE_RATIO', 1.25);
183 183
 
184 184
 /**
185 185
  * Magnification factor for titles.
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
 /**
200 200
  * Reduction factor for small font.
201 201
  */
202
-define('K_SMALL_RATIO', 2/3);
202
+define('K_SMALL_RATIO', 2 / 3);
203 203
 
204 204
 /**
205 205
  * Set to true to enable the special procedure used to avoid the overlappind of symbols on Thai language.
Please login to merge, or discard this patch.