paygate-ruby 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 94ae69b205891118dbdcf53110677f1d1eb145f8
4
+ data.tar.gz: a14d5e2e97db1fedb38d78bf172c4d81b1bd4932
5
+ SHA512:
6
+ metadata.gz: 07ed664ec754e7053cee81863a115a636ac653e574fd5d98eaacee595bc64636c3452a270aa822ec566c3b1be75172562104a701803534ae1b47819d539b16d0
7
+ data.tar.gz: 065a10db16ac830a4eab4c04bcc0a7c1b3c484ad45038c5921f9f0ccabd780a13e4ebe8549cbe0475491483097968775bb7faad25bb6d53c5f269e52f0c6b265
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at jagdeep.singh@vinsol.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in paygate-ruby.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 jagdeepsingh
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,287 @@
1
+ # paygate-ruby
2
+
3
+ `paygate-ruby` is a simple Ruby wrapper for [PayGate payment gateway](http://www.paygate.net/)'s OpenPayAPI.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'paygate-ruby'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install paygate-ruby
20
+
21
+ ## Usage
22
+
23
+ To start making the transactions on PayGate, you will need a Member ID and a Secret, for which you can register [here](https://admin.paygate.net/front/regist/registMember.jsp?lang=us).
24
+
25
+ After a successful registration, you will have access to the [dashboard](https://admin.paygate.net/front/board/welcome.jsp).
26
+
27
+ NOTE: Unless otherwise stated, all the following documentation is for making payments with Korean local credit cards in currency 'WON'.
28
+
29
+ Contents:
30
+ - [1 Purchase](#1-purchase)
31
+ - [2 Cancel](#2-cancel)
32
+ - [3 Profile Pay](#3-profile-pay)
33
+
34
+ ### 1 Purchase
35
+
36
+ #### 1.1 Include javascript
37
+
38
+ Include the _OpenPayAPI.js_ in `<head>` of your payment page.
39
+
40
+ ```slim
41
+ = javascript_include_tag paygate_open_pay_api_js_url
42
+ ```
43
+
44
+ #### 1.2 Payment form
45
+
46
+ Render the PayGate payment form in your view file.
47
+
48
+ ```slim
49
+ = paygate_open_pay_api_form
50
+ ```
51
+
52
+ You will see a form with all the necessary fields for making payment with a credit card. Some of the fields have default values set. You can also set the value and placeholder for almost all the fields while rendering the form. See example below:
53
+
54
+ ```slim
55
+ / payment.html.slim
56
+ = paygate_open_pay_api_form(\
57
+ mid: { value: 'testmid', placeholder: 'Merchant ID' },
58
+ currency: { value: 'USD' },
59
+ amount: { value: 2000 }\
60
+ )
61
+ ```
62
+
63
+ Here is a list of all the form fields which you can set:
64
+ - mid
65
+ - locale (default: 'US')
66
+ - charset (default: 'UTF-8')
67
+ - title
68
+ - currency (default: 'WON')
69
+ - amount
70
+ - pay_method (default: 'card')
71
+ - customer_name
72
+ - customer_email
73
+ - card_number
74
+ - expiry_year
75
+ - expiry_month
76
+ - cvv
77
+
78
+ The form also contains some fields which will are filled after the response is returned by the API. They are:
79
+ - card_auth_code
80
+ - response_code
81
+ - response_message
82
+ - tid
83
+ - profile_no
84
+ - hash_result
85
+
86
+ Lets explore some of these fields more.
87
+
88
+ **mid**
89
+
90
+ You need to set your Member ID in this field.
91
+
92
+ If you have setup separate Member IDs for Korean and International cards, you can fill the value of `mid` accordingly. To know whether the credit card number entered by a customer is Korean or not, you can check the first 6 digits of card number to match Korean BIN numbers. Full list is available as `Paygate::KOREA_BIN_NUMBERS`.
93
+
94
+ **pay_method**
95
+
96
+ Value of `pay_method` for Korean cards should be set to "card" and for international cards, it should be "104".
97
+
98
+ **locale**
99
+
100
+ Use `Paygate.mapped_locale` to get the locale in correct format for the form input.
101
+
102
+ ```ruby
103
+ Paygate.mapped_locale(:en)
104
+ => 'US'
105
+
106
+ Paygate.mapped_locale('ko')
107
+ => 'KR'
108
+ ```
109
+
110
+ Valid inputs are "en", "en-US", "ko", "ko-KR", "ja", "zh-CN" and their symbolized versions. Passing `nil` would return default locale i.e. "US".
111
+
112
+ **currency**
113
+
114
+ Use `Paygate.mapped_currency` to get the currency in the correct format.
115
+
116
+ ```ruby
117
+ Paygate.mapped_currency('USD')
118
+ => 'USD'
119
+
120
+ Paygate.mapped_currency('KRW')
121
+ => 'WON'
122
+ ```
123
+
124
+ Passing `nil` above would return default currency i.e. "WON".
125
+
126
+ **amount**
127
+
128
+ You need to contact PayGate to know the correct amount for making a successful transaction in test mode.
129
+
130
+ Remember, in test mode too, PayGate makes real transactions and you need to cancel them for the refunds.
131
+
132
+ **tid**
133
+
134
+ For every transaction a `tid` is created by PayGate JS before making a request to the API.
135
+
136
+ **response_code**
137
+
138
+ This is filled automatically by PayGate JS when response is returned. A `response_code` of "0000" means successful transaction.
139
+
140
+ **response_message**
141
+
142
+ In case of failure, you can see the error message returned by the API here.
143
+
144
+ **profile_no**
145
+
146
+ If Profile Payment Service is enabled on your Member ID, then you will get a subscription ID for customer in this field. You can use this `profile_no` to make payments for the same customer in future.
147
+
148
+ #### 1.3 Response screen
149
+
150
+ You also need to add a screen at the same HTML level as above form. OpenPayAPI popups for further authentication as well as the response from the API is displayed in this screen.
151
+
152
+ ```slim
153
+ = paygate_open_pay_api_screen
154
+ ```
155
+
156
+ #### 1.4 Callbacks
157
+
158
+ You also need to implement a few callbacks to handle the API response. Add these to your Javascript.
159
+
160
+ ```js
161
+ // This is called when a response is returned from PayGate API
162
+ function getPGIOresult() {
163
+ displayStatus(getPGIOElement('ResultScreen'));
164
+ verifyReceived(getPGIOElement('tid'), 'callbacksuccess', 'callbackfail');
165
+ }
166
+
167
+ // This is called when a response (success/failure) is returned from the API
168
+ function callbacksuccess() {
169
+ var replycode = getPGIOElement('replycode');
170
+
171
+ if (replycode == '0000') {
172
+ alert('Payment was successful');
173
+ } else {
174
+ alert('Payment failed with code: ' + replycode);
175
+ }
176
+ }
177
+
178
+ // This is called when there is a system error
179
+ function callbackfail() {
180
+ alert('System error. Please try again.');
181
+ }
182
+ ```
183
+
184
+ #### 1.5 Submit the form
185
+
186
+ Now finally, lets add an event to make a call to OpenPayAPI on submit of the form. If you are using jQuery, you can do it as follows:
187
+
188
+ ```js
189
+ $('form[name="PGIOForm"]').on('submit', function(event){
190
+ event.preventDefault();
191
+ doTransaction(document.PGIOForm);
192
+ })
193
+ ```
194
+
195
+ And, your payment form is all set to make payments.
196
+
197
+ ### 2 Cancel
198
+
199
+ Initialize a `Paygate::Member` instance using the Member ID and Secret you have.
200
+
201
+ ```ruby
202
+ member = Paygate::Member.new('testmid', 'secret')
203
+ => #<Paygate::Member:0x007f96bdb70f38 @mid="testmid", @secret="secret">
204
+ ```
205
+
206
+ `member` responds to methods `mid`, and `secret`.
207
+
208
+ ```ruby
209
+ member.mid
210
+ => "testmid"
211
+
212
+ member.secret
213
+ => "secret"
214
+ ```
215
+
216
+ Cancel the transaction.
217
+
218
+ ```ruby
219
+ response = member.cancel_transaction('testmid_123456.654321', amount: 1000)
220
+ => #<Paygate::Response:0x007fbf3d111940 @transaction_type=:cancel, @http_code="200", @message="OK", @body="callback({\"replyCode\":\"0000\",\"replyMessage\":\"Response has been completed\",\"content\":{\"object\":\"CancelAPI tid:testmid_123456.654321 SUCCESS payRsltCode:0000\"}})", @json={"replyCode"=>"0000", "replyMessage"=>"Response has been completed", "content"=>{"object"=>"CancelAPI tid:testmid_123456.654321 SUCCESS payRsltCode:0000"}}>
221
+ ```
222
+
223
+ Here, _testmid_123456.654321_ is `tid` of the transaction you want to cancel.
224
+
225
+ `response` provides some helpful accessor methods too.
226
+
227
+ ```ruby
228
+ response.transaction_type
229
+ => :cancel
230
+
231
+ response.http_code
232
+ => "200"
233
+
234
+ response.json
235
+ => {"replyCode"=>"0000", "replyMessage"=>"Response has been completed", "content"=>{"object"=>"CancelAPI tid:testmid_123456.654321 SUCCESS payRsltCode:0000"}}
236
+ ```
237
+
238
+ Apart from these it also responds to `message` and `body`.
239
+
240
+ ### 3 Profile Pay
241
+
242
+ You can use the `profile_no` returned from the OpenPayAPI after first payment by a customer to make future payments for him.
243
+
244
+ ```ruby
245
+ response = member.profile_pay('profile_1234567890', 'WON', 1000)
246
+
247
+ response.transaction_type
248
+ => :profile_pay
249
+
250
+ response.http_code
251
+ => "200"
252
+
253
+ response.json
254
+ => {"validecode"=>"00", "authcode"=>"12345678", "authdt"=>"20171120165728", "cardname"=>"BC \x00\x00\x00\x00", "cardnumber"=>"411111**********", "cardtype"=>"301310", "cardquota"=>"00", "cardexpiremonth"=>"11", "cardexpireyear"=>"2020", "merchantno"=>"12345678", "m_tid"=>nil, "paymethodname"=>"CARD_BASIC", "ReplyMsg"=>"\xBA\xBA\xBC\xBD\xC1\xC2\xC3\xC4 OK: 12345678", "ReplyCode"=>"0000", "receipttoname"=>"Test name\xC1\xD1\xB1\xB1\xC1\xA1", "receipttoemail"=>"dev@paygate.net", "subtotalprice"=>"1000", "transactionid"=>"testmid_123456.654321", "hashresult"=>"db1fdc6789cc8d088172b79ca680b3af8711e9fb32", "mb_serial_no"=>"\r\n"}
255
+ ```
256
+
257
+ ### 4 Javascript helpers
258
+
259
+ `paygate-ruby` also provides a Javascript class `Paygate` with some helper functions that can be used in your Javascript e.g.
260
+
261
+ - _openPayApiForm_ - Returns the payment form
262
+ - _openPayApiScreen_ - Returns the screen for paygate API response
263
+ - _findInputByName_ - Find an input field in payment form by name. Pass the _camelCased_ form of field names from section 1.2 above as arguments.
264
+ - _responseCode_
265
+ - _responseMessage_
266
+ - _tid_
267
+ - _profileNo_
268
+ - _fillInput_ - Accepts input name (_camelCased_) and a value to set
269
+ - _submitForm_ - Makes a call to PayGate API with the payment form inputs
270
+
271
+ ## Development
272
+
273
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
274
+
275
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
276
+
277
+ ## Contributing
278
+
279
+ Bug reports and pull requests are welcome on GitHub at https://github.com/jagdeepsingh/paygate-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
280
+
281
+ ## License
282
+
283
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
284
+
285
+ ## Code of Conduct
286
+
287
+ Everyone interacting in the Paygate project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/jagdeepsingh/paygate-ruby/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "paygate"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,2662 @@
1
+ ---
2
+ :locales:
3
+ en: &LOCALE_US 'US'
4
+ en-US: *LOCALE_US
5
+ ko: &LOCALE_KR 'KR'
6
+ ko-KR: *LOCALE_KR
7
+ ja: 'JP'
8
+ zh-CN: 'CN'
9
+
10
+ :intl:
11
+ :brands:
12
+ :visa: '2Z0'
13
+ :mastercard: '2Y0'
14
+ :jcb: '2J0'
15
+ :amex: '2A0'
16
+
17
+ :korea:
18
+ :bin_numbers:
19
+ - '526373'
20
+ - '946044'
21
+ - '655614'
22
+ - '525783'
23
+ - '422155'
24
+ - '461954'
25
+ - '517548'
26
+ - '517560'
27
+ - '553213'
28
+ - '553214'
29
+ - '553215'
30
+ - '553216'
31
+ - '553217'
32
+ - '553219'
33
+ - '553221'
34
+ - '553223'
35
+ - '553225'
36
+ - '900001'
37
+ - '900101'
38
+ - '486679'
39
+ - '558525'
40
+ - '942520'
41
+ - '943520'
42
+ - '944520'
43
+ - '945720'
44
+ - '947011'
45
+ - '947078'
46
+ - '942083'
47
+ - '621027'
48
+ - '553190'
49
+ - '625242'
50
+ - '440448'
51
+ - '558453'
52
+ - '514645'
53
+ - '624482'
54
+ - '629141'
55
+ - '949102'
56
+ - '518669'
57
+ - '521826'
58
+ - '553531'
59
+ - '947137'
60
+ - '459912'
61
+ - '944337'
62
+ - '945620'
63
+ - '941711'
64
+ - '941712'
65
+ - '942035'
66
+ - '948135'
67
+ - '411133'
68
+ - '536510'
69
+ - '949099'
70
+ - '411471'
71
+ - '942820'
72
+ - '945420'
73
+ - '626409'
74
+ - '941281'
75
+ - '944443'
76
+ - '356800'
77
+ - '356801'
78
+ - '356802'
79
+ - '356803'
80
+ - '411904'
81
+ - '420701'
82
+ - '420707'
83
+ - '433692'
84
+ - '433693'
85
+ - '459900'
86
+ - '459950'
87
+ - '464092'
88
+ - '518185'
89
+ - '518283'
90
+ - '540497'
91
+ - '543617'
92
+ - '941000'
93
+ - '941050'
94
+ - '405665'
95
+ - '949101'
96
+ - '941002'
97
+ - '942084'
98
+ - '430969'
99
+ - '430972'
100
+ - '941111'
101
+ - '941194'
102
+ - '941112'
103
+ - '941195'
104
+ - '406107'
105
+ - '944306'
106
+ - '559869'
107
+ - '356283'
108
+ - '379350'
109
+ - '379351'
110
+ - '430984'
111
+ - '538179'
112
+ - '553208'
113
+ - '518432'
114
+ - '521189'
115
+ - '522447'
116
+ - '624432'
117
+ - '624479'
118
+ - '624480'
119
+ - '945823'
120
+ - '944007'
121
+ - '944307'
122
+ - '443579'
123
+ - '525316'
124
+ - '940982'
125
+ - '834000'
126
+ - '834024'
127
+ - '834026'
128
+ - '949100'
129
+ - '512028'
130
+ - '522894'
131
+ - '920096'
132
+ - '941696'
133
+ - '944096'
134
+ - '944696'
135
+ - '379348'
136
+ - '379349'
137
+ - '943924'
138
+ - '944324'
139
+ - '945324'
140
+ - '554481'
141
+ - '401762'
142
+ - '401787'
143
+ - '404933'
144
+ - '404947'
145
+ - '544167'
146
+ - '544203'
147
+ - '559913'
148
+ - '559924'
149
+ - '949086'
150
+ - '949087'
151
+ - '949088'
152
+ - '949089'
153
+ - '519335'
154
+ - '940949'
155
+ - '536326'
156
+ - '624434'
157
+ - '521176'
158
+ - '948124'
159
+ - '949098'
160
+ - '945081'
161
+ - '920018'
162
+ - '941618'
163
+ - '944018'
164
+ - '480074'
165
+ - '523612'
166
+ - '536624'
167
+ - '557042'
168
+ - '516191'
169
+ - '516341'
170
+ - '516682'
171
+ - '516695'
172
+ - '550485'
173
+ - '942203'
174
+ - '942232'
175
+ - '942239'
176
+ - '949085'
177
+ - '944624'
178
+ - '947120'
179
+ - '947950'
180
+ - '544082'
181
+ - '546596'
182
+ - '548811'
183
+ - '548816'
184
+ - '624440'
185
+ - '624441'
186
+ - '624442'
187
+ - '624443'
188
+ - '624444'
189
+ - '942086'
190
+ - '942087'
191
+ - '942088'
192
+ - '942093'
193
+ - '942094'
194
+ - '942096'
195
+ - '516453'
196
+ - '356416'
197
+ - '949090'
198
+ - '400124'
199
+ - '516006'
200
+ - '941724'
201
+ - '356454'
202
+ - '443567'
203
+ - '443569'
204
+ - '524028'
205
+ - '554648'
206
+ - '624358'
207
+ - '624462'
208
+ - '949091'
209
+ - '949092'
210
+ - '949038'
211
+ - '949039'
212
+ - '949040'
213
+ - '949041'
214
+ - '949042'
215
+ - '949043'
216
+ - '949044'
217
+ - '949045'
218
+ - '532444'
219
+ - '623470'
220
+ - '624437'
221
+ - '559246'
222
+ - '559794'
223
+ - '519892'
224
+ - '527810'
225
+ - '540388'
226
+ - '423950'
227
+ - '943050'
228
+ - '943907'
229
+ - '945107'
230
+ - '356516'
231
+ - '356517'
232
+ - '356716'
233
+ - '356717'
234
+ - '947134'
235
+ - '624376'
236
+ - '624377'
237
+ - '941691'
238
+ - '944691'
239
+ - '623489'
240
+ - '626402'
241
+ - '356020'
242
+ - '356320'
243
+ - '356520'
244
+ - '406720'
245
+ - '455320'
246
+ - '474420'
247
+ - '490620'
248
+ - '518420'
249
+ - '537720'
250
+ - '552120'
251
+ - '558520'
252
+ - '625120'
253
+ - '941020'
254
+ - '942020'
255
+ - '943020'
256
+ - '944048'
257
+ - '945020'
258
+ - '946120'
259
+ - '947020'
260
+ - '920091'
261
+ - '414020'
262
+ - '942095'
263
+ - '971000'
264
+ - '514564'
265
+ - '515408'
266
+ - '515606'
267
+ - '515708'
268
+ - '521126'
269
+ - '521186'
270
+ - '523410'
271
+ - '526251'
272
+ - '534553'
273
+ - '540689'
274
+ - '541633'
275
+ - '541757'
276
+ - '549029'
277
+ - '552248'
278
+ - '553615'
279
+ - '554049'
280
+ - '559329'
281
+ - '559571'
282
+ - '451100'
283
+ - '524242'
284
+ - '538003'
285
+ - '537943'
286
+ - '948150'
287
+ - '624448'
288
+ - '972000'
289
+ - '356543'
290
+ - '356544'
291
+ - '493455'
292
+ - '624435'
293
+ - '624436'
294
+ - '626399'
295
+ - '626400'
296
+ - '943181'
297
+ - '943281'
298
+ - '944281'
299
+ - '946181'
300
+ - '944043'
301
+ - '944703'
302
+ - '625804'
303
+ - '548818'
304
+ - '949084'
305
+ - '944120'
306
+ - '946124'
307
+ - '536320'
308
+ - '405432'
309
+ - '450203'
310
+ - '942150'
311
+ - '943150'
312
+ - '945150'
313
+ - '946150'
314
+ - '947150'
315
+ - '536125'
316
+ - '536617'
317
+ - '377178'
318
+ - '944137'
319
+ - '920063'
320
+ - '945132'
321
+ - '948220'
322
+ - '946137'
323
+ - '537952'
324
+ - '409216'
325
+ - '409217'
326
+ - '485479'
327
+ - '485480'
328
+ - '528638'
329
+ - '624387'
330
+ - '624388'
331
+ - '356932'
332
+ - '944103'
333
+ - '944111'
334
+ - '944112'
335
+ - '944524'
336
+ - '947920'
337
+ - '948020'
338
+ - '948120'
339
+ - '356234'
340
+ - '950000'
341
+ - '553179'
342
+ - '947081'
343
+ - '546418'
344
+ - '941681'
345
+ - '941781'
346
+ - '941881'
347
+ - '941981'
348
+ - '374725'
349
+ - '949093'
350
+ - '949096'
351
+ - '531194'
352
+ - '944063'
353
+ - '536883'
354
+ - '536945'
355
+ - '536946'
356
+ - '529877'
357
+ - '356478'
358
+ - '356479'
359
+ - '473058'
360
+ - '473059'
361
+ - '407503'
362
+ - '407603'
363
+ - '492511'
364
+ - '492512'
365
+ - '945103'
366
+ - '945111'
367
+ - '945112'
368
+ - '945203'
369
+ - '945211'
370
+ - '945212'
371
+ - '419696'
372
+ - '419697'
373
+ - '419698'
374
+ - '419699'
375
+ - '951001'
376
+ - '951002'
377
+ - '940327'
378
+ - '529899'
379
+ - '624410'
380
+ - '624411'
381
+ - '625814'
382
+ - '625817'
383
+ - '942092'
384
+ - '657314'
385
+ - '941199'
386
+ - '949094'
387
+ - '944603'
388
+ - '400558'
389
+ - '519657'
390
+ - '420720'
391
+ - '536802'
392
+ - '623451'
393
+ - '623452'
394
+ - '623453'
395
+ - '623454'
396
+ - '401844'
397
+ - '940976'
398
+ - '400911'
399
+ - '400913'
400
+ - '553177'
401
+ - '811006'
402
+ - '811060'
403
+ - '811061'
404
+ - '811062'
405
+ - '811063'
406
+ - '811064'
407
+ - '811065'
408
+ - '811066'
409
+ - '811067'
410
+ - '811068'
411
+ - '811069'
412
+ - '558914'
413
+ - '558917'
414
+ - '624343'
415
+ - '950003'
416
+ - '950011'
417
+ - '950012'
418
+ - '950020'
419
+ - '371001'
420
+ - '371002'
421
+ - '371003'
422
+ - '374722'
423
+ - '374723'
424
+ - '374724'
425
+ - '418236'
426
+ - '418237'
427
+ - '428696'
428
+ - '428697'
429
+ - '451279'
430
+ - '455437'
431
+ - '459930'
432
+ - '459931'
433
+ - '461771'
434
+ - '461781'
435
+ - '461980'
436
+ - '465518'
437
+ - '465521'
438
+ - '465522'
439
+ - '465523'
440
+ - '465524'
441
+ - '465583'
442
+ - '480443'
443
+ - '483592'
444
+ - '483735'
445
+ - '483736'
446
+ - '486469'
447
+ - '486475'
448
+ - '524335'
449
+ - '540554'
450
+ - '540591'
451
+ - '540799'
452
+ - '549861'
453
+ - '553168'
454
+ - '554921'
455
+ - '556659'
456
+ - '941001'
457
+ - '941005'
458
+ - '941052'
459
+ - '941053'
460
+ - '941056'
461
+ - '941057'
462
+ - '941058'
463
+ - '943062'
464
+ - '943210'
465
+ - '943211'
466
+ - '943212'
467
+ - '943213'
468
+ - '943214'
469
+ - '943215'
470
+ - '943216'
471
+ - '811001'
472
+ - '811002'
473
+ - '811003'
474
+ - '811004'
475
+ - '811005'
476
+ - '811010'
477
+ - '811011'
478
+ - '811012'
479
+ - '811013'
480
+ - '811014'
481
+ - '811015'
482
+ - '811016'
483
+ - '811017'
484
+ - '811018'
485
+ - '811019'
486
+ - '811020'
487
+ - '811021'
488
+ - '811022'
489
+ - '811023'
490
+ - '811024'
491
+ - '811025'
492
+ - '811026'
493
+ - '811027'
494
+ - '811028'
495
+ - '811029'
496
+ - '811030'
497
+ - '811031'
498
+ - '811032'
499
+ - '811033'
500
+ - '811034'
501
+ - '811035'
502
+ - '811036'
503
+ - '811037'
504
+ - '811038'
505
+ - '811039'
506
+ - '811040'
507
+ - '811041'
508
+ - '811042'
509
+ - '811043'
510
+ - '811044'
511
+ - '811045'
512
+ - '811046'
513
+ - '811047'
514
+ - '811048'
515
+ - '811049'
516
+ - '811050'
517
+ - '811051'
518
+ - '811052'
519
+ - '811053'
520
+ - '811054'
521
+ - '811055'
522
+ - '811056'
523
+ - '811057'
524
+ - '811058'
525
+ - '811059'
526
+ - '811070'
527
+ - '811071'
528
+ - '811072'
529
+ - '811073'
530
+ - '811074'
531
+ - '811075'
532
+ - '811076'
533
+ - '811077'
534
+ - '811078'
535
+ - '811079'
536
+ - '811080'
537
+ - '811081'
538
+ - '811082'
539
+ - '811083'
540
+ - '811084'
541
+ - '811085'
542
+ - '811086'
543
+ - '811087'
544
+ - '811088'
545
+ - '811089'
546
+ - '811090'
547
+ - '811091'
548
+ - '811092'
549
+ - '811093'
550
+ - '811094'
551
+ - '811095'
552
+ - '811096'
553
+ - '811097'
554
+ - '811098'
555
+ - '811099'
556
+ - '376250'
557
+ - '376251'
558
+ - '376252'
559
+ - '376253'
560
+ - '376254'
561
+ - '376255'
562
+ - '376256'
563
+ - '376257'
564
+ - '376258'
565
+ - '376259'
566
+ - '376270'
567
+ - '376271'
568
+ - '376272'
569
+ - '376273'
570
+ - '376275'
571
+ - '376290'
572
+ - '376292'
573
+ - '377990'
574
+ - '377991'
575
+ - '377992'
576
+ - '377993'
577
+ - '377994'
578
+ - '377995'
579
+ - '377996'
580
+ - '377997'
581
+ - '377998'
582
+ - '377999'
583
+ - '379220'
584
+ - '379221'
585
+ - '525989'
586
+ - '948034'
587
+ - '948134'
588
+ - '513792'
589
+ - '513893'
590
+ - '513894'
591
+ - '513895'
592
+ - '547109'
593
+ - '559588'
594
+ - '537145'
595
+ - '655814'
596
+ - '515193'
597
+ - '529281'
598
+ - '533014'
599
+ - '541721'
600
+ - '553159'
601
+ - '553727'
602
+ - '536683'
603
+ - '552423'
604
+ - '532092'
605
+ - '532147'
606
+ - '404720'
607
+ - '552220'
608
+ - '624420'
609
+ - '625320'
610
+ - '920009'
611
+ - '920030'
612
+ - '920061'
613
+ - '920079'
614
+ - '920080'
615
+ - '421733'
616
+ - '949070'
617
+ - '910120'
618
+ - '920120'
619
+ - '946034'
620
+ - '949069'
621
+ - '379971'
622
+ - '416206'
623
+ - '416207'
624
+ - '411905'
625
+ - '457047'
626
+ - '457048'
627
+ - '522112'
628
+ - '524012'
629
+ - '356534'
630
+ - '420920'
631
+ - '536623'
632
+ - '623391'
633
+ - '623392'
634
+ - '623393'
635
+ - '624381'
636
+ - '624382'
637
+ - '533872'
638
+ - '940947'
639
+ - '940948'
640
+ - '920002'
641
+ - '920045'
642
+ - '920048'
643
+ - '920071'
644
+ - '920095'
645
+ - '930020'
646
+ - '935020'
647
+ - '935071'
648
+ - '910007'
649
+ - '920007'
650
+ - '930007'
651
+ - '935007'
652
+ - '655916'
653
+ - '657016'
654
+ - '910035'
655
+ - '920035'
656
+ - '910034'
657
+ - '920034'
658
+ - '930034'
659
+ - '935034'
660
+ - '910037'
661
+ - '920037'
662
+ - '930037'
663
+ - '935037'
664
+ - '949073'
665
+ - '949074'
666
+ - '949075'
667
+ - '533774'
668
+ - '416332'
669
+ - '416339'
670
+ - '483632'
671
+ - '483639'
672
+ - '624345'
673
+ - '400569'
674
+ - '527257'
675
+ - '624399'
676
+ - '624400'
677
+ - '624401'
678
+ - '624403'
679
+ - '949066'
680
+ - '550744'
681
+ - '910003'
682
+ - '910006'
683
+ - '910011'
684
+ - '910012'
685
+ - '910020'
686
+ - '910021'
687
+ - '910023'
688
+ - '910025'
689
+ - '910031'
690
+ - '910032'
691
+ - '910036'
692
+ - '910039'
693
+ - '910150'
694
+ - '920003'
695
+ - '920006'
696
+ - '920011'
697
+ - '920012'
698
+ - '920013'
699
+ - '920014'
700
+ - '920020'
701
+ - '920021'
702
+ - '920023'
703
+ - '920025'
704
+ - '920031'
705
+ - '920032'
706
+ - '920036'
707
+ - '920039'
708
+ - '970039'
709
+ - '910027'
710
+ - '920027'
711
+ - '534292'
712
+ - '940955'
713
+ - '940956'
714
+ - '513791'
715
+ - '940969'
716
+ - '930003'
717
+ - '930011'
718
+ - '930023'
719
+ - '930031'
720
+ - '930032'
721
+ - '930039'
722
+ - '935003'
723
+ - '935023'
724
+ - '935031'
725
+ - '935032'
726
+ - '935039'
727
+ - '944009'
728
+ - '944079'
729
+ - '970003'
730
+ - '970031'
731
+ - '970032'
732
+ - '970045'
733
+ - '624339'
734
+ - '404820'
735
+ - '940957'
736
+ - '537614'
737
+ - '401320'
738
+ - '538820'
739
+ - '624380'
740
+ - '910050'
741
+ - '920050'
742
+ - '512830'
743
+ - '559410'
744
+ - '416320'
745
+ - '416324'
746
+ - '624404'
747
+ - '941120'
748
+ - '518831'
749
+ - '542416'
750
+ - '542586'
751
+ - '543017'
752
+ - '543241'
753
+ - '546111'
754
+ - '546112'
755
+ - '941116'
756
+ - '941117'
757
+ - '944116'
758
+ - '944117'
759
+ - '464942'
760
+ - '942091'
761
+ - '949067'
762
+ - '416237'
763
+ - '940958'
764
+ - '552194'
765
+ - '559293'
766
+ - '949064'
767
+ - '949065'
768
+ - '949097'
769
+ - '944030'
770
+ - '944061'
771
+ - '944080'
772
+ - '941077'
773
+ - '624368'
774
+ - '624378'
775
+ - '408966'
776
+ - '544120'
777
+ - '406020'
778
+ - '623387'
779
+ - '624375'
780
+ - '489515'
781
+ - '940939'
782
+ - '940945'
783
+ - '403011'
784
+ - '403012'
785
+ - '404611'
786
+ - '404612'
787
+ - '421111'
788
+ - '421112'
789
+ - '941650'
790
+ - '941731'
791
+ - '941732'
792
+ - '941739'
793
+ - '941750'
794
+ - '999960'
795
+ - '945822'
796
+ - '941607'
797
+ - '941707'
798
+ - '941807'
799
+ - '655818'
800
+ - '655918'
801
+ - '657018'
802
+ - '523830'
803
+ - '941051'
804
+ - '414520'
805
+ - '623390'
806
+ - '623394'
807
+ - '623395'
808
+ - '624379'
809
+ - '624383'
810
+ - '624384'
811
+ - '941735'
812
+ - '941734'
813
+ - '941737'
814
+ - '377966'
815
+ - '377969'
816
+ - '379192'
817
+ - '379193'
818
+ - '402367'
819
+ - '403878'
820
+ - '420189'
821
+ - '420190'
822
+ - '428908'
823
+ - '428909'
824
+ - '436550'
825
+ - '450596'
826
+ - '480400'
827
+ - '488919'
828
+ - '488920'
829
+ - '488921'
830
+ - '502928'
831
+ - '511845'
832
+ - '516411'
833
+ - '516450'
834
+ - '516574'
835
+ - '524180'
836
+ - '528523'
837
+ - '529875'
838
+ - '531838'
839
+ - '541707'
840
+ - '544174'
841
+ - '546252'
842
+ - '552323'
843
+ - '552407'
844
+ - '553173'
845
+ - '553184'
846
+ - '558738'
847
+ - '558881'
848
+ - '558961'
849
+ - '941181'
850
+ - '941381'
851
+ - '941581'
852
+ - '942018'
853
+ - '942019'
854
+ - '942081'
855
+ - '943081'
856
+ - '944081'
857
+ - '944181'
858
+ - '946081'
859
+ - '948031'
860
+ - '945821'
861
+ - '419803'
862
+ - '447703'
863
+ - '529803'
864
+ - '538903'
865
+ - '459222'
866
+ - '511187'
867
+ - '513243'
868
+ - '523651'
869
+ - '623374'
870
+ - '624370'
871
+ - '949095'
872
+ - '941623'
873
+ - '941631'
874
+ - '941632'
875
+ - '941636'
876
+ - '941639'
877
+ - '941645'
878
+ - '941648'
879
+ - '941671'
880
+ - '941723'
881
+ - '941736'
882
+ - '947050'
883
+ - '941635'
884
+ - '941634'
885
+ - '941637'
886
+ - '413780'
887
+ - '624373'
888
+ - '624374'
889
+ - '946046'
890
+ - '536142'
891
+ - '536148'
892
+ - '536181'
893
+ - '536648'
894
+ - '639650'
895
+ - '535180'
896
+ - '624348'
897
+ - '940975'
898
+ - '623322'
899
+ - '623323'
900
+ - '623340'
901
+ - '623341'
902
+ - '624320'
903
+ - '624324'
904
+ - '943416'
905
+ - '943417'
906
+ - '624321'
907
+ - '624325'
908
+ - '623379'
909
+ - '624346'
910
+ - '624446'
911
+ - '624344'
912
+ - '356022'
913
+ - '356024'
914
+ - '356322'
915
+ - '356324'
916
+ - '356820'
917
+ - '356920'
918
+ - '403820'
919
+ - '404824'
920
+ - '405220'
921
+ - '408320'
922
+ - '410120'
923
+ - '412020'
924
+ - '412994'
925
+ - '414022'
926
+ - '414024'
927
+ - '421120'
928
+ - '421420'
929
+ - '421820'
930
+ - '425920'
931
+ - '426920'
932
+ - '427120'
933
+ - '447320'
934
+ - '447820'
935
+ - '450520'
936
+ - '455322'
937
+ - '455324'
938
+ - '455420'
939
+ - '475520'
940
+ - '485920'
941
+ - '490020'
942
+ - '490220'
943
+ - '490622'
944
+ - '490624'
945
+ - '517220'
946
+ - '523424'
947
+ - '524220'
948
+ - '535020'
949
+ - '537120'
950
+ - '537620'
951
+ - '538720'
952
+ - '538920'
953
+ - '542220'
954
+ - '542720'
955
+ - '548020'
956
+ - '552122'
957
+ - '552124'
958
+ - '552920'
959
+ - '553220'
960
+ - '553224'
961
+ - '553820'
962
+ - '554620'
963
+ - '558420'
964
+ - '558524'
965
+ - '558920'
966
+ - '559620'
967
+ - '605615'
968
+ - '620120'
969
+ - '621020'
970
+ - '621220'
971
+ - '624424'
972
+ - '625220'
973
+ - '636094'
974
+ - '654120'
975
+ - '654220'
976
+ - '655620'
977
+ - '655820'
978
+ - '655920'
979
+ - '657020'
980
+ - '657320'
981
+ - '941022'
982
+ - '941024'
983
+ - '941520'
984
+ - '942022'
985
+ - '942024'
986
+ - '942620'
987
+ - '942720'
988
+ - '943022'
989
+ - '943024'
990
+ - '943920'
991
+ - '944320'
992
+ - '944420'
993
+ - '944620'
994
+ - '944720'
995
+ - '944920'
996
+ - '945120'
997
+ - '945220'
998
+ - '945520'
999
+ - '945920'
1000
+ - '946520'
1001
+ - '946620'
1002
+ - '946720'
1003
+ - '946820'
1004
+ - '947520'
1005
+ - '438674'
1006
+ - '624349'
1007
+ - '624350'
1008
+ - '624362'
1009
+ - '624363'
1010
+ - '402822'
1011
+ - '433087'
1012
+ - '523521'
1013
+ - '941013'
1014
+ - '520504'
1015
+ - '527289'
1016
+ - '430305'
1017
+ - '430306'
1018
+ - '527182'
1019
+ - '624331'
1020
+ - '624332'
1021
+ - '624340'
1022
+ - '945819'
1023
+ - '945820'
1024
+ - '453123'
1025
+ - '523402'
1026
+ - '411896'
1027
+ - '411897'
1028
+ - '521135'
1029
+ - '525982'
1030
+ - '944551'
1031
+ - '944552'
1032
+ - '946950'
1033
+ - '623358'
1034
+ - '624313'
1035
+ - '624333'
1036
+ - '947934'
1037
+ - '948934'
1038
+ - '654117'
1039
+ - '356413'
1040
+ - '356414'
1041
+ - '356415'
1042
+ - '356417'
1043
+ - '625020'
1044
+ - '625127'
1045
+ - '625179'
1046
+ - '408907'
1047
+ - '532105'
1048
+ - '404825'
1049
+ - '406078'
1050
+ - '414003'
1051
+ - '414006'
1052
+ - '414011'
1053
+ - '414012'
1054
+ - '414021'
1055
+ - '414023'
1056
+ - '414025'
1057
+ - '414027'
1058
+ - '414031'
1059
+ - '414032'
1060
+ - '414039'
1061
+ - '486678'
1062
+ - '537703'
1063
+ - '558503'
1064
+ - '558511'
1065
+ - '558512'
1066
+ - '558523'
1067
+ - '558527'
1068
+ - '558531'
1069
+ - '558532'
1070
+ - '558911'
1071
+ - '654150'
1072
+ - '941003'
1073
+ - '941011'
1074
+ - '941021'
1075
+ - '941031'
1076
+ - '941032'
1077
+ - '941039'
1078
+ - '942003'
1079
+ - '943003'
1080
+ - '943006'
1081
+ - '943011'
1082
+ - '943012'
1083
+ - '943021'
1084
+ - '943023'
1085
+ - '943025'
1086
+ - '943027'
1087
+ - '943031'
1088
+ - '943032'
1089
+ - '943036'
1090
+ - '943039'
1091
+ - '943078'
1092
+ - '940704'
1093
+ - '946316'
1094
+ - '946317'
1095
+ - '945007'
1096
+ - '945035'
1097
+ - '536539'
1098
+ - '900050'
1099
+ - '377988'
1100
+ - '377177'
1101
+ - '623329'
1102
+ - '944950'
1103
+ - '655618'
1104
+ - '657318'
1105
+ - '654133'
1106
+ - '655633'
1107
+ - '657333'
1108
+ - '944934'
1109
+ - '945934'
1110
+ - '468781'
1111
+ - '468782'
1112
+ - '944550'
1113
+ - '944948'
1114
+ - '944949'
1115
+ - '451099'
1116
+ - '451101'
1117
+ - '654116'
1118
+ - '720002'
1119
+ - '720031'
1120
+ - '720032'
1121
+ - '720033'
1122
+ - '720041'
1123
+ - '720042'
1124
+ - '720043'
1125
+ - '720044'
1126
+ - '720051'
1127
+ - '720052'
1128
+ - '720053'
1129
+ - '720054'
1130
+ - '720055'
1131
+ - '720061'
1132
+ - '720062'
1133
+ - '720063'
1134
+ - '720064'
1135
+ - '522111'
1136
+ - '949063'
1137
+ - '376364'
1138
+ - '946803'
1139
+ - '999950'
1140
+ - '409231'
1141
+ - '409232'
1142
+ - '523832'
1143
+ - '524285'
1144
+ - '946650'
1145
+ - '946750'
1146
+ - '421417'
1147
+ - '421607'
1148
+ - '465889'
1149
+ - '621484'
1150
+ - '621640'
1151
+ - '657317'
1152
+ - '940702'
1153
+ - '940703'
1154
+ - '940707'
1155
+ - '941008'
1156
+ - '657313'
1157
+ - '436422'
1158
+ - '542564'
1159
+ - '551431'
1160
+ - '945818'
1161
+ - '542448'
1162
+ - '468780'
1163
+ - '940060'
1164
+ - '949032'
1165
+ - '944350'
1166
+ - '405207'
1167
+ - '559631'
1168
+ - '559632'
1169
+ - '559639'
1170
+ - '657031'
1171
+ - '657032'
1172
+ - '657039'
1173
+ - '944331'
1174
+ - '940938'
1175
+ - '524531'
1176
+ - '514473'
1177
+ - '522509'
1178
+ - '528268'
1179
+ - '547924'
1180
+ - '553109'
1181
+ - '472263'
1182
+ - '472264'
1183
+ - '463235'
1184
+ - '463915'
1185
+ - '463916'
1186
+ - '657316'
1187
+ - '903518'
1188
+ - '903519'
1189
+ - '903520'
1190
+ - '421834'
1191
+ - '439110'
1192
+ - '456058'
1193
+ - '459902'
1194
+ - '459952'
1195
+ - '480451'
1196
+ - '625245'
1197
+ - '625246'
1198
+ - '953001'
1199
+ - '953005'
1200
+ - '409460'
1201
+ - '447781'
1202
+ - '448108'
1203
+ - '459903'
1204
+ - '459953'
1205
+ - '461774'
1206
+ - '461775'
1207
+ - '472637'
1208
+ - '498737'
1209
+ - '621639'
1210
+ - '625241'
1211
+ - '940070'
1212
+ - '945037'
1213
+ - '949071'
1214
+ - '949072'
1215
+ - '949080'
1216
+ - '949081'
1217
+ - '949082'
1218
+ - '949048'
1219
+ - '949049'
1220
+ - '401120'
1221
+ - '403832'
1222
+ - '404336'
1223
+ - '404822'
1224
+ - '410378'
1225
+ - '414036'
1226
+ - '415525'
1227
+ - '417920'
1228
+ - '421403'
1229
+ - '421406'
1230
+ - '421411'
1231
+ - '421412'
1232
+ - '421421'
1233
+ - '421423'
1234
+ - '421425'
1235
+ - '421427'
1236
+ - '421431'
1237
+ - '421432'
1238
+ - '421439'
1239
+ - '427220'
1240
+ - '427221'
1241
+ - '427223'
1242
+ - '427227'
1243
+ - '427231'
1244
+ - '427232'
1245
+ - '427239'
1246
+ - '428920'
1247
+ - '433521'
1248
+ - '448122'
1249
+ - '448123'
1250
+ - '448124'
1251
+ - '448132'
1252
+ - '475522'
1253
+ - '475524'
1254
+ - '475536'
1255
+ - '558536'
1256
+ - '558922'
1257
+ - '558924'
1258
+ - '604823'
1259
+ - '621023'
1260
+ - '944023'
1261
+ - '946006'
1262
+ - '946033'
1263
+ - '946078'
1264
+ - '946121'
1265
+ - '655617'
1266
+ - '655817'
1267
+ - '655616'
1268
+ - '655816'
1269
+ - '945815'
1270
+ - '945817'
1271
+ - '941059'
1272
+ - '657303'
1273
+ - '657306'
1274
+ - '657311'
1275
+ - '657312'
1276
+ - '657315'
1277
+ - '657323'
1278
+ - '657325'
1279
+ - '657327'
1280
+ - '657331'
1281
+ - '657332'
1282
+ - '657339'
1283
+ - '657350'
1284
+ - '452013'
1285
+ - '426907'
1286
+ - '940974'
1287
+ - '941026'
1288
+ - '623024'
1289
+ - '625840'
1290
+ - '625841'
1291
+ - '429612'
1292
+ - '445090'
1293
+ - '458857'
1294
+ - '465887'
1295
+ - '515594'
1296
+ - '549840'
1297
+ - '406745'
1298
+ - '903516'
1299
+ - '903517'
1300
+ - '946850'
1301
+ - '950006'
1302
+ - '421468'
1303
+ - '940937'
1304
+ - '940941'
1305
+ - '490631'
1306
+ - '942031'
1307
+ - '483544'
1308
+ - '940921'
1309
+ - '940922'
1310
+ - '946531'
1311
+ - '941029'
1312
+ - '356087'
1313
+ - '356295'
1314
+ - '480402'
1315
+ - '480434'
1316
+ - '524603'
1317
+ - '945810'
1318
+ - '945816'
1319
+ - '945824'
1320
+ - '945825'
1321
+ - '621051'
1322
+ - '946450'
1323
+ - '941019'
1324
+ - '946539'
1325
+ - '944002'
1326
+ - '940388'
1327
+ - '621641'
1328
+ - '625243'
1329
+ - '625244'
1330
+ - '940706'
1331
+ - '536323'
1332
+ - '408539'
1333
+ - '940915'
1334
+ - '940951'
1335
+ - '949056'
1336
+ - '949015'
1337
+ - '474289'
1338
+ - '474290'
1339
+ - '375144'
1340
+ - '376365'
1341
+ - '940999'
1342
+ - '999999'
1343
+ - '376277'
1344
+ - '484087'
1345
+ - '942075'
1346
+ - '523401'
1347
+ - '405331'
1348
+ - '209304'
1349
+ - '946511'
1350
+ - '946512'
1351
+ - '946513'
1352
+ - '946514'
1353
+ - '356078'
1354
+ - '483792'
1355
+ - '483793'
1356
+ - '941075'
1357
+ - '474817'
1358
+ - '940910'
1359
+ - '467309'
1360
+ - '944549'
1361
+ - '950007'
1362
+ - '421573'
1363
+ - '438922'
1364
+ - '445056'
1365
+ - '456037'
1366
+ - '953003'
1367
+ - '953004'
1368
+ - '940943'
1369
+ - '940973'
1370
+ - '946532'
1371
+ - '470399'
1372
+ - '512365'
1373
+ - '940942'
1374
+ - '940931'
1375
+ - '408511'
1376
+ - '408512'
1377
+ - '944403'
1378
+ - '405203'
1379
+ - '935016'
1380
+ - '935017'
1381
+ - '356891'
1382
+ - '356892'
1383
+ - '459855'
1384
+ - '459856'
1385
+ - '459857'
1386
+ - '459858'
1387
+ - '459859'
1388
+ - '459860'
1389
+ - '528664'
1390
+ - '528665'
1391
+ - '559434'
1392
+ - '559438'
1393
+ - '468911'
1394
+ - '472632'
1395
+ - '552441'
1396
+ - '552445'
1397
+ - '472650'
1398
+ - '485903'
1399
+ - '485906'
1400
+ - '485927'
1401
+ - '903501'
1402
+ - '903502'
1403
+ - '903503'
1404
+ - '903504'
1405
+ - '903505'
1406
+ - '903551'
1407
+ - '903552'
1408
+ - '903553'
1409
+ - '903554'
1410
+ - '903555'
1411
+ - '356023'
1412
+ - '356323'
1413
+ - '356523'
1414
+ - '400223'
1415
+ - '403823'
1416
+ - '404823'
1417
+ - '406723'
1418
+ - '421123'
1419
+ - '455323'
1420
+ - '475523'
1421
+ - '490623'
1422
+ - '537723'
1423
+ - '538823'
1424
+ - '552123'
1425
+ - '552823'
1426
+ - '558923'
1427
+ - '559123'
1428
+ - '620123'
1429
+ - '625023'
1430
+ - '625123'
1431
+ - '654123'
1432
+ - '654223'
1433
+ - '655623'
1434
+ - '655823'
1435
+ - '941023'
1436
+ - '942023'
1437
+ - '945023'
1438
+ - '946023'
1439
+ - '946423'
1440
+ - '947023'
1441
+ - '457492'
1442
+ - '457493'
1443
+ - '654106'
1444
+ - '654115'
1445
+ - '654206'
1446
+ - '654215'
1447
+ - '655606'
1448
+ - '655615'
1449
+ - '655806'
1450
+ - '655815'
1451
+ - '356908'
1452
+ - '944071'
1453
+ - '944045'
1454
+ - '944132'
1455
+ - '946503'
1456
+ - '946545'
1457
+ - '946550'
1458
+ - '944548'
1459
+ - '533349'
1460
+ - '625904'
1461
+ - '944131'
1462
+ - '944139'
1463
+ - '466571'
1464
+ - '949061'
1465
+ - '552412'
1466
+ - '558978'
1467
+ - '356025'
1468
+ - '356033'
1469
+ - '356036'
1470
+ - '407625'
1471
+ - '407725'
1472
+ - '440025'
1473
+ - '448125'
1474
+ - '448133'
1475
+ - '450025'
1476
+ - '490625'
1477
+ - '552125'
1478
+ - '552133'
1479
+ - '636189'
1480
+ - '655625'
1481
+ - '655825'
1482
+ - '942025'
1483
+ - '944025'
1484
+ - '356021'
1485
+ - '356027'
1486
+ - '356031'
1487
+ - '356032'
1488
+ - '356039'
1489
+ - '356878'
1490
+ - '400278'
1491
+ - '401278'
1492
+ - '401678'
1493
+ - '402359'
1494
+ - '403821'
1495
+ - '403831'
1496
+ - '403839'
1497
+ - '404331'
1498
+ - '404332'
1499
+ - '404339'
1500
+ - '404678'
1501
+ - '404821'
1502
+ - '410278'
1503
+ - '411178'
1504
+ - '411478'
1505
+ - '421121'
1506
+ - '421127'
1507
+ - '421131'
1508
+ - '421132'
1509
+ - '421139'
1510
+ - '448121'
1511
+ - '448131'
1512
+ - '448139'
1513
+ - '469631'
1514
+ - '469632'
1515
+ - '469639'
1516
+ - '490621'
1517
+ - '490632'
1518
+ - '490639'
1519
+ - '530432'
1520
+ - '552131'
1521
+ - '552132'
1522
+ - '552139'
1523
+ - '552432'
1524
+ - '554578'
1525
+ - '636078'
1526
+ - '636095'
1527
+ - '639339'
1528
+ - '639578'
1529
+ - '655631'
1530
+ - '655632'
1531
+ - '655639'
1532
+ - '655650'
1533
+ - '655831'
1534
+ - '655832'
1535
+ - '655839'
1536
+ - '655850'
1537
+ - '942021'
1538
+ - '942032'
1539
+ - '942039'
1540
+ - '942078'
1541
+ - '942132'
1542
+ - '944021'
1543
+ - '944031'
1544
+ - '944032'
1545
+ - '944039'
1546
+ - '944078'
1547
+ - '946420'
1548
+ - '946427'
1549
+ - '946431'
1550
+ - '946432'
1551
+ - '946439'
1552
+ - '946478'
1553
+ - '456703'
1554
+ - '531408'
1555
+ - '945814'
1556
+ - '553146'
1557
+ - '524223'
1558
+ - '940966'
1559
+ - '356907'
1560
+ - '529269'
1561
+ - '356407'
1562
+ - '457318'
1563
+ - '470631'
1564
+ - '558950'
1565
+ - '944303'
1566
+ - '944311'
1567
+ - '944312'
1568
+ - '945812'
1569
+ - '945813'
1570
+ - '356311'
1571
+ - '356312'
1572
+ - '356511'
1573
+ - '356512'
1574
+ - '455311'
1575
+ - '455312'
1576
+ - '537711'
1577
+ - '537712'
1578
+ - '620011'
1579
+ - '620812'
1580
+ - '625011'
1581
+ - '625012'
1582
+ - '944011'
1583
+ - '944012'
1584
+ - '946011'
1585
+ - '946012'
1586
+ - '946111'
1587
+ - '946112'
1588
+ - '946411'
1589
+ - '946412'
1590
+ - '947012'
1591
+ - '940936'
1592
+ - '437368'
1593
+ - '548870'
1594
+ - '949060'
1595
+ - '485475'
1596
+ - '485476'
1597
+ - '485477'
1598
+ - '485478'
1599
+ - '485492'
1600
+ - '485493'
1601
+ - '524225'
1602
+ - '524226'
1603
+ - '552386'
1604
+ - '552387'
1605
+ - '553180'
1606
+ - '553181'
1607
+ - '558975'
1608
+ - '558976'
1609
+ - '552290'
1610
+ - '558972'
1611
+ - '628179'
1612
+ - '654111'
1613
+ - '654112'
1614
+ - '654125'
1615
+ - '654127'
1616
+ - '654211'
1617
+ - '654212'
1618
+ - '654225'
1619
+ - '654227'
1620
+ - '655611'
1621
+ - '655612'
1622
+ - '655627'
1623
+ - '655811'
1624
+ - '655812'
1625
+ - '655827'
1626
+ - '654103'
1627
+ - '654132'
1628
+ - '654139'
1629
+ - '654203'
1630
+ - '654232'
1631
+ - '654239'
1632
+ - '654250'
1633
+ - '655603'
1634
+ - '655803'
1635
+ - '356904'
1636
+ - '437436'
1637
+ - '437437'
1638
+ - '437438'
1639
+ - '515197'
1640
+ - '532913'
1641
+ - '536460'
1642
+ - '356905'
1643
+ - '558370'
1644
+ - '558885'
1645
+ - '356406'
1646
+ - '470630'
1647
+ - '522802'
1648
+ - '944543'
1649
+ - '356906'
1650
+ - '489904'
1651
+ - '436417'
1652
+ - '436511'
1653
+ - '489010'
1654
+ - '547609'
1655
+ - '940932'
1656
+ - '940933'
1657
+ - '548869'
1658
+ - '941035'
1659
+ - '519635'
1660
+ - '945811'
1661
+ - '377973'
1662
+ - '949054'
1663
+ - '949055'
1664
+ - '414749'
1665
+ - '418143'
1666
+ - '448168'
1667
+ - '454303'
1668
+ - '528936'
1669
+ - '552376'
1670
+ - '552377'
1671
+ - '553150'
1672
+ - '558915'
1673
+ - '558970'
1674
+ - '558971'
1675
+ - '949012'
1676
+ - '949033'
1677
+ - '949034'
1678
+ - '949037'
1679
+ - '949059'
1680
+ - '940970'
1681
+ - '621249'
1682
+ - '940935'
1683
+ - '940934'
1684
+ - '949058'
1685
+ - '949053'
1686
+ - '949057'
1687
+ - '548732'
1688
+ - '654131'
1689
+ - '654231'
1690
+ - '488906'
1691
+ - '488972'
1692
+ - '940940'
1693
+ - '940930'
1694
+ - '941074'
1695
+ - '430603'
1696
+ - '437432'
1697
+ - '553176'
1698
+ - '941037'
1699
+ - '941073'
1700
+ - '942076'
1701
+ - '942077'
1702
+ - '523930'
1703
+ - '356914'
1704
+ - '356915'
1705
+ - '356916'
1706
+ - '376274'
1707
+ - '376276'
1708
+ - '376278'
1709
+ - '376279'
1710
+ - '406158'
1711
+ - '414710'
1712
+ - '464959'
1713
+ - '467006'
1714
+ - '467007'
1715
+ - '467008'
1716
+ - '467009'
1717
+ - '483543'
1718
+ - '512462'
1719
+ - '520045'
1720
+ - '528937'
1721
+ - '534291'
1722
+ - '548238'
1723
+ - '552136'
1724
+ - '553169'
1725
+ - '556608'
1726
+ - '940911'
1727
+ - '940912'
1728
+ - '940913'
1729
+ - '940914'
1730
+ - '940916'
1731
+ - '940917'
1732
+ - '940918'
1733
+ - '940919'
1734
+ - '940920'
1735
+ - '940923'
1736
+ - '940924'
1737
+ - '940925'
1738
+ - '940926'
1739
+ - '940927'
1740
+ - '940928'
1741
+ - '940929'
1742
+ - '940952'
1743
+ - '940953'
1744
+ - '940960'
1745
+ - '940961'
1746
+ - '940962'
1747
+ - '940963'
1748
+ - '940964'
1749
+ - '940965'
1750
+ - '940967'
1751
+ - '940968'
1752
+ - '940971'
1753
+ - '940981'
1754
+ - '940991'
1755
+ - '496603'
1756
+ - '533032'
1757
+ - '943132'
1758
+ - '949052'
1759
+ - '436477'
1760
+ - '455325'
1761
+ - '946403'
1762
+ - '946406'
1763
+ - '944203'
1764
+ - '356297'
1765
+ - '457905'
1766
+ - '457906'
1767
+ - '540935'
1768
+ - '540936'
1769
+ - '554345'
1770
+ - '941045'
1771
+ - '941046'
1772
+ - '942048'
1773
+ - '468908'
1774
+ - '476021'
1775
+ - '517709'
1776
+ - '517827'
1777
+ - '542184'
1778
+ - '941085'
1779
+ - '941088'
1780
+ - '941091'
1781
+ - '941092'
1782
+ - '941093'
1783
+ - '942085'
1784
+ - '361246'
1785
+ - '361247'
1786
+ - '361248'
1787
+ - '361650'
1788
+ - '361651'
1789
+ - '361652'
1790
+ - '361653'
1791
+ - '361654'
1792
+ - '364124'
1793
+ - '364125'
1794
+ - '364178'
1795
+ - '364445'
1796
+ - '364681'
1797
+ - '364682'
1798
+ - '364683'
1799
+ - '364828'
1800
+ - '364829'
1801
+ - '364830'
1802
+ - '365405'
1803
+ - '365431'
1804
+ - '365573'
1805
+ - '365574'
1806
+ - '365645'
1807
+ - '365646'
1808
+ - '406357'
1809
+ - '453934'
1810
+ - '453936'
1811
+ - '474360'
1812
+ - '474361'
1813
+ - '491217'
1814
+ - '491218'
1815
+ - '498819'
1816
+ - '498820'
1817
+ - '459901'
1818
+ - '459951'
1819
+ - '953002'
1820
+ - '949026'
1821
+ - '436420'
1822
+ - '558506'
1823
+ - '943648'
1824
+ - '943649'
1825
+ - '356298'
1826
+ - '407916'
1827
+ - '407917'
1828
+ - '458484'
1829
+ - '458568'
1830
+ - '464022'
1831
+ - '470616'
1832
+ - '470617'
1833
+ - '524140'
1834
+ - '524141'
1835
+ - '553171'
1836
+ - '553172'
1837
+ - '943016'
1838
+ - '943017'
1839
+ - '943116'
1840
+ - '943117'
1841
+ - '946116'
1842
+ - '946117'
1843
+ - '946216'
1844
+ - '946217'
1845
+ - '451844'
1846
+ - '356316'
1847
+ - '356317'
1848
+ - '448537'
1849
+ - '448555'
1850
+ - '606052'
1851
+ - '948816'
1852
+ - '467963'
1853
+ - '545089'
1854
+ - '524144'
1855
+ - '510737'
1856
+ - '941004'
1857
+ - '941028'
1858
+ - '941030'
1859
+ - '941034'
1860
+ - '941038'
1861
+ - '356900'
1862
+ - '548841'
1863
+ - '941061'
1864
+ - '946103'
1865
+ - '946106'
1866
+ - '946123'
1867
+ - '946127'
1868
+ - '946131'
1869
+ - '946132'
1870
+ - '946139'
1871
+ - '946178'
1872
+ - '949035'
1873
+ - '871001'
1874
+ - '881001'
1875
+ - '411825'
1876
+ - '414625'
1877
+ - '451845'
1878
+ - '451846'
1879
+ - '476063'
1880
+ - '941082'
1881
+ - '458525'
1882
+ - '532188'
1883
+ - '458532'
1884
+ - '946320'
1885
+ - '942070'
1886
+ - '422727'
1887
+ - '522855'
1888
+ - '540447'
1889
+ - '558953'
1890
+ - '427203'
1891
+ - '427206'
1892
+ - '490011'
1893
+ - '490012'
1894
+ - '484809'
1895
+ - '542265'
1896
+ - '942072'
1897
+ - '942073'
1898
+ - '942074'
1899
+ - '941071'
1900
+ - '941076'
1901
+ - '467077'
1902
+ - '403346'
1903
+ - '448492'
1904
+ - '448550'
1905
+ - '465888'
1906
+ - '480417'
1907
+ - '940017'
1908
+ - '940050'
1909
+ - '945034'
1910
+ - '410109'
1911
+ - '434346'
1912
+ - '434347'
1913
+ - '440445'
1914
+ - '440446'
1915
+ - '440447'
1916
+ - '462890'
1917
+ - '514876'
1918
+ - '548213'
1919
+ - '548596'
1920
+ - '940010'
1921
+ - '940020'
1922
+ - '940030'
1923
+ - '940040'
1924
+ - '470547'
1925
+ - '470618'
1926
+ - '428411'
1927
+ - '428412'
1928
+ - '428431'
1929
+ - '428432'
1930
+ - '428439'
1931
+ - '502123'
1932
+ - '943645'
1933
+ - '943646'
1934
+ - '943647'
1935
+ - '470587'
1936
+ - '470588'
1937
+ - '464965'
1938
+ - '541145'
1939
+ - '428465'
1940
+ - '437719'
1941
+ - '464955'
1942
+ - '547227'
1943
+ - '558817'
1944
+ - '538803'
1945
+ - '356290'
1946
+ - '356296'
1947
+ - '356902'
1948
+ - '377985'
1949
+ - '400904'
1950
+ - '405753'
1951
+ - '405754'
1952
+ - '409336'
1953
+ - '418164'
1954
+ - '420178'
1955
+ - '421685'
1956
+ - '422015'
1957
+ - '434976'
1958
+ - '448523'
1959
+ - '449914'
1960
+ - '451281'
1961
+ - '461723'
1962
+ - '468912'
1963
+ - '474130'
1964
+ - '490298'
1965
+ - '547671'
1966
+ - '552537'
1967
+ - '552576'
1968
+ - '553144'
1969
+ - '553152'
1970
+ - '555013'
1971
+ - '558768'
1972
+ - '606045'
1973
+ - '941015'
1974
+ - '941017'
1975
+ - '941018'
1976
+ - '941064'
1977
+ - '941066'
1978
+ - '941067'
1979
+ - '941068'
1980
+ - '941081'
1981
+ - '941083'
1982
+ - '941098'
1983
+ - '941099'
1984
+ - '941161'
1985
+ - '942061'
1986
+ - '942062'
1987
+ - '942063'
1988
+ - '942064'
1989
+ - '942065'
1990
+ - '942069'
1991
+ - '945161'
1992
+ - '945162'
1993
+ - '356911'
1994
+ - '356912'
1995
+ - '414743'
1996
+ - '425863'
1997
+ - '433290'
1998
+ - '448135'
1999
+ - '522971'
2000
+ - '553151'
2001
+ - '554959'
2002
+ - '946220'
2003
+ - '620027'
2004
+ - '620031'
2005
+ - '620039'
2006
+ - '620103'
2007
+ - '620106'
2008
+ - '620125'
2009
+ - '620132'
2010
+ - '620220'
2011
+ - '620278'
2012
+ - '448143'
2013
+ - '464960'
2014
+ - '940701'
2015
+ - '949028'
2016
+ - '461724'
2017
+ - '483578'
2018
+ - '533827'
2019
+ - '941096'
2020
+ - '941097'
2021
+ - '949019'
2022
+ - '944095'
2023
+ - '360069'
2024
+ - '540528'
2025
+ - '949023'
2026
+ - '448494'
2027
+ - '553211'
2028
+ - '553212'
2029
+ - '402596'
2030
+ - '464562'
2031
+ - '407589'
2032
+ - '407590'
2033
+ - '377989'
2034
+ - '621003'
2035
+ - '621006'
2036
+ - '621011'
2037
+ - '621012'
2038
+ - '621025'
2039
+ - '621031'
2040
+ - '621032'
2041
+ - '621039'
2042
+ - '621078'
2043
+ - '621079'
2044
+ - '625003'
2045
+ - '625006'
2046
+ - '625025'
2047
+ - '625027'
2048
+ - '625031'
2049
+ - '625032'
2050
+ - '625039'
2051
+ - '625078'
2052
+ - '625079'
2053
+ - '625103'
2054
+ - '625106'
2055
+ - '625111'
2056
+ - '625112'
2057
+ - '625125'
2058
+ - '625131'
2059
+ - '625132'
2060
+ - '625139'
2061
+ - '625178'
2062
+ - '463732'
2063
+ - '400905'
2064
+ - '413700'
2065
+ - '418163'
2066
+ - '356003'
2067
+ - '356006'
2068
+ - '356011'
2069
+ - '356012'
2070
+ - '356303'
2071
+ - '356306'
2072
+ - '356321'
2073
+ - '356325'
2074
+ - '356327'
2075
+ - '356331'
2076
+ - '356332'
2077
+ - '356333'
2078
+ - '356336'
2079
+ - '356339'
2080
+ - '356503'
2081
+ - '356506'
2082
+ - '356521'
2083
+ - '356525'
2084
+ - '356527'
2085
+ - '356531'
2086
+ - '356532'
2087
+ - '356533'
2088
+ - '356539'
2089
+ - '356978'
2090
+ - '356979'
2091
+ - '403803'
2092
+ - '403806'
2093
+ - '403811'
2094
+ - '403812'
2095
+ - '403827'
2096
+ - '404803'
2097
+ - '404806'
2098
+ - '404811'
2099
+ - '404812'
2100
+ - '404827'
2101
+ - '406703'
2102
+ - '406706'
2103
+ - '406711'
2104
+ - '406712'
2105
+ - '406721'
2106
+ - '406725'
2107
+ - '406727'
2108
+ - '406731'
2109
+ - '406732'
2110
+ - '406733'
2111
+ - '406739'
2112
+ - '421103'
2113
+ - '421106'
2114
+ - '448103'
2115
+ - '448106'
2116
+ - '448111'
2117
+ - '448112'
2118
+ - '448127'
2119
+ - '455303'
2120
+ - '455306'
2121
+ - '455321'
2122
+ - '455327'
2123
+ - '455331'
2124
+ - '455332'
2125
+ - '455336'
2126
+ - '455339'
2127
+ - '475503'
2128
+ - '475506'
2129
+ - '475511'
2130
+ - '475512'
2131
+ - '475521'
2132
+ - '475525'
2133
+ - '475527'
2134
+ - '475531'
2135
+ - '475532'
2136
+ - '475539'
2137
+ - '486578'
2138
+ - '486579'
2139
+ - '490603'
2140
+ - '490606'
2141
+ - '490611'
2142
+ - '490612'
2143
+ - '490627'
2144
+ - '490636'
2145
+ - '498411'
2146
+ - '498412'
2147
+ - '516078'
2148
+ - '526878'
2149
+ - '537706'
2150
+ - '537725'
2151
+ - '537727'
2152
+ - '537731'
2153
+ - '537732'
2154
+ - '537736'
2155
+ - '537739'
2156
+ - '538806'
2157
+ - '538811'
2158
+ - '538812'
2159
+ - '538825'
2160
+ - '538827'
2161
+ - '538831'
2162
+ - '538832'
2163
+ - '538836'
2164
+ - '538839'
2165
+ - '552103'
2166
+ - '552106'
2167
+ - '552111'
2168
+ - '552112'
2169
+ - '552521'
2170
+ - '552532'
2171
+ - '552803'
2172
+ - '552806'
2173
+ - '552811'
2174
+ - '552812'
2175
+ - '553078'
2176
+ - '553178'
2177
+ - '555111'
2178
+ - '555112'
2179
+ - '555120'
2180
+ - '555121'
2181
+ - '555131'
2182
+ - '555132'
2183
+ - '555133'
2184
+ - '555139'
2185
+ - '556678'
2186
+ - '558521'
2187
+ - '558539'
2188
+ - '558903'
2189
+ - '558906'
2190
+ - '558912'
2191
+ - '558921'
2192
+ - '558925'
2193
+ - '558927'
2194
+ - '558931'
2195
+ - '558932'
2196
+ - '558933'
2197
+ - '558939'
2198
+ - '628180'
2199
+ - '941006'
2200
+ - '941012'
2201
+ - '941025'
2202
+ - '941027'
2203
+ - '941036'
2204
+ - '941078'
2205
+ - '942006'
2206
+ - '942011'
2207
+ - '942012'
2208
+ - '942027'
2209
+ - '942036'
2210
+ - '943921'
2211
+ - '943925'
2212
+ - '943978'
2213
+ - '944003'
2214
+ - '944006'
2215
+ - '944027'
2216
+ - '945003'
2217
+ - '945006'
2218
+ - '945011'
2219
+ - '945012'
2220
+ - '945021'
2221
+ - '945025'
2222
+ - '945027'
2223
+ - '945031'
2224
+ - '945032'
2225
+ - '945033'
2226
+ - '945039'
2227
+ - '945078'
2228
+ - '946003'
2229
+ - '946020'
2230
+ - '946021'
2231
+ - '946025'
2232
+ - '946027'
2233
+ - '946031'
2234
+ - '946032'
2235
+ - '946039'
2236
+ - '426589'
2237
+ - '490274'
2238
+ - '445096'
2239
+ - '553142'
2240
+ - '553147'
2241
+ - '418173'
2242
+ - '949029'
2243
+ - '949022'
2244
+ - '553155'
2245
+ - '377981'
2246
+ - '407541'
2247
+ - '432445'
2248
+ - '542879'
2249
+ - '544004'
2250
+ - '636093'
2251
+ - '940011'
2252
+ - '940012'
2253
+ - '407558'
2254
+ - '459904'
2255
+ - '468913'
2256
+ - '468914'
2257
+ - '480422'
2258
+ - '480450'
2259
+ - '513480'
2260
+ - '524333'
2261
+ - '941009'
2262
+ - '941010'
2263
+ - '377982'
2264
+ - '377983'
2265
+ - '407424'
2266
+ - '543333'
2267
+ - '553423'
2268
+ - '512609'
2269
+ - '422190'
2270
+ - '553406'
2271
+ - '426066'
2272
+ - '442660'
2273
+ - '429498'
2274
+ - '429499'
2275
+ - '528054'
2276
+ - '528949'
2277
+ - '528951'
2278
+ - '950008'
2279
+ - '950009'
2280
+ - '950010'
2281
+ - '950018'
2282
+ - '950019'
2283
+ - '422016'
2284
+ - '422018'
2285
+ - '949027'
2286
+ - '949025'
2287
+ - '942099'
2288
+ - '540947'
2289
+ - '944541'
2290
+ - '944542'
2291
+ - '421418'
2292
+ - '457972'
2293
+ - '457973'
2294
+ - '540926'
2295
+ - '527419'
2296
+ - '356910'
2297
+ - '554382'
2298
+ - '360043'
2299
+ - '949013'
2300
+ - '452387'
2301
+ - '452388'
2302
+ - '452389'
2303
+ - '520172'
2304
+ - '522108'
2305
+ - '522109'
2306
+ - '943543'
2307
+ - '456702'
2308
+ - '524713'
2309
+ - '512351'
2310
+ - '512352'
2311
+ - '512353'
2312
+ - '512354'
2313
+ - '512355'
2314
+ - '512359'
2315
+ - '520421'
2316
+ - '520422'
2317
+ - '522114'
2318
+ - '522115'
2319
+ - '522119'
2320
+ - '522123'
2321
+ - '522124'
2322
+ - '522125'
2323
+ - '522129'
2324
+ - '524013'
2325
+ - '524014'
2326
+ - '524015'
2327
+ - '524019'
2328
+ - '524021'
2329
+ - '524022'
2330
+ - '524023'
2331
+ - '524024'
2332
+ - '524025'
2333
+ - '524029'
2334
+ - '524041'
2335
+ - '541259'
2336
+ - '549153'
2337
+ - '549155'
2338
+ - '552051'
2339
+ - '552052'
2340
+ - '949010'
2341
+ - '949011'
2342
+ - '949014'
2343
+ - '949016'
2344
+ - '949017'
2345
+ - '949018'
2346
+ - '949020'
2347
+ - '949021'
2348
+ - '949050'
2349
+ - '949051'
2350
+ - '947003'
2351
+ - '947006'
2352
+ - '947021'
2353
+ - '947025'
2354
+ - '947027'
2355
+ - '947031'
2356
+ - '947032'
2357
+ - '947033'
2358
+ - '947039'
2359
+ - '451245'
2360
+ - '700100'
2361
+ - '700101'
2362
+ - '700105'
2363
+ - '700106'
2364
+ - '700107'
2365
+ - '700109'
2366
+ - '700116'
2367
+ - '700117'
2368
+ - '700126'
2369
+ - '700127'
2370
+ - '941060'
2371
+ - '941065'
2372
+ - '949024'
2373
+ - '944547'
2374
+ - '404727'
2375
+ - '404726'
2376
+ - '520025'
2377
+ - '942089'
2378
+ - '400907'
2379
+ - '400912'
2380
+ - '457992'
2381
+ - '457993'
2382
+ - '540929'
2383
+ - '540988'
2384
+ - '941047'
2385
+ - '941048'
2386
+ - '510003'
2387
+ - '555023'
2388
+ - '558749'
2389
+ - '941089'
2390
+ - '941090'
2391
+ - '356291'
2392
+ - '356292'
2393
+ - '400906'
2394
+ - '400933'
2395
+ - '451842'
2396
+ - '451843'
2397
+ - '540486'
2398
+ - '542158'
2399
+ - '941080'
2400
+ - '402857'
2401
+ - '402860'
2402
+ - '400696'
2403
+ - '426271'
2404
+ - '426285'
2405
+ - '426586'
2406
+ - '433276'
2407
+ - '433283'
2408
+ - '448136'
2409
+ - '459913'
2410
+ - '480444'
2411
+ - '514507'
2412
+ - '514508'
2413
+ - '518176'
2414
+ - '518177'
2415
+ - '518215'
2416
+ - '518216'
2417
+ - '554346'
2418
+ - '554349'
2419
+ - '554963'
2420
+ - '554973'
2421
+ - '558526'
2422
+ - '941044'
2423
+ - '941049'
2424
+ - '942049'
2425
+ - '942545'
2426
+ - '942546'
2427
+ - '942547'
2428
+ - '942548'
2429
+ - '943541'
2430
+ - '943542'
2431
+ - '943544'
2432
+ - '943545'
2433
+ - '943546'
2434
+ - '943549'
2435
+ - '944545'
2436
+ - '944546'
2437
+ - '376293'
2438
+ - '379183'
2439
+ - '379184'
2440
+ - '379194'
2441
+ - '404728'
2442
+ - '414296'
2443
+ - '426578'
2444
+ - '467069'
2445
+ - '468909'
2446
+ - '476020'
2447
+ - '486467'
2448
+ - '486468'
2449
+ - '517662'
2450
+ - '518319'
2451
+ - '531070'
2452
+ - '531072'
2453
+ - '531080'
2454
+ - '531082'
2455
+ - '531085'
2456
+ - '531088'
2457
+ - '540537'
2458
+ - '540538'
2459
+ - '552014'
2460
+ - '941094'
2461
+ - '942090'
2462
+ - '356293'
2463
+ - '356294'
2464
+ - '356901'
2465
+ - '438676'
2466
+ - '459906'
2467
+ - '459936'
2468
+ - '519303'
2469
+ - '552087'
2470
+ - '941014'
2471
+ - '941062'
2472
+ - '941063'
2473
+ - '941069'
2474
+ - '941084'
2475
+ - '941086'
2476
+ - '941095'
2477
+ - '402515'
2478
+ - '402516'
2479
+ - '402517'
2480
+ - '402858'
2481
+ - '402859'
2482
+ - '433028'
2483
+ - '469536'
2484
+ - '469537'
2485
+ - '518928'
2486
+ - '518929'
2487
+ - '518930'
2488
+ - '543341'
2489
+ - '552164'
2490
+ - '558735'
2491
+ - '558875'
2492
+ - '376260'
2493
+ - '376261'
2494
+ - '376262'
2495
+ - '376263'
2496
+ - '376264'
2497
+ - '376265'
2498
+ - '376266'
2499
+ - '376267'
2500
+ - '376268'
2501
+ - '376269'
2502
+ - '376291'
2503
+ - '110'
2504
+ - '111'
2505
+ - '112'
2506
+ - '113'
2507
+ - '114'
2508
+ - '115'
2509
+ - '116'
2510
+ - '117'
2511
+ - '118'
2512
+ - '119'
2513
+ - '120'
2514
+ - '121'
2515
+ - '122'
2516
+ - '123'
2517
+ - '124'
2518
+ - '125'
2519
+ - '126'
2520
+ - '127'
2521
+ - '128'
2522
+ - '129'
2523
+ - '130'
2524
+ - '131'
2525
+ - '132'
2526
+ - '133'
2527
+ - '134'
2528
+ - '135'
2529
+ - '136'
2530
+ - '137'
2531
+ - '138'
2532
+ - '139'
2533
+ - '140'
2534
+ - '141'
2535
+ - '142'
2536
+ - '143'
2537
+ - '144'
2538
+ - '145'
2539
+ - '146'
2540
+ - '147'
2541
+ - '148'
2542
+ - '149'
2543
+ - '150'
2544
+ - '151'
2545
+ - '152'
2546
+ - '153'
2547
+ - '154'
2548
+ - '155'
2549
+ - '156'
2550
+ - '157'
2551
+ - '158'
2552
+ - '159'
2553
+ - '190'
2554
+ - '191'
2555
+ - '192'
2556
+ - '193'
2557
+ - '194'
2558
+ - '195'
2559
+ - '196'
2560
+ - '197'
2561
+ - '198'
2562
+ - '199'
2563
+ - '210'
2564
+ - '211'
2565
+ - '212'
2566
+ - '213'
2567
+ - '214'
2568
+ - '215'
2569
+ - '216'
2570
+ - '217'
2571
+ - '218'
2572
+ - '219'
2573
+ - '220'
2574
+ - '221'
2575
+ - '222'
2576
+ - '223'
2577
+ - '224'
2578
+ - '225'
2579
+ - '226'
2580
+ - '227'
2581
+ - '228'
2582
+ - '229'
2583
+ - '230'
2584
+ - '231'
2585
+ - '232'
2586
+ - '233'
2587
+ - '234'
2588
+ - '235'
2589
+ - '236'
2590
+ - '237'
2591
+ - '238'
2592
+ - '239'
2593
+ - '240'
2594
+ - '241'
2595
+ - '242'
2596
+ - '243'
2597
+ - '244'
2598
+ - '245'
2599
+ - '246'
2600
+ - '247'
2601
+ - '248'
2602
+ - '249'
2603
+ - '250'
2604
+ - '251'
2605
+ - '252'
2606
+ - '253'
2607
+ - '254'
2608
+ - '255'
2609
+ - '256'
2610
+ - '257'
2611
+ - '258'
2612
+ - '259'
2613
+ - '510'
2614
+ - '511'
2615
+ - '512'
2616
+ - '513'
2617
+ - '514'
2618
+ - '515'
2619
+ - '516'
2620
+ - '517'
2621
+ - '518'
2622
+ - '519'
2623
+ - '520'
2624
+ - '521'
2625
+ - '522'
2626
+ - '523'
2627
+ - '524'
2628
+ - '525'
2629
+ - '526'
2630
+ - '527'
2631
+ - '528'
2632
+ - '529'
2633
+ - '530'
2634
+ - '531'
2635
+ - '532'
2636
+ - '533'
2637
+ - '534'
2638
+ - '535'
2639
+ - '536'
2640
+ - '537'
2641
+ - '538'
2642
+ - '539'
2643
+ - '540'
2644
+ - '541'
2645
+ - '542'
2646
+ - '543'
2647
+ - '544'
2648
+ - '545'
2649
+ - '546'
2650
+ - '547'
2651
+ - '548'
2652
+ - '549'
2653
+ - '550'
2654
+ - '551'
2655
+ - '552'
2656
+ - '553'
2657
+ - '554'
2658
+ - '555'
2659
+ - '556'
2660
+ - '557'
2661
+ - '558'
2662
+ - '559'