-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathmain.txt
More file actions
2224 lines (2224 loc) · 23.3 KB
/
main.txt
File metadata and controls
2224 lines (2224 loc) · 23.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
A
ActiveState
Actual
Adam
Agreement
Alex
Alias
All
Allen
Alph
Alpine
Alternate
Alternative
Android
Apache
App
April
Arguments
Associates
Audio
Avenue
Awaitable
Awk
B
Bartelt
Bernstein
Beta
Bitwise
Blue
Boolean
Booleans
Boost
Borrowed
Bram
Brett
Buddy
Bug
Built
Bytearray
C
Cannon
Canopy
Case
Category
Centrum
Changelog
Chapman
Cheese
Circus
Classes
Clause
Cleese
Cocoa
Comma
Command
Comment
Compaq
Compiled
Comprehensions
Computer
Configurations
Content
Control
Cookbook
Cookie
Copyright
Corporation
Creations
Cross
Ctrl
Customize
Cython
D
Dan
Database
David
Daylight
Debian
Dec
December
Decimal
Default
Developer
Dictionaries
Digit
Digital
DigitalOcean
Document
Docutils
Dog
Downey
Dr
Drake
Emacs
Embed
Embedded
Enable
English
Enthought
Eric
Error
Errors
Exceeds
Excel
Exception
Exceptions
Explorer
Fedora
Fido
Flying
Folding
Fortran
Foundation
Fourier
Fraction
Frameworks
Fred
Fredrik
Frozen
Garcia
Gaussian
Gay
General
Generics
Get
Golden
Google
Gordon
Graham
Green
Greg
Gross
Group
Guide
Guido
Hans
Haskell
Hat
Hello
Hewlett
Hue
Hugunin
I
Idel
Idle
If
Inc
Indent
Index
Individual
Inf
Info
Initiatives
Input
Insert
Intel
Intermezzo
Intra
Io
Isn
Iu
Jim
John
Jr
Just
Jython
Kivy
Korn
Krah
L
Laboratories
Latin
Launch
Letter
Libraries
Library
License
Licensee
Lightness
Lin
Linux
Lisp
Literals
Ll
Lm
Lo
Local
Lock
Look
Looking
Looping
Loops
Lt
Ltd
Lu
Lundh
M
Ma
Mac
Macintosh
Mailbox
Majkowski
Makefile
Managers
Marek
Mark
Matthias
Mersenne
Message
Michael
Microsoft
Mises
Mitch
Mixin
Mock
Modeling
Modula
Modules
Monty
Mountain
Mozilla
N
National
Nd
New
Node
None
Not
Nothing
Null
Number
Numeric
Nα
O
Objective
Olsen
Optimized
Organization
Origin
Other
P
Packard
Pareto
Pascal
Passed
Patching
Path
Paul
Perl
Permission
Phases
Pillow
Platform
Platforms
Powershell
Precision
Print
Private
Program
Py
PyCon
Pyrex
Python
Pythonic
Q
Qt
Queues
Raising
Randal
Ranges
Readline
Red
Redistribution
Redistributions
Reference
Reilly
Reprs
Research
Resources
Reston
Richard
Rights
Ro
Roskind
Rossum
Ru
Runtime
Rust
Sam
Saturation
Saving
Scientific
Scintilla
Search
Second
Separated
Separator
Sequence
Set
Sets
Settings
Setup
Shebang
Shop
Sign
Silicon
Simulation
Skimming
Slackware
Smalltalk
Software
Solaris
Sox
Specific
Sphinx
Stacks
Stallman
Start
States
Stefan
Stein
Stichting
Storage
Store
String
Studio
Subject
Subsystem
Sun
Swift
Sx
Sy
Syntax
Tab
Tcl
Terry
This
Thread
Tim
Time
Title
Tk
Traceback
Transactions
Transform
Traversable
Tuples
Tutorial
Twisted
Twister
U
Ulf
Unbounded
Unices
Union
United
Unix
Usenet
V
Van
Vol
W
Weather
Windows
Xcode
Yes
Zen
Zope
Zstandard
a
abc
abcdef
above
abs
abstract
access
accessing
accessor
action
active
actor
add
adding
adds
age
agency
al
alias
aliases
all
alone
always
ame
amp
an
analysis
anchor
and
annotate
annotating
annotation
annotations
any
api
app
append
apple
archive
archives
are
arg
argcount
args
argument
argv
around
arr
array
as
assembly
assert
assignment
async
asyncio
at
attribute
attributes
attrs
audit
auditing
automatically
available
average
await
awaitable
b
back
backend
backport
backslash
backslashes
backspace
backwards
bacon
base
based
bases
bash
basis
basket
batch
be
before
below
bereft
beta
betavariate
big
bignum
bin
binaries
binary
binding
bindings
bit
bits
bitwise
blob
block
blocks
bool
boolean
booleans
bound
branch
breach
breadth
break
breakpoints
brief
buffer
buffered
buffers
bug
bugger
bugs
build
builds
built
builtin
builtins
bundle
but
by
byte
bytearray
bytecode
bytecodes
bytes
bytestring
bz
bzip
c
cache
cached
caches
call
callable
callables
callback
callbacks
calling
can
cancel
canine
cannot
capture
carriage
case
cased
casefolded
casefolding
caseless
cat
catch
cause
ceil
cellvars
center
cfg
cfuhash
chain
changes
char
character
charge
chdir
checked
choice
chomp
chr
class
classcell
classname
clear
close
closed
clossure
closure
cls
cmath
co
code
codec
codecs
collect
collection
collections
com
command
comp
comparison
compatibility
compilation
compile
compiled
compiler
complex
component
components
comprehension
comprehensions
concatenation
concurrently
conditions
config
configure
conflict
conflicts
cong
conjugate
connect
consistency
constructor
constructors
consts
container
containers
containment
contains
context
contexts
contiguous
control
conv
convenience
conversion
copies
copy
copying
copyright
coroutine
coroutines
cost
count
cout
coverage
coverdir
crc
create
crt
csv
csvfile
cubes
curl
currency
current
curses
cut
cx
d
daemon
data
date
datetime
day
days
dbm
de
dead
deal
debug
debugger
debugging
decimal
decorated
decorator
decorators
deemed
def
default
defaults
defghi
defined
deflate
deghi
del
delegation
delete
delimiters
demo
deploy
depth
deque
derivative
description
descriptor
descriptors
desktop
devel
dfn
dict
dictionaries
dictionary
did
dimensionally
dir
direct
directory
dishes
dispatch
display
dist
distribute
distribution
distutils
dll
do
doc
docstring
docstrings
doctest
documentation
does
doesn
dom
done
dot
dots
dotted
double
doubles
drag
dropping
dst
dtoa
duck
dunder
e
editor
editors
elem
elements
elif
else
email
embedded
encoding
end
endian
endianness
endorse
enter
entities
entries
entry
enum
env
epoch
eq
equidistributed
errno
error
errors
escape
escaped
escaping
et
eval
event
events
exc
except
exceptions
exe
exec
expat
expected
expensive
exponential
expression
expressions
extend
extension
external
extra
f
facto
factories
factory
false
fatal
favoring
fd
fib
fields
file
filename
filenamesize
files
filter
finder
finders
first
firstlineno
flag
flags
flatten
float
floating
floats
floor
fn
following
foo
for
forget
fork
form
format
formatted
formatting
formfeed
forms
found
frac
frame
frames
framework
frameworks
free
freevars
freeze
freshfruit
from
frozen
frozenset
frozensets
frozesets
fruit
fruits
fsum
func
function
functions
functools
future
g
gamma
garbage
gatewayed
gather
gauss
gc
gdb
ge
general
generator
generators
generic
generics
get
getattr
getcount
getcwd
getitem
getter
gid
global
globals
go
golf
gpa
grant
granted
grants
grape
grid
group
grouping
grungy
gt
guard
guru
gzip
h
hack
half
handler
has
hash
hashability
hashable
hashtag
heaps
hello
hellos
help
hereafter
hereby
herein
hertz
hex
hints
historic
holder
home
hook
hooks
host
hot
however
i
iPad
iPhone
id
idiom
if
ignore
ignoredirs
ignoreids
immutable
implement
implementation
import
importer
importers
importing
importlib
imports
in
inactive
include
included
including
incorporates
increase
index
indexed
indexes
indexing
indirect
inf
info
informal
inheritance
ini
init
initialization
initializations
initializers
initleo
initleoc
initlog
input
ins
insert
inst
insta
install
installation
installing
instance
instances
int
integer
integers
interactive
interchange
interface
interfaces
intern
internet
interpolated
interpolation
interpreted
interpreter
introspective
ints
invalid
inversion
invoke
is
ish
isinstance
it
item
items
iter
iterable
iterables
iterate
iterating
iteration
iterations
iterator
iterators
its
ium
j
join
joing
joint
juice
jump
k
key
keys
keyword
keywords
kilobytes
kind
kiwi
kqueue
kwd
kwdefaults
l
lang
last
lasti
launcher
lazy
le
leading
leap
leaping
left
legacy
len
length
leo
letters
lib
libc
libffi
license
life
like
limit
limitation