github-linguist 2.10.9 → 2.10.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/linguist +5 -1
- data/lib/linguist/heuristics.rb +15 -1
- data/lib/linguist/languages.yml +19 -1
- data/lib/linguist/samples.json +1075 -120
- metadata +24 -23
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3c892151f9e8f399282479c86435ba546770539
|
4
|
+
data.tar.gz: df5815ff91a44a1a2a3c14e281f9fdf11ca07541
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 09ba4690236b891538c69815b558cf1f72ba0bf43463eef2d0fc4f5901bdc08fcff048eead2d6e9c8a99a39888548d71499ad24f78fe42d1f565894b4639e74d
|
7
|
+
data.tar.gz: 0940a43ed586306003e888593cb73e86867bc264ae778109cbda4a713334b3b12d8db1740334a3c29628df43b2cd54efa2e40d54c4b8b4e9e1f19b3ed1256bdf
|
data/bin/linguist
CHANGED
@@ -28,7 +28,11 @@ if File.directory?(path)
|
|
28
28
|
puts
|
29
29
|
file_breakdown = repo.breakdown_by_file
|
30
30
|
file_breakdown.each do |lang, files|
|
31
|
-
puts "#{lang}:
|
31
|
+
puts "#{lang}:"
|
32
|
+
files.each do |file|
|
33
|
+
puts file
|
34
|
+
end
|
35
|
+
puts
|
32
36
|
end
|
33
37
|
end
|
34
38
|
elsif File.file?(path)
|
data/lib/linguist/heuristics.rb
CHANGED
@@ -19,6 +19,9 @@ module Linguist
|
|
19
19
|
if languages.all? { |l| ["Perl", "Prolog"].include?(l) }
|
20
20
|
disambiguate_pl(data, languages)
|
21
21
|
end
|
22
|
+
if languages.all? { |l| ["TypeScript", "XML"].include?(l) }
|
23
|
+
disambiguate_ts(data, languages)
|
24
|
+
end
|
22
25
|
end
|
23
26
|
end
|
24
27
|
|
@@ -33,9 +36,20 @@ module Linguist
|
|
33
36
|
matches
|
34
37
|
end
|
35
38
|
|
36
|
-
def
|
39
|
+
def self.disambiguate_pl(data, languages)
|
37
40
|
matches = []
|
38
41
|
matches << Language["Prolog"] if data.include?(":-")
|
42
|
+
matches << Language["Perl"] if data.include?("use strict")
|
43
|
+
matches
|
44
|
+
end
|
45
|
+
|
46
|
+
def self.disambiguate_ts(data, languages)
|
47
|
+
matches = []
|
48
|
+
if (data.include?("</translation>"))
|
49
|
+
matches << Language["XML"]
|
50
|
+
else
|
51
|
+
matches << Language["TypeScript"]
|
52
|
+
end
|
39
53
|
matches
|
40
54
|
end
|
41
55
|
|
data/lib/linguist/languages.yml
CHANGED
@@ -225,6 +225,7 @@ C#:
|
|
225
225
|
- csharp
|
226
226
|
primary_extension: .cs
|
227
227
|
extensions:
|
228
|
+
- .cshtml
|
228
229
|
- .csx
|
229
230
|
|
230
231
|
C++:
|
@@ -387,7 +388,7 @@ Crystal:
|
|
387
388
|
lexer: Ruby
|
388
389
|
primary_extension: .cr
|
389
390
|
ace_mode: ruby
|
390
|
-
|
391
|
+
|
391
392
|
Cucumber:
|
392
393
|
lexer: Gherkin
|
393
394
|
primary_extension: .feature
|
@@ -732,6 +733,13 @@ Haxe:
|
|
732
733
|
extensions:
|
733
734
|
- .hxsl
|
734
735
|
|
736
|
+
Hy:
|
737
|
+
type: programming
|
738
|
+
lexer: Clojure
|
739
|
+
ace_mode: clojure
|
740
|
+
color: "#7891b1"
|
741
|
+
primary_extension: .hy
|
742
|
+
|
735
743
|
IDL:
|
736
744
|
type: programming
|
737
745
|
lexer: Text only
|
@@ -1164,6 +1172,12 @@ Oxygene:
|
|
1164
1172
|
color: "#5a63a3"
|
1165
1173
|
primary_extension: .oxygene
|
1166
1174
|
|
1175
|
+
PAWN:
|
1176
|
+
type: programming
|
1177
|
+
lexer: C++
|
1178
|
+
color: "#dbb284"
|
1179
|
+
primary_extension: .pwn
|
1180
|
+
|
1167
1181
|
PHP:
|
1168
1182
|
type: programming
|
1169
1183
|
ace_mode: php
|
@@ -1344,6 +1358,8 @@ R:
|
|
1344
1358
|
type: programming
|
1345
1359
|
color: "#198ce7"
|
1346
1360
|
lexer: S
|
1361
|
+
aliases:
|
1362
|
+
- R
|
1347
1363
|
primary_extension: .r
|
1348
1364
|
extensions:
|
1349
1365
|
- .R
|
@@ -1622,6 +1638,7 @@ TeX:
|
|
1622
1638
|
extensions:
|
1623
1639
|
- .aux
|
1624
1640
|
- .bib
|
1641
|
+
- .cls
|
1625
1642
|
- .dtx
|
1626
1643
|
- .ins
|
1627
1644
|
- .ltx
|
@@ -1728,6 +1745,7 @@ Visual Basic:
|
|
1728
1745
|
- .frm
|
1729
1746
|
- .frx
|
1730
1747
|
- .vba
|
1748
|
+
- .vbhtml
|
1731
1749
|
- .vbs
|
1732
1750
|
|
1733
1751
|
Volt:
|
data/lib/linguist/samples.json
CHANGED
@@ -39,6 +39,10 @@
|
|
39
39
|
".c",
|
40
40
|
".h"
|
41
41
|
],
|
42
|
+
"C#": [
|
43
|
+
".cs",
|
44
|
+
".cshtml"
|
45
|
+
],
|
42
46
|
"C++": [
|
43
47
|
".cc",
|
44
48
|
".cpp",
|
@@ -142,6 +146,9 @@
|
|
142
146
|
".handlebars",
|
143
147
|
".hbs"
|
144
148
|
],
|
149
|
+
"Hy": [
|
150
|
+
".hy"
|
151
|
+
],
|
145
152
|
"IDL": [
|
146
153
|
".dlm",
|
147
154
|
".pro"
|
@@ -287,6 +294,9 @@
|
|
287
294
|
"Pascal": [
|
288
295
|
".dpr"
|
289
296
|
],
|
297
|
+
"PAWN": [
|
298
|
+
".pwn"
|
299
|
+
],
|
290
300
|
"Perl": [
|
291
301
|
".fcgi",
|
292
302
|
".pl",
|
@@ -319,6 +329,10 @@
|
|
319
329
|
"Processing": [
|
320
330
|
".pde"
|
321
331
|
],
|
332
|
+
"Prolog": [
|
333
|
+
".pl",
|
334
|
+
".prolog"
|
335
|
+
],
|
322
336
|
"Protocol Buffer": [
|
323
337
|
".proto"
|
324
338
|
],
|
@@ -429,7 +443,9 @@
|
|
429
443
|
".vhd"
|
430
444
|
],
|
431
445
|
"Visual Basic": [
|
432
|
-
".cls"
|
446
|
+
".cls",
|
447
|
+
".vb",
|
448
|
+
".vbhtml"
|
433
449
|
],
|
434
450
|
"Volt": [
|
435
451
|
".volt"
|
@@ -519,8 +535,8 @@
|
|
519
535
|
".gemrc"
|
520
536
|
]
|
521
537
|
},
|
522
|
-
"tokens_total":
|
523
|
-
"languages_total":
|
538
|
+
"tokens_total": 445429,
|
539
|
+
"languages_total": 523,
|
524
540
|
"tokens": {
|
525
541
|
"ABAP": {
|
526
542
|
"*/**": 1,
|
@@ -2945,20 +2961,20 @@
|
|
2945
2961
|
"buttons": 1
|
2946
2962
|
},
|
2947
2963
|
"C": {
|
2948
|
-
"#include":
|
2964
|
+
"#include": 152,
|
2949
2965
|
"const": 358,
|
2950
|
-
"char":
|
2966
|
+
"char": 530,
|
2951
2967
|
"*blob_type": 2,
|
2952
|
-
";":
|
2953
|
-
"struct":
|
2968
|
+
";": 5465,
|
2969
|
+
"struct": 360,
|
2954
2970
|
"blob": 6,
|
2955
2971
|
"*lookup_blob": 2,
|
2956
|
-
"(":
|
2972
|
+
"(": 6238,
|
2957
2973
|
"unsigned": 140,
|
2958
2974
|
"*sha1": 16,
|
2959
|
-
")":
|
2960
|
-
"{":
|
2961
|
-
"object":
|
2975
|
+
")": 6240,
|
2976
|
+
"{": 1531,
|
2977
|
+
"object": 41,
|
2962
2978
|
"*obj": 9,
|
2963
2979
|
"lookup_object": 2,
|
2964
2980
|
"sha1": 20,
|
@@ -2974,22 +2990,66 @@
|
|
2974
2990
|
"sha1_to_hex": 8,
|
2975
2991
|
"typename": 2,
|
2976
2992
|
"NULL": 330,
|
2977
|
-
"}":
|
2978
|
-
"*":
|
2993
|
+
"}": 1547,
|
2994
|
+
"*": 261,
|
2979
2995
|
"int": 446,
|
2980
2996
|
"parse_blob_buffer": 2,
|
2981
2997
|
"*item": 10,
|
2982
|
-
"void":
|
2998
|
+
"void": 288,
|
2983
2999
|
"*buffer": 6,
|
2984
3000
|
"long": 105,
|
2985
3001
|
"size": 120,
|
2986
3002
|
"item": 24,
|
2987
3003
|
"object.parsed": 4,
|
2988
|
-
"#ifndef":
|
3004
|
+
"#ifndef": 87,
|
2989
3005
|
"BLOB_H": 2,
|
2990
|
-
"#define":
|
3006
|
+
"#define": 913,
|
2991
3007
|
"extern": 38,
|
2992
|
-
"#endif":
|
3008
|
+
"#endif": 241,
|
3009
|
+
"BOOTSTRAP_H": 2,
|
3010
|
+
"<stdio.h>": 8,
|
3011
|
+
"__GNUC__": 8,
|
3012
|
+
"typedef": 191,
|
3013
|
+
"*true": 1,
|
3014
|
+
"*false": 1,
|
3015
|
+
"*eof": 1,
|
3016
|
+
"*empty_list": 1,
|
3017
|
+
"*global_enviroment": 1,
|
3018
|
+
"enum": 30,
|
3019
|
+
"obj_type": 1,
|
3020
|
+
"scm_bool": 1,
|
3021
|
+
"scm_empty_list": 1,
|
3022
|
+
"scm_eof": 1,
|
3023
|
+
"scm_char": 1,
|
3024
|
+
"scm_int": 1,
|
3025
|
+
"scm_pair": 1,
|
3026
|
+
"scm_symbol": 1,
|
3027
|
+
"scm_prim_fun": 1,
|
3028
|
+
"scm_lambda": 1,
|
3029
|
+
"scm_str": 1,
|
3030
|
+
"scm_file": 1,
|
3031
|
+
"*eval_proc": 1,
|
3032
|
+
"*maybe_add_begin": 1,
|
3033
|
+
"*code": 2,
|
3034
|
+
"init_enviroment": 1,
|
3035
|
+
"*env": 4,
|
3036
|
+
"eval_err": 1,
|
3037
|
+
"*msg": 7,
|
3038
|
+
"__attribute__": 1,
|
3039
|
+
"noreturn": 1,
|
3040
|
+
"define_var": 1,
|
3041
|
+
"*var": 4,
|
3042
|
+
"*val": 6,
|
3043
|
+
"set_var": 1,
|
3044
|
+
"*get_var": 1,
|
3045
|
+
"*cond2nested_if": 1,
|
3046
|
+
"*cond": 1,
|
3047
|
+
"*let2lambda": 1,
|
3048
|
+
"*let": 1,
|
3049
|
+
"*and2nested_if": 1,
|
3050
|
+
"*and": 1,
|
3051
|
+
"*or2nested_if": 1,
|
3052
|
+
"*or": 1,
|
2993
3053
|
"git_cache_init": 1,
|
2994
3054
|
"git_cache": 4,
|
2995
3055
|
"*cache": 4,
|
@@ -3137,7 +3197,6 @@
|
|
3137
3197
|
"commit_list_insert": 2,
|
3138
3198
|
"next": 8,
|
3139
3199
|
"date": 5,
|
3140
|
-
"enum": 29,
|
3141
3200
|
"object_type": 1,
|
3142
3201
|
"ret": 142,
|
3143
3202
|
"read_sha1_file": 1,
|
@@ -3219,7 +3278,6 @@
|
|
3219
3278
|
"*format_subject": 1,
|
3220
3279
|
"strbuf": 12,
|
3221
3280
|
"*sb": 7,
|
3222
|
-
"*msg": 6,
|
3223
3281
|
"*line_separator": 1,
|
3224
3282
|
"userformat_find_requirements": 1,
|
3225
3283
|
"*fmt": 2,
|
@@ -3250,7 +3308,6 @@
|
|
3250
3308
|
"list": 1,
|
3251
3309
|
"lifo": 1,
|
3252
3310
|
"FLEX_ARRAY": 1,
|
3253
|
-
"typedef": 189,
|
3254
3311
|
"*read_graft_line": 1,
|
3255
3312
|
"len": 30,
|
3256
3313
|
"*lookup_commit_graft": 1,
|
@@ -3838,7 +3895,6 @@
|
|
3838
3895
|
"*cmd": 5,
|
3839
3896
|
"want": 3,
|
3840
3897
|
"pager_command_config": 2,
|
3841
|
-
"*var": 1,
|
3842
3898
|
"*data": 12,
|
3843
3899
|
"data": 69,
|
3844
3900
|
"prefixcmp": 3,
|
@@ -4059,7 +4115,6 @@
|
|
4059
4115
|
"vec": 2,
|
4060
4116
|
".data": 1,
|
4061
4117
|
".len": 3,
|
4062
|
-
"<stdio.h>": 7,
|
4063
4118
|
"HELLO_H": 2,
|
4064
4119
|
"hello": 1,
|
4065
4120
|
"<assert.h>": 5,
|
@@ -4985,7 +5040,6 @@
|
|
4985
5040
|
"COVERAGE_TEST": 1,
|
4986
5041
|
"dictVanillaFree": 1,
|
4987
5042
|
"*privdata": 8,
|
4988
|
-
"*val": 4,
|
4989
5043
|
"DICT_NOTUSED": 6,
|
4990
5044
|
"privdata": 8,
|
4991
5045
|
"zfree": 2,
|
@@ -5511,7 +5565,6 @@
|
|
5511
5565
|
"name.release": 1,
|
5512
5566
|
"name.machine": 1,
|
5513
5567
|
"aeGetApiName": 1,
|
5514
|
-
"__GNUC__": 7,
|
5515
5568
|
"__GNUC_MINOR__": 2,
|
5516
5569
|
"__GNUC_PATCHLEVEL__": 1,
|
5517
5570
|
"uptime/": 1,
|
@@ -8567,6 +8620,183 @@
|
|
8567
8620
|
"yajl_get_bytes_consumed": 1,
|
8568
8621
|
"yajl_free_error": 1
|
8569
8622
|
},
|
8623
|
+
"C#": {
|
8624
|
+
"@": 1,
|
8625
|
+
"{": 5,
|
8626
|
+
"ViewBag.Title": 1,
|
8627
|
+
";": 8,
|
8628
|
+
"}": 5,
|
8629
|
+
"@section": 1,
|
8630
|
+
"featured": 1,
|
8631
|
+
"<section>": 1,
|
8632
|
+
"class=": 7,
|
8633
|
+
"<div>": 1,
|
8634
|
+
"<hgroup>": 1,
|
8635
|
+
"<h1>": 1,
|
8636
|
+
"@ViewBag.Title.": 1,
|
8637
|
+
"</h1>": 1,
|
8638
|
+
"<h2>": 1,
|
8639
|
+
"@ViewBag.Message": 1,
|
8640
|
+
"</h2>": 1,
|
8641
|
+
"</hgroup>": 1,
|
8642
|
+
"<p>": 1,
|
8643
|
+
"To": 1,
|
8644
|
+
"learn": 1,
|
8645
|
+
"more": 4,
|
8646
|
+
"about": 2,
|
8647
|
+
"ASP.NET": 5,
|
8648
|
+
"MVC": 4,
|
8649
|
+
"visit": 2,
|
8650
|
+
"<a>": 5,
|
8651
|
+
"href=": 5,
|
8652
|
+
"title=": 2,
|
8653
|
+
"http": 1,
|
8654
|
+
"//asp.net/mvc": 1,
|
8655
|
+
"</a>": 5,
|
8656
|
+
".": 2,
|
8657
|
+
"The": 1,
|
8658
|
+
"page": 1,
|
8659
|
+
"features": 3,
|
8660
|
+
"<mark>": 1,
|
8661
|
+
"videos": 1,
|
8662
|
+
"tutorials": 1,
|
8663
|
+
"and": 6,
|
8664
|
+
"samples": 1,
|
8665
|
+
"</mark>": 1,
|
8666
|
+
"to": 4,
|
8667
|
+
"help": 1,
|
8668
|
+
"you": 4,
|
8669
|
+
"get": 1,
|
8670
|
+
"the": 5,
|
8671
|
+
"most": 1,
|
8672
|
+
"from": 1,
|
8673
|
+
"MVC.": 1,
|
8674
|
+
"If": 1,
|
8675
|
+
"have": 1,
|
8676
|
+
"any": 1,
|
8677
|
+
"questions": 1,
|
8678
|
+
"our": 1,
|
8679
|
+
"forums": 1,
|
8680
|
+
"</p>": 1,
|
8681
|
+
"</div>": 1,
|
8682
|
+
"</section>": 1,
|
8683
|
+
"<h3>": 1,
|
8684
|
+
"We": 1,
|
8685
|
+
"suggest": 1,
|
8686
|
+
"following": 1,
|
8687
|
+
"</h3>": 1,
|
8688
|
+
"<ol>": 1,
|
8689
|
+
"<li>": 3,
|
8690
|
+
"<h5>": 3,
|
8691
|
+
"Getting": 1,
|
8692
|
+
"Started": 1,
|
8693
|
+
"</h5>": 3,
|
8694
|
+
"gives": 2,
|
8695
|
+
"a": 3,
|
8696
|
+
"powerful": 1,
|
8697
|
+
"patterns": 1,
|
8698
|
+
"-": 3,
|
8699
|
+
"based": 1,
|
8700
|
+
"way": 1,
|
8701
|
+
"build": 1,
|
8702
|
+
"dynamic": 1,
|
8703
|
+
"websites": 1,
|
8704
|
+
"that": 5,
|
8705
|
+
"enables": 1,
|
8706
|
+
"clean": 1,
|
8707
|
+
"separation": 1,
|
8708
|
+
"of": 2,
|
8709
|
+
"concerns": 1,
|
8710
|
+
"full": 1,
|
8711
|
+
"control": 1,
|
8712
|
+
"over": 1,
|
8713
|
+
"markup": 1,
|
8714
|
+
"for": 4,
|
8715
|
+
"enjoyable": 1,
|
8716
|
+
"agile": 1,
|
8717
|
+
"development.": 1,
|
8718
|
+
"includes": 1,
|
8719
|
+
"many": 1,
|
8720
|
+
"enable": 1,
|
8721
|
+
"fast": 1,
|
8722
|
+
"TDD": 1,
|
8723
|
+
"friendly": 1,
|
8724
|
+
"development": 1,
|
8725
|
+
"creating": 1,
|
8726
|
+
"sophisticated": 1,
|
8727
|
+
"applications": 1,
|
8728
|
+
"use": 1,
|
8729
|
+
"latest": 1,
|
8730
|
+
"web": 2,
|
8731
|
+
"standards.": 1,
|
8732
|
+
"Learn": 3,
|
8733
|
+
"</li>": 3,
|
8734
|
+
"Add": 1,
|
8735
|
+
"NuGet": 2,
|
8736
|
+
"packages": 1,
|
8737
|
+
"jump": 1,
|
8738
|
+
"start": 1,
|
8739
|
+
"your": 2,
|
8740
|
+
"coding": 1,
|
8741
|
+
"makes": 1,
|
8742
|
+
"it": 2,
|
8743
|
+
"easy": 1,
|
8744
|
+
"install": 1,
|
8745
|
+
"update": 1,
|
8746
|
+
"free": 1,
|
8747
|
+
"libraries": 1,
|
8748
|
+
"tools.": 1,
|
8749
|
+
"Find": 1,
|
8750
|
+
"Web": 1,
|
8751
|
+
"Hosting": 1,
|
8752
|
+
"You": 1,
|
8753
|
+
"can": 1,
|
8754
|
+
"easily": 1,
|
8755
|
+
"find": 1,
|
8756
|
+
"hosting": 1,
|
8757
|
+
"company": 1,
|
8758
|
+
"offers": 1,
|
8759
|
+
"right": 1,
|
8760
|
+
"mix": 1,
|
8761
|
+
"price": 1,
|
8762
|
+
"applications.": 1,
|
8763
|
+
"</ol>": 1,
|
8764
|
+
"using": 5,
|
8765
|
+
"System": 1,
|
8766
|
+
"System.Collections.Generic": 1,
|
8767
|
+
"System.Linq": 1,
|
8768
|
+
"System.Text": 1,
|
8769
|
+
"System.Threading.Tasks": 1,
|
8770
|
+
"namespace": 1,
|
8771
|
+
"LittleSampleApp": 1,
|
8772
|
+
"///": 4,
|
8773
|
+
"<summary>": 1,
|
8774
|
+
"Just": 1,
|
8775
|
+
"what": 1,
|
8776
|
+
"says": 1,
|
8777
|
+
"on": 1,
|
8778
|
+
"tin.": 1,
|
8779
|
+
"A": 1,
|
8780
|
+
"little": 1,
|
8781
|
+
"sample": 1,
|
8782
|
+
"application": 1,
|
8783
|
+
"Linguist": 1,
|
8784
|
+
"try": 1,
|
8785
|
+
"out.": 1,
|
8786
|
+
"</summary>": 1,
|
8787
|
+
"class": 1,
|
8788
|
+
"Program": 1,
|
8789
|
+
"static": 1,
|
8790
|
+
"void": 1,
|
8791
|
+
"Main": 1,
|
8792
|
+
"(": 3,
|
8793
|
+
"string": 1,
|
8794
|
+
"[": 1,
|
8795
|
+
"]": 1,
|
8796
|
+
"args": 1,
|
8797
|
+
")": 3,
|
8798
|
+
"Console.WriteLine": 2
|
8799
|
+
},
|
8570
8800
|
"C++": {
|
8571
8801
|
"class": 40,
|
8572
8802
|
"Bar": 2,
|
@@ -15658,29 +15888,34 @@
|
|
15658
15888
|
"return": 1
|
15659
15889
|
},
|
15660
15890
|
"Dart": {
|
15891
|
+
"import": 1,
|
15892
|
+
"as": 1,
|
15893
|
+
"math": 1,
|
15894
|
+
";": 9,
|
15661
15895
|
"class": 1,
|
15662
|
-
"Point":
|
15896
|
+
"Point": 5,
|
15663
15897
|
"{": 3,
|
15898
|
+
"num": 2,
|
15899
|
+
"x": 2,
|
15900
|
+
"y": 2,
|
15664
15901
|
"(": 7,
|
15665
15902
|
"this.x": 1,
|
15666
15903
|
"this.y": 1,
|
15667
15904
|
")": 7,
|
15668
|
-
";": 8,
|
15669
15905
|
"distanceTo": 1,
|
15670
15906
|
"other": 1,
|
15671
|
-
"var":
|
15907
|
+
"var": 4,
|
15672
15908
|
"dx": 3,
|
15673
|
-
"x": 2,
|
15674
15909
|
"-": 2,
|
15675
15910
|
"other.x": 1,
|
15676
15911
|
"dy": 3,
|
15677
|
-
"y": 2,
|
15678
15912
|
"other.y": 1,
|
15679
15913
|
"return": 1,
|
15680
|
-
"
|
15914
|
+
"math.sqrt": 1,
|
15681
15915
|
"*": 2,
|
15682
15916
|
"+": 1,
|
15683
15917
|
"}": 3,
|
15918
|
+
"void": 1,
|
15684
15919
|
"main": 1,
|
15685
15920
|
"p": 1,
|
15686
15921
|
"new": 2,
|
@@ -17963,6 +18198,51 @@
|
|
17963
18198
|
"</h2>": 1,
|
17964
18199
|
"/each": 1
|
17965
18200
|
},
|
18201
|
+
"Hy": {
|
18202
|
+
";": 4,
|
18203
|
+
"Fibonacci": 1,
|
18204
|
+
"example": 2,
|
18205
|
+
"in": 2,
|
18206
|
+
"Hy.": 2,
|
18207
|
+
"(": 28,
|
18208
|
+
"defn": 2,
|
18209
|
+
"fib": 4,
|
18210
|
+
"[": 10,
|
18211
|
+
"n": 5,
|
18212
|
+
"]": 10,
|
18213
|
+
"if": 2,
|
18214
|
+
"<": 1,
|
18215
|
+
")": 28,
|
18216
|
+
"+": 1,
|
18217
|
+
"-": 10,
|
18218
|
+
"__name__": 1,
|
18219
|
+
"for": 2,
|
18220
|
+
"x": 3,
|
18221
|
+
"print": 1,
|
18222
|
+
"The": 1,
|
18223
|
+
"concurrent.futures": 2,
|
18224
|
+
"import": 1,
|
18225
|
+
"ThreadPoolExecutor": 2,
|
18226
|
+
"as": 3,
|
18227
|
+
"completed": 2,
|
18228
|
+
"random": 1,
|
18229
|
+
"randint": 2,
|
18230
|
+
"sh": 1,
|
18231
|
+
"sleep": 2,
|
18232
|
+
"task": 2,
|
18233
|
+
"to": 2,
|
18234
|
+
"do": 2,
|
18235
|
+
"with": 1,
|
18236
|
+
"executor": 2,
|
18237
|
+
"setv": 1,
|
18238
|
+
"jobs": 2,
|
18239
|
+
"list": 1,
|
18240
|
+
"comp": 1,
|
18241
|
+
".submit": 1,
|
18242
|
+
"range": 1,
|
18243
|
+
"future": 2,
|
18244
|
+
".result": 1
|
18245
|
+
},
|
17966
18246
|
"IDL": {
|
17967
18247
|
";": 59,
|
17968
18248
|
"docformat": 3,
|
@@ -35283,6 +35563,165 @@
|
|
35283
35563
|
"Application.Run": 1,
|
35284
35564
|
"end.": 1
|
35285
35565
|
},
|
35566
|
+
"PAWN": {
|
35567
|
+
"//": 22,
|
35568
|
+
"-": 1551,
|
35569
|
+
"#include": 5,
|
35570
|
+
"<a_samp>": 1,
|
35571
|
+
"<core>": 1,
|
35572
|
+
"<float>": 1,
|
35573
|
+
"#pragma": 1,
|
35574
|
+
"tabsize": 1,
|
35575
|
+
"#define": 5,
|
35576
|
+
"COLOR_WHITE": 2,
|
35577
|
+
"xFFFFFFFF": 2,
|
35578
|
+
"COLOR_NORMAL_PLAYER": 3,
|
35579
|
+
"xFFBB7777": 1,
|
35580
|
+
"CITY_LOS_SANTOS": 7,
|
35581
|
+
"CITY_SAN_FIERRO": 4,
|
35582
|
+
"CITY_LAS_VENTURAS": 6,
|
35583
|
+
"new": 13,
|
35584
|
+
"total_vehicles_from_files": 19,
|
35585
|
+
";": 257,
|
35586
|
+
"gPlayerCitySelection": 21,
|
35587
|
+
"[": 56,
|
35588
|
+
"MAX_PLAYERS": 3,
|
35589
|
+
"]": 56,
|
35590
|
+
"gPlayerHasCitySelected": 6,
|
35591
|
+
"gPlayerLastCitySelectionTick": 5,
|
35592
|
+
"Text": 5,
|
35593
|
+
"txtClassSelHelper": 14,
|
35594
|
+
"txtLosSantos": 7,
|
35595
|
+
"txtSanFierro": 7,
|
35596
|
+
"txtLasVenturas": 7,
|
35597
|
+
"thisanimid": 1,
|
35598
|
+
"lastanimid": 1,
|
35599
|
+
"main": 1,
|
35600
|
+
"(": 273,
|
35601
|
+
")": 273,
|
35602
|
+
"{": 39,
|
35603
|
+
"print": 3,
|
35604
|
+
"}": 39,
|
35605
|
+
"public": 6,
|
35606
|
+
"OnPlayerConnect": 1,
|
35607
|
+
"playerid": 132,
|
35608
|
+
"GameTextForPlayer": 1,
|
35609
|
+
"SendClientMessage": 1,
|
35610
|
+
"GetTickCount": 4,
|
35611
|
+
"//SetPlayerColor": 2,
|
35612
|
+
"//Kick": 1,
|
35613
|
+
"return": 17,
|
35614
|
+
"OnPlayerSpawn": 1,
|
35615
|
+
"if": 28,
|
35616
|
+
"IsPlayerNPC": 3,
|
35617
|
+
"randSpawn": 16,
|
35618
|
+
"SetPlayerInterior": 7,
|
35619
|
+
"TogglePlayerClock": 2,
|
35620
|
+
"ResetPlayerMoney": 3,
|
35621
|
+
"GivePlayerMoney": 2,
|
35622
|
+
"random": 3,
|
35623
|
+
"sizeof": 3,
|
35624
|
+
"gRandomSpawns_LosSantos": 5,
|
35625
|
+
"SetPlayerPos": 6,
|
35626
|
+
"SetPlayerFacingAngle": 6,
|
35627
|
+
"else": 9,
|
35628
|
+
"gRandomSpawns_SanFierro": 5,
|
35629
|
+
"gRandomSpawns_LasVenturas": 5,
|
35630
|
+
"SetPlayerSkillLevel": 11,
|
35631
|
+
"WEAPONSKILL_PISTOL": 1,
|
35632
|
+
"WEAPONSKILL_PISTOL_SILENCED": 1,
|
35633
|
+
"WEAPONSKILL_DESERT_EAGLE": 1,
|
35634
|
+
"WEAPONSKILL_SHOTGUN": 1,
|
35635
|
+
"WEAPONSKILL_SAWNOFF_SHOTGUN": 1,
|
35636
|
+
"WEAPONSKILL_SPAS12_SHOTGUN": 1,
|
35637
|
+
"WEAPONSKILL_MICRO_UZI": 1,
|
35638
|
+
"WEAPONSKILL_MP5": 1,
|
35639
|
+
"WEAPONSKILL_AK47": 1,
|
35640
|
+
"WEAPONSKILL_M4": 1,
|
35641
|
+
"WEAPONSKILL_SNIPERRIFLE": 1,
|
35642
|
+
"GivePlayerWeapon": 1,
|
35643
|
+
"WEAPON_COLT45": 1,
|
35644
|
+
"//GivePlayerWeapon": 1,
|
35645
|
+
"WEAPON_MP5": 1,
|
35646
|
+
"OnPlayerDeath": 1,
|
35647
|
+
"killerid": 3,
|
35648
|
+
"reason": 1,
|
35649
|
+
"playercash": 4,
|
35650
|
+
"INVALID_PLAYER_ID": 1,
|
35651
|
+
"GetPlayerMoney": 1,
|
35652
|
+
"ClassSel_SetupCharSelection": 2,
|
35653
|
+
"SetPlayerCameraPos": 6,
|
35654
|
+
"SetPlayerCameraLookAt": 6,
|
35655
|
+
"ClassSel_InitCityNameText": 4,
|
35656
|
+
"txtInit": 7,
|
35657
|
+
"TextDrawUseBox": 2,
|
35658
|
+
"TextDrawLetterSize": 2,
|
35659
|
+
"TextDrawFont": 2,
|
35660
|
+
"TextDrawSetShadow": 2,
|
35661
|
+
"TextDrawSetOutline": 2,
|
35662
|
+
"TextDrawColor": 2,
|
35663
|
+
"xEEEEEEFF": 1,
|
35664
|
+
"TextDrawBackgroundColor": 2,
|
35665
|
+
"FF": 2,
|
35666
|
+
"ClassSel_InitTextDraws": 2,
|
35667
|
+
"TextDrawCreate": 4,
|
35668
|
+
"TextDrawBoxColor": 1,
|
35669
|
+
"BB": 1,
|
35670
|
+
"TextDrawTextSize": 1,
|
35671
|
+
"ClassSel_SetupSelectedCity": 3,
|
35672
|
+
"TextDrawShowForPlayer": 4,
|
35673
|
+
"TextDrawHideForPlayer": 10,
|
35674
|
+
"ClassSel_SwitchToNextCity": 3,
|
35675
|
+
"+": 19,
|
35676
|
+
"PlayerPlaySound": 2,
|
35677
|
+
"ClassSel_SwitchToPreviousCity": 2,
|
35678
|
+
"<": 3,
|
35679
|
+
"ClassSel_HandleCitySelection": 2,
|
35680
|
+
"Keys": 3,
|
35681
|
+
"ud": 2,
|
35682
|
+
"lr": 4,
|
35683
|
+
"GetPlayerKeys": 1,
|
35684
|
+
"&": 1,
|
35685
|
+
"KEY_FIRE": 1,
|
35686
|
+
"TogglePlayerSpectating": 2,
|
35687
|
+
"OnPlayerRequestClass": 1,
|
35688
|
+
"classid": 1,
|
35689
|
+
"GetPlayerState": 2,
|
35690
|
+
"PLAYER_STATE_SPECTATING": 2,
|
35691
|
+
"OnGameModeInit": 1,
|
35692
|
+
"SetGameModeText": 1,
|
35693
|
+
"ShowPlayerMarkers": 1,
|
35694
|
+
"PLAYER_MARKERS_MODE_GLOBAL": 1,
|
35695
|
+
"ShowNameTags": 1,
|
35696
|
+
"SetNameTagDrawDistance": 1,
|
35697
|
+
"EnableStuntBonusForAll": 1,
|
35698
|
+
"DisableInteriorEnterExits": 1,
|
35699
|
+
"SetWeather": 1,
|
35700
|
+
"SetWorldTime": 1,
|
35701
|
+
"//UsePlayerPedAnims": 1,
|
35702
|
+
"//ManualVehicleEngineAndLights": 1,
|
35703
|
+
"//LimitGlobalChatRadius": 1,
|
35704
|
+
"AddPlayerClass": 69,
|
35705
|
+
"//AddPlayerClass": 1,
|
35706
|
+
"LoadStaticVehiclesFromFile": 17,
|
35707
|
+
"printf": 1,
|
35708
|
+
"OnPlayerUpdate": 1,
|
35709
|
+
"IsPlayerConnected": 1,
|
35710
|
+
"&&": 2,
|
35711
|
+
"GetPlayerInterior": 1,
|
35712
|
+
"GetPlayerWeapon": 2,
|
35713
|
+
"SetPlayerArmedWeapon": 1,
|
35714
|
+
"fists": 1,
|
35715
|
+
"no": 1,
|
35716
|
+
"syncing": 1,
|
35717
|
+
"until": 1,
|
35718
|
+
"they": 1,
|
35719
|
+
"change": 1,
|
35720
|
+
"their": 1,
|
35721
|
+
"weapon": 1,
|
35722
|
+
"WEAPON_MINIGUN": 1,
|
35723
|
+
"Kick": 1
|
35724
|
+
},
|
35286
35725
|
"Perl": {
|
35287
35726
|
"package": 14,
|
35288
35727
|
"App": 131,
|
@@ -38586,6 +39025,56 @@
|
|
38586
39025
|
"PI": 1,
|
38587
39026
|
"TWO_PI": 1
|
38588
39027
|
},
|
39028
|
+
"Prolog": {
|
39029
|
+
"-": 38,
|
39030
|
+
"male": 3,
|
39031
|
+
"(": 29,
|
39032
|
+
"john": 2,
|
39033
|
+
")": 29,
|
39034
|
+
".": 17,
|
39035
|
+
"peter": 3,
|
39036
|
+
"female": 2,
|
39037
|
+
"vick": 2,
|
39038
|
+
"christie": 3,
|
39039
|
+
"parents": 4,
|
39040
|
+
"brother": 1,
|
39041
|
+
"X": 3,
|
39042
|
+
"Y": 2,
|
39043
|
+
"F": 2,
|
39044
|
+
"M": 2,
|
39045
|
+
"turing": 1,
|
39046
|
+
"Tape0": 2,
|
39047
|
+
"Tape": 2,
|
39048
|
+
"perform": 4,
|
39049
|
+
"q0": 1,
|
39050
|
+
"[": 12,
|
39051
|
+
"]": 12,
|
39052
|
+
"Ls": 12,
|
39053
|
+
"Rs": 16,
|
39054
|
+
"reverse": 1,
|
39055
|
+
"Ls1": 4,
|
39056
|
+
"append": 1,
|
39057
|
+
"qf": 1,
|
39058
|
+
"Q0": 2,
|
39059
|
+
"Ls0": 6,
|
39060
|
+
"Rs0": 6,
|
39061
|
+
"symbol": 3,
|
39062
|
+
"Sym": 6,
|
39063
|
+
"RsRest": 2,
|
39064
|
+
"once": 1,
|
39065
|
+
"rule": 1,
|
39066
|
+
"Q1": 2,
|
39067
|
+
"NewSym": 2,
|
39068
|
+
"Action": 2,
|
39069
|
+
"action": 4,
|
39070
|
+
"|": 7,
|
39071
|
+
"Rs1": 2,
|
39072
|
+
"b": 2,
|
39073
|
+
"left": 4,
|
39074
|
+
"stay": 1,
|
39075
|
+
"right": 1,
|
39076
|
+
"L": 2
|
39077
|
+
},
|
38589
39078
|
"Protocol Buffer": {
|
38590
39079
|
"package": 1,
|
38591
39080
|
"tutorial": 1,
|
@@ -43709,42 +44198,365 @@
|
|
43709
44198
|
"foo": 1
|
43710
44199
|
},
|
43711
44200
|
"TeX": {
|
43712
|
-
"%":
|
44201
|
+
"%": 135,
|
44202
|
+
"ProvidesClass": 2,
|
44203
|
+
"{": 463,
|
44204
|
+
"problemset": 1,
|
44205
|
+
"}": 469,
|
44206
|
+
"DeclareOption*": 2,
|
44207
|
+
"PassOptionsToClass": 2,
|
44208
|
+
"final": 2,
|
44209
|
+
"article": 2,
|
44210
|
+
"DeclareOption": 2,
|
44211
|
+
"worksheet": 1,
|
44212
|
+
"providecommand": 45,
|
44213
|
+
"@solutionvis": 3,
|
44214
|
+
"expand": 1,
|
44215
|
+
"@expand": 3,
|
44216
|
+
"ProcessOptions": 2,
|
44217
|
+
"relax": 3,
|
44218
|
+
"LoadClass": 2,
|
44219
|
+
"[": 81,
|
44220
|
+
"pt": 5,
|
44221
|
+
"letterpaper": 1,
|
44222
|
+
"]": 80,
|
44223
|
+
"RequirePackage": 20,
|
44224
|
+
"top": 1,
|
44225
|
+
"in": 20,
|
44226
|
+
"bottom": 1,
|
44227
|
+
"left": 15,
|
44228
|
+
"right": 16,
|
44229
|
+
"geometry": 1,
|
44230
|
+
"pgfkeys": 1,
|
44231
|
+
"For": 13,
|
44232
|
+
"mathtable": 2,
|
44233
|
+
"environment.": 3,
|
44234
|
+
"tabularx": 1,
|
44235
|
+
"pset": 1,
|
44236
|
+
"heading": 2,
|
44237
|
+
"float": 1,
|
44238
|
+
"Used": 6,
|
44239
|
+
"for": 21,
|
44240
|
+
"floats": 1,
|
44241
|
+
"(": 12,
|
44242
|
+
"tables": 1,
|
44243
|
+
"figures": 1,
|
44244
|
+
"etc.": 1,
|
44245
|
+
")": 12,
|
44246
|
+
"graphicx": 1,
|
44247
|
+
"inserting": 3,
|
44248
|
+
"images.": 1,
|
44249
|
+
"enumerate": 2,
|
44250
|
+
"the": 19,
|
44251
|
+
"mathtools": 2,
|
44252
|
+
"Required.": 7,
|
44253
|
+
"Loads": 1,
|
44254
|
+
"amsmath.": 1,
|
44255
|
+
"amsthm": 1,
|
44256
|
+
"theorem": 1,
|
44257
|
+
"environments.": 1,
|
44258
|
+
"amssymb": 1,
|
44259
|
+
"booktabs": 1,
|
44260
|
+
"esdiff": 1,
|
44261
|
+
"derivatives": 4,
|
44262
|
+
"and": 5,
|
44263
|
+
"partial": 2,
|
44264
|
+
"Optional.": 1,
|
44265
|
+
"shortintertext.": 1,
|
44266
|
+
"fancyhdr": 2,
|
44267
|
+
"customizing": 1,
|
44268
|
+
"headers/footers.": 1,
|
44269
|
+
"lastpage": 1,
|
44270
|
+
"page": 4,
|
44271
|
+
"count": 1,
|
44272
|
+
"header/footer.": 1,
|
44273
|
+
"xcolor": 1,
|
44274
|
+
"setting": 3,
|
44275
|
+
"color": 3,
|
44276
|
+
"of": 14,
|
44277
|
+
"hyperlinks": 2,
|
44278
|
+
"obeyFinal": 1,
|
44279
|
+
"Disable": 1,
|
44280
|
+
"todos": 1,
|
44281
|
+
"by": 1,
|
44282
|
+
"option": 1,
|
44283
|
+
"class": 1,
|
44284
|
+
"@todoclr": 2,
|
44285
|
+
"linecolor": 1,
|
44286
|
+
"red": 1,
|
44287
|
+
"todonotes": 1,
|
44288
|
+
"keeping": 1,
|
44289
|
+
"track": 1,
|
44290
|
+
"to": 16,
|
44291
|
+
"-": 9,
|
44292
|
+
"dos.": 1,
|
44293
|
+
"colorlinks": 1,
|
44294
|
+
"true": 1,
|
44295
|
+
"linkcolor": 1,
|
44296
|
+
"navy": 2,
|
44297
|
+
"urlcolor": 1,
|
44298
|
+
"black": 2,
|
44299
|
+
"hyperref": 1,
|
44300
|
+
"following": 2,
|
44301
|
+
"urls": 2,
|
44302
|
+
"references": 1,
|
44303
|
+
"a": 2,
|
44304
|
+
"document.": 1,
|
44305
|
+
"url": 2,
|
44306
|
+
"Enables": 1,
|
44307
|
+
"with": 5,
|
44308
|
+
"tag": 1,
|
44309
|
+
"all": 2,
|
44310
|
+
"hypcap": 1,
|
44311
|
+
"definecolor": 2,
|
44312
|
+
"gray": 1,
|
44313
|
+
"To": 1,
|
44314
|
+
"Dos.": 1,
|
44315
|
+
"brightness": 1,
|
44316
|
+
"RGB": 1,
|
44317
|
+
"coloring": 1,
|
44318
|
+
"setlength": 12,
|
44319
|
+
"parskip": 1,
|
44320
|
+
"ex": 2,
|
44321
|
+
"Sets": 1,
|
44322
|
+
"space": 8,
|
44323
|
+
"between": 1,
|
44324
|
+
"paragraphs.": 2,
|
44325
|
+
"parindent": 2,
|
44326
|
+
"Indent": 1,
|
44327
|
+
"first": 1,
|
44328
|
+
"line": 2,
|
44329
|
+
"new": 1,
|
44330
|
+
"let": 11,
|
44331
|
+
"VERBATIM": 2,
|
44332
|
+
"verbatim": 2,
|
44333
|
+
"def": 18,
|
44334
|
+
"verbatim@font": 1,
|
44335
|
+
"small": 8,
|
44336
|
+
"ttfamily": 1,
|
44337
|
+
"usepackage": 2,
|
44338
|
+
"caption": 1,
|
44339
|
+
"footnotesize": 2,
|
44340
|
+
"subcaption": 1,
|
44341
|
+
"captionsetup": 4,
|
44342
|
+
"table": 2,
|
44343
|
+
"labelformat": 4,
|
44344
|
+
"simple": 3,
|
44345
|
+
"labelsep": 4,
|
44346
|
+
"period": 3,
|
44347
|
+
"labelfont": 4,
|
44348
|
+
"bf": 4,
|
44349
|
+
"figure": 2,
|
44350
|
+
"subtable": 1,
|
44351
|
+
"parens": 1,
|
44352
|
+
"subfigure": 1,
|
44353
|
+
"TRUE": 1,
|
44354
|
+
"FALSE": 1,
|
44355
|
+
"SHOW": 3,
|
44356
|
+
"HIDE": 2,
|
44357
|
+
"thispagestyle": 5,
|
44358
|
+
"empty": 6,
|
44359
|
+
"listoftodos": 1,
|
44360
|
+
"clearpage": 4,
|
44361
|
+
"pagenumbering": 1,
|
44362
|
+
"arabic": 2,
|
44363
|
+
"shortname": 2,
|
44364
|
+
"#1": 40,
|
44365
|
+
"authorname": 2,
|
44366
|
+
"#2": 17,
|
44367
|
+
"coursename": 3,
|
44368
|
+
"#3": 8,
|
44369
|
+
"assignment": 3,
|
44370
|
+
"#4": 4,
|
44371
|
+
"duedate": 2,
|
44372
|
+
"#5": 2,
|
44373
|
+
"begin": 11,
|
44374
|
+
"minipage": 4,
|
44375
|
+
"textwidth": 4,
|
44376
|
+
"flushleft": 2,
|
44377
|
+
"hypertarget": 1,
|
44378
|
+
"@assignment": 2,
|
44379
|
+
"textbf": 5,
|
44380
|
+
"end": 12,
|
44381
|
+
"flushright": 2,
|
44382
|
+
"renewcommand": 10,
|
44383
|
+
"headrulewidth": 1,
|
44384
|
+
"footrulewidth": 1,
|
44385
|
+
"pagestyle": 3,
|
44386
|
+
"fancyplain": 4,
|
44387
|
+
"fancyhf": 2,
|
44388
|
+
"lfoot": 1,
|
44389
|
+
"hyperlink": 1,
|
44390
|
+
"cfoot": 1,
|
44391
|
+
"rfoot": 1,
|
44392
|
+
"thepage": 2,
|
44393
|
+
"pageref": 1,
|
44394
|
+
"LastPage": 1,
|
44395
|
+
"newcounter": 1,
|
44396
|
+
"theproblem": 3,
|
44397
|
+
"Problem": 2,
|
44398
|
+
"counter": 1,
|
44399
|
+
"environment": 1,
|
44400
|
+
"problem": 1,
|
44401
|
+
"addtocounter": 2,
|
44402
|
+
"setcounter": 5,
|
44403
|
+
"equation": 1,
|
44404
|
+
"noindent": 2,
|
44405
|
+
".": 3,
|
44406
|
+
"textit": 1,
|
44407
|
+
"Default": 2,
|
44408
|
+
"is": 2,
|
44409
|
+
"omit": 1,
|
44410
|
+
"pagebreaks": 1,
|
44411
|
+
"after": 1,
|
44412
|
+
"solution": 2,
|
44413
|
+
"qqed": 2,
|
44414
|
+
"hfill": 3,
|
44415
|
+
"rule": 1,
|
44416
|
+
"mm": 2,
|
44417
|
+
"ifnum": 3,
|
44418
|
+
"pagebreak": 2,
|
44419
|
+
"fi": 15,
|
44420
|
+
"show": 1,
|
44421
|
+
"solutions.": 1,
|
44422
|
+
"vspace": 2,
|
44423
|
+
"em": 8,
|
44424
|
+
"Solution.": 1,
|
44425
|
+
"ifnum#1": 2,
|
44426
|
+
"else": 9,
|
44427
|
+
"chap": 1,
|
44428
|
+
"section": 2,
|
44429
|
+
"Sum": 3,
|
44430
|
+
"n": 4,
|
44431
|
+
"ensuremath": 15,
|
44432
|
+
"sum_": 2,
|
44433
|
+
"from": 5,
|
44434
|
+
"infsum": 2,
|
44435
|
+
"infty": 2,
|
44436
|
+
"Infinite": 1,
|
44437
|
+
"sum": 1,
|
44438
|
+
"Int": 1,
|
44439
|
+
"x": 4,
|
44440
|
+
"int_": 1,
|
44441
|
+
"mathrm": 1,
|
44442
|
+
"d": 1,
|
44443
|
+
"Integrate": 1,
|
44444
|
+
"respect": 1,
|
44445
|
+
"Lim": 2,
|
44446
|
+
"displaystyle": 2,
|
44447
|
+
"lim_": 1,
|
44448
|
+
"Take": 1,
|
44449
|
+
"limit": 1,
|
44450
|
+
"infinity": 1,
|
44451
|
+
"f": 1,
|
44452
|
+
"Frac": 1,
|
44453
|
+
"/": 1,
|
44454
|
+
"_": 1,
|
44455
|
+
"Slanted": 1,
|
44456
|
+
"fraction": 1,
|
44457
|
+
"proper": 1,
|
44458
|
+
"spacing.": 1,
|
44459
|
+
"Usefule": 1,
|
44460
|
+
"display": 2,
|
44461
|
+
"fractions.": 1,
|
44462
|
+
"eval": 1,
|
44463
|
+
"vert_": 1,
|
44464
|
+
"L": 1,
|
44465
|
+
"hand": 2,
|
44466
|
+
"sizing": 2,
|
44467
|
+
"R": 1,
|
44468
|
+
"D": 1,
|
44469
|
+
"diff": 1,
|
44470
|
+
"writing": 2,
|
44471
|
+
"PD": 1,
|
44472
|
+
"diffp": 1,
|
44473
|
+
"full": 1,
|
44474
|
+
"Forces": 1,
|
44475
|
+
"style": 1,
|
44476
|
+
"math": 4,
|
44477
|
+
"mode": 4,
|
44478
|
+
"Deg": 1,
|
44479
|
+
"circ": 1,
|
44480
|
+
"adding": 1,
|
44481
|
+
"degree": 1,
|
44482
|
+
"symbol": 4,
|
44483
|
+
"even": 1,
|
44484
|
+
"if": 1,
|
44485
|
+
"not": 2,
|
44486
|
+
"abs": 1,
|
44487
|
+
"vert": 3,
|
44488
|
+
"Absolute": 1,
|
44489
|
+
"Value": 1,
|
44490
|
+
"norm": 1,
|
44491
|
+
"Vert": 2,
|
44492
|
+
"Norm": 1,
|
44493
|
+
"vector": 1,
|
44494
|
+
"magnitude": 1,
|
44495
|
+
"e": 1,
|
44496
|
+
"times": 3,
|
44497
|
+
"Scientific": 2,
|
44498
|
+
"Notation": 2,
|
44499
|
+
"E": 2,
|
44500
|
+
"u": 1,
|
44501
|
+
"text": 7,
|
44502
|
+
"units": 1,
|
44503
|
+
"Roman": 1,
|
44504
|
+
"mc": 1,
|
44505
|
+
"hspace": 3,
|
44506
|
+
"comma": 1,
|
44507
|
+
"into": 2,
|
44508
|
+
"mtxt": 1,
|
44509
|
+
"insterting": 1,
|
44510
|
+
"on": 2,
|
44511
|
+
"either": 1,
|
44512
|
+
"side.": 1,
|
44513
|
+
"Option": 1,
|
44514
|
+
"preceding": 1,
|
44515
|
+
"punctuation.": 1,
|
44516
|
+
"prob": 1,
|
44517
|
+
"P": 2,
|
44518
|
+
"cndprb": 1,
|
44519
|
+
"right.": 1,
|
44520
|
+
"cov": 1,
|
44521
|
+
"Cov": 1,
|
44522
|
+
"twovector": 1,
|
44523
|
+
"r": 3,
|
44524
|
+
"array": 6,
|
44525
|
+
"threevector": 1,
|
44526
|
+
"fourvector": 1,
|
44527
|
+
"vecs": 4,
|
44528
|
+
"vec": 2,
|
44529
|
+
"bm": 2,
|
44530
|
+
"bolded": 2,
|
44531
|
+
"arrow": 2,
|
44532
|
+
"vect": 3,
|
44533
|
+
"unitvecs": 1,
|
44534
|
+
"hat": 2,
|
44535
|
+
"unitvect": 1,
|
44536
|
+
"Div": 1,
|
44537
|
+
"del": 3,
|
44538
|
+
"cdot": 1,
|
44539
|
+
"Curl": 1,
|
44540
|
+
"Grad": 1,
|
43713
44541
|
"NeedsTeXFormat": 1,
|
43714
|
-
"{": 180,
|
43715
44542
|
"LaTeX2e": 1,
|
43716
|
-
"}": 185,
|
43717
|
-
"ProvidesClass": 1,
|
43718
44543
|
"reedthesis": 1,
|
43719
|
-
"[": 22,
|
43720
44544
|
"/01/27": 1,
|
43721
44545
|
"The": 4,
|
43722
44546
|
"Reed": 5,
|
43723
44547
|
"College": 5,
|
43724
44548
|
"Thesis": 5,
|
43725
44549
|
"Class": 4,
|
43726
|
-
"]": 22,
|
43727
|
-
"DeclareOption*": 1,
|
43728
|
-
"PassOptionsToClass": 1,
|
43729
44550
|
"CurrentOption": 1,
|
43730
44551
|
"book": 2,
|
43731
|
-
"ProcessOptions": 1,
|
43732
|
-
"relax": 2,
|
43733
|
-
"LoadClass": 1,
|
43734
|
-
"RequirePackage": 1,
|
43735
|
-
"fancyhdr": 1,
|
43736
44552
|
"AtBeginDocument": 1,
|
43737
|
-
"fancyhf": 1,
|
43738
44553
|
"fancyhead": 5,
|
43739
44554
|
"LE": 1,
|
43740
44555
|
"RO": 1,
|
43741
|
-
"thepage": 1,
|
43742
44556
|
"above": 1,
|
43743
44557
|
"makes": 2,
|
43744
44558
|
"your": 1,
|
43745
44559
|
"headers": 6,
|
43746
|
-
"in": 10,
|
43747
|
-
"all": 1,
|
43748
44560
|
"caps.": 2,
|
43749
44561
|
"If": 1,
|
43750
44562
|
"you": 1,
|
@@ -43753,28 +44565,16 @@
|
|
43753
44565
|
"different": 1,
|
43754
44566
|
"choose": 1,
|
43755
44567
|
"one": 1,
|
43756
|
-
"of": 8,
|
43757
|
-
"the": 14,
|
43758
|
-
"following": 1,
|
43759
44568
|
"options": 1,
|
43760
|
-
"(": 3,
|
43761
44569
|
"be": 3,
|
43762
44570
|
"sure": 1,
|
43763
|
-
"to": 8,
|
43764
44571
|
"remove": 1,
|
43765
|
-
"symbol": 1,
|
43766
|
-
"from": 1,
|
43767
44572
|
"both": 1,
|
43768
|
-
"right": 1,
|
43769
|
-
"and": 2,
|
43770
|
-
"left": 1,
|
43771
|
-
")": 3,
|
43772
44573
|
"RE": 2,
|
43773
44574
|
"slshape": 2,
|
43774
44575
|
"nouppercase": 2,
|
43775
44576
|
"leftmark": 2,
|
43776
44577
|
"This": 2,
|
43777
|
-
"on": 1,
|
43778
44578
|
"RIGHT": 2,
|
43779
44579
|
"side": 2,
|
43780
44580
|
"pages": 2,
|
@@ -43794,25 +44594,19 @@
|
|
43794
44594
|
"or": 1,
|
43795
44595
|
"scshape": 2,
|
43796
44596
|
"will": 2,
|
43797
|
-
"small": 2,
|
43798
44597
|
"And": 1,
|
43799
44598
|
"so": 1,
|
43800
|
-
"pagestyle": 2,
|
43801
44599
|
"fancy": 1,
|
43802
|
-
"let": 10,
|
43803
44600
|
"oldthebibliography": 2,
|
43804
44601
|
"thebibliography": 2,
|
43805
44602
|
"endoldthebibliography": 2,
|
43806
44603
|
"endthebibliography": 1,
|
43807
44604
|
"renewenvironment": 2,
|
43808
|
-
"#1": 12,
|
43809
44605
|
"addcontentsline": 5,
|
43810
44606
|
"toc": 5,
|
43811
44607
|
"chapter": 9,
|
43812
44608
|
"bibname": 2,
|
43813
|
-
"end": 5,
|
43814
44609
|
"things": 1,
|
43815
|
-
"for": 5,
|
43816
44610
|
"psych": 1,
|
43817
44611
|
"majors": 1,
|
43818
44612
|
"comment": 1,
|
@@ -43823,14 +44617,8 @@
|
|
43823
44617
|
"endtheindex": 1,
|
43824
44618
|
"indexname": 1,
|
43825
44619
|
"RToldchapter": 1,
|
43826
|
-
"renewcommand": 6,
|
43827
44620
|
"if@openright": 1,
|
43828
44621
|
"RTcleardoublepage": 3,
|
43829
|
-
"else": 7,
|
43830
|
-
"clearpage": 3,
|
43831
|
-
"fi": 13,
|
43832
|
-
"thispagestyle": 3,
|
43833
|
-
"empty": 4,
|
43834
44622
|
"global": 2,
|
43835
44623
|
"@topnum": 1,
|
43836
44624
|
"z@": 2,
|
@@ -43838,16 +44626,12 @@
|
|
43838
44626
|
"secdef": 1,
|
43839
44627
|
"@chapter": 2,
|
43840
44628
|
"@schapter": 1,
|
43841
|
-
"def": 12,
|
43842
|
-
"#2": 4,
|
43843
|
-
"ifnum": 2,
|
43844
44629
|
"c@secnumdepth": 1,
|
43845
44630
|
"m@ne": 2,
|
43846
44631
|
"if@mainmatter": 1,
|
43847
44632
|
"refstepcounter": 1,
|
43848
44633
|
"typeout": 1,
|
43849
44634
|
"@chapapp": 2,
|
43850
|
-
"space": 4,
|
43851
44635
|
"thechapter.": 1,
|
43852
44636
|
"thechapter": 1,
|
43853
44637
|
"space#1": 1,
|
@@ -43870,18 +44654,15 @@
|
|
43870
44654
|
"newpage": 3,
|
43871
44655
|
"RToldcleardoublepage": 1,
|
43872
44656
|
"cleardoublepage": 4,
|
43873
|
-
"setlength": 10,
|
43874
44657
|
"oddsidemargin": 2,
|
43875
44658
|
".5in": 3,
|
43876
44659
|
"evensidemargin": 2,
|
43877
|
-
"textwidth": 2,
|
43878
44660
|
"textheight": 4,
|
43879
44661
|
"topmargin": 6,
|
43880
44662
|
"addtolength": 8,
|
43881
44663
|
"headheight": 4,
|
43882
44664
|
"headsep": 3,
|
43883
44665
|
".6in": 1,
|
43884
|
-
"pt": 1,
|
43885
44666
|
"division#1": 1,
|
43886
44667
|
"gdef": 6,
|
43887
44668
|
"@division": 3,
|
@@ -43917,15 +44698,12 @@
|
|
43917
44698
|
"addpenalty": 1,
|
43918
44699
|
"@highpenalty": 2,
|
43919
44700
|
"vskip": 4,
|
43920
|
-
"em": 3,
|
43921
44701
|
"@plus": 1,
|
43922
44702
|
"@tempdima": 2,
|
43923
44703
|
"begingroup": 1,
|
43924
|
-
"parindent": 1,
|
43925
44704
|
"rightskip": 1,
|
43926
44705
|
"@pnumwidth": 3,
|
43927
44706
|
"parfillskip": 1,
|
43928
|
-
"-": 2,
|
43929
44707
|
"leavevmode": 1,
|
43930
44708
|
"bfseries": 3,
|
43931
44709
|
"advance": 1,
|
@@ -43938,8 +44716,6 @@
|
|
43938
44716
|
"mkern": 2,
|
43939
44717
|
"@dotsep": 2,
|
43940
44718
|
"mu": 2,
|
43941
|
-
".": 1,
|
43942
|
-
"hfill": 1,
|
43943
44719
|
"hb@xt@": 1,
|
43944
44720
|
"hss": 1,
|
43945
44721
|
"par": 6,
|
@@ -43951,7 +44727,6 @@
|
|
43951
44727
|
"onecolumn": 1,
|
43952
44728
|
"@restonecolfalse": 1,
|
43953
44729
|
"Abstract": 2,
|
43954
|
-
"begin": 4,
|
43955
44730
|
"center": 7,
|
43956
44731
|
"fontsize": 7,
|
43957
44732
|
"selectfont": 6,
|
@@ -43973,7 +44748,6 @@
|
|
43973
44748
|
"/Creator": 1,
|
43974
44749
|
"maketitle": 1,
|
43975
44750
|
"titlepage": 2,
|
43976
|
-
"footnotesize": 1,
|
43977
44751
|
"footnoterule": 1,
|
43978
44752
|
"footnote": 1,
|
43979
44753
|
"thanks": 1,
|
@@ -43981,8 +44755,6 @@
|
|
43981
44755
|
"setbox0": 2,
|
43982
44756
|
"Requirements": 2,
|
43983
44757
|
"Degree": 2,
|
43984
|
-
"setcounter": 1,
|
43985
|
-
"page": 3,
|
43986
44758
|
"null": 3,
|
43987
44759
|
"vfil": 8,
|
43988
44760
|
"@title": 1,
|
@@ -44008,7 +44780,6 @@
|
|
44008
44780
|
"just": 1,
|
44009
44781
|
"below": 2,
|
44010
44782
|
"cm": 2,
|
44011
|
-
"not": 1,
|
44012
44783
|
"copy0": 1,
|
44013
44784
|
"approved": 1,
|
44014
44785
|
"major": 1,
|
@@ -45061,16 +45832,16 @@
|
|
45061
45832
|
"CLASS": 1,
|
45062
45833
|
"BEGIN": 1,
|
45063
45834
|
"MultiUse": 1,
|
45064
|
-
"-":
|
45835
|
+
"-": 9,
|
45065
45836
|
"NotPersistable": 1,
|
45066
45837
|
"DataBindingBehavior": 1,
|
45067
45838
|
"vbNone": 1,
|
45068
45839
|
"MTSTransactionMode": 1,
|
45069
45840
|
"*************************************************************************************************************************************************************************************************************************************************": 2,
|
45070
45841
|
"Copyright": 1,
|
45071
|
-
"(":
|
45842
|
+
"(": 20,
|
45072
45843
|
"c": 1,
|
45073
|
-
")":
|
45844
|
+
")": 20,
|
45074
45845
|
"David": 1,
|
45075
45846
|
"Briant": 1,
|
45076
45847
|
"All": 1,
|
@@ -45131,8 +45902,8 @@
|
|
45131
45902
|
"Release": 1,
|
45132
45903
|
"hide": 1,
|
45133
45904
|
"us": 1,
|
45134
|
-
"from":
|
45135
|
-
"the":
|
45905
|
+
"from": 2,
|
45906
|
+
"the": 7,
|
45136
45907
|
"Applications": 1,
|
45137
45908
|
"list": 1,
|
45138
45909
|
"in": 1,
|
@@ -45149,11 +45920,11 @@
|
|
45149
45920
|
"myMouseEventsForm.icon": 1,
|
45150
45921
|
"make": 1,
|
45151
45922
|
"myself": 1,
|
45152
|
-
"easily":
|
45923
|
+
"easily": 2,
|
45153
45924
|
"found": 1,
|
45154
45925
|
"myMouseEventsForm.hwnd": 3,
|
45155
|
-
"End":
|
45156
|
-
"Sub":
|
45926
|
+
"End": 11,
|
45927
|
+
"Sub": 9,
|
45157
45928
|
"shutdown": 1,
|
45158
45929
|
"myAST.destroy": 1,
|
45159
45930
|
"Nothing": 2,
|
@@ -45169,17 +45940,17 @@
|
|
45169
45940
|
"MF_SEPARATOR": 1,
|
45170
45941
|
"MF_CHECKED": 1,
|
45171
45942
|
"route": 2,
|
45172
|
-
"to":
|
45173
|
-
"a":
|
45943
|
+
"to": 4,
|
45944
|
+
"a": 4,
|
45174
45945
|
"remote": 1,
|
45175
45946
|
"machine": 1,
|
45176
45947
|
"Else": 1,
|
45177
|
-
"for":
|
45948
|
+
"for": 4,
|
45178
45949
|
"moment": 1,
|
45179
45950
|
"just": 1,
|
45180
45951
|
"between": 1,
|
45181
45952
|
"MMFileTransports": 1,
|
45182
|
-
"If":
|
45953
|
+
"If": 4,
|
45183
45954
|
"myMMTransportIDsByRouterID.Exists": 1,
|
45184
45955
|
"message.toAddress.RouterID": 2,
|
45185
45956
|
"Then": 1,
|
@@ -45199,7 +45970,141 @@
|
|
45199
45970
|
"id": 1,
|
45200
45971
|
"oReceived": 2,
|
45201
45972
|
"Boolean": 1,
|
45202
|
-
"True": 1
|
45973
|
+
"True": 1,
|
45974
|
+
"@Code": 1,
|
45975
|
+
"ViewData": 1,
|
45976
|
+
"Code": 1,
|
45977
|
+
"@section": 1,
|
45978
|
+
"featured": 1,
|
45979
|
+
"<section>": 1,
|
45980
|
+
"class=": 7,
|
45981
|
+
"<div>": 1,
|
45982
|
+
"<hgroup>": 1,
|
45983
|
+
"<h1>": 1,
|
45984
|
+
"@ViewData": 2,
|
45985
|
+
".": 3,
|
45986
|
+
"</h1>": 1,
|
45987
|
+
"<h2>": 1,
|
45988
|
+
"</h2>": 1,
|
45989
|
+
"</hgroup>": 1,
|
45990
|
+
"<p>": 1,
|
45991
|
+
"To": 1,
|
45992
|
+
"learn": 1,
|
45993
|
+
"more": 4,
|
45994
|
+
"about": 2,
|
45995
|
+
"ASP.NET": 5,
|
45996
|
+
"MVC": 4,
|
45997
|
+
"visit": 2,
|
45998
|
+
"<a>": 5,
|
45999
|
+
"href=": 5,
|
46000
|
+
"title=": 2,
|
46001
|
+
"http": 1,
|
46002
|
+
"//asp.net/mvc": 1,
|
46003
|
+
"</a>": 5,
|
46004
|
+
"The": 1,
|
46005
|
+
"page": 1,
|
46006
|
+
"features": 3,
|
46007
|
+
"<mark>": 1,
|
46008
|
+
"videos": 1,
|
46009
|
+
"tutorials": 1,
|
46010
|
+
"and": 6,
|
46011
|
+
"samples": 1,
|
46012
|
+
"</mark>": 1,
|
46013
|
+
"help": 1,
|
46014
|
+
"you": 4,
|
46015
|
+
"get": 1,
|
46016
|
+
"most": 1,
|
46017
|
+
"MVC.": 1,
|
46018
|
+
"have": 1,
|
46019
|
+
"any": 1,
|
46020
|
+
"questions": 1,
|
46021
|
+
"our": 1,
|
46022
|
+
"forums": 1,
|
46023
|
+
"</p>": 1,
|
46024
|
+
"</div>": 1,
|
46025
|
+
"</section>": 1,
|
46026
|
+
"Section": 1,
|
46027
|
+
"<h3>": 1,
|
46028
|
+
"We": 1,
|
46029
|
+
"suggest": 1,
|
46030
|
+
"following": 1,
|
46031
|
+
"</h3>": 1,
|
46032
|
+
"<ol>": 1,
|
46033
|
+
"<li>": 3,
|
46034
|
+
"<h5>": 3,
|
46035
|
+
"Getting": 1,
|
46036
|
+
"Started": 1,
|
46037
|
+
"</h5>": 3,
|
46038
|
+
"gives": 2,
|
46039
|
+
"powerful": 1,
|
46040
|
+
"patterns": 1,
|
46041
|
+
"based": 1,
|
46042
|
+
"way": 1,
|
46043
|
+
"build": 1,
|
46044
|
+
"dynamic": 1,
|
46045
|
+
"websites": 1,
|
46046
|
+
"that": 5,
|
46047
|
+
"enables": 1,
|
46048
|
+
"clean": 1,
|
46049
|
+
"separation": 1,
|
46050
|
+
"of": 2,
|
46051
|
+
"concerns": 1,
|
46052
|
+
"full": 1,
|
46053
|
+
"control": 1,
|
46054
|
+
"over": 1,
|
46055
|
+
"markup": 1,
|
46056
|
+
"enjoyable": 1,
|
46057
|
+
"agile": 1,
|
46058
|
+
"development.": 1,
|
46059
|
+
"includes": 1,
|
46060
|
+
"many": 1,
|
46061
|
+
"enable": 1,
|
46062
|
+
"fast": 1,
|
46063
|
+
"TDD": 1,
|
46064
|
+
"friendly": 1,
|
46065
|
+
"development": 1,
|
46066
|
+
"creating": 1,
|
46067
|
+
"sophisticated": 1,
|
46068
|
+
"applications": 1,
|
46069
|
+
"use": 1,
|
46070
|
+
"latest": 1,
|
46071
|
+
"web": 2,
|
46072
|
+
"standards.": 1,
|
46073
|
+
"Learn": 3,
|
46074
|
+
"</li>": 3,
|
46075
|
+
"Add": 1,
|
46076
|
+
"NuGet": 2,
|
46077
|
+
"packages": 1,
|
46078
|
+
"jump": 1,
|
46079
|
+
"start": 1,
|
46080
|
+
"your": 2,
|
46081
|
+
"coding": 1,
|
46082
|
+
"makes": 1,
|
46083
|
+
"it": 1,
|
46084
|
+
"easy": 1,
|
46085
|
+
"install": 1,
|
46086
|
+
"update": 1,
|
46087
|
+
"free": 1,
|
46088
|
+
"libraries": 1,
|
46089
|
+
"tools.": 1,
|
46090
|
+
"Find": 1,
|
46091
|
+
"Web": 1,
|
46092
|
+
"Hosting": 1,
|
46093
|
+
"You": 1,
|
46094
|
+
"can": 1,
|
46095
|
+
"find": 1,
|
46096
|
+
"hosting": 1,
|
46097
|
+
"company": 1,
|
46098
|
+
"offers": 1,
|
46099
|
+
"right": 1,
|
46100
|
+
"mix": 1,
|
46101
|
+
"price": 1,
|
46102
|
+
"applications.": 1,
|
46103
|
+
"</ol>": 1,
|
46104
|
+
"Module": 2,
|
46105
|
+
"Module1": 1,
|
46106
|
+
"Main": 1,
|
46107
|
+
"Console.Out.WriteLine": 2
|
45203
46108
|
},
|
45204
46109
|
"Volt": {
|
45205
46110
|
"module": 1,
|
@@ -45728,8 +46633,8 @@
|
|
45728
46633
|
"return": 1
|
45729
46634
|
},
|
45730
46635
|
"XML": {
|
45731
|
-
"<?xml>":
|
45732
|
-
"version=":
|
46636
|
+
"<?xml>": 4,
|
46637
|
+
"version=": 6,
|
45733
46638
|
"<project>": 1,
|
45734
46639
|
"name=": 223,
|
45735
46640
|
"xmlns": 2,
|
@@ -45779,7 +46684,7 @@
|
|
45779
46684
|
"revision=": 3,
|
45780
46685
|
"status=": 1,
|
45781
46686
|
"this": 77,
|
45782
|
-
"a":
|
46687
|
+
"a": 128,
|
45783
46688
|
"module.ivy": 1,
|
45784
46689
|
"for": 59,
|
45785
46690
|
"java": 1,
|
@@ -45810,9 +46715,9 @@
|
|
45810
46715
|
"</ivy-module>": 1,
|
45811
46716
|
"<doc>": 1,
|
45812
46717
|
"<assembly>": 1,
|
45813
|
-
"<name>":
|
46718
|
+
"<name>": 2,
|
45814
46719
|
"ReactiveUI": 2,
|
45815
|
-
"</name>":
|
46720
|
+
"</name>": 2,
|
45816
46721
|
"</assembly>": 1,
|
45817
46722
|
"<members>": 1,
|
45818
46723
|
"<member>": 120,
|
@@ -45822,7 +46727,7 @@
|
|
45822
46727
|
"interface": 4,
|
45823
46728
|
"that": 94,
|
45824
46729
|
"replaces": 1,
|
45825
|
-
"the":
|
46730
|
+
"the": 261,
|
45826
46731
|
"non": 1,
|
45827
46732
|
"PropertyChangedEventArgs.": 1,
|
45828
46733
|
"Note": 7,
|
@@ -46157,7 +47062,7 @@
|
|
46157
47062
|
"object.": 3,
|
46158
47063
|
"ViewModel": 8,
|
46159
47064
|
"another": 3,
|
46160
|
-
"s":
|
47065
|
+
"s": 3,
|
46161
47066
|
"Return": 1,
|
46162
47067
|
"instance": 2,
|
46163
47068
|
"type.": 3,
|
@@ -46280,7 +47185,7 @@
|
|
46280
47185
|
"manage": 1,
|
46281
47186
|
"disk": 1,
|
46282
47187
|
"download": 1,
|
46283
|
-
"save":
|
47188
|
+
"save": 2,
|
46284
47189
|
"temporary": 1,
|
46285
47190
|
"folder": 1,
|
46286
47191
|
"onRelease": 1,
|
@@ -46511,7 +47416,49 @@
|
|
46511
47416
|
"need": 12,
|
46512
47417
|
"setup.": 12,
|
46513
47418
|
"</members>": 1,
|
46514
|
-
"</doc>": 1
|
47419
|
+
"</doc>": 1,
|
47420
|
+
"encoding=": 1,
|
47421
|
+
"<!DOCTYPE>": 1,
|
47422
|
+
"TS": 1,
|
47423
|
+
"<TS>": 1,
|
47424
|
+
"language=": 1,
|
47425
|
+
"<context>": 1,
|
47426
|
+
"MainWindow": 1,
|
47427
|
+
"<message>": 8,
|
47428
|
+
"<location>": 8,
|
47429
|
+
"filename=": 8,
|
47430
|
+
"line=": 8,
|
47431
|
+
"<source>": 8,
|
47432
|
+
"United": 1,
|
47433
|
+
"Kingdom": 1,
|
47434
|
+
"</source>": 8,
|
47435
|
+
"<translation>": 8,
|
47436
|
+
"Reino": 1,
|
47437
|
+
"Unido": 1,
|
47438
|
+
"</translation>": 8,
|
47439
|
+
"</message>": 8,
|
47440
|
+
"God": 1,
|
47441
|
+
"Queen": 1,
|
47442
|
+
"Deus": 1,
|
47443
|
+
"salve": 1,
|
47444
|
+
"Rainha": 1,
|
47445
|
+
"England": 1,
|
47446
|
+
"Inglaterra": 1,
|
47447
|
+
"Wales": 1,
|
47448
|
+
"Gales": 1,
|
47449
|
+
"Scotland": 1,
|
47450
|
+
"Esc": 1,
|
47451
|
+
"cia": 1,
|
47452
|
+
"Northern": 1,
|
47453
|
+
"Ireland": 1,
|
47454
|
+
"Irlanda": 1,
|
47455
|
+
"Norte": 1,
|
47456
|
+
"Portuguese": 1,
|
47457
|
+
"Portugu": 1,
|
47458
|
+
"English": 1,
|
47459
|
+
"Ingl": 1,
|
47460
|
+
"</context>": 1,
|
47461
|
+
"</TS>": 1
|
46515
47462
|
},
|
46516
47463
|
"XProc": {
|
46517
47464
|
"<?xml>": 1,
|
@@ -46848,7 +47795,8 @@
|
|
46848
47795
|
"BlitzBasic": 2065,
|
46849
47796
|
"Bluespec": 1298,
|
46850
47797
|
"Brightscript": 579,
|
46851
|
-
"C":
|
47798
|
+
"C": 59004,
|
47799
|
+
"C#": 278,
|
46852
47800
|
"C++": 31181,
|
46853
47801
|
"Ceylon": 50,
|
46854
47802
|
"Clojure": 510,
|
@@ -46859,7 +47807,7 @@
|
|
46859
47807
|
"Creole": 134,
|
46860
47808
|
"CSS": 43867,
|
46861
47809
|
"Cuda": 290,
|
46862
|
-
"Dart":
|
47810
|
+
"Dart": 74,
|
46863
47811
|
"Diff": 16,
|
46864
47812
|
"DM": 169,
|
46865
47813
|
"ECL": 281,
|
@@ -46876,6 +47824,7 @@
|
|
46876
47824
|
"Groovy Server Pages": 91,
|
46877
47825
|
"Haml": 4,
|
46878
47826
|
"Handlebars": 69,
|
47827
|
+
"Hy": 155,
|
46879
47828
|
"IDL": 418,
|
46880
47829
|
"Idris": 148,
|
46881
47830
|
"INI": 27,
|
@@ -46922,6 +47871,7 @@
|
|
46922
47871
|
"Parrot Assembly": 6,
|
46923
47872
|
"Parrot Internal Representation": 5,
|
46924
47873
|
"Pascal": 30,
|
47874
|
+
"PAWN": 3263,
|
46925
47875
|
"Perl": 17497,
|
46926
47876
|
"Perl6": 372,
|
46927
47877
|
"PHP": 20724,
|
@@ -46930,6 +47880,7 @@
|
|
46930
47880
|
"PostScript": 107,
|
46931
47881
|
"PowerShell": 12,
|
46932
47882
|
"Processing": 74,
|
47883
|
+
"Prolog": 267,
|
46933
47884
|
"Protocol Buffer": 63,
|
46934
47885
|
"Python": 5715,
|
46935
47886
|
"R": 175,
|
@@ -46954,7 +47905,7 @@
|
|
46954
47905
|
"Stylus": 76,
|
46955
47906
|
"SuperCollider": 133,
|
46956
47907
|
"Tea": 3,
|
46957
|
-
"TeX":
|
47908
|
+
"TeX": 2701,
|
46958
47909
|
"Turing": 44,
|
46959
47910
|
"TXL": 213,
|
46960
47911
|
"TypeScript": 109,
|
@@ -46962,11 +47913,11 @@
|
|
46962
47913
|
"Verilog": 3778,
|
46963
47914
|
"VHDL": 42,
|
46964
47915
|
"VimL": 20,
|
46965
|
-
"Visual Basic":
|
47916
|
+
"Visual Basic": 581,
|
46966
47917
|
"Volt": 388,
|
46967
47918
|
"wisp": 1363,
|
46968
47919
|
"XC": 24,
|
46969
|
-
"XML":
|
47920
|
+
"XML": 5737,
|
46970
47921
|
"XProc": 22,
|
46971
47922
|
"XQuery": 801,
|
46972
47923
|
"XSLT": 44,
|
@@ -46986,7 +47937,8 @@
|
|
46986
47937
|
"BlitzBasic": 3,
|
46987
47938
|
"Bluespec": 2,
|
46988
47939
|
"Brightscript": 1,
|
46989
|
-
"C":
|
47940
|
+
"C": 27,
|
47941
|
+
"C#": 2,
|
46990
47942
|
"C++": 27,
|
46991
47943
|
"Ceylon": 1,
|
46992
47944
|
"Clojure": 7,
|
@@ -47014,6 +47966,7 @@
|
|
47014
47966
|
"Groovy Server Pages": 4,
|
47015
47967
|
"Haml": 1,
|
47016
47968
|
"Handlebars": 2,
|
47969
|
+
"Hy": 2,
|
47017
47970
|
"IDL": 4,
|
47018
47971
|
"Idris": 1,
|
47019
47972
|
"INI": 2,
|
@@ -47060,6 +48013,7 @@
|
|
47060
48013
|
"Parrot Assembly": 1,
|
47061
48014
|
"Parrot Internal Representation": 1,
|
47062
48015
|
"Pascal": 1,
|
48016
|
+
"PAWN": 1,
|
47063
48017
|
"Perl": 14,
|
47064
48018
|
"Perl6": 3,
|
47065
48019
|
"PHP": 9,
|
@@ -47068,6 +48022,7 @@
|
|
47068
48022
|
"PostScript": 1,
|
47069
48023
|
"PowerShell": 2,
|
47070
48024
|
"Processing": 1,
|
48025
|
+
"Prolog": 2,
|
47071
48026
|
"Protocol Buffer": 1,
|
47072
48027
|
"Python": 7,
|
47073
48028
|
"R": 2,
|
@@ -47092,7 +48047,7 @@
|
|
47092
48047
|
"Stylus": 1,
|
47093
48048
|
"SuperCollider": 1,
|
47094
48049
|
"Tea": 1,
|
47095
|
-
"TeX":
|
48050
|
+
"TeX": 2,
|
47096
48051
|
"Turing": 1,
|
47097
48052
|
"TXL": 1,
|
47098
48053
|
"TypeScript": 3,
|
@@ -47100,16 +48055,16 @@
|
|
47100
48055
|
"Verilog": 13,
|
47101
48056
|
"VHDL": 1,
|
47102
48057
|
"VimL": 2,
|
47103
|
-
"Visual Basic":
|
48058
|
+
"Visual Basic": 3,
|
47104
48059
|
"Volt": 1,
|
47105
48060
|
"wisp": 1,
|
47106
48061
|
"XC": 1,
|
47107
|
-
"XML":
|
48062
|
+
"XML": 4,
|
47108
48063
|
"XProc": 1,
|
47109
48064
|
"XQuery": 1,
|
47110
48065
|
"XSLT": 1,
|
47111
48066
|
"Xtend": 2,
|
47112
48067
|
"YAML": 1
|
47113
48068
|
},
|
47114
|
-
"md5": "
|
48069
|
+
"md5": "a46f14929a6e9e4356fda95beb035439"
|
47115
48070
|
}
|