summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--changelog.md3
-rw-r--r--compiler/commands.nim2
-rw-r--r--compiler/condsyms.nim1
-rw-r--r--compiler/options.nim6
-rw-r--r--compiler/semexprs.nim5
-rw-r--r--doc/advopt.txt1
-rw-r--r--lib/nimbase.h1
-rw-r--r--lib/std/stackframes.nim30
-rw-r--r--lib/system.nim36
-rw-r--r--lib/system/exceptions.nim9
-rw-r--r--lib/system/excpt.nim24
-rw-r--r--tests/assert/tassert_c.nim2
-rw-r--r--tests/stdlib/mstackframes.nim38
-rw-r--r--tests/stdlib/tstackframes.nim34
14 files changed, 171 insertions, 21 deletions
diff --git a/changelog.md b/changelog.md
index a452965b2..42f469567 100644
--- a/changelog.md
+++ b/changelog.md
@@ -150,6 +150,9 @@ echo f
 - `net.newContext` now performs SSL Certificate checking on Linux and OSX.
   Define `nimDisableCertificateValidation` to disable it globally.
 - new syntax for lvalue references: `var b {.byaddr.} = expr` enabled by `import pragmas`
+- new module `std/stackframes`, in particular `setFrameMsg` which enables
+  custom runtime annotation of stackframes, see #13351 for examples. Turn on/off via
+  `--stackTraceMsgs:on/off`
 
 ## Language additions
 
diff --git a/compiler/commands.nim b/compiler/commands.nim
index 024e6b417..4caccd165 100644
--- a/compiler/commands.nim
+++ b/compiler/commands.nim
@@ -281,6 +281,7 @@ proc testCompileOption*(conf: ConfigRef; switch: string, info: TLineInfo): bool
   of "hints": result = contains(conf.options, optHints)
   of "threadanalysis": result = contains(conf.globalOptions, optThreadAnalysis)
   of "stacktrace": result = contains(conf.options, optStackTrace)
+  of "stacktracemsgs": result = contains(conf.options, optStackTraceMsgs)
   of "linetrace": result = contains(conf.options, optLineTrace)
   of "debugger": result = contains(conf.globalOptions, optCDebug)
   of "profiler": result = contains(conf.options, optProfiler)
