-
Notifications
You must be signed in to change notification settings - Fork 2
/
ProgramDB.csv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 87.
1591 lines (1591 loc) · 393 KB
/
ProgramDB.csv
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
Program ID,Source Filename,Screen Shot,Description,Last Update,Version,Author,Lines,Subroutines,Challenge
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\10進→16進変換.sb,,CASIO FX-700P,,,,33,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\acyducy.sb,,,,,,190,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\acyducy2.sb,,,,,,190,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Alarm.sb,,ALARM01.smallbasic - Alarm,,v0.1,,50,OnTick,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\ArcCos.sb,,ArcCos graph,,,,17,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\ArcSin.sb,,ArcSin graph,,,,17,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\ArcTan.sb,,ArcTan graph,,,,19,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Area.sb,,for any polygon_ the area is / para cualquier polígono_ el área es,,,,56,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\argTest.sb,,,,,,6,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\ArrayTest.sb,,,,,,25,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\ascii.sb,,,,,,25,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\auto.sb,,AUTOMATISCHE ERSTELLUNG DER UPDATETEXTDATEI,,,,462,Graphicwin Graphic ProgDir Filecheck BC Help MD Load Save ShapeMove Add Clear TT,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\AutoOriginal.sb,,AUTOMATISCHE ERSTELLUNG DER UPDATETEXTDATEI,,,,487,Graphicwin Graphic ProgDir Filecheck BC Help MD Load Save ShapeMove Add Clear TT,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\BarnsleyFern.sb,,Modified by Nonki Takahashi,,,,30,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\battle.sb,,,,,,354,,
NFB246-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\BlackJack.sb,,original,,,,159,Begin Deal AI Count,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\BlueBerry.sb,,,,,,38,Leaf,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\BpPink.sb,,,,,,416,forwardPropagation backPropagation testMode readFile scanf printWeights initialize,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\BrowserLD01.sb,,Small Browser with LitDev Extension,2015-05-25,0.1,Nonki Takahashi,55,OnButtonClicked OnBrowserPageLoaded,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\BubbleSort.sb,,Bubble sort with link,,,,122,ShowHelp ShowData SortA SortD Comp,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Button.sb,,,,,,94,AddButton OnMouseDown DoNothing GetPosition DrawButton,
XHJ559,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\BVector.sb,,Benchmark of BVector,,,Nonki Takahashi,280,BM_toString BV_abs BV_and BV_cross BV_diff BV_dot BV_eq BV_getValue BV_mul BV_ne BV_not BV_or BV_toString BV_xor Start Stop,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\BWTicTacToe.sb,,BW Tic-tactoe,,,,273,CalcAndWriteProduct CalcAndWriteCrossProduct CalcAndWriteDotProduct CreateRandomMatrix CreateRandomMatrix2 WriteMatrix WriteScalar MatrixProduct CrossProduct DotProduct CheckType CheckType3 DumpMatrix,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Capture.sb,,,,,,28,,
TJB764,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\CartesianPolar.sb,,Cartesian and Polar Coordinates,2016-02-20,0.1,Nonki Takahashi,327,DrawGrid FillFan FillTriangle Form OnMouseDown Math_CartesianToPolar Vector_Calc Vector_Abs Vector_Add Vector_Comp Vector_Draw Vector_GetOp Vector_Mul Vector_Print Vector_Rotate Vector_Set Vector_Sub,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\CharacterCode.sb,,Character Code,,,,29,OnButtonClicked Dec2Hex,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\CharCode.sb,,,,,,7,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Chime.sb,,,,,,7,OnButtonClicked,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\ColorTable.sb,,,,,,206,GetLightness Hex2Dec InitColorTable,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\ColorWheel.sb,,Color Wheel,,,,157,Form OnButtonClicked Erase OnMouseDown OnMouseMove DrawColorWheel GetColor Math_CartesianToPolar Color_HSLtoRGB Color_Value,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Condition.sb,,,,,,15,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\CroFlagKLT327.sb,,,,,,73,see,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\DesktopSize.sb,,,,,,13,OnTick,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\DictianryTest.sb,,,,,,15,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Dictionary.sb,,Dictionary,,v0.1,,25,OnButtonClicked,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\DigitalCanvas.sb,,WINDOW,,,,5112,mousedown mousemove mouseup keydown,
SZH845,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\dirtest.sb,,Directory Test,,,Nonki Takahashi,25,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Draw.sb,,,,,,46,OnMouseDown OnMouseUp OnMouseMove SavePos DrawDots,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Draw01.sb,,Draw,2012-08-24,0.1,24 T,231,OnButtonClicked Error File_Close File_Input File_Open,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\DrawFreeLine01.sb,,Draw Free Line,,,,79,FloodFill DoNothing OnMouseMove OnMouseDown OnMouseUp DrawLine,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\DrawLeaf.sb,,Draw Leaf,,,,116,Init OnButtonClicked EraseLeaves DrawLeaves Form AddLeaf DrawGrid,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Dump01.sb,,Dump,,v0.1,,84,InitDec2Hex Dec2Hex,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Dump02.sb,,Dump - File dump,,v0.2,,82,InitDec2Hex Dec2Hex,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\EasyClock.sb,,,,,,8,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\FileObjects.sb,,,,,,15,,
PWW374,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\FlickrSample.sb,,Flicr Sample,,,,46,OnMouseDown,
RCH738,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\FloatingPoint.sb,,Floating-point viewer with segment LED,,,Nonki Takahashi,182,OnTextTyped InitLED DrawLED DrawNum DrawFP Num2FP,
FHL579,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Fonts2.sb,,Recommended Fonts,2013-12-24,0.1,Nonki Takahashi,39,Repaint,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\fptest.sb,,fptest - File Path Test,,0.21,Nonki Takahashi,18,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\FrameWidth.sb,,,,,,22,Check,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\game.sb,,,,,,81,Choose,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Gavatated.sb,,jhb286 - Gavatated,,,,267,Secondchange KeyUp KeyDown Moveandrotate Checkkeys Fire,
RPZ143-2,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\GetCharFromCode.sb,,Get Character from Unicode,,,Nonki Takahashi,94,OnButtonClicked Form GetCharFromUnicode Math_Hex2Dec Math_Dec2Hex,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\GetPixelTest02.sb,,GetPixel test - Modified by Nonki Takahashi,,,,206,OnMouseMove,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\GetPixelText.sb,,GetPixel test - Modified by Nonki Takahashi,,,,201,OnMouseMove,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\GetStandardColor.sb,,,,,,41,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\GoArt.sb,,Original by Kenneth,,,,34,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\GoogleTranslate.sb,,,,,,28,EncodeTextToUrl,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\GraphicsWindow.sb,,,,,,47,OnTick MoveWindow,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\GraphPhysics.sb,,,,,,140,Loop OnPressed OnMove OnReleased OnTick Setup PP_PhysicalPoint PP_Loop PP_SetAcceleration PP_SetAccelerationByPolar,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\HelloWorld.sb,,,,,,1,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Hourse.sb,,Hourse,,0.3,Nonki Takahashi,177,FillTriangle FillTriangle2 FillCircle FillCircle2 DrawTriangles,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Ice.sb,,Ice,,0.1,Nonki Takahashi,65,DrawIce,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Ice02.sb,,Ice,,0.2,Nonki Takahashi,163,FallIce AddIce,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\icontest.sb,,,,,,8,OnMouseMove,
CST860,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Keytest.sb,,,,,,106,KB_Init KB_InKey KB_OnKeyDown KB_OnKeyUp,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\KinectWindowTest.sb,,Kinect Window Test,,,,52,OnButtonClicked,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Kuku.sb,,Kuku (99) - Japanese 1 to 9 Times Table,,,,17,,
PKS847,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\LastChrome.sb,,Last Chrome 41.0.2272.118 m,,,,53,DrawGooglePie,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\LDH635.sb,,Indent,,,,107,DoIndent CatalogSub SkipLeadSpace FileSlurp,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\LeapYearCheckerByEd.sb,,Determines if a given year is a leap year,,,,16,,
QRX067,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\LetItBe.sb,,Let It Be,,,,424,CopyNote Init OnTick Play,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\LiniarRound.sb,,,,,,121,Scale Linear Round,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Machine.sb,,,,,,56,AnalysePhrase Permutation,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\MatrixCrossProduct.sb,,Product of Matrix and vector,,,,256,CalcAndWriteProduct CalcAndWriteCrossProduct CalcAndWriteDotProduct CreateRandomMatrix WriteMatrix WriteScalar MatrixProduct CrossProduct DotProduct CheckType CheckType3 DumpMatrix,
NRS907-3,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Medals05.sb,,Medals,2016-01-25,0.5,Nonki Takahashi,761,OnButtonClicked DrawMedals DrawText FillTriangle Form GetTextWidth ShowSVG HideSVG RoundParam Color_ColorToRGB Color_HSLtoRGB Color_Value Color_RGBtoHSL Math_CartesianToPolar Math_Hex2Dec SB_ColorWorkaround SB_RotateWorkaround SB_Workaround Shapes_Init Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Move Shapes_Remove Shapes_Rotate Text_GetWidthInPx,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\MenuHoverSample.sb,,Menu Hover Sample,,,,61,AddMenuItem OnMouseMove,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\MenuHoverSample2.sb,,Menu Hover Sample,,,,64,AddMenuItem OnMouseMove,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Millisecond.sb,,Benchmark of Euler,,,Nonki Takahashi,30,Start Stop Millisecond,
PBG119-4,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Monkey2016.sb,,Monkey 2016,,,Nonki Takahashi,51,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Network.sb,,Network.sb,,,1,501,ShowNetwork ConvertWeight2BrushColor ConvertOut2BrushColor ForwardPropagation BackPropagation TestMode ReadFile Scanf PrintWeights Initialize,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\NetworkSample.sb,,,,,,8,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\NHX824-0.sb,,,,,,1073,muu cang mww mdd findvar rmm hshow Main sbscan nset drwgrd xplain OnButtonClicked DoLine dorepl fWriteLn xpline Init Opening Math_ATan2,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\NRW874_Maze.sb,,Maze Maker,,,,141,mouseDownEvent drawGrid drawCell,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\P01数字認識.sb,,,,,,140,Title ReadData Recognize,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Parser.sb,,sBuf = File.ReadContens("filename.txt"),,,,93,ParseTitle ParseWidth ParseHeight ParseID ParseGivenProperty LexChar,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\PencilAnimation.sb,,やすださん、Small Basicでは描いた画像をどこかに取っておくということはできません。,,,,50,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Persley.sb,,Original www.calormen.com/jslogo/# tree,,,,33,Persley,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\pgm1.sb,,pgm1.sb,,,,6,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\PhysicalPoint.sb,,,,,,127,Setup Loop OnPressed OnMove OnReleased PP_Main PP_OnTick PP_OnPressed PP_OnReleased PP_OnMove PP_PhysicalPoint PP_Loop PP_SetAcceleration PP_SetAccelerationByPolar,
ZFJ443,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\PhysicsPendulum.sb,,Inverted Pendulum with Physics Engine Framework,2016-02-14,,,100,Control Engine_Init OnKeyDown,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Polygon.sb,,Regular polygon,,,,37,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\PP.sb,,PP - Pre Processor to Convert #define,,,kahashi,81,ParseArgs ParseLine GetSpace GetFunctionName GetParams,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\PresetSound.sb,,,,,,4,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Radiation.sb,,,,,,26,DrawRadialLines,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\RandomColorCircles.sb,,Random Color Circles,,,,76,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\RandomDrawing.sb,,,,,,83,OnTick DrawLine GetRandomColor ShowTimer,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Ratio.sb,,Ratio,,,Nonki Takahashi,64,DrawTriangle,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\RaytracerRed.sb,,Small Basic Raytracer,,,,362,Init OnKeyUp LoadScene RandomScene Preview DetermineIntersection DotProduct Normalise,
HMK327,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\RecommendedFonts02.sb,,Recommended Fonts,2013-12-24,0.2,Nonki Takahashi,41,Repaint,
FHL579-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\RecommendedFonts03.sb,,Recommended Fonts,2013-12-24,0.3,Nonki Takahashi,56,OnTextTyped Repaint,
FHL579-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\RecommendedFonts04.sb,,Recommended Fonts,2013-12-24,0.4,Nonki Takahashi,56,OnTextTyped Repaint,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Reference01.sb,,Small Basic Rererence,2012-07-15,0.1,Nonki Takahashi,304,GetArgs GetMember GetSort GetToken IsUpper ReadLine ShowMembers ShowSorts,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\RegularTriangle.sb,,,,,,27,OnTick,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\RobotAnime01.sb,,Robot Animation,,0.1,Nonki Takahashi,173,DrawGrid Shapes_Init SB_Workaround Shapes_Add Shapes_CalcWidthAndHeight,
SRG635,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\RoseOfWinds.sb,,'' Rose of Winds,,,,88,drww,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\RQM981.sb,,,,,,26,Button,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Ruby.sb,,,,,,37,DrawDia,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\sbppv01.sb,,Small Basic Published Program Viewer,2012-07-14,0.1,Nonki Takahashi,82,GenerateID GetCodeList GetFirstLine,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\sendmail.sb,,以下のメールは送信できない。J:COMが POP after SMTPを採用している,,,,18,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\sendmail2.sb,,以下のメールは送信できる。niftyメール,,,,20,,
XFZ657-15,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Shapes1_5b.sb,,Shapes,2013-03-30,1.5b,Nonki Takahashi,2465,CalcDetectBorder CalcPinchPos CalcVertexes DeleteSelectedShape DetectClickedObject DoMenu DoObject DoPinch DoShape DrawMenu DrawMenuItem ItemSelect NormalizePos ReadShapes RegisterShapeData RegisterShapeMetrics RegisterShapeStyle ShapeSelect WaitToClick WaitToReleaseM MoveShape WaitToReleaseR WaitToReleaseS WriteShapes Color_ColorToRGB Color_HSLtoRGB Color_RGBtoHSL Color_Value CS_AddColorToPalette CS_AdjustSlider CS_DoObject CS_DoPalette CS_DoSlider CS_DrawColorRect CS_DrawPalette CS_GetColorFromSlider CS_Init CS_DumpSlider CS_InitPalette CS_RemovePalette CS_RemoveSliders CS_SearchClickedObject CS_SetColorToSlider CS_ShowNewColor CS_ShowPopup CS_OnButtonClicked File_Open File_OnTextTyped File_Save File_OnButtonClicked KB_FlushFIFO KB_InKey KB_Init KB_OnKeyDown KB_OnKeyUp Math_CartesianToPolar Math_Hex2Dec Mouse_Init Mouse_SetHandler Mouse_OnDown Mouse_DoNothing Mouse_OnMove Mouse_OnTick Mouse_OnUp SB_AppendSub SB_RotateWorkaround SB_Workaround Scissors_Init Shapes_Add Shapes_CalcWidthAndHeight Shapes_CalcRotatePos Shapes_Move Shapes_Remove Shapes_Rotate Slider_Add Slider_CallBack Slider_GetLevel Slider_GetMouseLevel Slider_WaitToRelease Slider_Remove Slider_SetLevel,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\ShotNote.sb,,,,,,73,DrawMarks DrawGrid,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\ShowDefault.sb,,ShowDefault.smallbasic,,,,8,,
SMM526,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\ShowDefault02.sb,,Show Default Properties of GraphicsWindow,,,,35,DrawText,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\ShowScreenSize.sb,,Show Screen Size,,,,26,OnTick,
FHV760,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Simon.sb,,Simon,2013-12-05,0.1a,Nonki Takahashi,69,DrawBody DrawMask DrawGrid,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\SimpleBasic.sb,,SimpleBasic,2012-06-29,0.1,Nonki Takahashi,301,Ruler_Add Ruler_Loop Ruler_OnMouseDown Ruler_OnMouseUp Ruler_OnMouseMove Ruler_DoNothing Ruler_Move Ruler_Rotate InitSimpleBasic DumpGraphicsProperties Scroll SetColor SetFont WriteLine Write,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\simulation.sb,,,,,,38,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\sin.sb,,たのしいマイコン教室より,,,,8,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\SingleNL.sb,,Remove Null Line,,,Nonki Takahashi,24,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\SmallBasicImage.sb,,,,,,26,OnTextTyped,
JMS284,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Soccer.sb,,Soccer World Cup,2014-06-18,0.1a,Nonki Takahashi,172,DoNothing OnMouseMove OnTick Math_CalcJK Math_CalcTriangleProperties Math_CartesianToPolar Math_PolarToCartesian,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\SP7_PI.sb,,SP7,,,,202,Randomize0 Randomize Randomize2 Randomize3 Randomize4 Debug1 Debug2 InitPRnd PRnd RandomizeP,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Special.sb,,special characters,,,,10,,
VST105,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Spiral.sb,,Original code by George Birbilis,,,,20,Spiral,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Submarine.sb,,Submarine Game - 潜水艦ゲーム,,,,57,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Submarine2.sb,,Submarine Game,,,,56,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\SubText.sb,,,,,,16,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Sun.sb,,,,,,33,,
QZS270,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Symbols.sb,,Webdings / Wingdings font symbols (not Unicode) and Unicode Miscellaneous Symbols,,,,91,InitSuites Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\ten.sb,,,,,,14,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TenDigits.sb,,,,,,12,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TenDigitsTest.sb,,,,,,2,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TestCartesianToPolar.sb,,Math_CartesianToPolar Test Program,,,,106,OnMouseMove DrawGrid Math_PolarToCartesian Math_CartesianToPolar,
SKW078,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TestProperty.sb,,Bug report - Graphics window property sometimes be broken.,,,,21,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TestSqrt.sb,,,,,,5,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TestTextObjects.sb,,,,,,31,InputData TestTextObject,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TextSample.sb,,,,,,25,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TextWindowProperties.sb,,,,,,34,GetProperties ShowProperties,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TextWindowSaver01.sb,,TextWindow Saver,2014-01-15,0.1,Nonki Takahashi,116,Init CreateHeader End SetForegroundColor SetBackgroundColor Clear Write WriteLine CreateFilePath AddFilePath,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TicTacToe.sb,,TicTacToe,,,,1234,ShowStage InitStage,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TicTacToe2.sb,,TicTacToe - step 1,,,,6387,CheckSymetric CompareBoard GetVerticalSymetricBoard GetDownSymetricBoard GetRightSymetricBoard GetLeftSymetricBoard GetHorizontalSymetricBoard GetUpSymetricBoard GetTurnSymetricBoard CheckDouble CopyBoard GetBoardFromStage ShowStage InitStage,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TicTacToeMIX.sb,,TicTacToe MIX,,,,559,Human ShowPointer HidePointer GetPosition Record ShowRecord ShowPutList SavePutList RestorePutList SaveBoard RestoreBoard WorkOut Random RandomX RunAndStop ShowResult CheckGameEnd GetPutList ShowBoard ClearBoard,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TicTacToeRvsM.sb,,TicTacToe RANDOM vs MATCHBOX,,,,1342,CheckGameEnd GetPutList ShowBoard ShowStage InitStage,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TicTacToeRvsMC.sb,,TicTacToe RANDOM vs MONTECARLO,,,,518,Record ShowRecord ShowPutList SavePutList RestorePutList SaveBoard RestoreBoard WorkOut Random RunAndStop ShowRunAndStop ShowResult CheckGameEnd GetPutList ShowBoard ClearBoard,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TicTacToeRvsR.sb,,TicTacToe RANDOM vs RANDOM,,,,174,ShowResult CheckGameEnd GetPutList ShowBoard ClearBoard,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TicTacToeRvsRS.sb,,TicTacToe RANDOM vs RUNANDSTOP,,,,258,RunAndStop ShowResult CheckGameEnd GetPutList ShowBoard ClearBoard,
JLF545-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Time-Velocity Graph.sb,,Time-Velocity Graph,2015-07-26,0.3,Nonki Takahashi,147,Ft ConvertTVtoXY DrawGrid DrawGridAndValue,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TimerSample11.sb,,,,,,22,OnTick DoSomething OnTextTyped,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Triangle.sb,,Triangle,2014-06-17,0.1,Nonki Takahashi,266,DrawAngles DrawCoOrdinates DrawEdges DrawGrid DrawPerpendicular DrawVertices OnKeyDown OnMouseDown OnMouseMove OnMouseUp Math_CartesianToPolar Math_PolarToCartesian,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Triangle02.sb,,Triangle,2014-06-17,0.2,Nonki Takahashi,286,CalcTriangleProperties DrawAngles DrawCoOrdinates DrawEdges DrawGrid DrawPerpendicular DrawVertices OnKeyDown OnMouseDown OnMouseMove OnMouseUp Math_CartesianToPolar Math_PolarToCartesian,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Triangle03.sb,,Triangle Properties,2014-06-17,0.3,Nonki Takahashi,322,AdjustVertex DragVertex DrawAngles DrawCo_ordinates DrawEdges DrawGrid DrawPerpendicular DrawVertices MoveVertex OnKeyDown OnMouseDown OnMouseMove OnMouseUp PickVertex RedrawTriangle Math_CalcJK Math_CalcTriangleProperties Math_CartesianToPolar Math_PolarToCartesian,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\triangle_sample.sb,,,,,,37,DrawVertices DrawCross,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TurtleAnime.sb,,Turtle Test,,,,52,OnTick,
QZN342-3,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TurtleDodger05b.sb,,Turtle Dodger,2014-04-17,0.5b,Nonki Takahashi,185,Closing Opening Ready Game Init OnTick ScrollObject AddObject OnKeyDown,
RBN002-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TurtleFlash.sb,,Turtle Flash,,,Nonki Takahashi,68,DrawLine,
CHZ459,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TurtleRandomDrawing.sb,,Turtle Random Drawing,,,Nonki Takahashi,36,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\turtletest.sb,,,,,,3,,
JLF545-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TVGraph.sb,,Time-Velocity Graph,2015-07-26,0.2,Nonki Takahashi,147,Ft ConvertTVtoXY DrawGrid DrawGridAndValue,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Type.sb,,,,,,5,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\UlamSpiral.sb,,Ulam Spiral,,,,89,NumToPos GetPrime FindNextPrime,
TLP922,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\variablecode.sb,,'' Code Test,,,,18,Δ2Hex,
WCT521-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Vector.sb,,Vector Sample in Small Basic,2016-02-17,0.2,Nonki Takahashi,327,FillTriangle FillFan Form OnButtonClicked DrawGrid Vector_Calc Vector_Comp Vector_GetOp Vector_Set Vector_Add Vector_Sub Vector_Abs Vector_Mul Vector_Rotate Vector_Print Vector_Draw,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\VRAM.sb,,,,,,195,DrawPixel Color_ColorToRGB Math_Hex2Dec Colors_Init,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\WarriorArenaGame.sb,,' Warrior Arena Game - Prototype Arena (CoreWar Emulator),,,,220,ExecWarrior1Command GetABValues EditAB ADD SUBT MUL DIV,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\WriteFormat.sb,,Write with Format,2012-07-21,0.1,Nonki Takahashi,32,WriteWithFormat,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\zipapi.sb,,,,,,6,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\ZXSpecrumEmu.sb,,,,,,917,dosample makecursor drcln runprg ttm kdd crst refscr shppw nwarr ccmd shwcubhlp showlogohlp plin evcmd logmv donw evc2 kyy drwkbd mwww meastx DrawCube Conv3Dto2D,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\かめ.sb,,,,,,14,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\かめ2.sb,,Something,,,,55,DrawPart,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\かめもどき.sb,,Face,,,,120,DrawPart Turn PenUp PenDown Move,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\予約語.sb,,,,,,218,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\潜水艦ゲーム.sb,,≪第10-15図≫潜水艦ゲームのプログラムリスト,,,,65,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\潜水艦ゲーム2.sb,,≪第10-15図≫潜水艦ゲームのプログラムリスト,,,,47,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\石とりゲーム1.sb,,,,,,64,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\BB-8\BB-8.sb,,BB-8 in Small Basic World,,,Nonki Takahashi,81,GetImage OnKeyDown,
PCP610-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\55-card02.sb,,Symetric 55-card,,0.2,Nonki Takahashi,161,DrawEdge DrawVertices DrawVertex RandomPen CreateCard1 CreateCard AppendP2,
QZZ047,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\99BottlesOfBeer.smallbasic,,99 Bottles of Beer,,,Nonki Takahashi,42,InitSong,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Add01.smallbasic,,Add Game - text version,,0.1,Nonki Takahashi,54,StartTimer AskQuestion StopTimer ShowNumCorrect ShowTime AskContinue,
FDK603,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Age01.smallbasic,,Age Checker,2013-03-14,v0.1,Nonki Takahashi,96,ShowToday CheckDateOfBirth,
VXK727,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\anime0.smallbasic,,30-second Animation,,,,68,OnTick MoveObj,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Ant01.smallbasic,,Ant,,0.1,Nonki Takahashi,351,GetDelta GetDeltas AddThorax MoveThorax AddHead MoveHead AddAbdomen MoveAbdomen AddAntenna MoveAntenna AddLeg MoveLeg AddBeam MoveBeam,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Ant02.smallbasic,,Ant,2012-06-09,0.2,Nonki Takahashi,243,Lens DeleteRect DrawThorax DrawHead DrawAbdomen DrawAntenna DrawLeg DrawBeam,
RDJ626-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Arrows.sb,,Arrows,2017-06-26,,Nonki Takahashi,85,AddArrow Init OnMouseMove Math_CartesianToPolar,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\ASCII.smallbasic,,,,,,27,,
JGH943-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\ASCIIArt.smallbasic,,ASCII Art,2015-01-06,0.11,Nonki Takahashi,94,ConvertCell Color_RGBtoGray Math_Hex2Dec,
JGH943-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\ASCIIArt02.smallbasic,,ASCII Art,2015-06-20,0.2,Nonki Takahashi,101,ConvertCell Color_RGBtoGray Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\average.smallbasic,,,,,,33,SeparateCSV,
FVG576,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\BaseballScoreboard01.smallbasic,,Baseball Scoreboard,2014-01-06,0.1,Nonki Takahashi,434,MainLoop Popup AddButtons RemoveButtons OnButtonClicked OnKeyDown InitBoard WalkOff PrintBoard FindLastInning ResetBoard InitLamps InitCursor UpdateScore MoveCursor ToggleLamps InitClock OnTick DrawMark,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Basket01.smallbasic,,Basketball,2012-06-24,0.1,Nonki Takahashi,417,AddControls DrawRoom WaitButton OnButtonClicked Ball_Add Ball_Move Ball_Rotate Goal_Add Joint_Add Joint_Move Man_Add Man_AddLimb Man_Catch Man_Hold Man_MoveLimb Man_Throw,
TKL110,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Basket02.smallbasic,,Basketball,2012-08-09,0.2,Nonki Takahashi,423,AddControls DrawRoom WaitButton OnButtonClicked Ball_Add Ball_Move Ball_Rotate Goal_Add Joint_Add Joint_Move Man_Add Man_AddLimb Man_Catch Man_Hold Man_MoveLimb Man_Throw,
TKL110-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Basket03.smallbasic,,Basketball,2012-08-21,0.3,Nonki Takahashi,551,AddControls DrawRoom WaitButton OnButtonClicked Ball_Add Ball_Move Ball_Rotate Goal_Add Goal_BoundOnBoard Goal_BoundOnFlange Goal_BoundOnRing Goal_CalcReflection Goal_Check Goal_Show Joint_Add Joint_Move Man_Add Man_AddLimb Man_Catch Man_Hold Man_MoveLimb Man_Throw,
JRH717,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Billiard01a.smallbasic,,Cue GUI for Billiard,2013-09-26,0.1b,Nonki Takahashi,237,Mouse_Move Init OnMouseDown OnMouseUp OnMouseMove Cross_Draw Cross_Clear Line_Draw Line_Clear Floor_Init Table_Init Ball_Init Cue_Init Cue_Move FillRoundRectangle Math_CartesianToPolar,
BGH855-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Binary.sb,,'' Binary Quiz,2017-04-21,,Nonki Takahashi,103,Form DecToBaseN ShowBinary ShowDec ShowHex,
MWQ039,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\BinaryAdder.sb,,Binary Add Computer,2016-06-12,0.1,Nonki Takahashi,184,AddNumber ClearNumber SetNumber Toggle ShowNum OnKeyDown Form SwitchOn SwitchOff,
RFV485,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\BrawnianMotion01.smallbasic,,Brownian motion 2013-03-15,,,,35,OnTextTyped,
SNZ703,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Breakout.sb,,Breakout,,0.1a,Nonki Takahashi,166,Form Main InitBricks InitPaddle InitBall UpdateBall OnKeyDown OnTick,
DZH703,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Browser01.smallbasic,,Simple Browser,2013-03-07,0.1a,Nonki Takahashi,29,OnButtonClicked,
MBL596-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Cal.sb,,Cal - Calendar,,,,243,DateInit Now Weekday Day DateSerial DatePart DateValue Leap IsLeap,
SCL845,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\CalcAngleCforStar.sb,,Calculate Angle C for a Star,,,Nonki Takahashi,311,EmphasizeEquations MoveArc OnMouseDown,
PCP610,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\card55.smallbasic,,Symetric 55-card,,,Nonki Takahashi,66,DrawEdges DrawVertices DrawVertex,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Cards01.smallbasic,,Cards - demo of cards,,,Nonki Takahashi,139,Cards_Init Cards_Close Cards_Open Cards_Move Cards_Swap Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Castle.smallbasic,,Castle LD,2015-07-07,0.1,Nonki Takahashi,99,OnTick CheckDefault AddShape,
LDH017,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Castle02.smallbasic,,Castle,2015-07-07,0.2,Nonki Takahashi,187,OnTick CheckDefault AddShape Physics_AddMovingShape Physics_SetPositions Physics_SetImpulse Physics_DoTimestep Physics_Init,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Challenge4_2012_4.smallbasic,,Probability of Poker - Challenge 4 (April 2012),,,Nonki Takahashi,230,PrintResults PrintCards RandomCard Sort Are4ofaKind AreFullHouse Pick5 Combination,
VJZ575,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Chime01a.smallbasic,,Chime Programming System,,0.1,Nonki Takahshi,119,GetNextTime OnTextTyped OnTick GetCurrentTime,
JCC750,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\ChordWaveForm01.smallbasic,,Chord Wave Form,2014-01-11,0.1,Nonki Takahashi,225,DrawChord PlayChord GetScale InitChord DrawGrid DrawRoundRectangle FillRoundRectangle DrawArc FillQuadrangle,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Circuit0.smallbasic,,2013/02/04 15:03:20 Generated by Shapes,,1.5,,136,Shapes_Init Branch_Init Corner_Init Battery_Init Lamp_Init Shapes_Add,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Circuit01.smallbasic,,Circuit,2013-02-18,0.11a,Nonki Takahashi,444,CalcSlotParam SB_Workaround Shapes_Init Switch_Init Branch_Init Corner_Init Battery_Init Lamp_Init Shapes_Add Shapes_CalcWidthAndHeight Shapes_CalcRotatePos Shapes_Move Shapes_Remove Shapes_Rotate Math_CartesianToPolar,
XXN689-5,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Circuit02.smallbasic,,Circuit,2013-02-19,0.2b,Nonki Takahashi,524,OnMouseDown DoNothing Switch_On Switch_Off Light_Check Light_On Light_Off Circuit_Init Circuit_CalcSlotParam SB_Workaround SB_RotateWorkaround Shapes_Init Switch_Init Branch_Init Corner_Init Battery_Init Light_Init Shapes_Add Shapes_CalcWidthAndHeight Shapes_CalcRotatePos Shapes_Move Shapes_Remove Shapes_Rotate Math_CartesianToPolar,
XXN689-6,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Circuit03.smallbasic,,Circuit,2013-02-25,0.3b,Nonki Takahashi,657,Beep OnKeyDown DoNothing Circuit_Init Circuit_CalcCellParam Cursor_Move Cursor_On Light_Check Light_On Light_Off Part_Move SB_Workaround SB_RotateWorkaround Switch_On Switch_Off Switch_Init Shapes_Init Branch_Init Corner_Init Battery_Init Light_Init Shapes_Add Shapes_CalcWidthAndHeight Shapes_CalcRotatePos Shapes_Move Shapes_Remove Shapes_Rotate Math_CartesianToPolar,
XXN689-8,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Circuit04.smallbasic,,Circuit,2013-03-01,0.42b,Nonki Takahashi,841,Beep OnKeyDown DoNothing Circuit_Init Circuit_CalcPosParam Circuit_ClearSearchedFlag Circuit_InitRotate Circuit_Rotate Circuit_SaveObj Circuit_SearchBatteryMinus Circuit_SearchBatteryPlus Circuit_SearchLight Circuit_SetSearchedFlag Cursor_Check Cursor_Move Cursor_On Light_Check Light_On Light_Off Part_Move SB_Workaround SB_RotateWorkaround Switch_On Switch_Off Switch_Init Shapes_Init Branch_Init Corner_Init Battery_Init Light_Init Shapes_Add Shapes_CalcWidthAndHeight Shapes_CalcRotatePos Shapes_Move Shapes_Save Shapes_Restore Shapes_Remove Shapes_Rotate Math_CartesianToPolar,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Clock.smallbasic,,,,,,11,,
SMB798,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Cloud01.smallbasic,,Cloud,2012-11-27,0.1,Nonki Takahashi,44,OnTick,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\ConvArabicRoman.smallbasic,,Conversion between Arabic and Roman Numerals,,,,28,OnTextTyped,
DNS916,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\CountDownTimer.smallbasic,,Count Down Timer - Hit any key to restart.,,,,40,Init OnKeyDown,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Crate.smallbasic,,Cargo Crates,,,Nonki Takahashi,113,SetCargoColor DrawPort AddBoat MoveBoat AddWater AddCargo AddData,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\CubeRoot.smallbasic,,Cube Root,,,Nonki Takahashi,31,CubeRoot,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\DataBase.smallbasic,,Database,,v0.1,Nonki Takahashi,181,ParseCommand ShowHelp ParseSet ParseHelp ParseQuit ParseID ParseProperty ParseData LexChar ParseQuery,
ZQH085,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Date02.smallbasic,,Date Checker,2013-04-03,v0.2,Nonki Takahashi,74,CheckDate,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\DebugTRON02.smallbasic,,,,,,1,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Dec2Bin.smallbasic,,Dec2Bin - decimal to binary converter,2012-09-02,0.1,Nonki Takahashi,22,Dec2Bin,
JCX970-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Dial02.smallbasic,,Dial,2013-02-16,0.2,Nonki Takahashi,49,OnMouseDown,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Dial03.smallbasic,,Dial,2015-01-09,0.3,Nonki Takahashi,81,OnMouseDown Draw_FillRoundRectangle,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\DictionaryTest.sb,,Dictionary Array - Small English Dictionary based on Scowl,,,Coding Cat ,106,Find FindNot InitWords Sample,
RZF052,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\DigitalRiver01.sb,,Digital River,,0.1,Nonki Takahashi,99,OnTick,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Divisors01.smallbasic,,Divisors,2012-10-03,0.1,Nonki Takahashi,32,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Divisors02.smallbasic,,Divisors,2012-10-03,0.2,Nonki Takahashi,143,List_Init List_Add List_DumpToEnd List_Exist List_Mul List_Next,
PMV523-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Dobble55 1.smallbasic,,Random 8-picture 55-card set (Dobble / Spot it!),,,Nonki Takahashi,121,Append AreDup FindCard OnTick Print,
PMV523-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Dobble55.smallbasic,,Random 8-picture 55-card set (Dobble / Spot it!),,,Nonki Takahashi,120,Append AreDup FindCard OnTick Print,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Dobble55E.smallbasic,,Every pair has only one same picture 8-picture 55-card set,,,Nonki Takahashi,108,Append Remove AreDup Print,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Dobble55_02.smallbasic,,Random 8-picture 55-card set (Dobble / Spot it!),,,Nonki Takahashi,193,Append AreDup DrawEdges DrawVertex DrawVertices FindCard FindCard2 OnTick Print,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\DobbleMinimum.smallbasic,,Minimum 8-picture card set (Dobble / Spot it!),,,,33,Append Print,
FGM769,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Donkey01.smallbasic,,Simple Donkey Kong,2014-03-08,0.1a,Nonki Takahashi,165,Barrel_Add DrawRivets FillPies FillInnerEllipse FillInnerEllipseSlice Slope_Add Init,
FGM769-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Donkey02.smallbasic,,Simple Donkey Kong,2014-03-10,0.2a,Nonki Takahashi,178,OnTick Barrel_Add Slope_Add Init Math_CartesianToPolar,
FGM769-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Donkey03.smallbasic,,Simple Donkey Kong,2014-03-12,0.3b,Nonki Takahashi,229,OnTick Barrel_FindUsed Barrel_Add Slope_Add Init Math_CartesianToPolar,
HMP803,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Dragon01.smallbasic,,Dragon vs Turtle,,0.1a,Nonki Takahashi,38,,
FWD807,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\DrawCube01.smallbasic,,Draw Cube,2013-08-03,0.1,Nonki Takahshi,203,Conv3Dto2D DrawCube Color_HSLtoRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\DrawRoundRect.smallbasic,,,,,,75,FillRoundRectangle DrawRoundRectangle,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\EarthandMoon.smallbasic,,,,,,20,,
WRG641,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Elephant01.smallbasic,,Elephant,2012-08-14,0.1,Nonki Takahashi,194,AddEllipseToElement AddRectangleToElement AddArcToElement MoveArc MoveElement DumpParam DumpElements,
CXZ359,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Ellipse.sb,,Kepler's Second Law,,0.1,Nonki Takahashi,68,DrawEllipse Form OnButtonClicked,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\EulerPathSolver01.smallbasic,,Eulerian path solver,2012-07-11,0.1,Nonki Takahashi,273,DrawGraph FindAdjacentVertex FindOddVertex FindOneStrokePath InitVertexes InitEdges MoveTurtle ShowError,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\EulerPathSolver02.smallbasic,,Eulerian path solver,2012-07-12,0.2,Nonki Takahashi,263,DrawGraph FindAdjacentVertex FindOddVertex FindOneStrokePath InitVertexes InitEdges MoveTurtle ShowError,
ZSH672-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\ExPaint02.smallbasic,,Extensible Paint - Group Challenge July 2014,,0.2,,205,Plug_Ins OnKeyDown OnMouseDown OnMouseMove OnButtonClicked PenDraw Eraser SelectPenColor,
VDN421,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\FerrisWheel01.sb,,Ferris Wheel,,0.1,Nonki Takahashi,73,OnTick Form,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\FGW390.sb,,Set Variables--------------------------------------------------------------------,,,,213,onButtonClicked initGUI hideButtons hideMessages notUsedBefore usedBefore accept decline exit dataBase dataEntry deleteFiles picOfTheDay wallPaper clearPicture,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\FilipeRPG.sb,,,,,,1340,variables Save_game load_game player skeleton zombie demon zombiehulk demongeneral Menu space enter wrongoption intro leveling town townname selectlocation mobjournal spiszero armors enemy,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\FillRoundRect.smallbasic,,,,,,18,FillRoundRectangle,
FLB993,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\FireFlames01.smallbasic,,Fire Flames,2013-03-04,0.1,Nonki Takahashi,48,AddFire MoveFire,
FLB993-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\FireFlames02.smallbasic,,Fire Flames,2013-03-10,0.2,Nonki Takahashi,285,AddFire MoveFire Paint FillLinearGradientRectangle Color_ColorToRGB Math_Hex2Dec Colors_Init,
LBP169,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Flower.sb,,Peach_ Plum_ Cherry,,,Nonki Takahashi,67,Flower,
ZVL057,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Football01.smallbasic,,Football,2013-03-05,0.1a,Nonki Takahashi,60,VRAM_Init,
ZVL057-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Football02a.smallbasic,,Football,2013-03-05,0.2a,Nonki Takahashi,286,OnTick Paddle_Down Paddle_Up OnKeyDown Ball_Set Num_Init Score_Init CenterLine_Init Score_Set VRAM_Init,
ZVL057-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Football03a.smallbasic,,Football,2013-03-05,0.3b,Nonki Takahashi,381,OnTick Sound_Init Paddle_Down Paddle_Up OnKeyDown Ball_Init Ball_Update Num_Init Score_Init CenterLine_Init Score_Set VRAM_Init,
ZLV057-2,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Football04b.smallbasic,,Football,2013-03-06,0.4,Nonki Takahashi,371,OnKeyDown OnTick Ball_Init Ball_Update Court_Init Num_Init Paddle_Init Paddle_Down Paddle_Up Score_Init Score_Set Sound_Init,
ZVL057-3,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Football05.smallbasic,,Football,2013-03-10,0.5,Nonki Takahashi,366,OnKeyDown OnTick Ball_Init Ball_Update Court_Init Num_Init Paddle_Init Paddle_Down Paddle_Up Score_Init Score_Set Sound_Init,
TQX303,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Fraction.smallbasic,,Reduce a fraction to a common denominator,2013-11-28,0.1,Nonki Takahashi,117,ParseFrac ParseNum ParseSlash Math_GCM Math_CM DumpCM,
PPJ352,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Frequency01.smallbasic,,Frequency of Pitches,2013-12-09,0.1,Nonki Takahashi,148,ScanKeyboard OnMouseDown DrawKeyboard GetKeyNumber GetNote,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Frog.smallbasic,,2012/09/06 17:13:24 Generated,,,,58,DrawFrog,
JTH842,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\GeometricPattern01.smallbasic,,Geometric Pattern,2014-05-01,0.1,Nonki Takahashi,52,DrawPattern1 DrawPattern2,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\GeometricPattern02.smallbasic,,Geometric Pattern #02,,,Nonki Takahashi,47,DrawPattern,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\GeometricPattern03.smallbasic,,Geometric Pattern #03,,,Nonki Takahashi,55,DrawPattern,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Giraffe01.smallbasic,,Giraffe,2012-09-06,0.1,Nonki Takahashi,85,DrawGiraffe,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\graphnew.sb,,graphnew 150210 WhTurner,,,,95,field,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\GRD708a.smallbasic,,Goat,,,,35,InitTriangles,
KSV247-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Greeteing2015.smallbasic,,New Year Greeting 2015,,,Nonki Takahashi,110,AddSheep AddText DrawStars Init SB_Workaround,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\GuessWord01.smallbasic,,,,,,61,GetRandomWord ShowDef ShowLineOfDef,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\GuessWord02.smallbasic,,,,,,128,WaitToAnswer OnButtonClicked GetRandomNoun GetWord GetRandomWord ShowDef GetLineOfDef,
BDK263,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\GuessWord03.smallbasic,,Guess Word,2013-05-05,0.3,Nonki Takahashi,111,WaitToAnswer OnButtonClicked GetWords GetRandomWord GetMean GetLineOfDef,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Happy1000.smallbasic,,Happy Numbers below 1000,,,Nonki Takahashi,37,IsHappy,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Heart01.smallbasic,,Heart,,0.1,Nonki Takahashi,34,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Heart02.smallbasic,,Heart,2013-02-13,0.2,Nonki Takahashi,53,,
SWQ275-2,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Heart04.smallbasic,,Heart,2013-02-13,0.4,Nonki Takahashi,56,,
SWQ275-3,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Heart05.smallbasic,,Heart,2013-02-13,0.5,Nonki Takahashi,57,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\House01.smallbasic,,XLB916,,,,86,OnMouseDown OpenDoor CloseDoor LightOn LightOff DrawStars DrawGrid,
XLB916-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\House02.smallbasic,,Challenge of the Month - May 2013 | Community Suggestion 3 (2),,,,86,OnMouseDown OpenDoor CloseDoor LightOn LightOff DrawStars DrawGrid,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Hydrangea-nonkit-PC.smallbasic,,,,,,74,AddInflorescence AddHydrangea,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\icontest.sb,,,,,,8,OnMouseMove,
TQH071,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Illusion01.smallbasic,,Optical Illusion #01,,,,114,DrawGrid Draw3DGrid CalcMidX,
SCB458,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\InternatilnalHelloWorld.smallbasic,,International Hello World,,,Nonki Takahashi,87,Init Main,
CQN440,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\InvestigateChar.smallbasic,,Create String for ASCII Art,,,,59,CountWhitePixelsInChar,
GTB559-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Kaleidoscope01.smallbasic,,Kaleidoscope,2013-11-20,0.11,Nonki Takahashi,344,Shapes_Init Shapes_MakeFlip Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Move Shapes_Remove Shapes_Rotate,
GTB559-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Kaleidoscope012.smallbasic,,Kaleidoscope,2013-11-20,0.12b,Nonki Takahashi,336,Shapes_Init Shapes_MakeFlip Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Move Shapes_Remove Shapes_Rotate,
GTB559-2,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Kaleidoscope013.smallbasic,,Kaleidoscope,2013-11-20,0.13,Nonki Takahashi,346,Shapes_Init Shapes_MakeFlip Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Move Shapes_Remove Shapes_Rotate,
GTB559-3,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Kaleidoscope014.smallbasic,,Kaleidoscope,2013-11-20,0.14,Nonki Takahashi,341,Shapes_Init Shapes_MakeFlip Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Move Shapes_Remove Shapes_Rotate,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Kaleidoscope02.smallbasic,,Kaleidoscope,,0.2,Nonki Takahashi,342,Shapes_Init Shapes_MakeFlip Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Move Shapes_Remove Shapes_Rotate,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Kaleidoscope021.smallbasic,,Kaleidoscope,2015-02-28,0.4,Nonki Takahashi,344,Shapes_Init Shapes_MakeFlip Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Move Shapes_Remove Shapes_Rotate,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Kaleidoscope03.smallbasic,,Monarch Butterfly,2013-11-20,0.3,Nonki Takahashi,409,Body_Init Left_Init Right_Init Shapes_Init Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Move Shapes_Remove Shapes_Rotate,
GTB559-4,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Kaleidoscope04.sb,,Kaleidoscope,2015-11-18,0.41,Nonki Takahashi,347,Shapes_Init Shapes_MakeFlip Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Move Shapes_Remove Shapes_Rotate,
GQF135,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\KitchenTimer01a.smallbasic,,Kitchen Timer,,0.1a,Nonki Takahashi,68,DrawKitchenTimer AddMinuteHand StartTimer OnTick,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\KnobControl.sb,,SmallBasic Version,,1.2,Pappa Lapub,183,MouseClickKnobOff MouseDownKnobOn UpdateView BuildGUI OnMouseDown OnMouseUp OnButtonClick OnKeyDown,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\LDShapes.smallbasic,,Like This??,,,,118,createpos addtopline addbottomline addsides MoveTriangle,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\LePetitPrince.smallbasic,,09/05/2013 0:02:22 Shapes generated by Shapes,,1.5,,376,Shapes_Init Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Move Shapes_Remove Shapes_Rotate,
ZVC444,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\LightBeam01.smallbasic,,Light Beam,2013-01-29,0.1,Nonki Takahashi,251,Shoot ClearBeam OnKeyDown,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Lion.smallbasic,,Lion,2012-08-02,0.1,Nonki Takahshi,136,Ellipse Rectangle Triangle Arc,
HBN459,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Lissajous.smallbasic,,Lissajous Curve,2013-08-04,0.1,Nonki Takahashi,171,OnKeyDown Lissajous DrawGrid DrawRoundRectangle FillRoundRectangle DrawArc FillQuadrangle,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Lissajous01.smallbasic,,Lissajous Curve,2013-08-04,0.1,Nonki Takahashi,171,OnKeyDown Lissajous DrawGrid DrawRoundRectangle FillRoundRectangle DrawArc FillQuadrangle,
HBN459-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Lissajous02.smallbasic,,Lissajous Curve,2015-01-05,0.2,Nonki Takahashi,176,DrawArc DrawGrid DrawRoundRectangle FillQuadrangle FillRoundRectangle Lissajous OnKeyDown,
DTF312,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\LunaModule.smallbasic,,Luna Module,2014-10-10,0.2a,,307,Shapes_Init Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Move Shapes_Remove Shapes_Rotate,
HHF879,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\MakeAFaceGame01.smallbasic,,Make-A-Face Game,2014-06-15,0.1,Nonki Takahashi,69,OnMouseDown OnMouseUp OnMouseMove Pick,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\MathProblem.smallbasic,,Math Problem,2014-05-13,0.1,Nonki Takahashi,60,Init Opening Main OnKeyDown Run,
LHR951,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\MathQuiz01.smallbasic,,Math Quiz,2015-05-04,0.1,Nonki Takahashi,91,OnTextInput,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\MathSample.sb,,Master control system,,,,59,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\MathsChallenge1.smallbasic,,Maths Challenge 2 of Challenge of the Month - May 2012,,,,54,WriteLineAns f,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Maze01.smallbasic,,Maze,,0.1,Nonki Takahashi,305,AddButtons ClearMaze OnButtonClicked WaitButtonClick InitTurtle DrawGoal GenerateMaze DrawVertexWalls DrawWall SolveMaze FindExit IsWall Move,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Maze02.smallbasic,,Maze,,0.2,Nonki Takahashi,306,AddButtons ClearMaze OnButtonClicked WaitButtonClick InitTurtle DrawGoal GenerateMaze DrawVertexWalls DrawWall SolveMaze FindExit IsWall Move,
PNC833,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Maze03.smallbasic,,Maze,,0.3,Nonki Takahashi,368,AddButtons AddWallToList ClearMaze DrawGoal DumpMaze FindPassage FindWallInList GenerateMaze GetRandomIndex InitTurtle IsWall KnockDownWall Move OnButtonClicked RemoveWallFromList SolveMaze WaitButtonClick,
FMN979,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\MineSweeper01.smallbasic,,Minesweeper for Small Basic,2013-05-07,0.1b,Nonki Takahashi,253,Init Game OnMouseDown DoNothing OnTick OpenCover Win Lose SetMessage OpenAdjacents OpenMines CreateStage AddNumbers ShowStage ShowCover ShowCell,
FMN979-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Minesweeper02.smallbasic,,Minesweeper for Small Basic,2013-05-13,0.2,Nonki Takahashi,308,Init Game OnMouseDown DoNothing OnTick OpenCover ToggleMark Win Lose SetMessage OpenAdjacents OpenMines CreateStage AddNumbers ShowStage ShowCover ShowCell,
GJR357,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\MirrorPaint01.smallbasic,,Mirror Paint,2013-12-17,0.1,Nonki Takahashi,38,OnMouseDown OnMouseUp OnMouseMove,
PVH974,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\MissileCommand02a.smallbasic,,Missile Command Demo,2013-09-26,0.2a,,144,Init Caption DoNothing OnTick Bomb Demo HighScores GameEnd SizeOctagon,
VHH620-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\MissileCommand03.smallbasic,,Missile Command Demo,2013-09-26,0.3a,,243,Init Caption OnTick Bomb Demo DoNothing OnTickMissile Missile_Move City_Init City_Draw HighScores GameEnd SizeOctagon Math_CartesianToPolar,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\MissileCommandDemo.smallbasic,,Missile Command Demo,,,,63,Init Caption Bomb Demo HighScores,
RPM049,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Moon.smallbasic,,Area of Crescent,,,Nonki Takahashi,62,,
RPM049-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Moon02.smallbasic,,Moon Phase - July 2015,2015-06-04,,Nonki Takahashi,90,,
RPM049-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Moon03.smallbasic,,Moon Phase - June 2015,2015-06-04,0.3,Nonki Takahashi,93,,
RPM049-2,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Moon04.smallbasic,,Moon Phase - June 2015,2015-06-04,0.4,Nonki Takahashi,92,,
ZRX774,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Multitasking.sb,,Multitasking Challenge,2016-09-05,0.12,,121,Init CheckTimers OnTick,
FQH921,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\MusicalScore01.smallbasic,,Musical Score,2014-01-06,0.1,Nonki Takahashi,822,DrawFClef DrawLines DrawGClef DrawArc Calc Exec_Expr Exec_Factor Exec_Literal Exec_Real Exec_Term Lex_Init Lex_Label Lex_Name Lex_Num Lex_Space0 Lex_Space1 Lex_Str Lex_Text Lex_Var Parse_Expr Parse_Term Parse_Factor Parse_Val Parse_Literal Parse_Real,
CML298,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\NapierA.smallbasic,,Calculate Napier's constant (the base of the natural logarithm),2015-06-19,A,Nonki Takahashi,17,,
CML298-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\NapierA3.sb,,Calculate Napier's constant (the base of the natural logarithm),2017-03-04,A3,Nonki Takahashi,14,,
DNP836,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\NapierB.smallbasic,,Calculate Napier's constant (the base of the natural logarithm),2015-06-19,B,Nonki Takahashi,25,Calc,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\NapierC.sb,,Calculate Napier's constant (the base of the natural logarithm),2015-06-19,C,Nonki Takahashi,13,,
RMF924,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\NapierC.smallbasic,,Calculate Napier's constant (the base of the natural logarithm),2015-07-16,C,Nonki Takahashi,15,,
KFD409-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\NeonSign.sb,,Neon Sign,2017-06-04,0.2,Nonki Takahashi,359,AddLight AddMask Arc Init NewLine A B C D E F G H I J K L M N O P Q R S T U V W X Y Z,
KSV247-4,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\NewYear2015.smallbasic,,New Year Greeting 2015,,4,Nonki Takahashi,113,AddSheep AddText DrawStars Init SB_Workaround,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\NounSearch01.smallbasic,,,,,,98,GetRandomNoun GetWord GetRandomWord ShowDef GetLineOfDef,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\NounSearch02.smallbasic,,,,,,128,GetWords GetNounFromDef GetWord GetRandomWordFromDef GetMean GetWords2FromMean GetLineOfDef,
LWB173,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\NPointedStar.sb,,N Pointed Star,,0.1,Nonki Takahashi,81,DrawStar Form Init OnButtonClicked,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\OneStroke.smallbasic,,One stroke figure (house),,,Nonki Takahashi,67,InitPoints InitTurtle MoveTurtle,
ZBB577,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\OpticalIllusion2.sb,,Optical Illusion 2,2016-07-26,,,98,DrawStripe DrawRectangle MoveStripe,
DBT933,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\OpticalIllusion3.sb,,Optical Illusion 3,,,Nonki Takahashi,71,DrawRing,
FKF800,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Orange.sb,,A Tree with Fruit - Orange,2017-05-19,,Nonki Takahashi,105,DrawBranch DrawFruits DrawLeaves DrawTree,
CLJ212,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Orbit.sb,,Orbit,2016-06-05,0.11,Nonki Takahashi,93,DrawOrbits Init,
CLJ212-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Orbit02.sb,,Orbit,2016-06-08,0.22,Nonki Takahashi,299,Init OnMouseDown CalcPlanetPos Calc3Equ DrawPlanet DrawSun ShowDate,
CLJ212-3,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Orbit03.sb,,Orbit,2016-06-10,0.3,Nonki Takahashi,496,Init Form CalcPlanetPos Calc3Equ DrawPlanet DrawSun JDToDate ShowDate Controls_AddSlider Controls_MoveSlider Controls_AddPlayButton OnMouseDown Controls_PlayStart Controls_PlayPause Controls_GetPlayStatus Controls_TogglePlayStatus,
CLJ212-4,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Orbit04.sb,,Orbit,2016-06-10,0.4,Nonki Takahashi,552,Init Form CalcPlanetPos Calc3Equ DrawPlanet DrawSun DateToJD JDToDate ShowDate Controls_AddSlider Controls_MoveSlider Controls_UpdateSlider Controls_AddPlayButton OnMouseDown OnMouseMove OnMouseUp OnKeyDown Controls_PlayStart Controls_PlayPause Controls_GetPlayStatus Controls_TogglePlayStatus,
CLJ212-5,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Orbit05.sb,,Orbit,2016-06-13,0.5,Nonki Takahashi,552,Init Form CalcPlanetPos Calc3Equ DrawPlanet DrawSun DateToJD JDToDate ShowDate Controls_AddSlider Controls_MoveSlider Controls_UpdateSlider Controls_AddPlayButton OnMouseDown OnMouseMove OnMouseUp OnKeyDown Controls_PlayStart Controls_PlayPause Controls_GetPlayStatus Controls_TogglePlayStatus,
WVJ580,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Panda01.smallbasic,,Panda,2012-08-24,0.1,Nonki Takahashi,102,,
JZJ954-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\PatternLoginDemo.sb,,Pattern Login Demo,2016-05-17,0.31b,Nonki Takahashi,451,AskPattern CheckMiddle ClearPattern DarkenRings Demo Form Init LoadPattern MouseToPoint OnButtonClicked OnMouseDown OnMouseMove OnMouseUp OnTick RecordSwipe SavePattern SetMsgAndBtn ShowRing Test WaitUntilFirstTap Math_BinToDec Math_DecToBin,
JZJ954-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\PatternLoginDemo031b.sb,,Pattern Login Demo,2016-05-17,0.31b,Nonki Takahashi,453,AskPattern CheckMiddle ClearPattern DarkenRings Demo Form Init LoadPattern MouseToPoint OnButtonClicked OnMouseDown OnMouseMove OnMouseUp OnTick RecordSwipe SavePattern SetMsgAndBtn ShowRing Test WaitUntilFirstTap Math_BinToDec Math_DecToBin,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\PenColor.smallbasic,,TESTING CODE,,,,85,OnButtonClicked SelectPenColor,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Pentagon.smallbasic,,,,,,39,AddTriangle RotateTriangle,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\PeriodicTable01.smallbasic,,Periodic Table,,,Nonki Takahashi,190,OnMouseDown ShowPopup PT_Draw PT_Init,
DJT869-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\PeriodicTable02.smallbasic,,Periodic Table,2015-02-28,0.2,Nonki Takahashi,224,OnMouseDown ShowPopup PT_Draw PT_Init,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Perspective.sb,,3 Points of Perspective Graphic View,2016-05-04,,Nonki Takahashi,82,MapLines DrawLines OnMouseDown,
MRT132,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Photogram.sb,,Photogram,2016-09-18,0.1,Nonki Takahashi,112,Process Init Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\PlatformRunner01a.smallbasic,,Platform Runner,2014-05-21,0.1a,Nonki Takahashi,222,AddObject Closing Game Init OnKeyDown OnTick Opening Ready ScrollObject SB_Workaround,
PCS454,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Polygon.smallbasic,,Regular Polygon,,,,125,CalcArea OnButtonClicked DrawPolygon FillTriangle DrawLine DrawText DrawGrid,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\PrimeInAMinute.smallbasic,,Calculate largest prime number in 1 minute,,,Nonki Takahashi,45,FindNextPrime OnTick,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\PrimeInAMinute02.smallbasic,,Calculate largest prime number in 1 minute,,,Nonki Takahashi,47,FindNextPrime OnTick,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\PrimeInAMinute03.smallbasic,,Calculate largest prime number in 1 minute,,,Nonki Takahashi,47,FindNextPrime OnTick,
CDB297,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\ProgramList01.smallbasic,, + WQ + ,,,,40,ListPgm ReadPgm,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\ProjectileMotion.smallbasic,,Projectile motion,,,Nonki TAKAHASHI ,95,Init MoveBall OnButtonClicked OnTick Throw,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\PRW571.smallbasic,,' ListSubs 12-07-28 WhTurner,,,,81,,
BBL935,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Puzzle.sb,,Puzzle - How many triangles?,2017-06-04,,Nonki Takahashi,187,Intersection Puzzle Triangle UpdateLine,
FLD228,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Pyramid01.sb,,Pyramid,2012-07-09,0.1,Nonki Takahashi,102,AddCube ShowCubes,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Quine.sb,,,,,,4,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\rainbow.smallbasic,,Rainbow,,,Nonki Takahshi,81,HueToColor DrawCircle,
DZC358-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Rainbow02.smallbasic,,Rainbow,2013-02-13,0.2,Nonki Takahashi,102,OnMouseDown OnTick ChangePicture HueToColor,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\RanningMan.sb,,Running Stickman,,0.1,Nonki Takahashi,66,Form AddStickman AddArm,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\readSB.sb,,,,,,22,,
MQF956,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Rocket01.smallbasic,,Challenge of the Month - May 2013 | Community Suggestion 2,,,,90,DrawStars OnTick AddRocket MoveRocket Math_CartesianToPolar,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Roulette01.smallbasic,,Roulette,2013-06-18,0.11a,Nonki Takahashi,88,FillArc CSVtoArray,
LNM164-2,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Roulette02.smallbasic,,Roulette,2013-06-18,0.22b,Nonki Takahashi,67,CheckSilverlight OnButtonClicked OnTick Dummy,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\RWG411-0a.smallbasic,,Text Challenge 2 By Ashkore Dracson,,,,28,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\SBGInterpriter03.smallbasic,,Small Basic Graphics Interpriter,2012-09-01,0.3,Nonki Takahashi,2621,Dump Lex_Init Lex_Label Lex_Name Lex_Num Lex_Space0 Lex_Space1 Lex_Str Lex_Text Lex_Var Parse_Literal Parse_Real Parse_State Parse_Let Parse_Expr Parse_Term Parse_State Parse_Let Parse_Expr Parse_Term Parse_Factor Parse_Val Parse_Literal Parse_Real Parse_Var Parse_Ope Parse_VoidOpe Parse_Clear Parse_DBText Parse_DEll Parse_DIma Parse_DLine Parse_DRect Parse_DRIma Parse_DText Parse_DTri Parse_FEll Parse_FRect Parse_FTri Parse_SPix Parse_Show Parse_SMsg Parse_ValOpe Parse_GRGB Parse_GPix Parse_GCol Parse_Prop Parse_Bg Parse_Bc Parse_Fb Parse_Fi Parse_Fn Parse_Fs Parse_Hi Parse_Le Parse_Pc Parse_Pw Parse_Ti Parse_To Parse_Wi,
MBW599,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\SBInterpreter031.smallbasic,,Small Basic Graphics Interpreter,2012-09-02,0.31,Nonki Takahashi,2391,Dump Lex_Init Lex_Label Lex_Name Lex_Num Lex_Space0 Lex_Space1 Lex_Str Lex_Text Lex_Var Parse_Real Parse_State Parse_Let Parse_Expr Parse_Term Parse_Factor Parse_Val Parse_Literal Parse_Ope Parse_VoidOpe Parse_Clear Parse_DBText Parse_DEll Parse_DIma Parse_DLine Parse_DRect Parse_DRIma Parse_DText Parse_DTri Parse_FEll Parse_FRect Parse_FTri Parse_SPix Parse_Show Parse_SMsg Parse_ValOpe Parse_GRGB Parse_GPix Parse_GCol Parse_Prop Parse_Bg Parse_Bc Parse_Fb Parse_Fi Parse_Fn Parse_Fs Parse_Hi Parse_Le Parse_Pc Parse_Pw Parse_Ti Parse_To Parse_Wi,
VGK484,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Scale01.smallbasic,,Scale,2013-03-19,0.1a,,47,OnMouseDown OnMouseUp OnMouseMove,
VGK484-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Scale02.smallbasic,,Scale,2013-03-23,0.23,Nonki Takahashi,130,CalcMoment OnTick OnMouseDown OnMouseMove OnMouseUp Rotate,
QDX206,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\ScrollText02.smallbasic,,Scroll Text,2014-08-28,0.2b,Nonki Takahashi,172,Stars DrawGrid Init AddLines Profile GetPixel DumpLines ScrollLines,
DZH703-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\SimpleBrowser02.smallbasic,,Simple Browser,2013-03-07,0.2b,Nonki Takahashi,88,OnButtonClicked Parse_HTML Parse_Body,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Snake01.smallbasic,,Snake Game,,0.1a,Nonki Takahashi,143,GameOver CreateMask ShowMask StartSnake OnTick OnKeyDown MoveSnake CreateSnake CreateApple CalcXYFromColRow Init,
ZKG565-2,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Snake02.smallbasic,,Snake Game,2016-07-04,0.3,Nonki Takahashi,243,GameOver CreateMask ShowMask StartSnake OnTick OnKeyDown TurnSnake MoveSnake MoveRabbit CreateSnake CreateRabbit CheckOnSnake EatRabbit CalcXYFromColRow Init,
QMD035,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\SnowFlake01.smallbasic,,Snow Flake,2013-12-10,0.1,Nonki Takahashi,57,GetNextXY DrawParticle,
QMD035-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\SnowFlake02.smallbasic,,Snowflake,2013-12-10,0.2,Nonki Takahashi,57,GetNextXY DrawParticle,
QMD035-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Snowflake03.smallbasic,,Snowflake,2013-12-10,0.3,Nonki Takahashi,56,GetNextXY DrawParticle,
QMD035-2,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Snowflake04.smallbasic,,Snowflake,2013-12-11,0.4,Nonki Takahashi,56,GetNextXY DrawParticle,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\SnowFlake05.sb,,Snowflake,2016-12-20,0.51,Nonki Takahashi,60,GetNextXY DrawParticle,
VRZ081,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\SolitairMarblesGame.sb,,Solitair Marbles Art,2016-03-14,0.1,Nonki Takahashi,100,GetColor MediumColor Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Soroban.smallbasic,,Soroban - Japanese Abacus,,,,177,DoBead DoMouse DrawDigits DrawSoroban map OnMouse,
LVT578,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Sort01.smallbasic,,Sort,2013-02-04,0.1,Nonki Takahashi,135,Compare GetArrayFromTextBox GetArrayToBuf GetSortedArrayToBuf InitArray OnButtonClicked Sort,
DFB661,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\sort5.smallbasic,,Sort Numbers,,0.1,Nonki Takahashi,70,SeparateCSV SortAscending SortDescending WriteValuesWithLink,
BDX376,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Spiral.sb,,Spiral,2016-06-11,0.12,Nonki Takahashi,37,,
VTC414,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\SpiralAnimation.sb,,Spiral Animation,2016-06-11,,Nonki Takahashi,38,,
WWC474,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\StarInCircle.smallbasic,,Star in Circle published as,,,,18,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\StarWars-nonkit-PC.smallbasic,,Scroll Text,,,,99,Init AddLines Profile GetPixel DumpLines ScrollLines,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\StarWars.smallbasic,,Scroll Text,2014-08-28,0.1a,Nonki Takahashi,105,Init AddLines Profile GetPixel DumpLines ScrollLines,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Step12-2.smallbasic,,How many different ways to go down 12 steps with 1 or 2 steps?,,,Nonki Takahshi,123,MoveBall DecToBin BinToSteps,
ZZL953,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Step12.smallbasic,,How many different ways to go down 12 steps?,,,Nonki Takahshi,111,MoveBall DecToBin BinToSteps,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\stopwatchBSC206.sb,,' stopwatch 2013-08-26 WhTurner '',,,,229,KeyD Click Shand graphinit,
FCR130,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\SumsCalc01.smallbasic,,Sums Calculator,2014-01-14,0.1,Nonki Takahashi,765,ConvertTextToLines Calc Exec_Expr Exec_Factor Exec_Func Exec_Literal Exec_Real Exec_Term Lex_Init Lex_Label Lex_Name Lex_Num Lex_Space0 Lex_Space1 Lex_Str Lex_Text Lex_Var Parse_Expr Parse_Term Parse_Factor Parse_Func Parse_Val Parse_Literal Parse_Real,
KNP762,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\SunRise.smallbasic,,Sun Rise Animation,,0.1,Nonki Takahashi,116,DrawStars AddSun SunRise OnTick HourToTime UpdateSky GetGradientColor,
JFM059,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Tempo.smallbasic,,Measure Temp0 of Sound.PlayMusic(),,,,39,C4 CCCC,
LZN025-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Test_debug.sb,,TRON - light cycle game,2013-06-11,0.2,,641,Player1_Move Player2_Move OnKeyDown OnTick ClearTRON DrawArc DrawCircle DrawCycles GameEnd DrawGrid DrawLine DrawRect DrawText DrawTRON Init Restart Dummy,
KFL681,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Tetromino.smallbasic,,Draw All Tetromino,2014-12-17,,Nonki Takahashi,407,AddRect CalcBorder CopyN_1ToN ConvertN CornerN DrawGrid DrawN DumpN DumpN_1 Init Pause OnKeyDown RemoveAllRect RemoveRect RotateN90 ShowN ShrinkN,
DWM417,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TextConverter01.sb,,Text Converter,2016-09-10,0.1,Nonki Takahashi,116,Init DoSomething Reverse RedVowels ColorWords GetWord ReplaceNum,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Three.smallbasic,,3,,,,16,,
NKC523,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Thunder01.smallbasic,,Thunder,2012-11-28,0.1,Nonki Takahashi,317,Shapes_Init Shapes_Add Shapes_CalcWidthAndHeight Shapes_CalcRotatePos Shapes_Move Shapes_Remove Shapes_Rotate Math_CartesianToPolar,
MCG292,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TickerTapeAnime01.smallbasic,,Ticker Tape Animation,2014-06-13,0.1,Nonki Takahashi,52,AddTickerTape OnTick,
CJV067,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\ToArabic.smallbasic,,,,,,65,ToArabic ConvertRomanOrder,
QXW739,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TODO.smallbasic,,,,,,58,AddTODO DeleteTODO MakeID ShowHelp,
BNJ520,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\ToRoman.smallbasic,,,,,,44,ToRoman ConvertDigit,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TraficSimulator.smallbasic,,,,,,152,AddCar AddSignal CheckCorner Randomize,
LZN025,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TRON01.smallbasic,,TRON - light cycle game,,,,265,MoveAI MoveHuman OnKeyDown OnTick ClearTRON DrawArc DrawCircle DrawCycles DrawGrid DrawLine DrawRect DrawTRON Init Restart Dummy,
LZN025-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TRON02.sb,,TRON - light cycle game,2013-06-11,0.2,,323,Player1_Move Player2_Move OnKeyDown OnTick ClearTRON DrawArc DrawCircle DrawCycles GameEnd DrawGrid DrawLine DrawRect DrawText DrawTRON Init Restart Dummy,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TRON02.smallbasic,,TRON 0.2,2013-06-11,,,647,Player1_Move Player2_Move OnKeyDown OnTick ClearTRON DrawArc DrawCircle DrawCycles GameEnd DrawGrid DrawLine DrawRect DrawText DrawTRON Init Restart Dummy,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TRON02_debug.sb,,TRON 0.2,2013-06-11,,,647,Player1_Move Player2_Move OnKeyDown OnTick ClearTRON DrawArc DrawCircle DrawCycles GameEnd DrawGrid DrawLine DrawRect DrawText DrawTRON Init Restart Dummy,
LVG886,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TruthTable01.smallbasic,,Truth Table,2013-09-27,0.1,Nonki Takahashi,94,Init DrawNot DrawBinaryOp BinaryOp,
QZN342-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TurtleDodger02a.smallbasic,,Turtle Dodger,2014-04-02,0.2a,Nonki Takahashi,98,OnTick ScrollObject AddObject OnKeyDown,
ZQN342-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TurtleDodger03a.smallbasic,,Turtle Dodger,2014-04-02,0.3a,Nonki Takahashi,120,OnTick ScrollObject AddObject OnKeyDown,
QZN342-2,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TurtleDodger04a.smallbasic,,Turtle Dodger,2014-04-17,0.4a,Nonki Takahashi,156,Opening Ready Game Init OnTick ScrollObject AddObject OnKeyDown,
QZN342-3,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TurtleDodger05b.smallbasic,,Turtle Dodger,2014-04-17,0.5b,Nonki Takahashi,185,Closing Opening Ready Game Init OnTick ScrollObject AddObject OnKeyDown,
RBN002-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TurtleFlash03.smallbasic,,Turtle Flash,,0.3,Nonki Takahashi,74,DrawLine,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Type01.smallbasic,,Type - type to the GraphicsWindow,2012-09-02,0.1,Nonki Takahashi,156,OnTick OnKeyDown OnKeyUp ReadKey DumpKeys InitKeys,
NCC705,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TypeSpeed01.smallbasic,,Type Speed - Measure your type speed,2012-08-13,0.1,Nonki Takahashi,73,Word_Count Word_GetDelim Word_GetWord,
NCC705-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TypeSpeed02.smallbasic,,Type Speed - Measure type speed,2012-08-13,0.2,Nonki Takahashi,39,,
NCC705-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\TypeSpeed03.smallbasic,,Type Speed - Measure your type speed,2012-08-13,0.3,Nonki Takahashi,185,OnTick OnKeyDown OnKeyUp ReadKey DumpKeys InitKeys,
TFN794,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\walkman.smallbasic,,walkman,,0.1a,,44,,
TFN794-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Walkman02.smallbasic,,Walkman,2013-07-07,0.2a,Nonki Takahashi,88,SB_RotateWorkaround SB_Workaround,
TFN794-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Walkman03.smallbasic,,Walkman,2013-07-11,0.3b,Nonki Takahashi,152,Man_Add Man_Move Man_WalkOneCycle SB_RotateWorkaround SB_Workaround,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\WeighScale01.smallbasic,,Weigh Scale,2012-07-14,0.1,Nonki Takahashi,292,ShowAnswer LoadApple LoadOrange RedrawApplesAndOranges UnloadOranges UnloadOrange DrawScale DrawArm DrawLimit,
TCZ689,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Welcome.smallbasic,,Colorful Welcome,,,,28,OnButtonClicked,
DWM520,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\WriteFormat01.smallbasic,,Write with Format,,0.1,,123,WriteFormat CheckParam DumpParam,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\xxx.sb,,''' prettyprint 2012-07-22,,,,56,,
WWD539,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Yoyo.smallbasic,,Yo-yo Simulation,,,Nonki Takahashi,98,OnKeyDown OnTick MoveYoyo,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Foul Sorcery v0.2\Foul Sorcery.sb,,,,,,644,time DrawMenu NextLevel GenerateStack Import InitStage DisplayMap DisplayTiles DisplayInactive DisplayActive PrintMap UnloadMap GenerateMap Move MouseMove SetiToZero Collision Pathing moveSprites,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\FS 1.0\Foul Sorcery 1.0.sb,,,,,,852,death drawMenu nextLevel generateStack import initStage DisplayMap displayTiles displayInactive displayActive unloadMap generateMap setiToZero collision pathing moveSprites,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\FS 1.0\Foul Sorcey 1.01.smallbasic,,,,,,793,death drawMenu nextLevel generateStack import initStage DisplayMap displayTiles displayInactive displayActive unloadMap generateMap setiToZero collision pathing moveSprites Profiler_Start Profiler_OnTick Profiler_Dump,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\FS 1.0\Foul Sorcey 1.02.smallbasic,,,,,,834,death drawMenu nextLevel generateStack import initStage DisplayMap displayTiles displayInactive displayActive unloadMap generateMap setiToZero collision pathing moveSprites Profiler_Init Profiler_OnTick Profiler_Begin Profiler_End Profiler_Dump,
XMZ657-2,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\GobanSVG\GobanSVG.sb,,Goban SVG Genarator,2015-11-25,0.13,Nonki Takahashi,647,DrawBoardShadow DrawGrid DrawMask GetSymbol DrawPrisoners DrawShadowRect DrawStar DrawStone DrawStoneShadow DrawStones DrawSymbol DrawSymbols FillRect Form InitBoard_4Ro InitBoard_6Vectors InitBoard_FirstWin InitBoard_3Ro InitBoard,
KFJ748-2,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\GobanSVG\WoodGrain03.sb,,Wood Grain,2015-11-15,0.3,Nonki Takahashi,65,GetColor MediumColor Math_Hex2Dec,
KFJ748-2,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\GobanSVG\WoodGrain04.sb,,Wood Grain,2015-11-15,0.4,Nonki Takahashi,67,GetColor MediumColor Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Gorilla\gorilla1_0.smallbasic,,Small Basic Gorilla,,1.0,,1221,GetPath GameInit RoundInit BuildingInit DrawCity SetWind DrawBanana EraseBanana DoMiniExplosion DoExplosion DrawGorillas DoSun Intro FadeIn UpdateGravityNumRounds DrawSoundButtons Options UpdateAngleVelocity GetNumber GetInputT GetInput MoveShot DoShot PlayGame UpdateScore VictoryDance DoGameOver ToggleSound ConfirmQuit Rect OnMouseDown WaitForKeypress DoKeyDown,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Gorilla\gorilla1_1.sb,,Small Basic Gorilla,,1.0,,1224,GetPath GameInit RoundInit BuildingInit DrawCity SetWind DrawBanana EraseBanana DoMiniExplosion DoExplosion DrawGorillas DoSun Intro FadeIn UpdateGravityNumRounds DrawSoundButtons Options UpdateAngleVelocity GetNumber GetInputT GetInput MoveShot DoShot PlayGame UpdateScore VictoryDance DoGameOver ToggleSound ConfirmQuit Rect OnMouseDown WaitForKeypress DoKeyDown,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Gorilla\gorilla2_0.smallbasic,,Small Basic Gorillas v2.0 for Microsoft Small Basic,,v0.5,,1251,GameInit Intro Options PlayGame GameOverSub BuildingInit PlaceGorillas AimBanana ThrowBanana MoveBanana DrawCity SetWind DrawSun DrawGorillas DrawBanana EraseBanana DoMiniExplosion DoExplosion VictoryDance UpdateScore UpdateAngleVelocity UpdateGravity DrawSoundButtons DrawNumberRounds DrawNames FadeToBlack FadeToBlue ConfirmQuit GetNumber WaitForKeypress MouseDownEvent MouseUpEvent KeyDownEvent,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Group Challenge\PrototypeMarionette.smallbasic,,Marionette Prototype,,,,602,Initialise GetPuppet OnMouseDown OnMouseUp OnKeyDown OnKeyUp OnButttonClicked Movement Rotation KeyChange ButtonChange Reset ShowStrings Update Draw,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Group Challenge\TurtleMarionette.smallbasic,,Marionette Prototype / Turtle,,VTD423-0,,552,Initialise GetPuppet OnMouseDown OnMouseUp OnKeyDown OnKeyUp OnButttonClicked Movement Rotation KeyChange ButtonChange Reset ShowStrings Update Draw,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\International\FlagofBrazil.sb,,Flag of Brazil,,,Nonki Takahashi,223,OnMouseDown Init DrawStars DrawStar DrawRotateTriangle DrawRoundText,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\International\LearnJapanese.sb,,'' Learn Japanese,,0.1,Nonki Takahashi,107,OnTextTyped OnButtonClicked Form,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Kenneth\Check2016-05-28.sb,,,,,,19,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Kenneth\Clock2016-05-06.sb,,,,,,49,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Kenneth\Cog2016-05-13.sb,,,,,,55,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Kenneth\Cogb2016-05-05.sb,,,,,,34,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Kenneth\Dragon2016-05-15.sb,,,,,,31,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Kenneth\Heart0_2016-05-28.sb,,,,,,46,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Kenneth\Heart1_2016-05-28.sb,,,,,,51,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Kenneth\Heart2_2016-05-29.sb,,,,,,34,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Kenneth\Heart3_2016-05-31.sb,,,,,,33,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Kenneth\Mandelbrot2016-05-16.sb,,,,,,31,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Kenneth\Sponge2016-06-01.sb,,stacks cubes,,,,114,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Kenneth\SuperCube2016-05-31.sb,,,,,,49,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Knight-Trove\Program.sb,,Knight Trove,,,,435,SetupGame ShowInput StartGame CreateMap AddObject GetRandomPosition CreateCastles CreateRocks CreateTrees MovePlayers CreatePlayers UpdatePlayers CreateItem EndGame,
PBH516-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\MathTest by NaochanON\MathTest.sb,,Challenge of the Month - May 2015 Math Challenge by NaochanON,,,,103,onbutton CheckAnswer CalcExample ShowImage initLevel,
GLP175-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Quiz by Filipe\PerguntasERespostas-Verção1-0.sb,,Questionário Amostra,,,,165,mostrarnome MenuSuperior MenuDeOpecoes2 NoBotaoClicado4 Dummy VoltarParaOMenu PegarPreguntaAleatoriaDeArquivo noBotaoClicado,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\qwx\HDB334.sb,,,,,,390,kdd kdu mwwl mww mdd muu drwgrd addp showcp OnButtonClicked Init AskForTextLine,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\qwx\QNN007.sb,,ssln=1,,,,343,rmmn kdd kdu Form DrawQuadraticBezier GetPoint mmww OnMouseDown mpan ShowInstruction ShowPoint,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Samples\Flickr.sb,,,,,,2,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Samples\polkadots.sb,,,,,,9,OnMouseDown,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Samples\SimpleEvent.sb,,,,,,6,OnMouseClick,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\SB12\Dictioary.smallbasic,,,,,,88,InitDef ShowDef OnButtonClicked,
JLR312,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\SB12\GetPixelTestProgram.sb,,GetPixel(-1, -1),,,,5,,
JSH337,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\SB12\TextWindowShowTest.smallbasic,,,,,,7,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\ElapsedMilliseconds.smallbasic,,,,,,21,,
PWW374-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\FlickrSample02.sb,,Flickr Sample,2016-04-03,0.3,Nonki Takahashi,51,OnMouseDown,
CMN910,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Hilbert.sb,,'' Hilbert Curve,2016-04-30,0.11,Nonki Takahashi,119,A B C D,
JRV115,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Illumination.sb,,Illumination Sample,2015-12-07,,Nonki Takahashi,69,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\LangSample.sb,,,,,,23,,
BGF911-2,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\MultiLanguage.sb,,Multi-Language Sample,,,Nonki Takahashi,411,UpdateProgram UpdateFrame FrameRate GetMousePosition Initialise OnMouseMove OnMouseDown Menu_DataTable Menu_DrawMenuBar Menu_Initialise Menu_UpdateOnMouseMove Menu_UpdateOnMouseDown Menu_UpdateFrame,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Polygon.sb,,. The MIT License.,,,,123,OnKeyDown DrawRegularPolygon RemoveLastPolygon,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Sigmoid.sb,,Sigmoid,2014-11-12,,Nonki Takahashi,84,Sigmoid DrawGrid DrawX DrawY DrawLine CoordinateInit ToGraphicsCoordinate,
VTQ526,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\SoundTest.smallbasic,,,,,,12,,
LFD194,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Stack.smallbasic,,Array and Stack,,,Nonki Takahashi,79,AddColors InitStack PushColors PopColors,
FTQ210,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Stripes.sb,,Stripes,,0.1,Nonki Takahashi,44,,
KFJ748-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\WoodGrain02.sb,,Wood Grain,2015-11-14,0.2,Nonki Takahashi,65,GetColor MediumColor Math_Hex2Dec,
XPB597,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\anime.smallbasic,,,,,,13,OnTick,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\CarlosVBSample.sb,,,,,,16,mostrarMensaje,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\dragon.sb,,Draw dragons with the Turtle by Kenneth Lee Taylor,,,,67,Form Draw,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\midpoint.smallbasic,,,,,,89,Init Convert DrawGrid,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\national.smallbasic,,,,,,109,RUNDING numero,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\ROUNDING.sb,,,,,,38,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Ruler01.smallbasic,,Graphics Ruler,2012-06-29,0.1,Nonki Takahashi,155,Ruler_Add Ruler_Loop Ruler_OnMouseDown Ruler_OnMouseUp Ruler_OnMouseMove Ruler_DoNothing Ruler_ShowSmallScale Ruler_HideSmallScale Ruler_Move,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Ruler011.smallbasic,,Graphics Ruler,2013-12-13,0.11,Nonki Takahashi,156,Ruler_Add Ruler_Loop Ruler_OnMouseDown Ruler_OnMouseUp Ruler_OnMouseMove Ruler_DoNothing Ruler_ShowSmallScale Ruler_HideSmallScale Ruler_Move,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Ruler02.smallbasic,,Ruler,2012-06-29,0.2,Nonki Takahashi,126,Ruler_Add Ruler_Loop Ruler_OnMouseDown Ruler_OnMouseUp Ruler_OnMouseMove Ruler_DoNothing Ruler_Move Ruler_Rotate,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\texte.smallbasic,,Les logiciels SVT de Fabienne Collombar,,,,59,onClick,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Wecker.sb,,Wecker -j.rose-,,,,237,getchoice a alarm err,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Car.sb,,These are calls to sub routines,,,,549,Initialize DrawTrack DrawHorizontalWall DrawVerticalWall DrawForwardAngle DrawBackAngle HorizontalWallPosition VerticalWallPosition AngleWallPosition CollisionHorizontal CollisionVertical CollisionAngle CollisionCheck ResetCollision RunGame OnKeyDown OnKeyUp DriveCar ChangeGear,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Cars2.sb,,These are calls to sub routines,,,,565,Initialize DrawTrack DrawHorizontalWall DrawVerticalWall DrawForwardAngle DrawBackAngle HorizontalWallPosition VerticalWallPosition AngleWallPosition CollisionHorizontal CollisionVertical CollisionAngle CollisionCheck ResetCollision RunGame OnKeyDown OnKeyUp DriveCar ChangeGear,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\checknum.smallbasic,,,,,,36,Result CheckInput,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\CodingLikeCrazy.smallbasic,,Maths Challenge 2 of Challenge of the Month - May 2012,,,,44,OnButtonClicked NewPage,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Compressor.sb,,JPX501 - and little modified.,,,,252,reduction10 dereduction dectonin10 nintodec10 dectonin nintodec adition substration,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Compressor109.sb,,decimal 10 <--> 9,,,,56,dectonin10 nintodec10,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\csHowToGetThisWork.sb,,,,,,63,GetWeightCost GetDeliveryTypeCost GetTotalCost PrintCost,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\CSVtoArray.sb,,,,,,26,CSVtoArray,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\family.sb,,,,,,89,check1 check2 check3 check4 check5 check6,
BRQ733,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Fifty.smallbasic,,Fifty - finds programs that have less equal 50 lines,,,Nonki Takahashi,38,File_CountLines,
KTK632,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\FlagCanada.sb,,Flag of Canada,,,,10,,
KMB872,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\FlickrSample.smallbasic,,Flickr Sample Program,,,,43,DrawImage,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\football.sb,,,,,,45,action,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\football2.sb,,nonkit - formatted with "Format Program",,,,657,action DoSubmit1 DoSubmit2 DoCointoss DoKickoff,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\ForumThreads.sb,,get all thread titles in the Small Basic Forum and save them . made by NaochanON 2016/04/28,,,,156,OnListBoxItemChanged Onclicked get_Allconts Show_list ListUp each_threads Search_Threads GUI,
RMP814,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\FullHouse03.smallbasic,,Full House Simulator,2014-01-06,0.3,Nonki Takahashi,225,OnButtonClicked DrawCards CheckCards RecombineCards ShuffleCards Cards_Init Cards_Close Cards_Open Cards_Move Cards_Swap Math_Hex2Dec Controls_AddTextBox,
RMP814-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\FullHouse04.smallbasic,,Full House Simulator,2014-01-09,0.4,Nonki Takahashi,241,OnButtonClicked DrawCards CheckCards RecombineCards ShuffleCards Cards_Init Cards_Close Cards_Open Cards_Move Cards_Swap Math_Hex2Dec Controls_AddTextBox,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\FXK612-1.smallbasic,,,,,,82,get_send_info String_decode MouseMove DumpData GetData,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\graf.sb,,Easy Graf making 2011/12/21 by NaoChanON,,,,89,init ,
NJQ738-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\GWZoom.sb,,GraphicsWindow Zoom Sample,,0.2,,34,OnTextTyped Zoom,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\iBuild01.sb,,,,,,57,keydown keyup,
FXG725-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\IDNo_FXG725-0.sb,,This program can list up program IDNo in the Small Basic Forum threads. by NaochanON 2016/05/06 ,,,,146,OnListBoxItemChanged Onclicked show_list Search_Threads Get_IDNo Get_IDNos_IntheThread init,
MNF386,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\ImageViewer01.smallbasic,,Image Viewer,2012-10-16,0.1,Nonki Takahashi,26,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Japan.smallbasic,,,,,,18,,
FVB492,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Key.smallbasic,,Key input sample,,,,7,OnKeyDown,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\keytest.smallbasic,,,,,,27,Main TBInput,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\lines.smallbasic,,,,,,36,OnButtonClicked ConvertTextToLines ShowLines,
QGK077-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\LineWithChar.sb,,Line with Character in TextWindow,2017-03-13,0.2,Nonki Takahashi,70,TW_DrawLineWithChar,
QGK077,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\LineWithChar.smallbasic,,Line with Character in TextWindow,2015-01-02,,Nonki Takahashi,64,DrawLineWithChar,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Macron32-Shell BETA.smallbasic,,Macron 32,,,,244,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Macron32-Shell.smallbasic,,Macron 32,,,,217,,
DFZ772,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Monopoly.smallbasic,,Published as,,,,139,InitBoard DrawBoard DrawSquare Play MoveToNext,
TLP645,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Monoris.smallbasic,,Monoris,,0.1a,Nonki Takahashi,162,DumpBoard DropPiece DumpDropped UpdatePiece CollisionDetect MovePiece InitPiece ClearBoard DrawBoard,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\MontyHall.smallbasic,,Monty Hall,,,,87,Initial Robin Nonki Terminal,
MDQ753,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Outline.smallbasic,,Outline Test,,,Nonki Takahshi,73,DrawGrid,
MDQ753-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Outline00.smallbasic,,Outline Test,2014-11-02,0.0,Nonki Takahshi,86,DrawGrid,
MDQ753-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Outline01.smallbasic,,Outline Test,2014-11-02,0.1,Nonki Takahshi,87,DrawGrid,
VMW884,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Permutation.sb,,Permutation without loop,,,,83,One Two Three Four All Print,
DXC878,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\PermutationDup.sb,,Permutation (with duplications or not),,,,37,Node Print,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\predictor.smallbasic,,,,,,16,,
RZJ560,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\ProfilerSample.smallbasic,,Profiler Sample,2015-06-30,,Nonki Takahashi,66,OuterLoop InnerLoop Profiler_Init Profiler_OnTick Profiler_Begin Profiler_End Profiler_Dump,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Read.smallbasic,,,,,,41,OnTick Read,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\rtf.sb,,,,,,51,OnButtonClicked NotUsed,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\sample.sb,,,,,,16,OnButtonClicked,
ZFC972,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Score.smallbasic,,,,,,78,OnTextTyped Calc Sort SetGrade Form,
LLT850-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Sine.sb,,Sine Curves,,0.2,,74,DrawGrid DrawSineCurve MappingToDevice MappingToLogical,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\SlideShow.sb,,,,,,103,AddCircles RemoveCircles OnTick,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Smoother.sb,,,,,,40,mouseMove isCursor,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\SmootherJJ.sb,,,,,,43,OnMouseMove,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\somelines.smallbasic,,,,,,35,ConvertTextToLines ShowLines,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\SpaceInvader02.smallbasic,,Information for screen,,,,31,EraseObj DrawObj,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\SpaceInvador.smallbasic,,Information for screen,,,,27,EraseObj DrawObj,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\speedometer.sb,,Start the Program,,,,104,Keydown Keyup Speedometer,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\SquareRoot.smallbasic,,Square Root (Bisection Method ),,,Nonki Takahashi,36,Math_Bisection Math_Function,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\SubManager01.smallbasic,,Subroutine Manager,2012-12-30,0.1,Nonki Takahashi,25,InitFolders OnTextTyped,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\SubManager02.smallbasic,,Subroutine Manager,2015-06-30,0.2a,Nonki Takahashi,176,Break GetSubName GetFolders GetFiles Form InitFolders OnTextTyped OnButtonClicked SB_AppendSub,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Tetromino.smallbasic,,Has bug... can't find T,,,,124,NextStep MoveTurtle ReturnTurtle StepTurtle WaitKey OnKeyDown,
HRF405,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Text.smallbasic,,Text input sample,,,,7,OnTextInput,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\TextAdventure.smallbasic,,Sample Text Adventure,,,,31,InitStory,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\timecalc.sb,,,,,,138,OnButtonClicked OnTextTyped Add Subtract Delete GetTime,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\triangle.sb,,Area of a triangle,,,,44,DrawGrid DrawTriangle,
TLP645-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Troris.smallbasic,,Troris,2015-06-29,0.3a,Nonki Takahashi,196,GameOver DumpBoard DropPiece DumpDropped UpdatePiece CollisionDetect RemovePiece AddPiece MovePiece InitPiece ClearBoard DrawBoard,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\WallPaperChanger.smallbasic,,Wall Paper Changer,,,Nonki Takahashi,38,OnButtonClicked ShowNextPicture,
NWP151-2,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Block Builder 0.1.0\PlatformGame.sb,,Platform Game Sample,,0.4b,Nonki Takahashi,360,FallCheck GoalCheck AddCharacter AddWall CollisionCheck DumpObstacle Gravity Jump LoadScene MoveObjects ObstacleCheck OnKeyDown ShowScene,
BCG761,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Block Builder 0.1.0\SceneViewer.sb,,Small Scene Viewer,,0.1,Nonki Takahashi,43,ShowScene,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Block Builder 0.1.0\Small Block Builder 0.1.0.sb,,Small Block Builder,,v.0.1.0,,345,load howto mainmenu mainclick main genscen click bchange move gobuild,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Block Builder 0.1.1\Small Block Builder.sb,,Small Block Builder,,v.0.1.1,,436,load howto mainmenu nothing mainclick main genscen click bchange move gobuild checkdrop drop,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Step Up to Level Ten\Step Up to Level Ten.sb,,<<Step-Up>> Level ,,,,174,UpdateGame Initialise OnKeyDown OnButtonClick InitialiseBallPosition ConfigureLevel FrameRate,
QSD958,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\25471Workaround.smallbasic,,,,,,34,CheckInSilverlight,
TKW252-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\Aquariium03.smallbasic,,Aquarium,2014-03-14,0.2,Nonki Takahashi,141,AddFish MoveFish AddBubbles MoveBubbles AddBall AddWater StartTimer OnTick,
BLS788,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\Desktop.sb,,Desktop Sample Program,,0.1,Nonki Takahashi,63,NextPhoto Form OnButtonClicked,
ZRS542,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\Dictionary.smallbasic,,Dictionary,,,,21,OnButtonCLicked,
ZNR767,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\FontsSample01.smallbasic,,Fonts Sample,2014-01-03,0.1,Nonki Takahashi,316,OnButtonClicked Ruler_Add Main_Loop OnMouseDown RedrawText Ruler_OnKeyDown Ruler_OnMouseDown Ruler_OnMouseUp Ruler_OnMouseMove Ruler_DoNothing Ruler_Move Ruler_Rotate Controls_AddCheckBox Controls_OnMouseDown Controls_IsChecked Controls_AddTextBox SB_Workaround,
ZNR767-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\FontsSample011.smallbasic,,Fonts Sample,2014-01-04,0.11,Nonki Takahashi,319,OnButtonClicked Ruler_Add Main_Loop OnMouseDown RedrawText Ruler_OnKeyDown Ruler_OnMouseDown Ruler_OnMouseUp Ruler_OnMouseMove Ruler_DoNothing Ruler_Move Ruler_Rotate Controls_AddCheckBox Controls_OnMouseDown Controls_IsChecked Controls_AddTextBox SB_Workaround,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\GetPixel.smallbasic,,,,,,1,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\Graduate.smallbasic,,TechNet Wiki で昇格が化けてしまう件のための調査プログラム,,,,13,DumpCode,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\graphic_car_race.sb,,subroutine draw road,,,,216,directionchange roaddraw roadmovement drawcar movecar drawsmash nextlevel level,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\GrossTurtle.smallbasic,,,,,,153,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\ImageViewer.sb,,Image Viewer,,0.1,Nonki Takahashi,36,Form OnTextTyped,
GRM149,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\KeyInputTest.smallbasic,,Key Input Test,2015-02-16,,Nonki Takahashi,42,OnButtonClicked OnTextTyped OnTextInput OnKeyUp OnKeyDown,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\KnownIssue24270.smallbasic,,Known Issue: 24270 - Shape Image is Not Zoomed from Center in Remote,,,Nonki Takahashi,189,DrawRectangle DrawTurtle WaitStatusChange DrawGrid InitWorkaround Controls_AddCheckBox OnMouseDown Controls_IsChecked SB_Workaround,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\KnownIssue24270_03.smallbasic,,Known Issue: 24270 - Shape Image is Not Zoomed from Center in Remote,,,Nonki Takahashi,188,DrawRectangle DrawTurtle WaitStatusChange DrawGrid InitWorkaround Controls_AddCheckBox OnMouseDown Controls_IsChecked SB_Workaround,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\KnownIssue24270_04.smallbasic,,Known Issue: 24270 - Shape Image is Not Zoomed from Center in Remote,,,Nonki Takahashi,195,DrawRectangle DrawTurtle WaitStatusChange DrawGrid InitWorkaround Controls_AddCheckBox OnMouseDown Controls_IsChecked SB_Workaround,
ZXP122,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\KnownIssue24406.smallbasic,,Small Basic Known Issue: 24406 - Shapes.GetOpacity() Causes Cast Error,,,,25,,
RWR532,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\MeasureSoundDuration.smallbasic,,,,,,92,,
TCX734,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\PINGenerator01.smallbasic,,PIN Generator,2013-10-16,0.1b,Nonki Takahashi,123,OnTextTyped OnMouseDown OnButtonClicked IsChecked Init Form DrawGrid AddCheckBox,
MCP222,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\PlayMML.smallbasic,,Play MML,,,,13,OnButtonClicked,
GSX344,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\ReproMouseEventIssue.sb,,This is a program to reproduce following known issue of Small Basic,,v1.0.,,25,OnMouseMove,
KSL776,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\RotateLine.smallbasic,,Rotate Line,,0.1,Nonki Takahashi,137,CalcCenter DrawGrid GetPoint OnMouseDown ShowPoint,
KSL776-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\RotateLine03.smallbasic,,Rotate Line,,0.3,Nonki Takahashi,150,CalcCenter DrawGrid GetPoint OnMouseDown ShowPoint,
CNM748,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\RotateTriangle.smallbasic,,Rotate Triangle,,0.1,Nonki Takahashi,137,CalcCenter DrawGrid GetVertex OnMouseDown ShowVertex,
CNM748-2,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\RotateTriangle04.smallbasic,,Rotate Triangle,,0.4,Nonki Takahashi,151,CalcCenter DrawGrid GetVertex OnMouseDown ShowVertex,
CNM748-3,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\RotateTriangle05.smallbasic,,Rotate Triangle,,0.5,Nonki Takahashi,150,CalcCenter DrawGrid GetVertex OnMouseDown ShowVertex,
PPJ287-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\SoundTest01.smallbasic,,Preset Sound Test,,0.11,,40,OnButtonClicked,
PPJ287-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\SoundTest02.smallbasic,,Preset Sound Test,,0.2,,52,OnButtonClicked PlaySound,
KPS036-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\TextDump02.smallbasic,,Text Dump - Hexadecimal Dump for Unicode Text,2014-03-21,0.21,Nonki Takahashi,136,OnButtonClicked Dump WriteLine WriteHeader NextByte AddLeadingZero Math_Dec2Hex,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\Triangle.smallbasic,,How to Draw Triangle,,,,52,DrawPoints DrawGrid,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\Trigonometric.smallbasic,,Arc without Trigonometric Functions,,,,77,DrawArcwoTrigo DrawArcwTrigo DrawGrid,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\TurtleShape.smallbasic,,,,,,114,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\TurtleShape2.smallbasic,,,,,,116,,
RQS498,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\TurtleTest.smallbasic,,,,,,40,OnKeyDown,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\Variable.smallbasic,,A sample to use local variable in Small Basic,,,,24,DumpArray,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\VectorGraphics.smallbasic,,Vector Graphics Converter,2015-01-30,0.1,Nonki Takahashi,203,Shapes_Add Shapes_AddEllipse Shapes_AddHexagon Shapes_NormalizeTriangle Shapes_RotateHexagon Shapes_Init,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\ZoomError.smallbasic,,,,,,6,,
QTC048-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\ZoomSample.smallbasic,,Zoom Sample,,,,24,DrawAndZoom,
MGW973-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TestIcon\teste.sb,,Small Quest (Pilot),2015-05-12,0.3,Filipe Cardoso Martins and Nonki Takahashi,115,OnMouseMove InitLang,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Triple Six! 0.1.1\Triple Six!.sb,,Triple Six,,v.0.1.1,,287,load KeyDown over main start startgame change playerround computerround comchange playerclick compclick result roll rolling,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TurtleGraphics\NHX824-0.smallbasic,,,,,,1059,muu cang mww mdd findvar rmm hshow Main sbscan nset drwgrd xplain OnButtonClicked DoLine dorepl fWriteLn xpline Init Opening Math_ATan2,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TurtleGraphics\XKQ873.smallbasic,,,,,,1203,domsg muu cang mww mdd findvar rmm hshow Main sbscan nset drwgrd xplain OnButtonClicked DoLine dorepl fWriteLn xpline Init Helpp,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\カリキュラム\ball42.smallbasic,,. All rights reserved.,,,,109,Onstart OnClicked ShowScore,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Copy\Quine.sb,,,,,,4,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Copy\Quine01.smallbasic,,,,,,30,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\GroupPaint\DigitalCanvas0.sb,,WINDOW,,,,5108,mousedown mousemove mouseup keydown,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\GroupPaint\DigitalCanvas01.sb,,WINDOW,,,,2554,mousedown mousemove mouseup keydown,
ZSH672,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\GroupPaint\ExtensiblePaint01.smallbasic,,Extensible Paint - Group Challenge July 2014,,,,100,Plug_Ins OnKeyDown OnMouseDown OnMouseMove Eraser,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\GroupPaint\StripEvenNullLines.smallbasic,,Strip Even Null Lines,,,,46,StripEvenNullLines FindNewLine FileAppend,
PNR896-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\MoonLander\moonlander.smallbasic,,Challenge of the Month - October 2014 'moon lander' by NaochanON,,,,116,Clashed landing onkeydown onkeyup init,
PNR896-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\MoonLander\NaochanON.sb,,Challenge of the Month - October 2014 'moon lander' by NaochanON,,,,116,Clashed landing onkeydown onkeyup init,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Robot\Robot01.smallbasic,,Parts of a Robot - .,,,,29,ShowPart,
GKM721-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Challenge of the Month\Robot\Robot02.smallbasic,,Robot Controller,2014-05-27,0.2,Nonki Takahashi,92,BuildParts LoadParts LoadPartAndUpdatePos LoadPart,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\tempo\C4.smallbasic,,,,,,38,C4 CCCC,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\tempo\Metronome01.smallbasic,,Metronome for Sound.PlayMusic(),,,Nonki Takahashi,84,OnTextTyped OnTick Controls_AddLamp Controls_LampOn Controls_LampOff Controls_LampToggle,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\tempo\TimerAccuracy.smallbasic,,Measure accuracy for Timer,,,Nonki Takahashi,32,OnTick,
QHH936,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Timer\Bats.smallbasic,,Bats,,,Nonki Takahashi,106,ShowBats OnTick UpdateBats SB_Workaround,
QHH936-0,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Timer\Bats00.smallbasic,,Bats Testing,,,Nonki Takahashi,116,ShowBats OnTick UpdateBats SB_Workaround,
QHH936-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Timer\Bats01.smallbasic,,Bats Testing (n = 5),,,Nonki Takahashi,115,ShowBats OnTick UpdateBats SB_Workaround,
QHH936-2,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Timer\Bats02.smallbasic,,Bats Testing (n = 3),,,Nonki Takahashi,111,ShowBats OnTick UpdateBats SB_Workaround,
QHH936-3,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Timer\Bats03.smallbasic,,Bats Testing (n = 3_ fps = 10),,,Nonki Takahashi,111,ShowBats OnTick UpdateBats SB_Workaround,
QHH936-4,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Timer\Bats04.smallbasic,,Bats Testing (n = 3_ fps = 10_ w/o rotation),,,Nonki Takahashi,102,ShowBats OnTick UpdateBats SB_Workaround,
QHH936-5,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Timer\Bats05.smallbasic,,Bats Testing (n = 3_ fps = 10_ w/o rotation_ tuned),,,Nonki Takahashi,104,ShowBats OnTick UpdateBats SB_Workaround,
QHH936-6,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Timer\Bats06.smallbasic,,Bats Testing (n = 3_ fps = 10_ w/ rotation_ tuned),,,Nonki Takahashi,114,ShowBats OnTick UpdateBats SB_Workaround,
QHH936-6,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Timer\Bats07.smallbasic,,Bats Testing (n = 3_ fps = 10_ w/o show/hide_ tuned),,,Nonki Takahashi,114,ShowBats OnTick UpdateBats SB_Workaround,
QHH936-8,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Timer\Bats08.smallbasic,,Bats Testing (n = 3_ fps = 20_ w/o show/hide_ tuned),,,Nonki Takahashi,114,ShowBats OnTick UpdateBats SB_Workaround,
QHH936-9,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Timer\Bats09.smallbasic,,Bats Testing (n = 9_ fps = 10_ w/o show/hide_ tuned),,,Nonki Takahashi,114,ShowBats OnTick UpdateBats SB_Workaround,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Timer\Pause.smallbasic,,,,,,5,,
ZHB659,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Blog\Timer\TimerTest.smallbasic,,,,,,9,OnTick,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\BMJ454_text.sb,,,,,,38,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\CHF890-0.sb,,~,,,,63,noBotaoClicado,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\CHF890.sb,,,,,,38,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\GLP175-0.sb,, <~Perguntas e Respostas~>! ,,,,177,mostrarnome MenuDeOpecoes2 NoBotaoClicado4 PegarPreguntaAleatoriaDeArquivo noBotaoClicado MenuDeOpecoes3,
WHM398,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\GLP175-1.sb,,Questionário Amostra,,,,210,mostrarnome MenuSuperior MenuDeOpecoes2 NoBotaoClicado4 Dummy VoltarParaOMenu PegarPreguntaAleatoriaDeArquivo noBotaoClicado MenuDeOpecoes3,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\GLP175.sb,, <~Perguntas e Respostas~>! ,,,,179,mostrarnome MenuDeOpecoes2 MenuDeOpecoes3,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\JKR975.smallbasic,,Em modo teste!,,,,34,mostrarnome,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\QVS554_bug.sb,, <~Perguntas e Respostas~>! ,,,,63,mostrarnome,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\SXB009.smallbasic,,,,,,17,noBotaoClicado,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\VHW681.sb,, <~Perguntas e Respostas~>! ,,,,48,mostrarnome,
GLP175-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\WHM398-0.sb,,Questionário Amostra,,,,210,mostrarnome MenuSuperior MenuDeOpecoes2 NoBotaoClicado4 Dummy VoltarParaOMenu PegarPreguntaAleatoriaDeArquivo noBotaoClicado MenuDeOpecoes3,
GLP175-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\WHM398.sb,,Questionário Amostra,,,,210,mostrarnome MenuSuperior MenuDeOpecoes2 NoBotaoClicado4 Dummy VoltarParaOMenu PegarPreguntaAleatoriaDeArquivo noBotaoClicado MenuDeOpecoes3,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\WVW245.smallbasic,,By: Filipe Cardoso Martins,,,,58,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\XWN034.sb,,,,,,38,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\ZDP775-0.sb,,ZDP775-0 Questionário Amostra (Quiz Sample),,,,122,DadosInicializar PerguntarONome NoBotaoClicado BotaoEsperar MostrarNome SelecioneGenero Portugues Logistica NoBotaoClicadoMenuDeOpecoes2 NoBotaoClicadoMenuDeOpecoes3,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\ZDP775-1.sb,,ZDP775-1 Questionário Amostra (Quiz Sample),,,,177,DadosInicializar PerguntarONome NoBotaoClicado BotaoEsperar MostrarNome SelecioneGenero Portugues PegarPreguntaAleatoriaDeArquivo MateriasDisponiveis Logistica NoBotaoClicadoMenuDeOpecoes2 NoBotaoClicadoMenuDeOpecoes3,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\ZDP775.sb,, <~Perguntas e Respostas~>! ,,,,170,mostrarnome NoBotaoClicadoMenuDeOpecoes2 NoBotaoClicadoMenuDeOpecoes3 NoBotaoClicado PegarPreguntaAleatoriaDeArquivo,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Enthusiasts\Filipe\ZWB344_bug.sb,, <~Perguntas e Respostas~>! ,,,,55,mostrarnome,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\BigPower02.smallbasic,,Power a^b for big numbers,,v0.2,Nonki Takahashi,198,Power Mul WriteWithComma WriteLineWithComma,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\CalcByWriting.smallbasic,,Calculation by Writing,2012-12-15,0.4,Nonki Takahashi,1006,BN_Div BN_FindDiv BN_Comp BN_Minus BN_Mul WriteWithComma WriteLineWithComma Body_Init Body_Draw Button_DrawNumKeys Button_DrawNumKey Button_InputKey Button_GetPosition Button_OnMouseDown Button_DoNothing Calc_EvalExp LCD_Draw Lex_Init Lex_GetDigit Lex_GetDecimalPoint Lex_GetAddOperator Lex_GetMultiplyOperator Parse_GetNumber Parse_GetInteger Parse_GetReal Parse_GetTerm Parse_GetExpression TestDiv TestMinus,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\Combination.smallbasic,,Combination nCr,,,Nonki Takahashi,563,Combi Factorial Div FindDiv Comp Minus Mul WriteWithComma WriteLineWithComma TestDiv TestMinus,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\Divisors.smallbasic,,Divisors of Big Number,,,Nonki Takahashi,720,Comp SquareRoot Divisors Div FindDiv Minus Mul Plus WriteWithComma WriteLineWithComma TestDiv TestMinus TestPlus,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\Fact1000.smallbasic,,Factorial of Big Number,,,Nonki Takahashi,161,Mul PrintWithComma,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\FactDebug.smallbasic,,Factorial Debug Module,,.,Nonki Takahashi,367,MulTest Fact1 Mul1 Fact2 Mul2 WriteWithComma WriteLineWithComma,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\Factorial.smallbasic,,Factorial - recursive call sample,,,,24,Factorial,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\FactorialBig.smallbasic,,Factorial of Big Number,,,Nonki Takahashi,161,Mul PrintWithComma,
HHW468-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\FactorialBig02.smallbasic,,Factorial of Big Number,,.,Nonki Takahashi,168,Mul PrintWithComma,
FZQ904-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\FarFastFactorial.smallbasic,,factorial calculation by NaochanON,,,,93,Diff Result Dump,
FZQ904-1,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\FFFactorial.smallbasic,,factorial calculation by NaochanON,,,,51,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\Frac_Nao.smallbasic,,factorial calculation by NaochanON FZQ904-x,,,,32,Mul,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\LargestPower.smallbasic,,,,,,81,ShowAnswerSim ShowAnswer PowerSim Power,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\LargestPowerOf2.smallbasic,,Power of 2,,,,8,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\LargestSquare.smallbasic,,scale = "----+----1----+----2----+----3----+----4",,,,126,Test GetX ShowAnswerSim ShowAnswer PowerSim Power,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\LargestSquareRoot.smallbasic,,,,,,37,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\LimitAdd.smallbasic,,,,,,141,Check Expr,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Big number\Smallest.smallbasic,,,,,,8,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Multiplayer\Client.sb,,,,,,216,OnKeyDown OnKeyUp CheckKeyStrokes ForceChange OnMessageRecieved SendServerCheck SendPosInfo,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Multiplayer\Server.sb,,,,,,34,OnClientConnect OnMessageRecieved SendClientnumbers,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Neural Network\ANN_XOR.sb,,,,,,79,new load save dump use train delete exists section_break,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Small Basic Forum\Neural Network\conv_xor.smallbasic,,,,,,3,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\How To Debug\array1.smallbasic,,,,,,4,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\How To Debug\array2.smallbasic,,,,,,6,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\How To Debug\array3.smallbasic,,,,,,7,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\TechNet Wiki\How To Debug\array4.smallbasic,,,,,,14,,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Tony Free\Firebirds\Firebirds7.sb,,Firebirds, Score: ,,,,1431,Init Play OnMouseMove OnMouseDown moveall RemovePlayer_Ammo RemoveAlien_Ammo fire fire_Alien AgePlayer_Ammo AgeAlien_Ammo remove_alien create_aliens_left PlanetsPosition define_paths create_level1 printhighscores savescores,
,C:\Users\Nonki\OneDrive\Documents\MySmallBasic\Tony Free\Fruit\Fruit6.sb,,''JackpotSpin'''',,,Tony Free 26th Mar 2014,875,OnButtonClicked HOnButtonClicked selecthold showcash checkwinnings ruboutbuttons,
CLZ771-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\2048\Game2048.smallbasic,,Game 2048 in Small Basic,2015-02-27,written,Nonki Takahashi,572,Form GameOver Init ShowBest ShowScore Board_CellToIndex Board_CellToPos Board_Clear Board_GetDestCell Board_GetSpace Board_IndexToCell Board_Init KB_Init KB_OnKeyDown KB_WaitKey Text_GetWidthInPx Tile_Add Tile_CheckMovable Tile_Down Tile_Init Tile_Left Tile_Move Tile_Remove Tile_Right Tile_Up,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Abacus\Abacus01.sb,,Abacus,2012-08-03,0.1,Nonki Takahshi,146,CreateBead CreateBeam CreateRod DrawFrame MoveBeads OnMouseDown,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Abacus\Abacus02.sb,,Abacus,2012-08-03,0.2,Nonki Takahashi,154,CreateBead CreateBeam CreateRod DrawFrame MoveBeads OnMouseDown,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Abacus\Abacus03.sb,,Abacus,2012-08-04,0.3,Nonki Takahashi,157,CreateBead CreateBeam CreateRod DrawFrame MoveBeads OnMouseDown,
MNV389-2,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Abacus\Abacus04.sb,,Abacus,2012-09-04,0.4,Nonki Takahashi,173,CreateBead CreateBeam CreateRod DrawFrame MoveBeads OnMouseMove OnMouseDown OnMouseUp,
MNV389-3,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Abacus\Abacus05.sb,,Abacus,2012-09-05,0.5,Nonki Takahashi,174,CreateBead CreateBeam CreateRod DrawFrame MoveBeads OnMouseMove OnMouseDown OnMouseUp,
MNV389-5,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Abacus\Abacus06.sb,,Abacus,2013-05-20,0.61,Nonki Takahashi,197,CreateBead CreateBeam CreateRod DrawFrame MoveBeads OnMouseMove OnMouseDown OnMouseUp SB_Workaround,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Anime\Anime.sb,,'' Anime,2016-04-17,0.3a,Nonki Takahashi,55,Form WaitCommand DoCommand DrawMenu,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Anime0x\Anime.sb,,'' Anime,2016-08-15,0.4a,Nonki Takahashi,333,Form OnMouseDown OnKeyDown OnTextInput WaitCommand DoCommand CheckMenu DrawMenu OpenPictureFile GetPictureFiles ShowPictureFile Init Child Next NextChar Parent Previous,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Anime0x\AnimeIcon.sb,,,,,,13,,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Anime0x\Bomb.sb,,Blow Maker - Shapes Array Generator,2017-05-17,0.3,Nonki Takahashi,188,DrawBlow Shapes_AddEllipse Shapes_AddLine Shapes_AddRectangle Shapes_AddTriangle Shapes_BrushToEntry Shapes_DumpArray Shapes_EntryClear Shapes_EntryToArray Shapes_FuncToEntry Shapes_MoveToEntry Shapes_PenToEntry Shapes_RotateToEntry,
MMF211-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Anime0x\Flip.sb,,Flip Sample,2017-04-23,0.2b,Nonki Takahashi,97,Shapes_Init Shapes_Add Shapes_Flip,
DHW172-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Anime0x\TraficGame.sb,,Trafic Game,2017-05-17,0.2a,Nonki Takahashi,459,OnTick ScrollLane Group_Add Group_GetIndexOf Group_Move Group_Remove Group_Rotate Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Init_BlueCar Shapes_Init_Lane Shapes_Init_Truck Shapes_CalcRotatePos Shapes_CalcWidthAndHeight,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Aquarium\Aquarium01.sb,,Aquarium,,,,136,AddFish MoveFish AddBubbles MoveBubbles AddBall AddWater StartTimer OnTick,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Aquarium\Aquarium011.sb,,Aquarium,,0.11,,179,InitFish AddFish MoveFish AddBubbles MoveBubbles AddBall AddWater StartTimer OnTick,
TKW252-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Aquarium\Aquarium02.sb,,Aquarium,2014-03-14,0.2,Nonki Takahashi,141,AddFish MoveFish AddBubbles MoveBubbles AddBall AddWater StartTimer OnTick,
TKW252-6,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Aquarium\Aquarium03.sb,,Aquarium 0.3,,.,Nonki Takahashi,566,AddFish MoveFish AddBubbles MoveBubbles AddBall AddWater StartTimer OnTick Color_NameToColor Color_SetAlpha Colors_Init Group_Add Group_Dump Group_Flip Group_Move Math_Dec2Hex Math_Hex2Dec SB_RotateWorkaround SB_Workaround Shapes_AddFunc Shapes_CalcWidthAndHeight Text_Split,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Arduino\IRController.sb,,Infrared Controller Monitor,2016-10-17,0.1,Nonki Takahashi,61,GetLine Init OnDataReceived,
LBV905,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Arduino\KinectPiezoPlayer.sb,,Kinect Piezo Player,,0.1,Nonki Takahashi,67,Init Loop OnBodiesChanged,
LBV905-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Arduino\KinectPiezoPlayer02.sb,,Kinect Piezo Player,,0.2,Nonki Takahashi,82,Init FtoGY YtoF Loop OnBodiesChanged,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Arduino\LitDevSample.sb,,Small Basic Arduino Interface,,,,106,Initialise OnDataReceived OnButtonClicked,
GZN399,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Arduino\OSOYOO.sb,,OSOYOO UNO R3 - Infrared Receiver,,0.1,Nonki Takahashi,261,Draw DrawBreadboardHoles DrawHoles DrawWire Init InitBoard InitBreadboard InitIRReceiver,
GZN399-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Arduino\OSOYOO02.sb,,OSOYOO UNO R3 - Temperature Sensor,,0.2,Nonki Takahashi,261,Draw DrawBreadboardHoles DrawHoles DrawWire Init InitBoard InitBreadboard InitTMP36,
GZN399-1,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Arduino\OSOYOO03.sb,,OSOYOO UNO R3 - Piezo Buzzer,,0.3,Nonki Takahashi,257,Draw DrawBreadboardHoles DrawHoles DrawWire Init InitBoard InitBreadboard InitPiezoBuzzer,
GZN399-2,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Arduino\OSOYOO04.sb,,OSOYOO UNO R3 - LED Signal,,0.41,Nonki Takahashi,357,Draw DrawBreadboardHoles DrawHoles DrawRoundRect DrawWire Init InitBoard InitBreadboard InitLED InitRegister,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Arduino\SendTextToSerialPort.sb,,Send Text to Serial Port,,0.1,Nonki Takahashi,16,Init,
BVV136,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Arduino\SerialPortMonitor.sb,,Serial Port Monitor,,,,13,OnDataReceived,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Arduino\SerialPortMonitor02.sb,,Serial Port Monitor,,0.2,,31,Dump OnDataReceived,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Arduino\SerialPortMonitor03.sb,,Serial Port Monitor,2016-10-17,0.3,Nonki Takahashi,43,GetLine Init OnDataReceived,
KKK886,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Arduino\Temperature.sb,,Thermometer,2016-10-17,0.1,Nonki Takahashi,96,DrawTemp GetLine Init OnDataReceived,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Arduino\TryhestLED.sb,,,,,,305,bcc Draw DrawBreadboardHoles DrawHoles DrawWire Init InitBoard InitBreadboard Initled,
HLT038,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Arduino\TurtleControl.sb,,Turtle Controller,2016-10-17,0.1,Nonki Takahashi,97,GetCmd GetLine Init OnDataReceived,
SHP804-1,C:\Users\Nonki\OneDrive\Documents\SmallBasic\ArticleList\Blog.frm.sb,,Blog.frm.sb - form definition for MSDN Blog Article List,,0.3,Nonki Takahashi,14,,
PLT187-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\ArticleList\GoogleBlogArticleList.sb,,Google Blog Article List,2017-07-17,0.4,Nonki Takahashi,198,FindTag GetAttrAndText,
NPB609-1,C:\Users\Nonki\OneDrive\Documents\SmallBasic\ArticleList\MSDNBlogArticleList.sb,,MSDN Blog Article List,2017-05-22,0.3,Nonki Takahashi,456,ConvertTag ConvertTitle ConvertText FindTag GenerateHTML GetAttrAndText Buf_GetLine Buf_Init Form_GetForm Form_ShowForm OnButtonClicked Line_RemoveLeadingSpace,
WWJ884-2,C:\Users\Nonki\OneDrive\Documents\SmallBasic\ArticleList\WikiArticleList.sb,,TechNet Wiki Article List,2017-06-06,0.21,Nonki Takahashi,231,EncodeTag FindTag GetAttrAndText,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Automaton\Automaton01.sb,,'' Automaton Simulator,,0.1,Nonki Takahashi,190,Form AddMask DrawCircle DrawArrow DrawInput DrawState DrawTriangle,
QRW232-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Avatar\AvatarGenerator.sb,,Avatar Genarator,,0.2,Nonki Takahashi,301,Init DecidePattern DrawPattern RotatePattern RotatePoint UnitTest,
VHV386,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Backgammon\BackgammonBoard01.smallbasic,,Backgammon Board,2013-08-04,0.1a,Nonki Takahashi,115,AddCheckers DrawPath Dice_Init Dice_Add,
MDB491,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Backgammon\Dice01.smallbasic,,,2013-04-02,,,39,,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Backgammon\Dice02.smallbasic,,,,,,47,Dice_Init Dice_Add,
MDB491-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Backgammon\Dice03.smallbasic,,Dice,2014-12-19,0.3,Nonki Takahashi,117,Form OnButtonClicked Array_GetIndexOf Dice_Add Dice_Init Dice_RemoveAll,
FVG576,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Baseball\BaseballScoreboard01.sb,,Baseball Scoreboard,2014-01-06,0.1,Nonki Takahashi,434,MainLoop Popup AddButtons RemoveButtons OnButtonClicked OnKeyDown InitBoard WalkOff PrintBoard FindLastInning ResetBoard InitLamps InitCursor UpdateScore MoveCursor ToggleLamps InitClock OnTick DrawMark,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Baseball\Stadium.sb,,2016-07-17 15:53:59 Shapes generated by Shapes 2.2b.,,,,308,Shapes_Init Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Move Shapes_Remove Shapes_Rotate,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Battleship\Battleship01.smallbasic,,Battleship in Small Basic,2014-03-04,0.1a,Nonki Takahashi,110,DrawBoard DrawShip InitShip OnTick,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Battleship\BATTLESHIP02.smallbasic,,BATTLESHIP in Small Basic,2014-03-25,0.2a,Nonki Takahashi,192,PrepareForBattle DrawBoard DrawPeg DrawShip HitShip InitShip OnMouseDown OnMouseUp OnTick,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Battleship\BATTLESHIP03.smallbasic,,BATTLESHIP in Small Basic,2014-03-31,0.3a,Nonki Takahashi,290,DrawBoard DrawPeg DrawShip HitShip InitShip OnMouseDown OnMouseUp OnTick Opening Player CPU PrepareForBattle,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Battleship\Radar.smallbasic,,,,,,15,,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Begin\Expression.smallbasic,,,,,,10,,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Begin\KeyEvent.smallbasic,,,,,,22,OnKeyUp,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Begin\Number.sb,,Number,,,,13,,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Begin\Space.sb,,,,,,9,,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Begin\TestRemainder.smallbasic,,,,,,14,ShowRemainder,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Begin\Variable.smallbasic,,,,,,99,,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\BigNumber\Divide.sb,,Big Divide,,,,17,Divide,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\BigNumber\Mul.smallbasic,,Factorial of a Big Number,,,Nonki Takahashi,115,Mul PrintWithComma,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\BigNumber\Power.smallbasic,,Power a^b for big numbers,,,Nonki Takahashi,195,Power Mul WriteWithComma WriteLineWithComma,
VCR160,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Bowling\Bowling.sb,,Bowling Score Board,2014-12-16,(pilot),Nonki Takahashi,345,AddCursor DrawSpare DrawPoint DrawStrike DrawTotal Form Game GetPerson Init MoveCursor OnButtonClicked OnKeyDown OnTick,
GRT732-1,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Bowling\BowlingAnime.sb,,Bowling Anime,2017-03-08,0.3,Nonki Takahashi,343,DrawBall Init OnKeyDown Color_Blacken Color_ColorToRGB Color_NameToColor Colors_Init Math_Hex2Dec,
GRT732-3,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Bowling\BowlingGame.sb,,Bowling Game,2017-03-12,0.5b,Nonki Takahashi,609,BlowPins ClearScore DrawBall DrawPoint DrawScore DrawSpare DrawStrike DrawTotal Form Init InitBall InitPins KeyInput MoveBall OnKeyDown Position SelectPins ThrowBall Color_Blacken Color_ColorToRGB Color_NameToColor Colors_Init Math_Hex2Dec Text_Split,
GRT732-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Bowling\Graphics.sb,,Bowling Anime,,0.21,Nonki Takahashi,300,DrawBall Init OnKeyDown Color_Blacken Color_ColorToRGB Color_NameToColor Colors_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Calc\Calc01.smallbasic,,Calc,,v0.1,,191,Body_Init Body_Draw LCD_Draw Button_DrawNumKeys Button_DrawNumKey Button_InputKey Calc_EvalExp,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Calc\Calc02.smallbasic,,Calc,,v0.2,,519,Body_Init Body_Draw Button_DrawNumKeys Button_DrawNumKey Button_InputKey Button_GetPosition Button_OnMouseDown Button_DoNothing Calc_EvalExp LCD_Draw Lex_Init Lex_GetDigit Lex_GetDecimalPoint Lex_GetAddOperator Lex_GetMultiplyOperator Parse_GetNumber Parse_GetInteger Parse_GetReal Parse_GetTerm Parse_GetExpression,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Calc\Calc03.smallbasic,,Calc,,0.3,,521,Body_Init Body_Draw Button_DrawNumKeys Button_DrawNumKey Button_InputKey Button_GetPosition Button_OnMouseDown Button_DoNothing Calc_EvalExp LCD_Draw Lex_Init Lex_GetDigit Lex_GetDecimalPoint Lex_GetAddOperator Lex_GetMultiplyOperator Parse_GetNumber Parse_GetInteger Parse_GetReal Parse_GetTerm Parse_GetExpression,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Calc\Calc04B.smallbasic,,Calc 04B,,(521,Nonki Takahashi,513,Body_Init Body_Draw Button_DrawNumKeys Button_DrawNumKey Button_InputKey Button_GetPosition Button_OnMouseDown Button_DoNothing Calc_EvalExp LCD_Draw Lex_Init Lex_GetDigit Lex_GetDecimalPoint Lex_GetAddOperator Lex_GetMultiplyOperator Parse_GetNumber Parse_GetInteger Parse_GetReal Parse_GetTerm Parse_GetExpression SB_Workaround,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Calendar\CAL.smallbasic,,CAL - Calender,,,N,107,ParseArgs,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Calendar\Cal02.smallbasic,,CAL - Calender,,,,133,Cal_Init Cal_PrintMonth Command_GetArgs,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Calendar\Cal03.smallbasic,,CAL - Calender,,,24,124,Cal_Init Cal_PrintMonth Command_GetArgs,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Calendar\Cal04.sb,,CAL - Calender,,,24,135,Cal_Init Cal_PrintMonth Command_GetArgs,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Calendar\Cal05.sb,,CAL - Calendar,,,24,261,CheckInput Form OnButtonClicked Cal_HTMLMonth Cal_Init Cal_PrintMonth,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Calendar\ICSGenerator.sb,,ICS Generator,2016-01-13,0.1,Nonki Takahashi,54,GetUID Init_Holidays,
JQQ629-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Calendar\JD.sb,,Date Calculator,2017-06-30,0.2,Nonki Takahashi,296,Form OnButtonClicked RandomTest Run Test UnitTest Clock_DateToJD Clock_JDToDate Clock_Init Clock_JDNow,
RPM049-3,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Calendar\Moon05.sb,,Moon Phase,2016-06-10,0.5,Nonki Takahashi,177,GetMonthYear Init DateToJD,
GBQ812,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Calendar\MoonPhase.sb,,Moon Phase Animation,2016-06-10,0.11,Nonki Takahashi,83,,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Calendar\vCal05.sb,,vCAL - visual Calendar,,,24,295,MarkHolidays MarkToday CalcBorder Date2Pos Pos2Date PrintColumn Form OnMouseDown OnMouseMove Cal_Init Cal_PrintMonth,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Calendar\vCal06.sb,,vCAL - visual Calendar,,,24,309,ShowHoliday HideHoliday MarkHolidays MarkToday CalcBorder Date2Pos Pos2Date PrintColumn Form OnMouseMove Cal_Init Cal_PrintMonth,
CZJ358-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Cards\Cards02.smallbasic,,Cards - demo of cards,2013-04-04,0.2,Nonki Takahashi,152,OnButtonClicked DrawCard RecombineCards ShuffleCards Cards_Init Cards_Close Cards_Open Cards_Move Cards_Swap Math_Hex2Dec,
VHT007-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Cards\Deal06.smallbasic,,Deal,2014-02-20,0.6,Nonki Takahashi,150,DealCards RecombineCards ShuffleCards Cards_Init Cards_Close Cards_Open Cards_Move Math_Hex2Dec,
RMP814-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Cards\FullHouse03.smallbasic,,Full House Simulator,2014-01-09,0.4,Nonki Takahashi,241,OnButtonClicked DrawCards CheckCards RecombineCards ShuffleCards Cards_Init Cards_Close Cards_Open Cards_Move Cards_Swap Math_Hex2Dec Controls_AddTextBox,
RMP814-1,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Cards\FullHouse05.smallbasic,,Full House Simulator,2015-05-03,0.5,Nonki Takahashi,249,OnButtonClicked DrawCards CheckCards RecombineCards ShuffleCards Cards_Init Cards_Close Cards_Open Cards_Move Cards_Swap Math_Hex2Dec Controls_AddTextBox,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Cards\Poker05.smallbasic,,Poker,2015-05-03,0.5,Nonki Takahashi,296,OnButtonClicked DrawCards CheckPokerHand RecombineCards ShuffleCards Cards_Init Cards_Close Cards_Open Cards_Move Cards_Swap Math_Hex2Dec Controls_AddTextBox,
RRR959,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Cards\Poker051.smallbasic,,Poker,2015-05-03,0.51b,Nonki Takahashi,299,OnButtonClicked DrawCards CheckWinner CheckPokerHand RecombineCards ShuffleCards Cards_Init Cards_Close Cards_Open Cards_Move Cards_Swap Math_Hex2Dec,
RRR959-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Cards\Poker06.smallbasic,,Poker,2015-05-26,0.6b,Nonki Takahashi,377,OnButtonClicked DrawCards CheckWinner CheckN CheckTwoPair CheckPokerHand RecombineCards ShuffleCards Cards_Init Cards_Close Cards_Open Cards_Move Cards_Swap Math_Hex2Dec,
QDX521,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Chess\8-Queens02.sb,,8-Queens,2013-01-03,0.2,Nonki Takahashi,112,OnTextTyped CheckValid DrawBoard InitChessmen InitBoard Math_Hex2Dec DumpBoard,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Chess\Chess.sb,,,,,,24,InitBoard,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Chess\Chess01.sb,,Chess,2012-08-04,0.1,Nonki Takahashi,50,InitChessmen InitBoard Math_Hex2Dec,
CLP327-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Chess\Chess02.sb,,Chessboard,2013-03-22,0.2,Nonki Takahashi,95,InitBoard InitChessmen OnMouseDown OnMouseMove OnMouseUp Math_Hex2Dec,
LKX813,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Chess\Draughts.sb,,Draughts,2016-11-28,0.1,Nonki Takahashi,86,InitBoard InitChessmen OnMouseDown OnMouseMove OnMouseUp,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Chess\KnightsDomination.sb,,'' Knight's Domination,,0.6,Nonki Takahashi,298,Form OnMouseDown GetNextCandidates InitBoard MouseToBoard Move RemovePieces,
CNV255-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Chess\KnightsDomination051.sb,,'' Knight's Domination,2016-05-01,0.51,Nonki Takahashi,167,Form OnMouseDown InitBoard MouseToBoard,
CNV255-1,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Chess\KnightsDomination06.sb,,'' Knight's Domination,2016-05-29,0.61,Nonki Takahashi,243,AddKnight CheckDomination Form OnMouseDown InitBoard InitQ MouseToBoard RemoveKnight,
WPV159,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Chess\KnightsTour.sb,,Knight's Tour,2016-04-01,0.3,Nonki Takahashi,165,Form OnButtonClicked RemovePieces InitBoard InitChessmen OnMouseDown Math_Hex2Dec,
WPV159-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Chess\KnightsTour04.sb,,Knight's Tour,2016-04-16,0.4,Nonki Takahashi,192,Move GetNextCandidates Form OnButtonClicked RemovePieces InitBoard InitChessmen Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Chess\KnightsTour05.sb,,Knight's Tour,2016-04-16,0.6,Nonki Takahashi,225,Move GetNextCandidates Form OnButtonClicked RemovePieces InitBoard InitChessmen Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Chess\KnightsTour06.sb,,Knight's Tour,2016-04-16,0.61,Nonki Takahashi,214,Form OnButtonClicked GetNextCandidates InitBoard Move RemovePieces,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\Alarm01.sb,,ALARM01.smallbasic - Alarm,,v0.1,,50,OnTick,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\AnalogClock01.sb,,AnalogClock01.smallbasic - Analog Clock,2011-04-26,v0.1,,243,Alarm_Init Alarm_Ring Analog_DrawHourNumerals Analog_Init Analog_Rotate Clock_Init Clock_OnTick Digital_Init Digital_ShowDate Digital_ShowTime,
SGP929-1,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\AnalogClock02.sb,,Analog Clock,2016-01-02,0.2,Nonki Takahashi,180,Alarm_Init Alarm_Ring Analog_DrawHourNumerals Analog_Init Analog_Rotate Clock_Init Clock_OnTick Digital_Init Digital_ShowDate Digital_ShowTime,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\CalcAlpha01.sb,,Calc alpha,,v0.1,,529,Astron_DateToAlpha Astron_Init Cal_Init Cal_GetLeapFromYear Debug_SubBegin Debug_SubEnd Debug_GetIndent Lex_GetDigit Lex_GetColon Lex_GetSlash Lex_Init Math_SolveEquation1 Math_DefFn1 Math_SolveEquation2 Math_DefFn2 Parse_Get2Digits Parse_GetDate Parse_GetYear Parse_GetMonth Parse_GetDay Parse_GetTime Parse_GetHour Parse_GetMinute Parse_GetSecond,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\CalcSunriseAndSunset01.sb,,Calc sunrise and sunset,,,,689,Astron_CalcSunriseAndSunset Astron_DateToAlpha Astron_DateToArea Astron_AreaToAlpha Astron_AlphaToArea Astron_DegreeToTime Astron_DegreeToDay Astron_DayToTime Astron_Init Astron_AlphaToSunriseAndSunsetDegree Lex_Init Cal_Init Cal_GetLeapFromYear Debug_SubBegin Debug_SubEnd Debug_GetIndent Lex_GetDigit Lex_GetColon Lex_GetSlash Math_SolveEquation Math_DefFn Parse_Get2Digits Parse_GetDate Parse_GetYear Parse_GetMonth Parse_GetDay Parse_GetTime Parse_GetHour Parse_GetMinute Parse_GetSecond,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\CatsEyeClock01.sb,,Cat's Eyes Clock,2012-07-10,0.1,Nonki Takahashi,196,DrawArc DrawCat DrawEyes DrawClock OnTick,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\CatsEyeClock02.sb,,Cat's Eyes Clock,2012-07-11,0.2,Nonki Takahashi,228,Blink DrawArc DrawCat DrawIrises InitClock DrawClock OnTick,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\Clock11.sb,,,,,,11,,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\ClockPicture.sb,,Clock Picture,,,Nonki Takahashi,335,Form OnButtonClicked Shapes_Init Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Move Shapes_Remove Shapes_Rotate,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\EarthClock01.sb,,EarthClock01.smallbasic - Earth Clock,,v0.1,,85,OnTick TimeTable_Init,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\EarthClock02.sb,,EarthClock02.smallbasic - Earth Clock,2011-04-26,v0.2,,210,Alarm_Init Alarm_Ring Clock_Init Clock_OnTick Clock_ShowDigitalDate Clock_ShowDigitalTime Earth_DrawHourNumerals Earth_Init Earth_Rotate,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\EarthClock03.sb,,Earth Clock,2013-02-21,0.31,Nonki Takahashi,216,City_Select City_OnMouseDown City_OnMouseMove Clock_Init Clock_OnTick Clock_ShowDigitalDate Clock_ShowDigitalTime Earth_DrawHourNumerals Earth_Init Earth_Rotate SB_Workaround,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\EdoClock01.sb,,EdoClock01.smallbasic - Edo Clock,2011-04-27,v0.1,,236,Alarm_Init Alarm_Ring Analog_DrawHourNumerals Analog_Init Analog_Rotate Clock_Init Clock_OnTick Clock_FormatDate Clock_FormatTime Digital_Init Digital_ShowDate Digital_ShowTime,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\EdoClock02.sb,,EdoClock02.smallbasic - Edo Clock,2011-04-07,v0.2,,236,Alarm_Init Alarm_Ring Analog_DrawHourNumerals Analog_Init Analog_Rotate Clock_Init Clock_OnTick Clock_FormatDate Clock_FormatTime Digital_Init Digital_ShowDate Digital_ShowTime,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\EdoClock03.sb,,EdoClock03.smallbasic - Edo Clock,2011-06-03,v0.3,,234,Alarm_Init Alarm_Ring Edo_HourToRadian Analog_DrawHourNumerals Analog_Init Analog_RotateHourHand Clock_Init Clock_OnTick Clock_FormatDate Clock_FormatTime Digital_Init Digital_ShowDate Digital_ShowTime,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\EdoClock04.sb,,Edo Clock,2011-06-06,v0.5,,279,Alarm_Init Alarm_Ring Analog_DrawHourNumerals Analog_Init Analog_RotateHourHand Clock_Init Clock_OnTick Clock_FormatDate Clock_FormatTime Digital_Init Digital_ShowDate Digital_ShowTime Edo_AlphaToAke6AndKure6 Edo_HourToRadian Edo_Init,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\EdoClock05.sb,,Edo Clock,2011-06-06,v0.5,,646,Alarm_Init Alarm_Ring Analog_DrawHourNumerals Analog_Init Analog_RotateHourHand Astron_DateToAlpha Astron_Init Cal_FormatDate Cal_GetDate Cal_GetLeapFromYear Cal_Init Clock_Init Clock_OnTick Clock_FormatTime Digital_Init Digital_ShowDate Digital_ShowTime Edo_AlphaToAke6AndKure6 Edo_HourToRadian Edo_Init Lex_GetDigit Lex_GetColon Lex_GetSlash Lex_Init Parse_Get2Digits Parse_GetDate Parse_GetYear Parse_GetMonth Parse_GetDay Parse_GetTime Parse_GetHour Parse_GetMinute Parse_GetSecond,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\EdoHourHand01.sb,,EdoHourHand,,v0.1,,28,,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\Ellipse01.sb,,Ellipse - 楕円の極方程式の意味,,v0.1,,15,,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\Ellipse02.sb,,Ellipse - 楕円の極方程式の意味,,v0.2,,20,,
VSC113,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\GameClock01.sb,,Game Clock,2014-04-19,0.1a,Nonki Takahashi,228,Game Init SelectMode PauseClock StartClock MillisecondToTime TimeToMillisecond OnButtonClicked OnMouseDown OnTextTyped OnTick,
VSC113-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\GameClock02.sb,,Game Clock,2014-04-21,0.2b,Nonki Takahashi,253,Game Init Wait OnExit SelectMode PauseClock StartClock MillisecondToTime TimeToMillisecond OnButtonClicked OnMouseDown OnTextTyped OnTick,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\GlobeTest01.sb,,Globe test,,v0.1,,69,,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\GraphAke6AndKure6_01.sb,,Graph Ake 6 And Kure 6,,,,164,Edo_AlphaToAke6AndKure6 Edo_Init Edo_InitAke6AndKure6,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\GraphSinTPlusEper2Sin2T.sb,,sin θ+(e/2) sin 2θ のグラフ,,,,14,,
GQF135-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\KitchenTimer02a.sb,,Kitchen Timer,2015-07-14,0.21b,Nonki Takahashi,171,ShowTitle DrawKitchenTimer AddMinuteHand CheckOnHand TimerInit OnTick MouseInit OnMouseMove OnMouseDown OnMouseUp Math_CartesianToPolar,
GQF135-2,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\KitchenTimer02b.sb,,Kitchen Timer,2015-07-14,0.22b,Nonki Takahashi,175,ShowTitle DrawKitchenTimer AddMinuteHand CheckOnHand TimerInit OnTick MouseInit OnMouseMove OnMouseDown OnMouseUp Math_CartesianToPolar,
GQF135-4,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\KitchenTimer03b.sb,,Kitchen Timer,2015-07-14,0.4b,Nonki Takahashi,192,ShowTitle DrawKitchenTimer AddMinuteHand CheckOnHand TimerInit OnTick MouseInit OnMouseMove OnMouseDown OnMouseUp Math_CartesianToPolar,
GQF135-5,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\KitchenTimer05b.sb,,Kitchen Timer,2015-07-14,0.5b,Nonki Takahashi,195,AdjustMinuteHand ShowTitle DrawKitchenTimer AddMinuteHand CheckOnHand TimerInit OnTick MouseInit OnMouseMove OnMouseDown OnMouseUp Math_CartesianToPolar,
GQF135-6,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\KitchenTimer06b.sb,,Kitchen Timer,2015-07-14,0.6b,Nonki Takahashi,195,AdjustMinuteHand ShowTitle DrawKitchenTimer AddMinuteHand CheckOnHand TimerInit OnTick MouseInit OnMouseMove OnMouseDown OnMouseUp Math_CartesianToPolar,
LBD742,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\PendulumClock01.sb,,Pendulum Clock,2013-02-14,0.1,Nonki Takahashi,185,OnTick ShowClock ShowPendulum Shapes_Init Shapes_Add,
LBD742-4,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\PendulumClock02.sb,,Pendulum Clock,2013-02-15,0.24,Nonki Takahashi,212,OnTick ShowClock ShowPendulum Shapes_Init Shapes_Add,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\Shadow01.sb,,Shadow,,v0.1,,50,,
QPR173,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\SimpleAnalogClock.sb,,Simple Analog Stop Watch,,,,42,OnTick DrawMark,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\SimpleStopWatch.sb,,,,,,22,OnButtonClicked,
QDR256,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\StopWatch01.sb,,Stop Watch,,0.1,,124,OnKeyDown OnTick MilliSecToTime,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\Sundial01.sb,,Sundial,2012-07-10,0.1,Nonki Takahashi,126,DrawSundial DrawShadow InitClock DrawClock OnTick,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\Sundial02.sb,,Sundial,2012-07-28,0.2,Nonki Takahashi,283,Cal_AdjustDate Cal_DrawDateAndCity Cal_FindCity Cal_GetDate Cal_GetWeek Cal_Init Clock_DrawClock Clock_DrawShadow Clock_DrawSundial Clock_InitClock Clock_OnTick,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\Sundial03.sb,,Sundial,2012-07-31,0.3,Nonki Takahashi,716,Astron_AlphaToNE Astron_DateToAlpha Astron_Init Cal_AdjustDate Cal_DrawDateAndCity Cal_FindCity Cal_FormatDate Cal_FormatWeek Cal_GetDaysIn2012 Cal_GetDays Cal_GetLeapFromYear Cal_Init Clock_CalcSunDir Clock_DrawClock Clock_DrawShadow Clock_DrawSundial Clock_FormatTime Clock_InitClock Clock_OnTick Lex_GetDigit Lex_GetColon Lex_GetSlash Lex_Init Parse_Get2Digits Parse_GetDate Parse_GetYear Parse_GetMonth Parse_GetDay Parse_GetTime Parse_GetHour Parse_GetMinute Parse_GetSecond,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\SunError.sb,,太陽の視半径による誤差の計算,,,,7,,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\TestClock.sb,,Test Clock,,,Nonki Takahashi,49,AddClock OnTick UpdateClock,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\TestEdoHour01.sb,,Test Edo_HourToRadian,,v0.1,,45,Edo_HourToRadian,
CPZ043,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\TriangleClock01.sb,,Triangle Clock,2013-02-11,0.1,Nonki Takahashi,69,OnTick,
BSP033,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\WorldClock.sb,,World Clock,,0.1a,Nonki Takahashi,79,OnTick,
BSP033-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\WorldClock02.sb,,World Clock,,0.2b,Nonki Takahashi,198,OnTick GetTime GetCity,
BSP033-1,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\WorldClock03.sb,,World Clock,,0.3b,Nonki Takahashi,217,CalcDST GetTime GetCity OnTick SetBandColor SetHourColor,
BSP033-3,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\WorldClock04.sb,,World Clock,,0.4b,Nonki Takahashi,260,GetTime GetCity OnTick SetBandColor SetHourColor City_CalcDST City_Select City_DoNothing City_OnMouseDown City_OnMouseMove,
BSP033-4,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Clock\WorldClock05.sb,,World Clock,,0.5b,Nonki Takahashi,267,Form GetCity GetTime OnTick SetBandColor SetHourColor City_CalcDST City_Select City_DoNothing City_OnMouseDown City_OnMouseMove,
KHD518,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\4096Colors.sb,,Challenge 2016-10,,,,38,Init OnMouseMove,
WHQ207,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\AdditiveColor.sb,,Additive Color,,,Nonki Takahashi,104,AddCircle GetLine AddLine Color_Add Color_RGBToValues Math_Hex2Dec,
JWS691,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorCalculator01.sb,,Color Calculator,2013-12-09,0.1,Nonki Takahashi,557,Color_Op OnTextTyped ShowResults AddTextBoxWithCaption AddButtons OnButtonClicked Color_RGBToValues Color_RGBtoGray Color_NameToRGB Colors_Init Math_Hex2Dec Math_Bin2Dec Math_Dec2Bin Math_Or Math_And Math_Xor,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorCalculator02.sb,,Color Calculator,,0.2,Nonki Takahashi,568,Color_Op OnTextTyped ShowResults AddTextBoxWithCaption AddButtons OnButtonClicked Color_RGBToValues Color_RGBtoGray Color_NameToRGB Colors_Init Math_Hex2Dec Math_Bin2Dec Math_Dec2Bin Math_Or Math_And Math_Xor,
JWS691-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorCalculator021 1.sb,,Color Calculator,2014-05-29,0.21,Nonki Takahashi,578,AddButtons AddTextBoxWithCaption OnButtonClicked OnTextTyped ShowResults Color_NameToRGB Color_Op Color_OpInit Color_RGBToValues Color_RGBtoGray Colors_Init Math_And Math_Bin2Dec Math_Dec2Bin Math_Hex2Dec Math_Or Math_Xor,
JWS691,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorCalculator021.sb,,Nearest Named Color,2014-12-09,0.1,Nonki Takahashi,280,AddTextBoxWithCaption OnButtonClicked NearestNamedColor Color_NameToRGB Color_RGBToValues Color_RGBtoGray Colors_Init Math_Hex2Dec,
FWD807-1,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorCube03.sb,,Color Cube,2017-05-15,0.4,Nonki Takahshi,389,DrawColorCube Conv3Dto2D DrawCube Color_NameToRGB Color_HSLtoRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
FWD807-1,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorCube04.sb,,Color Cube,2017-05-15,0.4,Nonki Takahshi,389,DrawColorCube Conv3Dto2D DrawCube Color_NameToRGB Color_HSLtoRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorEdit.sb,,Color edit,,,,47,ColorEdit_Load ColorPick_Init ColorPick_Show ColorPick_OnMouseMove,
VFP128,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorGradations01.sb,,Color Gradations,2013-03-07,0.1b,Nonki Takahashi,263,OnButtonClicked Paint FillLinearGradientRectangle Color_ColorToRGB Math_Hex2Dec Colors_Init,
VFP128-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorGradations02.sb,,Color Gradations,2013-03-20,0.2b,Nonki Takahashi,356,OnButtonClicked Paint FillLinearGradientRectangle DrawLine Color_PercentToRGB Color_ColorToRGB Math_Hex2Dec Colors_Init,
VFP128-1,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorGradations03.sb,,Color Gradations,2013-03-23,0.3,Nonki Takahashi,408,OnButtonClicked Paint FillLinearGradientRectangle DrawLine Color_PercentToRGB Color_ColorToRGB Math_Hex2Dec Colors_Init,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorMixture01.sb,,Color mixture,,v0.1,,632,BigPixel_SetPixel Bitblt_GetBlock Bitblt_PutBlockAsCopy Bitblt_PutBlockAsAdd Bitblt_PutBlockAsSubtract Color_Subtract Color_Add Color_ColorToRGB Color_HSLtoRGB Color_Value Color_RGBtoHSL Color_SafeToNum Color_NumToSafe Color_ColorToSafe ColorPick_Init ColorPick_Show ColorPick_OnMouseMove Gradation_DrawRibbon HueAndTone_Init HueAndTone_ColorToName Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\Colors01.sb,,Colors,,v0.1,,280,Console_OnButtonClicked Color_GetLightness Color_GrayFromLightness ColorName_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\Colors02.sb,,Colors,,v0.2,,433,Console_Init Console_OnButtonClicked Color_HSLtoRGB Color_Value Color_RGBtoHSL Color_GrayFromLightness ColorName_Init ColorPick_Init ColorPick_Show ColorPick_OnMouseMove Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\Colors03.sb,,Colors,2012-07-22,v0.4,,446,Console_Init Console_OnButtonClicked Color_DumpTable Color_HSLtoRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness ColorTable_Init ColorPick_Init ColorPick_Show ColorPick_OnMouseMove Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\Colors04.sb,,Colors,2012-07-22,0.4,,472,Console_Init Console_OnButtonClicked Color_DumpTable Color_DumpTable2 Color_HSLtoRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness ColorTable_Init ColorPick_Init ColorPick_Show ColorPick_OnMouseMove Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorSlider.sb,,Color slider,,0.1,Nonki Takahashi,373,ShowColor DrawColorRect OnMouseDown CheckSliderClicked OnMouseUp OnMouseMove DoNothing GetColor AddSlider MoveSlider AdjustSlider GetMouseLevel GetLevel ColorToHue FindMax FindMin HueToColor,
NVQ042,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorSlider01.sb,,Color Slider,2012-06-23,0.1,Nonki Takahashi,439,AdjustSlider DrawColorRect GetColor Init ShowColor Color_HSLtoRGB Color_ColorToRGB Color_RGBtoHSL Color_Value Math_Hex2Dec Slider_Add Slider_CheckClicked Slider_GetLevel Slider_GetMouseLevel Slider_Move Slider_OnMouseDown Slider_OnMouseMove Slider_OnMouseUp Slider_DoNothing,
NVQ042-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorSlider02.sb,,Color Slider,2012-06-24,0.2,Nonki Takahashi,440,AdjustSlider DrawColorRect GetColor Init ShowColor Color_HSLtoRGB Color_ColorToRGB Color_RGBtoHSL Color_Value Math_Hex2Dec Slider_Add Slider_CheckClicked Slider_GetLevel Slider_GetMouseLevel Slider_Move Slider_OnMouseDown Slider_OnMouseMove Slider_OnMouseUp Slider_DoNothing,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorSlider03.sb,,Color Slider,2012-09-05,0.4,Nonki Takahashi,484,AdjustSlider DrawColorRect GetColor SetColor Init ShowColor Color_HSLtoRGB Color_ColorToRGB Color_RGBtoHSL Color_Value Math_Hex2Dec Slider_Add Slider_CheckClicked Slider_GetLevel Slider_GetMouseLevel Slider_OnMouseDown Slider_OnMouseMove Slider_OnMouseUp Slider_DoNothing Slider_SetLevel,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorSlider04.sb,,Color Slider,2012-09-05,0.4,Nonki Takahashi,543,Color_ColorToRGB Color_HSLtoRGB Color_RGBtoHSL Color_Value Color_Slider CS_AdjustSlider CS_DrawColorRect CS_GetColor CS_Init CS_OnButtonClicked CS_RemoveSliders CS_SetColor CS_ShowColor Math_Hex2Dec Slider_Add Slider_Remove Slider_CheckClicked Slider_GetLevel Slider_GetMouseLevel Slider_OnMouseDown Slider_OnMouseMove Slider_OnMouseUp Slider_DoNothing Slider_SetLevel,
NVQ042-2,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorSlider05.sb,,Color Slider,2016-04-11,0.5,Nonki Takahashi,556,OnButtonClicked Color_ColorToRGB Color_HSLtoRGB Color_RGBtoHSL Color_Value Color_Slider CS_AdjustSlider CS_DrawColorRect CS_GetColor CS_Init CS_OnButtonClicked CS_RemoveSliders CS_SetColor CS_ShowColor Math_Hex2Dec Slider_Add Slider_Remove Slider_CheckClicked Slider_GetLevel Slider_GetMouseLevel Slider_OnMouseDown Slider_OnMouseMove Slider_OnMouseUp Slider_DoNothing Slider_SetLevel,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorTable.sb,,Color table,,v0.1,,264,OnButtonClicked Color_GrayFromIntensity Color_GrayFromLightness Color_GetIntensity Math_Hex2Dec ColorTable_Init,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorTable2.sb,,,,,,163,ColorTable_Init,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ColorTable3.sb,,,,,,215,TextColor_Init ColorTable_Init,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\CountRGBOpacity.sb,,,,,,57,AddColors,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\CoupyPencil01.sb,,CoupyPencil,,v0.1,,401,Color_ColorToRGB Color_HSLtoRGB Color_Value Color_RGBtoHSL Color_SafeToNum Color_NumToSafe Color_ColorToSafe ColorPick_Init ColorPick_Show ColorPick_OnMouseMove HueAndTone_Init HueAndTone_ColorToName Console_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\CoupyPencil02.sb,,CoupyPencil,,v0.2,,423,Color_ColorToRGB Color_HSLtoRGB Color_Value Color_RGBtoHSL Color_SafeToNum Color_NumToSafe Color_ColorToSafe ColorPick_Init ColorPick_Show ColorPick_OnMouseDown ColorPick_OnMouseMove Console_Init HueAndTone_Init HueAndTone_ColorToName Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\CoupyPencil021.sb,,CoupyPencil - shows hue and tone,2014-02-24,0.21,Nonki Takahashi,424,Color_ColorToRGB Color_HSLtoRGB Color_Value Color_RGBtoHSL Color_SafeToNum Color_NumToSafe Color_ColorToSafe ColorPick_Init ColorPick_Show ColorPick_OnMouseDown ColorPick_OnMouseMove Console_Init HueAndTone_Init HueAndTone_ColorToName Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\DrawTail.sb,,Draw Tail,2016-07-01,0.1,Nonki Takahashi,366,Cubic Form DrawGrid CalcSize DrawCubicBezier GetPoint GetPoints OnMouseDown ShowInstruction DrawCross DrawCircle Color_PercentToRGB Color_ColorToRGB Colors_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\Gradation.sb,,Gradation,,,,63,ColorPick_Init ColorPick_Show ColorPick_OnMouseMove Gradation_Draw,
QSC915,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\GraphicsWindowColors.sb,,GraphicsWindow Colors,2014-02-24,0.1,Nonki Takahashi,70,OnTextTyped OnButtonClicked Init,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\Hex2Dec.sb,,Hex2Dec,,,,67,Math_Hex2Dec Math_Dec2Hex Text_Init Text_Lower2Upper,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\Hue01.sb,,Hue,,v0.1,,232,Color_HSLtoRGB Color_Value Color_RGBtoHSL Color_RGBtoSafe ColorPick_Init ColorPick_Show ColorPick_OnMouseMove Console_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\HueAndTone01.sb,,HueAndTone,,v0.1,,429,Color_ColorToRGB Color_HSLtoRGB Color_Value Color_RGBtoHSL Color_SafeToNum Color_NumToSafe Color_ColorToSafe ColorPick_Init ColorPick_Show ColorPick_OnMouseMove HueAndTone_Init HueAndTone_ColorToName Console_Init Math_Hex2Dec,
CPW085,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\HueChange.sb,,Hue Changer,,0.1,Nonki Takahashi,158,Color_ColorToRGB Color_HSLtoRGB Color_RGBtoHSL Color_Value Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\HueRing01.sb,,Hue Ring,,,,85,ColorPick_Init ColorPick_Show ColorPick_OnMouseMove HueRing_Draw,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\HueText.sb,,Hue text,,,,83,HueSaturation_Draw ColorPick_Init ColorPick_Show ColorPick_OnMouseMove,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ImageColorChanger0_1.sb,,Image Color Changer,,,Nonki Takahashi,485,ChangeColors GetImageColors GetPaletteIndex ShowBigImage ShowPalette Color_ColorToRGB Color_HSLtoRGB Color_RGBtoHSL Color_Value Math_Hex2Dec Mouse_Init Mouse_SetHandler Mouse_OnDown Mouse_DoNothing Mouse_OnMove Mouse_OnTick Mouse_OnUp Slider_Add Slider_CallBack Slider_GetLevel Slider_GetMouseLevel Slider_WaitToRelease Slider_Remove Slider_SetLevel,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\Lightness.sb,,Lightness,,,,79,ColorPick_Init ColorPick_Show ColorPick_OnMouseMove Lightness_Mono Lightness_Blue,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\Miffy01.sb,,Miffy,,v0.1,,417,Color_ColorToRGB Color_HSLtoRGB Color_Value Color_RGBtoHSL Color_SafeToNum Color_NumToSafe Color_ColorToSafe ColorPick_Init ColorPick_Show ColorPick_OnMouseDown ColorPick_OnMouseMove Console_Init HueAndTone_Init HueAndTone_ColorToName Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\MuncellColors.sb,,Muncell Colors,,v0.1,,151,Color_RGBtoHSL Math_Hex2Dec MunsellColor_Init,
CKK055,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\NearestNamedColor01.sb,,Nearest Named Color,2014-06-09,0.1,Nonki Takahashi,297,AddTextBoxWithCaption DrawColor OnButtonClicked NearestNamedColor Color_NameToRGB Color_RGBToValues Color_RGBtoGray Colors_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\NearestNamedColor02.sb,,Nearest Named Color,2015-06-02,0.2,Nonki Takahashi,300,AddTextBoxWithCaption DrawColor OnButtonClicked NearestNamedColor Color_NameToRGB Color_RGBToValues Color_RGBtoGray Colors_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\NearestNamedColor03.sb,,Nearest Named Color,2015-06-02,0.3,Nonki Takahashi,319,AddTextBoxWithCaption CheckColor DrawColor OnButtonClicked NearestNamedColor Color_NameToRGB Color_RGBToValues Color_RGBtoGray Colors_Init Math_Hex2Dec,
MBB966,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ProgressBar04.sb,,Progress Bar,2013-09-30,0.4,Nonki Takahashi,403,OnTick FillLinearGradientRectangle DrawLine Color_PercentToRGB Color_ColorToRGB Math_Hex2Dec Colors_Init,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\ReadCSV.sb,,Read CSV to Array,,,,75,CreateSB DumpCSV GetLine GetValueFromLine,
VNX976,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\SubtractColor.sb,,Subtractive Color,,,Nonki Takahashi,105,SubCircle GetLine SubLine Color_Sub Color_RGBToValues Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\TestColorRGBOpacity.sb,,Test color of RGB and opacity,,,,24,,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\TextColors01.sb,,Text Colors,,v0.1,,40,Text_DumpColors Text_Init,
QLJ036,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\TextWindowColors.sb,,TextWindow Colors,2014-02-24,v0.1,Nonki Takahashi,72,ShowColors GetOpositeColor Init,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\Tone.sb,,Tone,,,,67,Tone_Draw ColorPick_Init ColorPick_Show ColorPick_OnMouseMove,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\WebSafeColors.sb,,Web safe colors,,v0.1,,204,Color_HSLtoRGB Color_Value Color_RGBtoHSL Color_GrayFromLightness ColorPick_Init ColorPick_Show ColorPick_OnMouseMove Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\WebSafeColors01.sb,,Web safe colors,,v0.1,,276,Color_HSLtoRGB Color_Value Color_ColorToRGB Color_RGBtoHSL Color_SafeToNum Color_NumToSafe Color_ColorToSafe ColorPick_Init ColorPick_Show ColorPick_OnMouseMove Console_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\WRGB.sb,,WRGB,,,,65,OnButtonClicked DrawBWColor Color_RGBToValues Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\XYZ.sb,,CIE color space chromaticity diagram,,0.1a,Nonki Takahashi,181,Map ColorMatching Me PlanckianLocus,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\XYZ02.sb,,CIE color space chromaticity diagram,,0.2a,Nonki Takahashi,309,Map ColorMatching2 ColorMatching InitCIE Me PlanckianLocus,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\XYZ03.sb,,Planckian locus in CIE 1931 XYZ color space chromaticity diagram,,0.3,Nonki Takahashi,448,CalcColor1u CalcColor1l CalcColor2 CalcDelta CalcXYZ ColorMatching ColorMatching2 DrawGrid DrawLine DrawTriangle ET2Color InitCIE Map PlanckianLocus,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Colors\XYZ04.sb,,Planckian locus in CIE 1931 XYZ color space xy chromaticity diagram,,0.4,c Nonki Takahashi,839,CalcColor1u CalcColor1l CalcColor2 CalcDelta CalcXYZ ColorMatching DrawGrid DrawLine DrawTriangle ET2Color InitCMF Map OnMouseMove PlanckianLocus,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\CheckBox01.smallbasic,,Check Box Sample,2014-06-23,0.1,Nonki Takahashi,159,DrawTexts DrawEllipses WaitStatusChange Clear DrawGrid InitWorkaround Controls_AddCheckBox Controls_OnMouseDown Controls_IsChecked SB_Workaround,
GZL896,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\CheckBox02.smallbasic,,Check Box Sample,2014-07-10,0.2,Nonki Takahashi,161,DrawTexts DrawEllipses WaitStatusChange Clear DrawGrid InitWorkaround Controls_AddCheckBox Controls_OnMouseDown Controls_IsChecked SB_Workaround,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\ColorSlider01.smallbasic,,Color slider,,0.1,Nonki Takahashi,373,ShowColor DrawColorRect OnMouseDown CheckSliderClicked OnMouseUp OnMouseMove DoNothing GetColor AddSlider MoveSlider AdjustSlider GetMouseLevel GetLevel ColorToHue FindMax FindMin HueToColor,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\ColorSlider02 1.smallbasic,,Color slider,2014-07-10,0.2,Nonki Takahashi,325,OnButtonClicked Control_CallBack Control_ColorSlider Control_ShowColor Control_OnButtonClicked Control_DrawColorRect Control_OnMouseDown Control_CheckSliderClicked Control_OnMouseUp Control_OnMouseMove Control_DoNothing Control_GetColor Control_RemoveSlider Control_AddSlider Control_MoveSlider Control_GetMouseLevel Control_GetLevel Control_FindMax Control_FindMin,
HWD964,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\ColorSlider02.smallbasic,,Color Slider,2014-07-10,0.2,Nonki Takahashi,322,OnButtonClicked Control_CallBack Control_ColorSlider Control_ShowColor Control_OnButtonClicked Control_DrawColorRect Control_OnMouseDown Control_CheckSliderClicked Control_OnMouseUp Control_OnMouseMove Control_DoNothing Control_GetColor Control_RemoveSlider Control_AddSlider Control_MoveSlider Control_GetMouseLevel Control_GetLevel Math_Hex2Dec,
KMG391-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\ComboBox01.smallbasic,,Combo Box Sample,2015-10-24,0.1b,Nonki Takahashi,154,Controls_AddComboBox Controls_Proc Controls_Init Controls_OnButtonClicked Controls_OnMouseMove Controls_OnMouseDown Controls_Select,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\ComboBox02.sb,,Combo Box Sample,2015-12-07,0.2b,Nonki Takahashi,155,Controls_AddComboBox Controls_Proc Controls_Init Controls_OnButtonClicked Controls_OnMouseMove Controls_OnMouseDown Controls_Select,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\FileOpen01.smallbasic,,File Open Dialog,2014-05-30,0.1,Nonki Takahashi,164,OnButtonClicked File_Open File_OnButtonClicked File_OnTextTyped SB_AppendSub,
NJB522,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\MeasureAll01.smallbasic,,Measure All Character Width in Pixels,2014-06-23,0.1,Nonki Takahashi,121,Init OnButtonClicked Main Measure,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\ProgressBar05.smallbasic,,Progress Bar,2013-10-13,0.5,Nonki Takahashi,408,OnTick FillLinearGradientRectangle DrawLine Color_PercentToRGB Color_ColorToRGB Math_Hex2Dec Colors_Init,
SZW634,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\RadioButton01.smallbasic,,Radio Button,2013-12-10,0.1,Nonki Takahashi,163,WaitStatusChange Clear DrawGrid InitRadioButtons Control_AddRadioButton OnMouseDown Control_GetSelectedRadioButton SB_Workaround,
XZB099,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\ScrollBar.sb,,Scroll Bar Sample,,,Nonki Takahashi,391,Form DrawStars Group_Dump Shapes_Init Controls_AddVScroll Controls_Update Controls_Scroll OnMouseDown OnMouseMove SB_RotateWorkaround Shapes_Add Shapes_CalcWidthAndHeight Shapes_Move,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\SlideSwitch01.sb,,Slide Switch,2015-09-28,0.1,Nonki Takahashi,111,OnMouseDown Controls_AddSlideSwitch Controls_OnMouseDown,
MDP504,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\Textbox.sb,,TextBox Sample,,0.1,Nonki Takahashi,24,Init OnButtonClicked,
MDP504-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\TextBox02.sb,,TextBox Sample,,0.2,Nonki Takahashi,23,Init OnTextTyped,
MDP504-1,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\TextBox03.sb,,TextBox Sample,,0.3,Nonki Takahashi,33,Init OnTick,
MDP504-3,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\TextBox04.sb,,TextBox Sample,,0.4,Nonki Takahashi,26,Init OnKeyDown,
MDP504-4,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Controls\TextBox05.sb,,TextBox Sample,,0.5,Nonki Takahashi,31,Init OnButtonClicked OnKeyDown,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\CT\Abstraction.sb,,Abstraction,,,,128,Init Animate DrawObjects ShowAbstraction Form,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\CT\AlgorithmBasics.sb,,Algorithm Basics,,,Nonki Takahashi,52,Init,
LFD194,C:\Users\Nonki\OneDrive\Documents\SmallBasic\CT\ArrayAndStack.sb,,Array and Stack,,,Nonki Takahashi,79,AddColors InitStack PushColors PopColors,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\CT\Decomposition_Asanoha.sb,,Decomposition (Asanoha),,,Nonki Takahashi,35,Asanoha,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\CT\Decomposition_Itchimatsu.sb,,Decomposition (Ichimatsu),,,Nonki Takahashi,20,,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\CT\Decomposition_Seigaiha.sb,,Decomposition (Seigaiha),,,Nonki Takahashi,27,DrawWave,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\CT\Decomposition_Yagasuri.sb,,Decomposition (Yagasuri),,,Nonki Takahashi,34,PatternA PatternB,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\CT\EschersLizard.sb,,Escher's Lizard,,,,220,DrawLegs DrawTail DrawHead DrawBody DrawEye Ellipse Rectangle Line Triangle,
HRX565,C:\Users\Nonki\OneDrive\Documents\SmallBasic\CT\Intermediate01.sb,,Abstract and Concrete,,0.1,Nonki Takahashi,34,Average Intermediate,
HRX565-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\CT\Intermediate02.sb,,Abstract and Concrete,,0.2,Nonki Takahashi,138,Average AveragePoint AverageColor Intermediate IntermediatePoint IntermediateColor Hex2Dec,
HRX565-1,C:\Users\Nonki\OneDrive\Documents\SmallBasic\CT\Intermediate03.sb,,Abstract and Concrete,,0.3,Nonki Takahashi,291,Init DrawGrid DrawPoint DrawColor RemoveShapes Average AveragePoint AverageColor Intermediate IntermediatePoint IntermediateColor Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\CT\Loops.sb,,Loops,,,Nonki Takahashi,40,,
BNN571,C:\Users\Nonki\OneDrive\Documents\SmallBasic\CT\Sequence.sb,,Draw Moon - Sequence Quiz,2016-07-30,0.1,Nonki Takahashi,217,Check DrawBackground DrawPattern Form OnButtonClicked Init,
KDH145,C:\Users\Nonki\OneDrive\Documents\SmallBasic\CT\TurtleBrick.sb,,Turtle Brick,,,Nonki Takahshi,223,Init Do DrawGrid FillBrick GetOperand,
KDH145-2,C:\Users\Nonki\OneDrive\Documents\SmallBasic\CT\TurtleBrick02.sb,,Turtle Brick,2016-09-18,0.21,Nonki Takahshi,193,Init Do DrawGrid FillBrick GetOperand,
VMW773,C:\Users\Nonki\OneDrive\Documents\SmallBasic\CT\VariableSimulator.sb,,Variable Simulator,2016-08-08,0.1,Nonki Takahashi,506,CommandsToLine OnButtonClicked DumpVar LexCharacter LexSkipSpace LexSymbol ParseAddOperator ParseAssignment ParseCommand ParseDesignator ParseDigit ParseExpression ParseFactor ParseIdentifier ParseLetter ParseMultiplyOperator ParseNumber ParseTerm ParseText PopLocal PushLocal,
ZRS542-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Dictionary\Dictionary12.sb,,Dictionary,2015-10-10,1.2b,Nonki Takahashi,106,OnMouseDown OnButtonCLicked Form GetLang,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Dictionary\MultiLanguageDictionary.sb,,,,,,182,Init GetDefinitions FindWord SkipSpace SkipA FindKeyword FindAlphabet SkipAlphabet WaitInput,
PQK191,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DNN\AN01.sb,,Artificial Neuron,2016-01-14,0.1,Nonki Takahashi,92,InitNeuron OnTextTyped UpdateNeuron,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DNN\DNN01.smallbasic,,Digital Neural Network,,0.1,Nonki Takahashi,34,InitNetwork,
RQX345-3,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DNN\Graph05.sb,,Graph,2017-04-10,0.6,Nonki Takahashi,254,Form AN Fx_GetProperties Graph_SetGWViewPort Graph_SetLogicalViewPort Graph_ToGWCoordinate Graph_ToLogicalCoordinate Graph_DrawGrid,
RQX345-3,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DNN\Graph06.sb,,Graph,2017-04-10,0.6,Nonki Takahashi,259,Form AN Fx_GetProperties Graph_SetGWViewPort Graph_SetLogicalViewPort Graph_ToGWCoordinate Graph_ToLogicalCoordinate Graph_DrawGrid,
FGM769-2,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DonkeyKong\Donkey04.sb,,Simple Donkey Kong,2014-03-13,0.4a,Nonki Takahashi,561,OnTick Barrel_FindUsed Barrel_Add Slope_Add Init Opening Shapes_Init Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Move Shapes_Remove Shapes_Rotate,
FGM769-3,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DonkeyKong\Donkey05.sb,,Donkey Kong in the Small Basic World,2014-03-14,0.5b,Nonki Takahashi,732,Closing Init OnKeyDown OnTick Opening Barrel_Add Barrel_FindUsed Barrel_Motion Mario_Add Mario_Motion Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Init Shapes_Move Shapes_Remove Shapes_Rotate Slope_Add,
FGM769-4,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DonkeyKong\Donkey06.sb,,Donkey Kong in the Small Basic World,2014-03-24,0.6,Nonki Takahashi,752,Ending Closing Init OnKeyDown OnTick Opening Barrel_Add Barrel_FindUsed Barrel_Motion Mario_Add Mario_Motion Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Init Shapes_Move Shapes_Remove Shapes_Rotate Slope_Add,
FGM769-6,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DonkeyKong\Donkey07.sb,,Donkey Kong in the Small Basic World,2014-03-24,0.8,Nonki Takahashi,754,Ending Closing Init OnKeyDown OnTick Opening Barrel_Add Barrel_FindUsed Barrel_Motion Mario_Add Mario_Motion Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Init Shapes_Move Shapes_Remove Shapes_Rotate Slope_Add,
FGM769-6,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DonkeyKong\Donkey08.sb,,DONKEY KONG in the Small Basic World,2014-03-24,0.8,Nonki Takahashi,783,Ending Closing Init OnKeyDown OnTick Opening Barrel_Add Barrel_FindUsed Barrel_Motion Ladder_Add Mario_Add Mario_Motion Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Init Shapes_Move Shapes_Remove Shapes_Rotate Slope_Add,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DonkeyKong\Donkey09.sb,,DONKEY KONG in the Small Basic World,2014-05-18,0.9,Nonki Takahashi,799,Ending Closing Init OnKeyDown OnTick Opening Barrel_Add Barrel_FindUsed Barrel_Motion Ladder_Add Mario_Add Mario_Motion Math_CartesianToPolar SB_RotateWorkaround SB_Workaround Shapes_Add Shapes_CalcRotatePos Shapes_CalcWidthAndHeight Shapes_Init Shapes_Move Shapes_Remove Shapes_Rotate Slope_Add,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DoubutsuShogi\DoubutsuShogi01.smallbasic,,DoubutsuShogi,,v0.1,,440,Temp Console_Init Lion_March Board_Init Board_New Board_Draw Board_DrawCell Board_Move UnderConstruction OnMouseDown OnMouseMove DoNothing Dotted_Line,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DoubutsuShogi\DoubutsuShogi02.smallbasic,,DoubutsuShogi,,v0.2,,595,GameRecord_Draw GameRecord_Init GameRecord_DrawLine Debug_Move GameRecord_Move Console_Init Sound_LionMarch Board_Init Board_New Board_Draw Board_DrawCell Board_DrawCaptured Board_FindPiece Board_Move Board_AddCaptured Debug_UnderConstruction Player_OnMouseDown Player_OnMouseMove Player_DoNothing Dotted_Line,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DoubutsuShogi\DoubutsuShogi03.smallbasic,,DoubutsuShogi,,v0.3,,805,Human_Move Human_GetPosition Human_OnMouseDown Human_OnMouseMove Human_DoNothing Console_Init Sound_LionMarch Board_Init Game_Init Game_Loop Game_Judge Game_IsMovablePiece Game_IsPossibleMove Board_New Board_Move Board_Draw Board_DrawCell Board_DrawCaptured Board_FindPiece Board_AddCaptured GameRecord_Init GameRecord_Draw GameRecord_DrawLine GameRecord_Move Graphics_DrawDottedLine Debug_Init Debug_DumpCanMove Debug_DumpXY Debug_DumpPiece Debug_DumpTurn Debug_DumpCaptured,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DoubutsuShogi\DoubutsuShogi04.smallbasic,,DoubutsuShogi,,v0.4,,936,Human_Move Human_GetPosition Human_OnMouseDown Human_OnMouseMove Human_DoNothing Console_Init Sound_LionMarch Board_Init Game_Init Game_Loop Game_Judge Game_IsMovablePiece Game_IsPossibleMove Board_New Board_Move Board_Draw Board_DrawCell Board_DrawCaptured Board_FindPiece Board_AddCaptured Board_RemoveCaptured GameRecord_Init GameRecord_Draw GameRecord_DrawLine GameRecord_Move Graphics_DrawDottedLine Debug_Init Debug_DumpCanMove Debug_DumpXY Debug_DumpIJ Debug_DumpPiece Debug_DumpTurn Debug_DumpCaptured Debug_DumpFromCaptured Debug_DumpInCaptured,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DoubutsuShogi\DoubutsuShogi05.smallbasic,,DoubutsuShogi,,v0.5,,1049,Human_Move Human_GetPosition Human_OnMouseDown Human_OnMouseMove Human_DoNothing Console_Init Sound_LionMarch Game_Init Game_Loop Game_Judge Game_IsMovablePiece Game_IsPossibleMove Board_Init Board_New Board_Move Board_Draw Board_DrawCell Board_DrawCaptured Board_FindPiece Board_AddCaptured Board_RemoveCaptured Board_HideCaptured GameRecord_Init GameRecord_Draw GameRecord_DrawLine GameRecord_Move Graphics_DrawDottedLine Debug_Init Debug_DumpCanMove Debug_DumpXY Debug_DumpIJ Debug_DumpPiece Debug_DumpTurn Debug_DumpCaptured Debug_DumpFromCaptured Debug_DumpInCaptured Debug_Case1 Debug_Case2 Debug_Case3 Debug_Case4 Debug_Case5 Debug_Case6 Debug_Case7,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DoubutsuShogi\DoubutsuShogi06.smallbasic,,DoubutsuShogi,,v0.6,,1339,Human_Move Human_GetPosition Human_OnMouseDown Human_OnMouseMove Human_DoNothing Console_Init Console_RPS Console_ShowTurn Console_AskPromotion Console_OnMouseDown Console_DoNothing Console_CheckMouseClick Console_ShowBalloon Console_CountCRLF Sound_LionMarch Sound_PingPong Game_Init Game_Loop Game_Judge Game_IsMovablePiece Game_IsPossibleMove Board_Init Board_New Board_Move Board_Draw Board_DrawCell Board_DrawCaptured Board_FindPiece Board_AddCaptured Board_RemoveCaptured Board_HideCaptured GameRecord_Init GameRecord_Draw GameRecord_DrawLine GameRecord_Move Graphics_DrawDottedLine Graphics_FillRoundRect Debug_Init Debug_DumpCanMove Debug_DumpXY Debug_DumpIJ Debug_DumpPiece Debug_DumpTurn Debug_DumpCaptured Debug_DumpFromCaptured Debug_DumpInCaptured Debug_Case1 Debug_Case2 Debug_Case3 Debug_Case4 Debug_Case5 Debug_Case6 Debug_Case7 Debug_MarkXY,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DoubutsuShogi\DoubutsuShogi07.smallbasic,,DoubutsuShogi,,v0.7,,1401,Board_Init Board_New Board_Move Board_Draw Board_DrawCell Board_DrawCaptured Board_AddCaptured Board_RemoveCaptured Board_HideCaptured Console_Init Console_CreateReplayButton Console_ShowReplayButton Console_HideReplayButton Console_CreateNewGameButton Console_ShowNewGameButton Console_HideNewGameButton Console_OnButtonClicked Console_ShowTurn Console_ShowGameResult Console_AskFirstTurn Console_OnMouseDown Console_DoNothing Console_CheckMouseClick Console_ShowBalloon Console_CountCRLF Game_Init Game_Loop Game_Judge Game_CheckSennichite Game_CheckCaught Game_CheckTried Game_CheckNoMark Game_CalcOpposite Game_IsMovablePiece Game_IsPossibleMove GameRecord_Init GameRecord_New GameRecord_Draw GameRecord_DrawLine GameRecord_Scroll GameRecord_Move Graphics_DrawDottedLine Graphics_FillRoundRect Human_Move Human_GetPosition Human_OnMouseDown Human_OnMouseMove Human_DoNothing Sound_LionMarch,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DoubutsuShogi\DoubutsuShogi07d.smallbasic,,DoubutsuShogi,,v0.7d,,1631,Board_Init Board_New Board_Move Board_Draw Board_DrawCell Board_DrawCaptured Board_AddCaptured Board_RemoveCaptured Board_HideCaptured Console_Init Console_CreateReplayButton Console_ShowReplayButton Console_HideReplayButton Console_CreateNewGameButton Console_ShowNewGameButton Console_HideNewGameButton Console_OnButtonClicked Console_ShowTurn Console_ShowGameResult Console_AskFirstTurn Console_OnMouseDown Console_DoNothing Console_CheckMouseClick Console_ShowBalloon Console_CountCRLF Game_Init Game_Loop Game_Judge Game_CheckSennichite Game_CheckCaught Game_CheckTried Game_CheckNoMark Game_CalcOpposite Game_IsMovablePiece Game_IsPossibleMove GameRecord_Init GameRecord_New GameRecord_Draw GameRecord_DrawLine GameRecord_Scroll GameRecord_Move Graphics_DrawDottedLine Graphics_FillRoundRect Human_Move Human_GetPosition Human_OnMouseDown Human_OnMouseMove Human_DoNothing Sound_LionMarch Debug_Init Debug_DumpCanMove Debug_DumpXY Debug_DumpIJ Debug_DumpPiece Debug_DumpTurn Debug_DumpCaptured Debug_DumpFromCaptured Debug_DumpInCaptured Debug_Case1 Debug_Case2 Debug_Case3 Debug_Case4 Debug_Case5 Debug_Case6 Debug_Case7 Debug_MarkXY,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DoubutsuShogi\DoubutsuShogi08.smallbasic,,DoubutsuShogi,,v0.8,,1359,Board_Init Board_New Board_Move Board_Draw Board_DrawCell Board_DrawCaptured Board_GetColRowFromTeamNum Board_GetTeamNumFromColRow Board_AddCaptured Board_RemoveCaptured Board_HideCaptured Console_Init Console_CreateReplayButton Console_ShowReplayButton Console_HideReplayButton Console_CreateNewGameButton Console_ShowNewGameButton Console_HideNewGameButton Console_OnButtonClicked Console_ShowTurn Console_ShowGameResult Console_AskFirstTurn Console_OnMouseDown Console_DoNothing Console_CheckMouseClick Console_ShowBalloon Console_CountCRLF Game_Init Game_Loop Game_Judge Game_CheckSennichite Game_CheckCaught Game_CheckTried Game_CheckNoMark Game_CalcOpposite Game_IsMovablePiece Game_IsPossibleMove GameRecord_Init GameRecord_New GameRecord_Draw GameRecord_DrawLine GameRecord_Scroll GameRecord_FirstTurn GameRecord_Move GameRecord_Replay Graphics_DrawDottedLine Graphics_FillRoundRect Human_Move Human_GetPosition Human_OnMouseDown Human_OnMouseMove Human_DoNothing,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\DoubutsuShogi\DoubutsuShogi08d.smallbasic,,DoubutsuShogi,,v0.8,,1573,Board_Init Board_New Board_Move Board_Draw Board_DrawCell Board_DrawCaptured Board_AddCaptured Board_RemoveCaptured Board_HideCaptured Console_Init Console_CreateReplayButton Console_ShowReplayButton Console_HideReplayButton Console_CreateNewGameButton Console_ShowNewGameButton Console_HideNewGameButton Console_OnButtonClicked Console_ShowTurn Console_ShowGameResult Console_AskFirstTurn Console_OnMouseDown Console_DoNothing Console_CheckMouseClick Console_ShowBalloon Console_CountCRLF Debug_MarkXY Debug_DumpBoard Debug_DumpGameRecord Debug_DumpGameRecordHeader Debug_DumpGameRecordMove Game_Init Game_Loop Game_Judge Game_CheckSennichite Game_CheckCaught Game_CheckTried Game_CheckNoMark Game_CalcOpposite Game_IsMovablePiece Game_IsPossibleMove GameRecord_Init GameRecord_New GameRecord_Draw GameRecord_DrawLine GameRecord_Scroll GameRecord_FirstTurn GameRecord_Move GameRecord_Replay Graphics_DrawDottedLine Graphics_FillRoundRect Human_Move Human_GetPosition Human_OnMouseDown Human_OnMouseMove Human_DoNothing,
WWV142,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\BSpline01.sb,,B-Spline Curve,2014-02-21,0.1,,323,Error InitSample WaitClick OnMouseDown Pause Dump DumpB PutPoint DisplayFileEnter MoveAbs3 LineAbs3 MakeCurve NextSection PutInSM CurveAbs3 SetBSpline StartBSpline EndBSpline,
WWV142,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\BSpline02.sb,,B-Spline Curve,2014-02-21,0.1,,331,_Error InitSample WaitClick OnMouseDown Pause Dump DumpB _PutPoint _DisplayFileEnter MoveAbs3 LineAbs3 _MakeCurve _NextSection _PutInSM CurveAbs3 SetBSpline StartBSpline EndBSpline,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\BSpline03.sb,,B-Spline Curve,2014-03-12,0.3,,370,_Error InitSample WaitClick OnMouseDown Pause Dump DumpB _PutPoint _GetPoint _DisplayFileEnter _DoMove _DoLine _Interpret MoveAbs3 LineAbs3 _MakeCurve _NextSection _PutInSM CurveAbs3 SetBSpline StartBSpline EndBSpline,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DemoCurve.sb,,Draw Tail,2016-07-01,0.1,Nonki Takahashi,366,Cubic Form DrawGrid CalcSize DrawCubicBezier GetPoint GetPoints OnMouseDown ShowInstruction DrawCross DrawCircle Color_PercentToRGB Color_ColorToRGB Colors_Init Math_Hex2Dec,
KFF238,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DesignCar.sb,,Design Your Original Car,,,Nonki Takahashi,60,Init DrawGrid,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawArc.sb,,,,,,39,DrawArc FillQuadrangle,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawArc02.sb,,Draw Arc,,0.2,Nonki Takahashi,44,DrawArc,
SVQ458-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCheck.sb,,Draw Check,2017-03-15,0.2,Nonki Takahashi,33,DrawCheck,
FWD807-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCube02.sb,,Draw Cube,2013-08-03,0.2,Nonki Takahshi,360,Conv3Dto2D DrawCube Color_NameToRGB Color_HSLtoRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
QRC070,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid01Bldg.sb,,Draw Cuboid,,0.1,Nonki Takahashi,463,CalcColors DrawCuboid DrawVoxel Init Color_HSLtoRGB Color_NameToRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
QRC070-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid02Bldg.sb,,Draw Cuboid,,0.2,Nonki Takahashi,694,CalcColors CalcVertex DrawCuboid DrawVoxel Init Map2D Color_HSLtoRGB Color_NameToRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
QRC070-2,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid03City.sb,,Draw Cuboid,,0.31,Nonki Takahashi,729,Init Car Building Person Train CalcColors CalcVertex DrawCuboid DrawVoxel Map2D Color_HSLtoRGB Color_NameToRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
QRC070-3,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid04SBCube.sb,,Draw Cuboid,,0.4,Nonki Takahashi,617,Init CalcColors CalcVertex DrawCuboid DrawVoxel Map2D Color_HSLtoRGB Color_NameToRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid05Pyramid.sb,,Draw Cuboid,,0.5,Nonki Takahashi,629,Init CalcColors CalcVertex DrawCuboid DrawPyramid DrawVoxel Map2D Color_HSLtoRGB Color_NameToRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
QRC070-4,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid06Stairs.sb,,Draw Cuboid,,0.6,Nonki Takahashi,674,Init CalcColors CalcVertex DrawCuboid DrawVoxel Map2D Color_HSLtoRGB Color_NameToRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
QRC070-5,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid07Triangle.sb,,Draw Cuboid,,0.7,Nonki Takahashi,675,Init CalcColors CalcVertex DrawCuboid DrawHalfVoxel DrawVoxel Map2D Color_HSLtoRGB Color_NameToRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid081Color.sb,,Color Cube,,0.81,Nonki Takahashi,674,Init DrawColorCube CalcColors CalcVertex DrawCuboid DrawVoxel Map2D Color_HSLtoRGB Color_Blacken Color_Whiten Color_ColorToRGB Color_NameToColor Color_Value Color_ColortoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid082Color.sb,,Color Cube,,0.82,Nonki Takahashi,692,Init DrawColorCube CalcColors CalcVertex DrawCuboid DrawVoxel Map2D Color_HSLtoRGB Color_Blacken Color_Whiten Color_ColorToRGB Color_NameToColor Color_Value Color_ColortoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
QRC070-6,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid08Color.sb,,Draw Cuboid,,0.8,Nonki Takahashi,655,Init CalcColors CalcVertex DrawColorCube DrawCuboid DrawVoxel Map2D Color_HSLtoRGB Color_NameToRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
QRC070-7,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid09Color.sb,,Draw Cuboid,,0.9,Nonki Takahashi,658,Init CalcColors CalcVertex DrawColorCube DrawCuboid DrawVoxel Map2D Color_HSLtoRGB Color_NameToRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
QRC070-8,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid10Jupitor.sb,,Jupiter,,0.1,Nonki Takahashi,691,Init CalcColors CalcVertex DrawRingOnXY DrawStars DrawCuboid DrawVoxel Map2D Color_HSLtoRGB Color_NameToRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
QRC070-9,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid11.sb,,Draw Cuboid,,1.1,Nonki Takahashi,715,Init CalcColors CalcVertex DrawPendagon DrawStars DrawCuboid DrawVoxel Map2D Color_HSLtoRGB Color_NameToRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
DJV974,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid12Face.sb,,3-D Face Sample,,1.2,Nonki Takahashi,660,Init DrawFace CalcColors CalcVertex DrawCuboid DrawVoxel Map2D Color_HSLtoRGB Color_NameToRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid13NotePC.sb,,3-D Note PC,,1.3,Nonki Takahashi,662,Init DrawNotePC CalcColors CalcVertex DrawCuboid DrawVoxel Map2D Color_HSLtoRGB Color_NameToRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid14Chick.sb,,3-D Chick,,1.4,Nonki Takahashi,698,Init DrawChick CalcColors CalcVertex DrawCuboid DrawVoxel Map2D Color_HSLtoRGB Color_NameToRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid15Shoji.sb,,3-D Shoji (Paper Door),,1.5,Nonki Takahashi,756,Init DrawShoji CalcColors CalcVertex DrawCuboid DrawVoxel Map2D Color_HSLtoRGB Color_Blacken Color_Whiten Color_ColorToRGB Color_NameToColor Color_Value Color_ColortoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
PXM577,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid161Family.sb,,3-D Family,,1.61,Nonki Takahashi,836,Init InitHen InitChick DrawBlock CalcColors CalcVertex DrawCuboid DrawVoxel Map2D Color_HSLtoRGB Color_Blacken Color_Whiten Color_ColorToRGB Color_NameToColor Color_Value Color_ColortoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid16Hen.sb,,3-D Hen,,1.6,Nonki Takahashi,768,Init DrawBlock CalcColors CalcVertex DrawCuboid DrawVoxel Map2D Color_HSLtoRGB Color_Blacken Color_Whiten Color_ColorToRGB Color_NameToColor Color_Value Color_ColortoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
PXM577,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCuboid17Family2.sb,,3-D Family 2,,1.7,Nonki Takahashi,836,Init InitSpotBilledDuck InitChick DrawBlock CalcColors CalcVertex DrawCuboid DrawVoxel Map2D Color_HSLtoRGB Color_Blacken Color_Whiten Color_ColorToRGB Color_NameToColor Color_Value Color_ColortoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawCurve02.sb,,Draw Dragon,2017-04-18,0.2,Nonki Takahashi,385,Cubic Form DrawGrid CalcSize DrawCubicBezier GetPoint GetPoints OnMouseDown ShowInstruction DrawCross DrawCircle Color_PercentToRGB Color_ColorToRGB Colors_Init Math_Hex2Dec,
KWD991-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawDice.sb,,3-D Dice,2016-09-03,0.2,Nonki Takahashi,198,Init OnKeyDown DrawDice FillTriangle Mapping,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawEggCurve.sb,,Draw Egg Curve,,,Nonki Takahashi,44,,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawFace.sb,,,,,,16,,
GXB625,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawFaces.sb,,Emoticons,,,,52,Init,
LRJ038,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawFish.sb,,Fish,,0.1,Nonki Takahashi,120,Init DrawGrid DrawTriangle DrawLine DrawEllipse,
FMT726,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawFrog.sb,,Frog,,0.1,Nonki Takahashi,69,DrawLine DrawEllipse,
FMT726-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawFrog02.sb,,Frog,,0.2,Nonki Takahashi,74,DrawLine DrawEllipse,
FKC951,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawGingkoLeaf.sb,,Draw Ginkgo Leaf,,,Nonki Takahashi,45,Init,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawKanji.sb,,Draw Kanji,2016-11-28,0.1a,Nonki Takahashi,69,Init DrawKanji DrawLeaf,
DBD871,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawKumiko.sb,,Draw Kumiko,2017-03-15,0.1,Nonki Takahashi,55,DrawAsanoha DrawDiamond,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawLeaf.sb,,Draw Leaf,,,Nonki Takahashi,22,Init,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawPeafowl.sb,,Draw Peafowl,,,,112,Init DrawFeather DrawEyeSpot,
JLP150,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawQuilt.sb,,Draw Quilt,,0.1,Nonki Takahashi,28,DrawPattern100,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawRapeseed.sb,,Rapeseed,,,Nonki Takahashi,71,Init DrawRapeSeed DrawFlower,
JMN410,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawRoundRect.sb,,Draw and Fill Round Rectangle,,,Nonki Takahashi,94,DrawRoundRectangle FillRoundRectangle DrawArc FillQuadrangle,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawSelestialSphere.sb,,Draw the celestial sphere,,0.1,Nonki Takahshi,52,DrawRA DrawDE,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawSelestialSphere02.sb,,Draw the celestial sphere,,0.21,Nonki Takahshi,129,Init OnKeyDown DrawRA DrawDec DrawLine Mapping,
HFX623-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawSelestialSphere03.sb,,Draw the celestial sphere,,0.3,Nonki Takahshi,129,Init OnKeyDown DrawRA DrawDec DrawLine Mapping,
LBX119,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawSmile.sb,,Draw Smile,,0.2,Nonki Takahashi,77,DrawArc DrawGrid,
PRL427-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawSponge.sb,,Menger Sponge,,0.11,Nonki Takahashi,716,Init CalcColors CalcVertex DrawSponge DrawVoxel Map2D Color_HSLtoRGB Color_NameToRGB Color_Value Color_RGBtoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
PRL427-1,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawSponge02.sb,,Menger Sponge,2016-09-24,0.2,Nonki Takahashi,432,CalcColors CalcVertex DrawSponge DrawVoxel Init Map2D PopValues PushValues StackCube Color_Blacken Color_ColorToRGB Color_NameToColor Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawSuperEllipse.sb,,Draw Super Ellipse,,,Nonki Takahashi,71,DrawSuperEllipse,
NHB574,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawTartan.sb,,Draw Tartan,2017-03-15,0.1,Nonki Takahashi,41,DrawTartan,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawTatami.sb,,Draw Tatami,2016-08-11,0.1,Nonki Takahashi,157,Init DrawTatami,
XPF900,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawText.sb,,Draw Text / Draw Round Text,2016-07-31,0.2,Nonki Takahashi,124,Init DrawCube DrawText DrawRoundText,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\DrawTrapizoid.sb,,Mountain - Fill Trapezoid Sample,,Pilot,Nonki Takahashi,57,FillTrapezoid,
TJD054,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\FAB1.sb,,FAB1,,,Nonki Takahashi,71,Init DrawGrid,
NQR123-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\FillParallelogram.sb,,Fill Parallelogram,,0,Nonki Takahashi,31,FillParallelogram,
NZT505,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\FillPolygon01.sb,,Fill Polygon,2014-03-12,0.1,,331,_PutPoint _GetPoint _DisplayFileEnter LineAbs2 _DoMove _DoLine PolygonAbs2 _Error _Interpret _DoPolygon _FillPolygon _LoadPolygon _PolyInsert _Include _UpdateXValues _XSort _Exchange _FillScan _FillIn,
NZT505-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\FillPolygon02.sb,,Fill Polygon,2014-03-19,0.2,,360,Init FillPolygons _PutPoint _GetPoint _DisplayFileEnter LineAbs2 _DoMove _DoLine PolygonAbs2 _Error _Interpret _DoPolygon _FillPolygon _LoadPolygon _PolyInsert _Include _UpdateXValues _XSort _Exchange _FillScan _FillIn,
TCC509,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\Frog01.sb,,Frog,,0.1,Nonki Takahashi,78,OnMouseMove Init Math_CartesianToPolar,
PXM577-2,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\HappyNewYear2017.sb,,Happy New Year 2017,,1.8,Nonki Takahashi,902,CountDown Init InitHen InitChick DrawBlock CalcColors CalcVertex DrawCuboid DrawVoxel Map2D ShowCountDown Color_HSLtoRGB Color_Blacken Color_Whiten Color_ColorToRGB Color_NameToColor Color_Value Color_ColortoGray Color_RGBtoHSL Color_GrayFromLightness Colors_Init Math_Hex2Dec,
NJB522-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\MeasureAll02.sb,,Measure All Character Widths in Pixels,2016-08-08,0.2,Nonki Takahashi,154,Init OnButtonClicked Main Format Measure,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\MeasureTextWidth04.sb,,Measure Text Width in Pixels,,0.4,Nonki Takahashi,113,Init OnButtonClicked Main Measure,
GFP445-0,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\MovingDots02.sb,,Moving Dots,,0.2,,64,MoveDot Mapping,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\Pentagon.sb,,set graphics window size,,,,25,RegularPolygon,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\Polygon.sb,,set graphics window size,,,,30,RegularPolygon,
QGV368,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\SBLogo.sb,,Small Basic Logo,,,Microsoft,202,DrawLogo AddSquare GetLine AddLine RegularPolygon Color_Add Color_RGBToValues Math_Hex2Dec,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\T-Shirts.sb,,T-Shirts,,,Nonki Takahashi,38,Init DrawTShirt,
,C:\Users\Nonki\OneDrive\Documents\SmallBasic\Draw\Tao.sb,,Tao,,,,25,,