@@ -531,6 +532,7 @@ proc processSwitch*(switch, arg: string, pass: TCmdLinePass, info: TLineInfo;
     if processOnOffSwitchOrList(conf, {optHints}, arg, pass, info): listHints(conf)
   of "threadanalysis": processOnOffSwitchG(conf, {optThreadAnalysis}, arg, pass, info)
   of "stacktrace": processOnOffSwitch(conf, {optStackTrace}, arg, pass, info)
+  of "stacktracemsgs": processOnOffSwitch(conf, {optStackTraceMsgs}, arg, pass, info)
   of "excessivestacktrace": processOnOffSwitchG(conf, {optExcessiveStackTrace}, arg, pass, info)
   of "linetrace": processOnOffSwitch(conf, {optLineTrace}, arg, pass, info)
   of "debugger":
diff --git a/compiler/condsyms.nim b/compiler/condsyms.nim
index da40dd2b7..b6997e6fc 100644
--- a/compiler/condsyms.nim
+++ b/compiler/condsyms.nim
@@ -114,3 +114,4 @@ proc initDefines*(symbols: StringTableRef) =
 
   defineSymbol("nimHasSinkInference")
   defineSymbol("nimNewIntegerOps")
+  defineSymbol("nimHasStacktraceMsgs")
diff --git a/compiler/options.nim b/compiler/options.nim
index b38b5a6bc..8b2523478 100644
--- a/compiler/options.nim
+++ b/compiler/options.nim
@@ -28,7 +28,9 @@ type                          # please make sure we have under 32 options
     optOverflowCheck, optNilCheck, optRefCheck,
     optNaNCheck, optInfCheck, optStaticBoundsCheck, optStyleCheck,
     optAssert, optLineDir, optWarns, optHints,
-    optOptimizeSpeed, optOptimizeSize, optStackTrace, # stack tracing support
+    optOptimizeSpeed, optOptimizeSize,
+    optStackTrace, # stack tracing support
+    optStackTraceMsgs, # enable custom runtime msgs via `setFrameMsg`
     optLineTrace,             # line tracing support (includes stack tracing)
     optByRef,                 # use pass by ref for objects
                               # (for interfacing with C)
@@ -325,7 +327,7 @@ const
 
   DefaultOptions* = {optObjCheck, optFieldCheck, optRangeCheck,
     optBoundsCheck, optOverflowCheck, optAssert, optWarns, optRefCheck,
-    optHints, optStackTrace, optLineTrace,
+    optHints, optStackTrace, optLineTrace, # consider adding `optStackTraceMsgs`
     optTrMacros, optNilCheck, optStyleCheck, optSinkInference}
   DefaultGlobalOptions* = {optThreadAnalysis,
     optExcessiveStackTrace, optListFullPaths}
diff --git a/compiler/semexprs.nim b/compiler/semexprs.nim
index c2f117efa..d6659f76b 100644
--- a/compiler/semexprs.nim
+++ b/compiler/semexprs.nim
@@ -10,6 +10,9 @@
 # this module does the semantic checking for expressions
 # included from sem.nim
 
+when defined(nimCompilerStackraceHints):
+  import std/stackframes
+
 const
   errExprXHasNoType = "expression '$1' has no type (or is ambiguous)"
   errXExpectsTypeOrValue = "'$1' expects a type or value"
@@ -2557,6 +2560,8 @@ proc shouldBeBracketExpr(n: PNode): bool =
           return true
 
 proc semExpr(c: PContext, n: PNode, flags: TExprFlags = {}): PNode =
+  when defined(nimCompilerStackraceHints):
+    setFrameMsg c.config$n.info & " " & $n.kind
   result = n
   if c.config.cmd == cmdIdeTools: suggestExpr(c, n)
   if nfSem in n.flags: return
diff --git a/doc/advopt.txt b/doc/advopt.txt
index 1ebec0f49..157208a05 100644
--- a/doc/advopt.txt
+++ b/doc/advopt.txt
@@ -92,6 +92,7 @@ Advanced options:
                             turn support for hot code reloading on|off
   --excessiveStackTrace:on|off
                             stack traces use full file paths
+  --stackTraceMsgs:on|off   enable user defined stack frame msgs via `setFrameMsg`
   --oldNewlines:on|off      turn on|off the old behaviour of "\n"
   --laxStrings:on|off       when turned on, accessing the zero terminator in
                             strings is allowed; only for backwards compatibility
diff --git a/lib/nimbase.h b/lib/nimbase.h
index eb750864a..5b0dcc2c8 100644
--- a/lib/nimbase.h
+++ b/lib/nimbase.h
@@ -489,6 +489,7 @@ struct TFrame_ {
   NCSTRING filename;
   NI16 len;
   NI16 calldepth;
+  NI frameMsgLen;
 };
 
 #define NIM_POSIX_INIT  __attribute__((constructor))
diff --git a/lib/std/stackframes.nim b/lib/std/stackframes.nim
new file mode 100644
index 000000000..dbd866536
--- /dev/null
+++ b/lib/std/stackframes.nim
@@ -0,0 +1,30 @@
+const NimStackTrace = compileOption("stacktrace")
+const NimStackTraceMsgs = compileOption("stacktraceMsgs")
+
+template procName*(): string =
+  ## returns current C/C++ function name
+  when defined(c) or defined(cpp):
+    var name {.inject.}: cstring
+    {.emit: "`name` = __func__;".}
+    $name
+
+template getPFrame*(): PFrame =
+  ## avoids a function call (unlike `getFrame()`)
+  block:
+    when NimStackTrace:
+      var framePtr {.inject.}: PFrame
+      {.emit: "`framePtr` = &FR_;".}
+      framePtr
+
+template setFrameMsg*(msg: string, prefix = " ") =
+  ## attach a msg to current `PFrame`. This can be called multiple times
+  ## in a given PFrame. Noop unless passing --stacktraceMsgs and --stacktrace
+  when NimStackTrace and NimStackTraceMsgs:
+    block:
+      var fr {.inject.}: PFrame
+      {.emit: "`fr` = &FR_;".}
+      # consider setting a custom upper limit on size (analog to stack overflow)
+      frameMsgBuf.setLen fr.frameMsgLen
+      frameMsgBuf.add prefix
+      frameMsgBuf.add msg
+      fr.frameMsgLen += prefix.len + msg.len
diff --git a/lib/system.nim b/lib/system.nim
index cd941b19f..469821fab 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -54,6 +54,23 @@ type
 
 include "system/basic_types"
 
+
+proc compileOption*(option: string): bool {.
+  magic: "CompileOption", noSideEffect.}
+  ## Can be used to determine an `on|off` compile-time option. Example:
+  ##
+  ## .. code-block:: Nim
+  ##   when compileOption("floatchecks"):
+  ##     echo "compiled with floating point NaN and Inf checks"
+
+proc compileOption*(option, arg: string): bool {.
+  magic: "CompileOptionArg", noSideEffect.}
+  ## Can be used to determine an enum compile-time option. Example:
+  ##
+  ## .. code-block:: Nim
+  ##   when compileOption("opt", "size") and compileOption("gc", "boehm"):
+  ##     echo "compiled with optimization for size and uses Boehm's GC"
+
 {.push warning[GcMem]: off, warning[Uninit]: off.}
 {.push hints: off.}
 
@@ -1040,22 +1057,6 @@ const
   # emit this flag
   # for string literals, it allows for some optimizations.
 
-proc compileOption*(option: string): bool {.
-  magic: "CompileOption", noSideEffect.}
-  ## Can be used to determine an `on|off` compile-time option. Example:
-  ##
-  ## .. code-block:: Nim
-  ##   when compileOption("floatchecks"):
-  ##     echo "compiled with floating point NaN and Inf checks"
-
-proc compileOption*(option, arg: string): bool {.
-  magic: "CompileOptionArg", noSideEffect.}
-  ## Can be used to determine an enum compile-time option. Example:
-  ##
-  ## .. code-block:: Nim
-  ##   when compileOption("opt", "size") and compileOption("gc", "boehm"):
-  ##     echo "compiled with optimization for size and uses Boehm's GC"
-
 const
   hasThreadSupport = compileOption("threads") and not defined(nimscript)
   hasSharedHeap = defined(boehmgc) or defined(gogc) # don't share heaps; every thread has its own
@@ -1891,6 +1892,7 @@ var
 type
   PFrame* = ptr TFrame  ## Represents a runtime frame of the call stack;
                         ## part of the debugger API.
+  # keep in sync with nimbase.h `struct TFrame_`
   TFrame* {.importc, nodecl, final.} = object ## The frame itself.
     prev*: PFrame       ## Previous frame; used for chaining the call stack.
     procname*: cstring  ## Name of the proc that is currently executing.
@@ -1898,6 +1900,8 @@ type
     filename*: cstring  ## Filename of the proc that is currently executing.
     len*: int16         ## Length of the inspectable slots.
     calldepth*: int16   ## Used for max call depth checking.
+    when NimStackTraceMsgs:
+      frameMsgLen*: int   ## end position in frameMsgBuf for this frame.
 
 when defined(js):
   proc add*(x: var string, y: cstring) {.asmNoStackFrame.} =
diff --git a/lib/system/exceptions.nim b/lib/system/exceptions.nim
index 3979fb66e..516de8252 100644
--- a/lib/system/exceptions.nim
+++ b/lib/system/exceptions.nim
@@ -1,3 +1,7 @@
+const NimStackTraceMsgs =
+  when defined(nimHasStacktraceMsgs): compileOption("stacktraceMsgs")
+  else: false
+
 type
   RootEffect* {.compilerproc.} = object of RootObj ## \
     ## Base effect class.
@@ -16,6 +20,11 @@ type
     procname*: cstring      ## Name of the proc that is currently executing.
     line*: int              ## Line number of the proc that is currently executing.
     filename*: cstring      ## Filename of the proc that is currently executing.
+    when NimStackTraceMsgs:
+      frameMsg*: string     ## When a stacktrace is generated in a given frame and
+                            ## rendered at a later time, we should ensure the stacktrace
+                            ## data isn't invalidated; any pointer into PFrame is
+                            ## subject to being invalidated so shouldn't be stored.
 
   Exception* {.compilerproc, magic: "Exception".} = object of RootObj ## \
     ## Base exception class.
diff --git a/lib/system/excpt.nim b/lib/system/excpt.nim
index 8ac47d26b..76d188ea6 100644
--- a/lib/system/excpt.nim
+++ b/lib/system/excpt.nim
@@ -53,6 +53,8 @@ type
     len: int
     prev: ptr GcFrameHeader
 
+when NimStackTraceMsgs:
+  var frameMsgBuf* {.threadvar.}: string
 var
   framePtr {.threadvar.}: PFrame
   excHandler {.threadvar.}: PSafePoint
@@ -224,10 +226,17 @@ proc auxWriteStackTrace(f: PFrame; s: var seq[StackTraceEntry]) =
     s[last] = StackTraceEntry(procname: it.procname,
                               line: it.line,
                               filename: it.filename)
+    when NimStackTraceMsgs:
+      let first = if it.prev == nil: 0 else: it.prev.frameMsgLen
+      if it.frameMsgLen > first:
+        s[last].frameMsg.setLen(it.frameMsgLen - first)
+        # somehow string slicing not available here
+        for i in first .. it.frameMsgLen-1:
+          s[last].frameMsg[i-first] = frameMsgBuf[i]
     it = it.prev
     dec last
 
-template addFrameEntry(s, f: untyped) =
+template addFrameEntry(s: var string, f: StackTraceEntry|PFrame) =
   var oldLen = s.len
   add(s, f.filename)
   if f.line > 0:
@@ -236,6 +245,12 @@ template addFrameEntry(s, f: untyped) =
     add(s, ')')
   for k in 1..max(1, 25-(s.len-oldLen)): add(s, ' ')
   add(s, f.procname)
+  when NimStackTraceMsgs:
+    when type(f) is StackTraceEntry:
+      add(s, f.frameMsg)
+    else:
+      var first = if f.prev == nil: 0 else: f.prev.frameMsgLen
+      for i in first..<f.frameMsgLen: add(s, frameMsgBuf[i])
   add(s, "\n")
 
 proc `$`(s: seq[StackTraceEntry]): string =
@@ -519,7 +534,12 @@ proc callDepthLimitReached() {.noinline.} =
   quit(1)
 
 proc nimFrame(s: PFrame) {.compilerRtl, inl, raises: [].} =
-  s.calldepth = if framePtr == nil: 0 else: framePtr.calldepth+1
+  if framePtr == nil:
+    s.calldepth = 0
+    when NimStackTraceMsgs: s.frameMsgLen = 0
+  else:
+    s.calldepth = framePtr.calldepth+1
+    when NimStackTraceMsgs: s.frameMsgLen = framePtr.frameMsgLen
   s.prev = framePtr
   framePtr = s
   if s.calldepth == nimCallDepthLimit: callDepthLimitReached()
diff --git a/tests/assert/tassert_c.nim b/tests/assert/tassert_c.nim
index e9e6b5192..4357e0584 100644
--- a/tests/assert/tassert_c.nim
+++ b/tests/assert/tassert_c.nim
@@ -36,4 +36,4 @@ try:
 except AssertionError:
   let e = getCurrentException()
   let trace = e.getStackTrace
-  echo tmatch(trace, expected)
+  if tmatch(trace, expected): echo true else: echo "wrong trace:\n" & trace
diff --git a/tests/stdlib/mstackframes.nim b/tests/stdlib/mstackframes.nim
new file mode 100644
index 000000000..f3daa1437
--- /dev/null
+++ b/tests/stdlib/mstackframes.nim
@@ -0,0 +1,38 @@
+import std/stackframes
+
+
+
+# line 5
+var count = 0
+
+proc main1(n: int) =
+  setFrameMsg $("main1", n)
+  if n > 0:
+    main1(n-1)
+
+proc main2(n: int) =
+  count.inc
+  setFrameMsg $("main2", n, count)
+  proc bar() =
+    setFrameMsg $("bar ",)
+    if n < 3: raise newException(CatchableError, "on purpose")
+  bar()
+  main2(n-1)
+
+proc main() =
+  var z = 0
+  setFrameMsg "\n  z: " & $z, prefix = ""
+  # multiple calls inside a frame are possible
+  z.inc
+  setFrameMsg "\n  z: " & $z, prefix = ""
+  try:
+    main2(5)
+  except CatchableError:
+    main1(10) # goes deep and then unwinds; sanity check to ensure `setFrameMsg` from inside
+              # `main1` won't invalidate the stacktrace; if StackTraceEntry.frameMsg
+              # were a reference instead of a copy, this would fail.
+    let e = getCurrentException()
+    let trace = e.getStackTrace
+    echo trace
+
+main()
diff --git a/tests/stdlib/tstackframes.nim b/tests/stdlib/tstackframes.nim
new file mode 100644
index 000000000..be66eb836
--- /dev/null
+++ b/tests/stdlib/tstackframes.nim
@@ -0,0 +1,34 @@
+import std/[strformat,os,osproc]
+import "$nim/compiler/unittest_light" # works even if moved by megatest
+
+proc main(opt: string, expected: string) =
+  const nim = getCurrentCompilerExe()
+  const file = currentSourcePath().parentDir / "mstackframes.nim"
+  let cmd = fmt"{nim} c -r --excessiveStackTrace:off --stacktraceMsgs:{opt} --hints:off {file}"
+  let (output, exitCode) = execCmdEx(cmd)
+  assertEquals output, expected
+  doAssert exitCode == 0
+
+main("on"): """
+mstackframes.nim(38)     mstackframes
+mstackframes.nim(29)     main
+  z: 0
+  z: 1
+mstackframes.nim(20)     main2 ("main2", 5, 1)
+mstackframes.nim(20)     main2 ("main2", 4, 2)
+mstackframes.nim(20)     main2 ("main2", 3, 3)
+mstackframes.nim(19)     main2 ("main2", 2, 4)
+mstackframes.nim(18)     bar ("bar ",)
+
+"""
+
+main("off"): """
+mstackframes.nim(38)     mstackframes
+mstackframes.nim(29)     main
+mstackframes.nim(20)     main2
+mstackframes.nim(20)     main2
+mstackframes.nim(20)     main2
+mstackframes.nim(19)     main2
+mstackframes.nim(18)     bar
+
+"""
le='Blame the previous revision' href='/ahoang/Nim/blame/compiler/extccomp.nim?h=devel&id=ed9c7761c4e37ec22ebd81acf16e3137d064cfc9'>^
370781b77 ^
c617479c6 ^

ca228e46b ^
1e45bb79a ^
4a2a0894a ^
c617479c6 ^
3939e674d ^
ec95d54a6 ^
c617479c6 ^




c8bebe92e ^
ec95d54a6 ^


c617479c6 ^
3939e674d ^
c617479c6 ^






da5d88f04 ^
c617479c6 ^











1e45bb79a ^

c617479c6 ^

3939e674d ^
c617479c6 ^






da5d88f04 ^
c617479c6 ^











1e45bb79a ^

c617479c6 ^

3939e674d ^
c617479c6 ^






da5d88f04 ^
c617479c6 ^











1e45bb79a ^

c617479c6 ^

3939e674d ^
c617479c6 ^






da5d88f04 ^
c617479c6 ^











1e45bb79a ^

c617479c6 ^

3939e674d ^
c617479c6 ^






da5d88f04 ^
c617479c6 ^











1e45bb79a ^

c617479c6 ^

3939e674d ^
c617479c6 ^







da5d88f04 ^
c617479c6 ^











1e45bb79a ^

c617479c6 ^

3939e674d ^
c617479c6 ^






da5d88f04 ^
c617479c6 ^











1e45bb79a ^

c617479c6 ^

df0e1a515 ^
























c8bebe92e ^
e25474154 ^
c617479c6 ^










df0e1a515 ^

e25474154 ^
8b5aa221a ^
e25474154 ^
c617479c6 ^

df0e1a515 ^
e65c296bc ^
fc9fdc2b9 ^


6a7a44bbf ^


e25474154 ^
e25474154 ^

fc9fdc2b9 ^

c617479c6 ^
03a1c3b07 ^









c8bebe92e ^
03a1c3b07 ^

2aec5b6c4 ^

e25474154 ^


03a1c3b07 ^
e25474154 ^
3939e674d ^


c8bebe92e ^

df86dc587 ^


f0dd96fa5 ^


747653911 ^









f0dd96fa5 ^

c8bebe92e ^

3939e674d ^
f0dd96fa5 ^


3939e674d ^
f0dd96fa5 ^
3939e674d ^
f0dd96fa5 ^
c8bebe92e ^
92b8fac94 ^


b226618ce ^
92b8fac94 ^
e25474154 ^
92b8fac94 ^
e25474154 ^
c8bebe92e ^
8ed3e295a ^
df86dc587 ^

b226618ce ^

df86dc587 ^
c8bebe92e ^

df86dc587 ^

2aec5b6c4 ^





c8bebe92e ^
e25474154 ^

92b8fac94 ^
92b8fac94 ^
b226618ce ^
92b8fac94 ^

e25474154 ^
c8bebe92e ^
df86dc587 ^
e25474154 ^
c8bebe92e ^
df86dc587 ^
03a1c3b07 ^


e65c296bc ^
e25474154 ^
03a1c3b07 ^

e25474154 ^
f9bd8cc98 ^
03a1c3b07 ^
f9bd8cc98 ^

62b55592e ^
f9bd8cc98 ^
03a1c3b07 ^
f9bd8cc98 ^
03a1c3b07 ^

e90665bff ^
df86dc587 ^
18b3d0429 ^

b44ee119c ^

18b3d0429 ^

bb7604c06 ^
df86dc587 ^
c8bebe92e ^
ff4a69b62 ^
c8bebe92e ^
b731e6ef1 ^
e25474154 ^
c8bebe92e ^
f0dd96fa5 ^

92b8fac94 ^
df86dc587 ^
c8bebe92e ^
f0dd96fa5 ^

92b8fac94 ^
df86dc587 ^
c8bebe92e ^
f0dd96fa5 ^

92b8fac94 ^
df86dc587 ^
6260757a2 ^






92b8fac94 ^
fc9fdc2b9 ^
c617479c6 ^
2df9b442c ^
fc9fdc2b9 ^
2aec5b6c4 ^



fc9fdc2b9 ^
c8bebe92e ^
fc9fdc2b9 ^

92b8fac94 ^
fc9fdc2b9 ^


92b8fac94 ^
fc9fdc2b9 ^


92b8fac94 ^
fc9fdc2b9 ^


8ed3e295a ^
92b8fac94 ^
8ed3e295a ^

2aec5b6c4 ^
8ed3e295a ^
92b8fac94 ^
8ed3e295a ^
92b8fac94 ^
8ed3e295a ^
428e8a0d3 ^

3939e674d ^
428e8a0d3 ^
da5d88f04 ^







e65c296bc ^
da5d88f04 ^

03a1c3b07 ^
92b8fac94 ^
03a1c3b07 ^
df0e1a515 ^










6a7a44bbf ^

df0e1a515 ^
03a1c3b07 ^
f0dd96fa5 ^
da5d88f04 ^
c8bebe92e ^
428e8a0d3 ^
e90665bff ^
e65c296bc ^
92b8fac94 ^
c8bebe92e ^
fc9fdc2b9 ^
e65c296bc ^
e25474154 ^
92b8fac94 ^
c617479c6 ^

92b8fac94 ^
c617479c6 ^
92b8fac94 ^
e65c296bc ^
e25474154 ^
da5d88f04 ^
c8bebe92e ^
03a1c3b07 ^













39cabcdd2 ^
03a1c3b07 ^
39cabcdd2 ^
03a1c3b07 ^
b226618ce ^
e65c296bc ^
e25474154 ^
92b8fac94 ^
03a1c3b07 ^
e65c296bc ^
b226618ce ^
e65c296bc ^
39cabcdd2 ^
e25474154 ^
03a1c3b07 ^
188bba2b3 ^
03a1c3b07 ^
188bba2b3 ^


03a1c3b07 ^
8281bd9f0 ^
03a1c3b07 ^
08680cfeb ^


03a1c3b07 ^

2f43fdb83 ^
62b55592e ^

8281bd9f0 ^
62b55592e ^
8281bd9f0 ^

c8bebe92e ^
62b55592e ^

8281bd9f0 ^

0c49ee25a ^




8281bd9f0 ^
0c49ee25a ^
03a1c3b07 ^

0c49ee25a ^
03a1c3b07 ^






c8bebe92e ^
e90665bff ^
03a1c3b07 ^
679aefd89 ^
c8bebe92e ^
39049e151 ^

e25474154 ^
aedafb997 ^

b99f3743e ^







aedafb997 ^






















843ae830d ^


aedafb997 ^












2df9b442c ^
c8bebe92e ^
843ae830d ^
c8bebe92e ^
e25474154 ^

aedafb997 ^
39049e151 ^
e25474154 ^
679aefd89 ^
06c32aab2 ^

ded575329 ^


ded575329 ^
08843c667 ^

03a1c3b07 ^
c8bebe92e ^
e25474154 ^

c8bebe92e ^

703633bf0 ^
bb7604c06 ^
06c32aab2 ^
ded575329 ^

06c32aab2 ^
ded575329 ^

06c32aab2 ^
ded575329 ^

b7d190174 ^

bb7604c06 ^
d0f7db082 ^
e25474154 ^
03a1c3b07 ^
e25474154 ^
c617479c6 ^
6260757a2 ^
e90665bff ^
39cabcdd2 ^
92b8fac94 ^
e25474154 ^
03a1c3b07 ^

904654b9e ^
c617479c6 ^
aedafb997 ^
679aefd89 ^
18b3d0429 ^
b43d5148c ^
c617479c6 ^
e25474154 ^
c617479c6 ^
39049e151 ^

92b8fac94 ^
e25474154 ^
aedafb997 ^




5c08ca7ed ^





aedafb997 ^
03a1c3b07 ^




aedafb997 ^
03a1c3b07 ^
aedafb997 ^

03a1c3b07 ^

aedafb997 ^

























aedafb997 ^

03a1c3b07 ^

aedafb997 ^





03a1c3b07 ^


e25474154 ^
c8bebe92e ^

39049e151 ^

39049e151 ^

c8bebe92e ^
39049e151 ^
c8bebe92e ^
b226618ce ^
8ed3e295a ^
39049e151 ^

c8bebe92e ^
39049e151 ^
2df9b442c ^
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