Add files using upload-large-folder tool
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- micromamba_root/Library/lib/dde1.4/pkgIndex.tcl +12 -0
- micromamba_root/Library/lib/dde1.4/tcldde14.dll +0 -0
- micromamba_root/Library/lib/itcl4.2.3/itcl.tcl +151 -0
- micromamba_root/Library/lib/itcl4.2.3/itclHullCmds.tcl +562 -0
- micromamba_root/Library/lib/itcl4.2.3/itclWidget.tcl +447 -0
- micromamba_root/Library/lib/itcl4.2.3/itclstub423.lib +0 -0
- micromamba_root/Library/lib/itcl4.2.3/pkgIndex.tcl +14 -0
- micromamba_root/Library/lib/itcl4.2.3/test_Itcl_CreateObject.tcl +26 -0
- micromamba_root/Library/lib/nmake/nmakehlp.c +815 -0
- micromamba_root/Library/lib/nmake/rules.vc +1887 -0
- micromamba_root/Library/lib/nmake/targets.vc +98 -0
- micromamba_root/Library/lib/nmake/tcl.nmake +4 -0
- micromamba_root/Library/lib/nmake/x86_64-w64-mingw32-nmakehlp.exe +0 -0
- micromamba_root/Library/lib/pkgconfig/libcrypto.pc +11 -0
- micromamba_root/Library/lib/pkgconfig/libffi.pc +11 -0
- micromamba_root/Library/lib/pkgconfig/libpcre.pc +13 -0
- micromamba_root/Library/lib/pkgconfig/libpcrecpp.pc +12 -0
- micromamba_root/Library/lib/pkgconfig/libpcreposix.pc +13 -0
- micromamba_root/Library/lib/pkgconfig/libssl.pc +11 -0
- micromamba_root/Library/lib/pkgconfig/libzstd.pc +16 -0
- micromamba_root/Library/lib/pkgconfig/openssl.pc +9 -0
- micromamba_root/Library/lib/pkgconfig/tinyxml2.pc +10 -0
- micromamba_root/Library/lib/reg1.3/pkgIndex.tcl +9 -0
- micromamba_root/Library/lib/reg1.3/tclreg13.dll +0 -0
- micromamba_root/Library/lib/sqlite3.40.0/pkgIndex.tcl +5 -0
- micromamba_root/Library/lib/sqlite3.40.0/sqlite3.n +15 -0
- micromamba_root/Library/lib/tcl8.6/auto.tcl +648 -0
- micromamba_root/Library/lib/tcl8.6/clock.tcl +0 -0
- micromamba_root/Library/lib/tcl8.6/encoding/ascii.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/big5.enc +1516 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cns11643.enc +1584 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp1250.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp1251.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp1252.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp1253.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp1254.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp1255.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp1256.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp1257.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp1258.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp437.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp737.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp775.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp850.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp852.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp855.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp857.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp860.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp861.enc +20 -0
- micromamba_root/Library/lib/tcl8.6/encoding/cp862.enc +20 -0
micromamba_root/Library/lib/dde1.4/pkgIndex.tcl
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
if {[info sharedlibextension] != ".dll"} return
|
| 2 |
+
if {[package vsatisfies [package provide Tcl] 9.0-]} {
|
| 3 |
+
package ifneeded dde 1.4.4 \
|
| 4 |
+
[list load [file join $dir tcl9dde14.dll] Dde]
|
| 5 |
+
} elseif {![package vsatisfies [package provide Tcl] 8.7]
|
| 6 |
+
&& [::tcl::pkgconfig get debug]} {
|
| 7 |
+
package ifneeded dde 1.4.4 \
|
| 8 |
+
[list load [file join $dir tcldde14g.dll] Dde]
|
| 9 |
+
} else {
|
| 10 |
+
package ifneeded dde 1.4.4 \
|
| 11 |
+
[list load [file join $dir tcldde14.dll] Dde]
|
| 12 |
+
}
|
micromamba_root/Library/lib/dde1.4/tcldde14.dll
ADDED
|
Binary file (26.6 kB). View file
|
|
|
micromamba_root/Library/lib/itcl4.2.3/itcl.tcl
ADDED
|
@@ -0,0 +1,151 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#
|
| 2 |
+
# itcl.tcl
|
| 3 |
+
# ----------------------------------------------------------------------
|
| 4 |
+
# Invoked automatically upon startup to customize the interpreter
|
| 5 |
+
# for [incr Tcl].
|
| 6 |
+
# ----------------------------------------------------------------------
|
| 7 |
+
# AUTHOR: Michael J. McLennan
|
| 8 |
+
# Bell Labs Innovations for Lucent Technologies
|
| 9 |
+
# mmclennan@lucent.com
|
| 10 |
+
# http://www.tcltk.com/itcl
|
| 11 |
+
# ----------------------------------------------------------------------
|
| 12 |
+
# Copyright (c) 1993-1998 Lucent Technologies, Inc.
|
| 13 |
+
# ======================================================================
|
| 14 |
+
# See the file "license.terms" for information on usage and
|
| 15 |
+
# redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
| 16 |
+
|
| 17 |
+
proc ::itcl::delete_helper { name args } {
|
| 18 |
+
::itcl::delete object $name
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
# ----------------------------------------------------------------------
|
| 22 |
+
# USAGE: local <className> <objName> ?<arg> <arg>...?
|
| 23 |
+
#
|
| 24 |
+
# Creates a new object called <objName> in class <className>, passing
|
| 25 |
+
# the remaining <arg>'s to the constructor. Unlike the usual
|
| 26 |
+
# [incr Tcl] objects, however, an object created by this procedure
|
| 27 |
+
# will be automatically deleted when the local call frame is destroyed.
|
| 28 |
+
# This command is useful for creating objects that should only remain
|
| 29 |
+
# alive until a procedure exits.
|
| 30 |
+
# ----------------------------------------------------------------------
|
| 31 |
+
proc ::itcl::local {class name args} {
|
| 32 |
+
set ptr [uplevel [list $class $name] $args]
|
| 33 |
+
uplevel [list set itcl-local-$ptr $ptr]
|
| 34 |
+
set cmd [uplevel namespace which -command $ptr]
|
| 35 |
+
uplevel [list trace variable itcl-local-$ptr u \
|
| 36 |
+
"::itcl::delete_helper $cmd"]
|
| 37 |
+
return $ptr
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
# ----------------------------------------------------------------------
|
| 41 |
+
# auto_mkindex
|
| 42 |
+
# ----------------------------------------------------------------------
|
| 43 |
+
# Define Itcl commands that will be recognized by the auto_mkindex
|
| 44 |
+
# parser in Tcl...
|
| 45 |
+
#
|
| 46 |
+
|
| 47 |
+
#
|
| 48 |
+
# USAGE: itcl::class name body
|
| 49 |
+
# Adds an entry for the given class declaration.
|
| 50 |
+
#
|
| 51 |
+
foreach __cmd {itcl::class class itcl::type type ictl::widget widget itcl::widgetadaptor widgetadaptor itcl::extendedclass extendedclass} {
|
| 52 |
+
auto_mkindex_parser::command $__cmd {name body} {
|
| 53 |
+
variable index
|
| 54 |
+
variable scriptFile
|
| 55 |
+
append index "set [list auto_index([fullname $name])]"
|
| 56 |
+
append index " \[list source \[file join \$dir [list $scriptFile]\]\]\n"
|
| 57 |
+
|
| 58 |
+
variable parser
|
| 59 |
+
variable contextStack
|
| 60 |
+
set contextStack [linsert $contextStack 0 $name]
|
| 61 |
+
$parser eval $body
|
| 62 |
+
set contextStack [lrange $contextStack 1 end]
|
| 63 |
+
}
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
#
|
| 67 |
+
# USAGE: itcl::body name arglist body
|
| 68 |
+
# Adds an entry for the given method/proc body.
|
| 69 |
+
#
|
| 70 |
+
foreach __cmd {itcl::body body} {
|
| 71 |
+
auto_mkindex_parser::command $__cmd {name arglist body} {
|
| 72 |
+
variable index
|
| 73 |
+
variable scriptFile
|
| 74 |
+
append index "set [list auto_index([fullname $name])]"
|
| 75 |
+
append index " \[list source \[file join \$dir [list $scriptFile]\]\]\n"
|
| 76 |
+
}
|
| 77 |
+
}
|
| 78 |
+
|
| 79 |
+
#
|
| 80 |
+
# USAGE: itcl::configbody name arglist body
|
| 81 |
+
# Adds an entry for the given method/proc body.
|
| 82 |
+
#
|
| 83 |
+
foreach __cmd {itcl::configbody configbody} {
|
| 84 |
+
auto_mkindex_parser::command $__cmd {name body} {
|
| 85 |
+
variable index
|
| 86 |
+
variable scriptFile
|
| 87 |
+
append index "set [list auto_index([fullname $name])]"
|
| 88 |
+
append index " \[list source \[file join \$dir [list $scriptFile]\]\]\n"
|
| 89 |
+
}
|
| 90 |
+
}
|
| 91 |
+
|
| 92 |
+
#
|
| 93 |
+
# USAGE: ensemble name ?body?
|
| 94 |
+
# Adds an entry to the auto index list for the given ensemble name.
|
| 95 |
+
#
|
| 96 |
+
foreach __cmd {itcl::ensemble ensemble} {
|
| 97 |
+
auto_mkindex_parser::command $__cmd {name {body ""}} {
|
| 98 |
+
variable index
|
| 99 |
+
variable scriptFile
|
| 100 |
+
append index "set [list auto_index([fullname $name])]"
|
| 101 |
+
append index " \[list source \[file join \$dir [list $scriptFile]\]\]\n"
|
| 102 |
+
}
|
| 103 |
+
}
|
| 104 |
+
|
| 105 |
+
#
|
| 106 |
+
# USAGE: public arg ?arg arg...?
|
| 107 |
+
# protected arg ?arg arg...?
|
| 108 |
+
# private arg ?arg arg...?
|
| 109 |
+
#
|
| 110 |
+
# Evaluates the arguments as commands, so we can recognize proc
|
| 111 |
+
# declarations within classes.
|
| 112 |
+
#
|
| 113 |
+
foreach __cmd {public protected private} {
|
| 114 |
+
auto_mkindex_parser::command $__cmd {args} {
|
| 115 |
+
variable parser
|
| 116 |
+
$parser eval $args
|
| 117 |
+
}
|
| 118 |
+
}
|
| 119 |
+
|
| 120 |
+
# SF bug #246 unset variable __cmd to avoid problems in user programs!!
|
| 121 |
+
unset __cmd
|
| 122 |
+
|
| 123 |
+
# ----------------------------------------------------------------------
|
| 124 |
+
# auto_import
|
| 125 |
+
# ----------------------------------------------------------------------
|
| 126 |
+
# This procedure overrides the usual "auto_import" function in the
|
| 127 |
+
# Tcl library. It is invoked during "namespace import" to make see
|
| 128 |
+
# if the imported commands reside in an autoloaded library. If so,
|
| 129 |
+
# stubs are created to represent the commands. Executing a stub
|
| 130 |
+
# later on causes the real implementation to be autoloaded.
|
| 131 |
+
#
|
| 132 |
+
# Arguments -
|
| 133 |
+
# pattern The pattern of commands being imported (like "foo::*")
|
| 134 |
+
# a canonical namespace as returned by [namespace current]
|
| 135 |
+
|
| 136 |
+
proc auto_import {pattern} {
|
| 137 |
+
global auto_index
|
| 138 |
+
|
| 139 |
+
set ns [uplevel namespace current]
|
| 140 |
+
set patternList [auto_qualify $pattern $ns]
|
| 141 |
+
|
| 142 |
+
auto_load_index
|
| 143 |
+
|
| 144 |
+
foreach pattern $patternList {
|
| 145 |
+
foreach name [array names auto_index $pattern] {
|
| 146 |
+
if {"" == [info commands $name]} {
|
| 147 |
+
::itcl::import::stub create $name
|
| 148 |
+
}
|
| 149 |
+
}
|
| 150 |
+
}
|
| 151 |
+
}
|
micromamba_root/Library/lib/itcl4.2.3/itclHullCmds.tcl
ADDED
|
@@ -0,0 +1,562 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#
|
| 2 |
+
# itclHullCmds.tcl
|
| 3 |
+
# ----------------------------------------------------------------------
|
| 4 |
+
# Invoked automatically upon startup to customize the interpreter
|
| 5 |
+
# for [incr Tcl] when one of setupcomponent or createhull is called.
|
| 6 |
+
# ----------------------------------------------------------------------
|
| 7 |
+
# AUTHOR: Arnulf P. Wiedemann
|
| 8 |
+
#
|
| 9 |
+
# ----------------------------------------------------------------------
|
| 10 |
+
# Copyright (c) 2008 Arnulf P. Wiedemann
|
| 11 |
+
# ======================================================================
|
| 12 |
+
# See the file "license.terms" for information on usage and
|
| 13 |
+
# redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
| 14 |
+
|
| 15 |
+
package require Tk 8.6
|
| 16 |
+
|
| 17 |
+
namespace eval ::itcl::internal::commands {
|
| 18 |
+
|
| 19 |
+
# ======================= widgetDeleted ===========================
|
| 20 |
+
|
| 21 |
+
proc widgetDeleted {oldName newName op} {
|
| 22 |
+
# The widget is beeing deleted, so we have to delete the object
|
| 23 |
+
# which had the widget as itcl_hull too!
|
| 24 |
+
# We have to get the real name from for example
|
| 25 |
+
# ::itcl::internal::widgets::hull1.lw
|
| 26 |
+
# we need only .lw here
|
| 27 |
+
|
| 28 |
+
#puts stderr "widgetDeleted!$oldName!$newName!$op!"
|
| 29 |
+
set cmdName [namespace tail $oldName]
|
| 30 |
+
set flds [split $cmdName {.}]
|
| 31 |
+
set cmdName .[join [lrange $flds 1 end] {.}]
|
| 32 |
+
#puts stderr "DELWIDGET![namespace current]!$cmdName![::info command $cmdName]!"
|
| 33 |
+
rename $cmdName {}
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
namespace eval ::itcl::builtin {
|
| 39 |
+
|
| 40 |
+
# ======================= createhull ===========================
|
| 41 |
+
# the hull widget is a tk widget which is the (mega) widget handled behind the itcl
|
| 42 |
+
# extendedclass/itcl widget.
|
| 43 |
+
# It is created be renaming the itcl class object to a temporary name <itcl object name>_
|
| 44 |
+
# creating the widget with the
|
| 45 |
+
# appropriate options and the installing that as the "hull" widget (the container)
|
| 46 |
+
# All the options in args and the options delegated to component itcl_hull are used
|
| 47 |
+
# Then a unique name (hull_widget_name) in the itcl namespace is created for widget:
|
| 48 |
+
# ::itcl::internal::widgets::hull<unique number><namespace tail path>
|
| 49 |
+
# and widget is renamed to that name
|
| 50 |
+
# Finally the <itcl object name>_ is renamed to the original <itcl object name> again
|
| 51 |
+
# Component itcl_hull is created if not existent
|
| 52 |
+
# itcl_hull is set to the hull_widget_name and the <itcl object name>
|
| 53 |
+
# is returned to the caller
|
| 54 |
+
# ==============================================================
|
| 55 |
+
|
| 56 |
+
proc createhull {widget_type path args} {
|
| 57 |
+
variable hullCount
|
| 58 |
+
upvar this this
|
| 59 |
+
upvar win win
|
| 60 |
+
|
| 61 |
+
|
| 62 |
+
#puts stderr "il-1![::info level -1]!$this!"
|
| 63 |
+
#puts stderr "createhull!$widget_type!$path!$args!$this![::info command $this]!"
|
| 64 |
+
#puts stderr "ns1![uplevel 1 namespace current]!"
|
| 65 |
+
#puts stderr "ns2![uplevel 2 namespace current]!"
|
| 66 |
+
#puts stderr "ns3![uplevel 3 namespace current]!"
|
| 67 |
+
#puts stderr "level-1![::info level -1]!"
|
| 68 |
+
#puts stderr "level-2![::info level -2]!"
|
| 69 |
+
# set my_this [namespace tail $this]
|
| 70 |
+
set my_this $this
|
| 71 |
+
set tmp $my_this
|
| 72 |
+
#puts stderr "II![::info command $this]![::info command $tmp]!"
|
| 73 |
+
#puts stderr "rename1!rename $my_this ${tmp}_!"
|
| 74 |
+
rename ::$my_this ${tmp}_
|
| 75 |
+
set options [list]
|
| 76 |
+
foreach {option_name value} $args {
|
| 77 |
+
switch -glob -- $option_name {
|
| 78 |
+
-class {
|
| 79 |
+
lappend options $option_name [namespace tail $value]
|
| 80 |
+
}
|
| 81 |
+
-* {
|
| 82 |
+
lappend options $option_name $value
|
| 83 |
+
}
|
| 84 |
+
default {
|
| 85 |
+
return -code error "bad option name\"$option_name\" options must start with a \"-\""
|
| 86 |
+
}
|
| 87 |
+
}
|
| 88 |
+
}
|
| 89 |
+
set my_win [namespace tail $path]
|
| 90 |
+
set cmd [list $widget_type $my_win]
|
| 91 |
+
#puts stderr "my_win!$my_win!cmd!$cmd!$path!"
|
| 92 |
+
if {[llength $options] > 0} {
|
| 93 |
+
lappend cmd {*}$options
|
| 94 |
+
}
|
| 95 |
+
set widget [uplevel 1 $cmd]
|
| 96 |
+
#puts stderr "widget!$widget!"
|
| 97 |
+
trace add command $widget delete ::itcl::internal::commands::widgetDeleted
|
| 98 |
+
set opts [uplevel 1 info delegated options]
|
| 99 |
+
foreach entry $opts {
|
| 100 |
+
foreach {optName compName} $entry break
|
| 101 |
+
if {$compName eq "itcl_hull"} {
|
| 102 |
+
set optInfos [uplevel 1 info delegated option $optName]
|
| 103 |
+
set realOptName [lindex $optInfos 4]
|
| 104 |
+
# strip off the "-" at the beginning
|
| 105 |
+
set myOptName [string range $realOptName 1 end]
|
| 106 |
+
set my_opt_val [option get $my_win $myOptName *]
|
| 107 |
+
if {$my_opt_val ne ""} {
|
| 108 |
+
$my_win configure -$myOptName $my_opt_val
|
| 109 |
+
}
|
| 110 |
+
}
|
| 111 |
+
}
|
| 112 |
+
set idx 1
|
| 113 |
+
while {1} {
|
| 114 |
+
set widgetName ::itcl::internal::widgets::hull${idx}$my_win
|
| 115 |
+
#puts stderr "widgetName!$widgetName!"
|
| 116 |
+
if {[string length [::info command $widgetName]] == 0} {
|
| 117 |
+
break
|
| 118 |
+
}
|
| 119 |
+
incr idx
|
| 120 |
+
}
|
| 121 |
+
#puts stderr "rename2!rename $widget $widgetName!"
|
| 122 |
+
set dorename 0
|
| 123 |
+
rename $widget $widgetName
|
| 124 |
+
#puts stderr "rename3!rename ${tmp}_ $tmp![::info command ${tmp}_]!my_this!$my_this!"
|
| 125 |
+
rename ${tmp}_ ::$tmp
|
| 126 |
+
set exists [uplevel 1 ::info exists itcl_hull]
|
| 127 |
+
if {!$exists} {
|
| 128 |
+
# that does not yet work, beacause of problems with resolving
|
| 129 |
+
::itcl::addcomponent $my_this itcl_hull
|
| 130 |
+
}
|
| 131 |
+
upvar itcl_hull itcl_hull
|
| 132 |
+
::itcl::setcomponent $my_this itcl_hull $widgetName
|
| 133 |
+
#puts stderr "IC![::info command $my_win]!"
|
| 134 |
+
set exists [uplevel 1 ::info exists itcl_interior]
|
| 135 |
+
if {!$exists} {
|
| 136 |
+
# that does not yet work, beacause of problems with resolving
|
| 137 |
+
::itcl::addcomponent $this itcl_interior
|
| 138 |
+
}
|
| 139 |
+
upvar itcl_interior itcl_interior
|
| 140 |
+
set itcl_interior $my_win
|
| 141 |
+
#puts stderr "hull end!win!$win!itcl_hull!$itcl_hull!itcl_interior!$itcl_interior!"
|
| 142 |
+
return $my_win
|
| 143 |
+
}
|
| 144 |
+
|
| 145 |
+
# ======================= addToItclOptions ===========================
|
| 146 |
+
|
| 147 |
+
proc addToItclOptions {my_class my_win myOptions argsDict} {
|
| 148 |
+
upvar win win
|
| 149 |
+
upvar itcl_hull itcl_hull
|
| 150 |
+
|
| 151 |
+
set opt_lst [list configure]
|
| 152 |
+
foreach opt [lsort $myOptions] {
|
| 153 |
+
#puts stderr "IOPT!$opt!$my_class!$my_win![::itcl::is class $my_class]!"
|
| 154 |
+
set isClass [::itcl::is class $my_class]
|
| 155 |
+
set found 0
|
| 156 |
+
if {$isClass} {
|
| 157 |
+
if {[catch {
|
| 158 |
+
set resource [namespace eval $my_class info option $opt -resource]
|
| 159 |
+
set class [namespace eval $my_class info option $opt -class]
|
| 160 |
+
set default_val [uplevel 2 info option $opt -default]
|
| 161 |
+
set found 1
|
| 162 |
+
} msg]} {
|
| 163 |
+
# puts stderr "MSG!$opt!$my_class!$msg!"
|
| 164 |
+
}
|
| 165 |
+
} else {
|
| 166 |
+
set tmp_win [uplevel #0 $my_class .___xx]
|
| 167 |
+
|
| 168 |
+
set my_info [$tmp_win configure $opt]
|
| 169 |
+
set resource [lindex $my_info 1]
|
| 170 |
+
set class [lindex $my_info 2]
|
| 171 |
+
set default_val [lindex $my_info 3]
|
| 172 |
+
uplevel #0 destroy $tmp_win
|
| 173 |
+
set found 1
|
| 174 |
+
}
|
| 175 |
+
if {$found} {
|
| 176 |
+
if {[catch {
|
| 177 |
+
set val [uplevel #0 ::option get $win $resource $class]
|
| 178 |
+
} msg]} {
|
| 179 |
+
set val ""
|
| 180 |
+
}
|
| 181 |
+
if {[::dict exists $argsDict $opt]} {
|
| 182 |
+
# we have an explicitly set option
|
| 183 |
+
set val [::dict get $argsDict $opt]
|
| 184 |
+
} else {
|
| 185 |
+
if {[string length $val] == 0} {
|
| 186 |
+
set val $default_val
|
| 187 |
+
}
|
| 188 |
+
}
|
| 189 |
+
set ::itcl::internal::variables::${my_win}::itcl_options($opt) $val
|
| 190 |
+
set ::itcl::internal::variables::${my_win}::__itcl_option_infos($opt) [list $resource $class $default_val]
|
| 191 |
+
#puts stderr "OPT1!$opt!$val!"
|
| 192 |
+
# uplevel 1 [list set itcl_options($opt) [list $val]]
|
| 193 |
+
if {[catch {uplevel 1 $win configure $opt [list $val]} msg]} {
|
| 194 |
+
#puts stderr "addToItclOptions ERR!$msg!$my_class!$win!configure!$opt!$val!"
|
| 195 |
+
}
|
| 196 |
+
}
|
| 197 |
+
}
|
| 198 |
+
}
|
| 199 |
+
|
| 200 |
+
# ======================= setupcomponent ===========================
|
| 201 |
+
|
| 202 |
+
proc setupcomponent {comp using widget_type path args} {
|
| 203 |
+
upvar this this
|
| 204 |
+
upvar win win
|
| 205 |
+
upvar itcl_hull itcl_hull
|
| 206 |
+
|
| 207 |
+
#puts stderr "setupcomponent!$comp!$widget_type!$path!$args!$this!$win!$itcl_hull!"
|
| 208 |
+
#puts stderr "CONT![uplevel 1 info context]!"
|
| 209 |
+
#puts stderr "ns1![uplevel 1 namespace current]!"
|
| 210 |
+
#puts stderr "ns2![uplevel 2 namespace current]!"
|
| 211 |
+
#puts stderr "ns3![uplevel 3 namespace current]!"
|
| 212 |
+
set my_comp_object [lindex [uplevel 1 info context] 1]
|
| 213 |
+
if {[::info exists ::itcl::internal::component_objects($my_comp_object)]} {
|
| 214 |
+
set my_comp_object [set ::itcl::internal::component_objects($my_comp_object)]
|
| 215 |
+
} else {
|
| 216 |
+
set ::itcl::internal::component_objects($path) $my_comp_object
|
| 217 |
+
}
|
| 218 |
+
set options [list]
|
| 219 |
+
foreach {option_name value} $args {
|
| 220 |
+
switch -glob -- $option_name {
|
| 221 |
+
-* {
|
| 222 |
+
lappend options $option_name $value
|
| 223 |
+
}
|
| 224 |
+
default {
|
| 225 |
+
return -code error "bad option name\"$option_name\" options must start with a \"-\""
|
| 226 |
+
}
|
| 227 |
+
}
|
| 228 |
+
}
|
| 229 |
+
if {[llength $args]} {
|
| 230 |
+
set argsDict [dict create {*}$args]
|
| 231 |
+
} else {
|
| 232 |
+
set argsDict [dict create]
|
| 233 |
+
}
|
| 234 |
+
set cmd [list $widget_type $path]
|
| 235 |
+
if {[llength $options] > 0} {
|
| 236 |
+
lappend cmd {*}$options
|
| 237 |
+
}
|
| 238 |
+
#puts stderr "cmd0![::info command $widget_type]!$path![::info command $path]!"
|
| 239 |
+
#puts stderr "cmd1!$cmd!"
|
| 240 |
+
# set my_comp [uplevel 3 $cmd]
|
| 241 |
+
set my_comp [uplevel #0 $cmd]
|
| 242 |
+
#puts stderr 111![::info command $path]!
|
| 243 |
+
::itcl::setcomponent $this $comp $my_comp
|
| 244 |
+
set opts [uplevel 1 info delegated options]
|
| 245 |
+
foreach entry $opts {
|
| 246 |
+
foreach {optName compName} $entry break
|
| 247 |
+
if {$compName eq $my_comp} {
|
| 248 |
+
set optInfos [uplevel 1 info delegated option $optName]
|
| 249 |
+
set realOptName [lindex $optInfos 4]
|
| 250 |
+
# strip off the "-" at the beginning
|
| 251 |
+
set myOptName [string range $realOptName 1 end]
|
| 252 |
+
set my_opt_val [option get $my_win $myOptName *]
|
| 253 |
+
if {$my_opt_val ne ""} {
|
| 254 |
+
$my_comp configure -$myOptName $my_opt_val
|
| 255 |
+
}
|
| 256 |
+
}
|
| 257 |
+
}
|
| 258 |
+
set my_class $widget_type
|
| 259 |
+
set my_parent_class [uplevel 1 namespace current]
|
| 260 |
+
if {[catch {
|
| 261 |
+
set myOptions [namespace eval $my_class {info classoptions}]
|
| 262 |
+
} msg]} {
|
| 263 |
+
set myOptions [list]
|
| 264 |
+
}
|
| 265 |
+
foreach entry [$path configure] {
|
| 266 |
+
foreach {opt dummy1 dummy2 dummy3} $entry break
|
| 267 |
+
lappend myOptions $opt
|
| 268 |
+
}
|
| 269 |
+
#puts stderr "OPTS!$myOptions!"
|
| 270 |
+
addToItclOptions $widget_type $my_comp_object $myOptions $argsDict
|
| 271 |
+
#puts stderr END!$path![::info command $path]!
|
| 272 |
+
}
|
| 273 |
+
|
| 274 |
+
proc itcl_initoptions {args} {
|
| 275 |
+
puts stderr "ITCL_INITOPT!$args!"
|
| 276 |
+
}
|
| 277 |
+
|
| 278 |
+
# ======================= initoptions ===========================
|
| 279 |
+
|
| 280 |
+
proc initoptions {args} {
|
| 281 |
+
upvar win win
|
| 282 |
+
upvar itcl_hull itcl_hull
|
| 283 |
+
upvar itcl_option_components itcl_option_components
|
| 284 |
+
|
| 285 |
+
#puts stderr "INITOPT!!$win!"
|
| 286 |
+
if {[llength $args]} {
|
| 287 |
+
set argsDict [dict create {*}$args]
|
| 288 |
+
} else {
|
| 289 |
+
set argsDict [dict create]
|
| 290 |
+
}
|
| 291 |
+
set my_class [uplevel 1 namespace current]
|
| 292 |
+
set myOptions [namespace eval $my_class {info classoptions}]
|
| 293 |
+
if {[dict exists $::itcl::internal::dicts::classComponents $my_class]} {
|
| 294 |
+
set class_info_dict [dict get $::itcl::internal::dicts::classComponents $my_class]
|
| 295 |
+
# set myOptions [lsort -unique [namespace eval $my_class {info options}]]
|
| 296 |
+
foreach comp [uplevel 1 info components] {
|
| 297 |
+
if {[dict exists $class_info_dict $comp -keptoptions]} {
|
| 298 |
+
foreach my_opt [dict get $class_info_dict $comp -keptoptions] {
|
| 299 |
+
if {[lsearch $myOptions $my_opt] < 0} {
|
| 300 |
+
#puts stderr "KEOPT!$my_opt!"
|
| 301 |
+
lappend myOptions $my_opt
|
| 302 |
+
}
|
| 303 |
+
}
|
| 304 |
+
}
|
| 305 |
+
}
|
| 306 |
+
} else {
|
| 307 |
+
set class_info_dict [list]
|
| 308 |
+
}
|
| 309 |
+
#puts stderr "OPTS!$win!$my_class![join [lsort $myOptions]] \n]!"
|
| 310 |
+
set opt_lst [list configure]
|
| 311 |
+
set my_win $win
|
| 312 |
+
foreach opt [lsort $myOptions] {
|
| 313 |
+
set found 0
|
| 314 |
+
if {[catch {
|
| 315 |
+
set resource [uplevel 1 info option $opt -resource]
|
| 316 |
+
set class [uplevel 1 info option $opt -class]
|
| 317 |
+
set default_val [uplevel 1 info option $opt -default]
|
| 318 |
+
set found 1
|
| 319 |
+
} msg]} {
|
| 320 |
+
# puts stderr "MSG!$opt!$msg!"
|
| 321 |
+
}
|
| 322 |
+
#puts stderr "OPT!$opt!$found!"
|
| 323 |
+
if {$found} {
|
| 324 |
+
if {[catch {
|
| 325 |
+
set val [uplevel #0 ::option get $my_win $resource $class]
|
| 326 |
+
} msg]} {
|
| 327 |
+
set val ""
|
| 328 |
+
}
|
| 329 |
+
if {[::dict exists $argsDict $opt]} {
|
| 330 |
+
# we have an explicitly set option
|
| 331 |
+
set val [::dict get $argsDict $opt]
|
| 332 |
+
} else {
|
| 333 |
+
if {[string length $val] == 0} {
|
| 334 |
+
set val $default_val
|
| 335 |
+
}
|
| 336 |
+
}
|
| 337 |
+
set ::itcl::internal::variables::${win}::itcl_options($opt) $val
|
| 338 |
+
set ::itcl::internal::variables::${win}::__itcl_option_infos($opt) [list $resource $class $default_val]
|
| 339 |
+
#puts stderr "OPT1!$opt!$val!"
|
| 340 |
+
# uplevel 1 [list set itcl_options($opt) [list $val]]
|
| 341 |
+
if {[catch {uplevel 1 $my_win configure $opt [list $val]} msg]} {
|
| 342 |
+
puts stderr "initoptions ERR!$msg!$my_class!$my_win!configure!$opt!$val!"
|
| 343 |
+
}
|
| 344 |
+
}
|
| 345 |
+
foreach comp [dict keys $class_info_dict] {
|
| 346 |
+
#puts stderr "OPT1!$opt!$comp![dict get $class_info_dict $comp]!"
|
| 347 |
+
if {[dict exists $class_info_dict $comp -keptoptions]} {
|
| 348 |
+
if {[lsearch [dict get $class_info_dict $comp -keptoptions] $opt] >= 0} {
|
| 349 |
+
if {$found == 0} {
|
| 350 |
+
# we use the option value of the first component for setting
|
| 351 |
+
# the option, as the components are traversed in the dict
|
| 352 |
+
# depending on the ordering of the component creation!!
|
| 353 |
+
set my_info [uplevel 1 \[set $comp\] configure $opt]
|
| 354 |
+
set resource [lindex $my_info 1]
|
| 355 |
+
set class [lindex $my_info 2]
|
| 356 |
+
set default_val [lindex $my_info 3]
|
| 357 |
+
set found 2
|
| 358 |
+
set val [uplevel #0 ::option get $my_win $resource $class]
|
| 359 |
+
if {[::dict exists $argsDict $opt]} {
|
| 360 |
+
# we have an explicitly set option
|
| 361 |
+
set val [::dict get $argsDict $opt]
|
| 362 |
+
} else {
|
| 363 |
+
if {[string length $val] == 0} {
|
| 364 |
+
set val $default_val
|
| 365 |
+
}
|
| 366 |
+
}
|
| 367 |
+
#puts stderr "OPT2!$opt!$val!"
|
| 368 |
+
set ::itcl::internal::variables::${win}::itcl_options($opt) $val
|
| 369 |
+
set ::itcl::internal::variables::${win}::__itcl_option_infos($opt) [list $resource $class $default_val]
|
| 370 |
+
# uplevel 1 [list set itcl_options($opt) [list $val]]
|
| 371 |
+
}
|
| 372 |
+
if {[catch {uplevel 1 \[set $comp\] configure $opt [list $val]} msg]} {
|
| 373 |
+
puts stderr "initoptions ERR2!$msg!$my_class!$comp!configure!$opt!$val!"
|
| 374 |
+
}
|
| 375 |
+
if {![uplevel 1 info exists itcl_option_components($opt)]} {
|
| 376 |
+
set itcl_option_components($opt) [list]
|
| 377 |
+
}
|
| 378 |
+
if {[lsearch [set itcl_option_components($opt)] $comp] < 0} {
|
| 379 |
+
if {![catch {
|
| 380 |
+
set optval [uplevel 1 [list set itcl_options($opt)]]
|
| 381 |
+
} msg3]} {
|
| 382 |
+
uplevel 1 \[set $comp\] configure $opt $optval
|
| 383 |
+
}
|
| 384 |
+
lappend itcl_option_components($opt) $comp
|
| 385 |
+
}
|
| 386 |
+
}
|
| 387 |
+
}
|
| 388 |
+
}
|
| 389 |
+
}
|
| 390 |
+
# uplevel 1 $opt_lst
|
| 391 |
+
}
|
| 392 |
+
|
| 393 |
+
# ======================= setoptions ===========================
|
| 394 |
+
|
| 395 |
+
proc setoptions {args} {
|
| 396 |
+
|
| 397 |
+
#puts stderr "setOPT!!$args!"
|
| 398 |
+
if {[llength $args]} {
|
| 399 |
+
set argsDict [dict create {*}$args]
|
| 400 |
+
} else {
|
| 401 |
+
set argsDict [dict create]
|
| 402 |
+
}
|
| 403 |
+
set my_class [uplevel 1 namespace current]
|
| 404 |
+
set myOptions [namespace eval $my_class {info options}]
|
| 405 |
+
#puts stderr "OPTS!$win!$my_class![join [lsort $myOptions]] \n]!"
|
| 406 |
+
set opt_lst [list configure]
|
| 407 |
+
foreach opt [lsort $myOptions] {
|
| 408 |
+
set found 0
|
| 409 |
+
if {[catch {
|
| 410 |
+
set resource [uplevel 1 info option $opt -resource]
|
| 411 |
+
set class [uplevel 1 info option $opt -class]
|
| 412 |
+
set default_val [uplevel 1 info option $opt -default]
|
| 413 |
+
set found 1
|
| 414 |
+
} msg]} {
|
| 415 |
+
# puts stderr "MSG!$opt!$msg!"
|
| 416 |
+
}
|
| 417 |
+
#puts stderr "OPT!$opt!$found!"
|
| 418 |
+
if {$found} {
|
| 419 |
+
set val ""
|
| 420 |
+
if {[::dict exists $argsDict $opt]} {
|
| 421 |
+
# we have an explicitly set option
|
| 422 |
+
set val [::dict get $argsDict $opt]
|
| 423 |
+
} else {
|
| 424 |
+
if {[string length $val] == 0} {
|
| 425 |
+
set val $default_val
|
| 426 |
+
}
|
| 427 |
+
}
|
| 428 |
+
set myObj [uplevel 1 set this]
|
| 429 |
+
#puts stderr "myObj!$myObj!"
|
| 430 |
+
set ::itcl::internal::variables::${myObj}::itcl_options($opt) $val
|
| 431 |
+
set ::itcl::internal::variables::${myObj}::__itcl_option_infos($opt) [list $resource $class $default_val]
|
| 432 |
+
#puts stderr "OPT1!$opt!$val!"
|
| 433 |
+
uplevel 1 [list set itcl_options($opt) [list $val]]
|
| 434 |
+
# if {[catch {uplevel 1 $myObj configure $opt [list $val]} msg]} {
|
| 435 |
+
#puts stderr "initoptions ERR!$msg!$my_class!$my_win!configure!$opt!$val!"
|
| 436 |
+
# }
|
| 437 |
+
}
|
| 438 |
+
}
|
| 439 |
+
# uplevel 1 $opt_lst
|
| 440 |
+
}
|
| 441 |
+
|
| 442 |
+
# ========================= keepcomponentoption ======================
|
| 443 |
+
# Invoked by Tcl during evaluating constructor whenever
|
| 444 |
+
# the "keepcomponentoption" command is invoked to list the options
|
| 445 |
+
# to be kept when an ::itcl::extendedclass component has been setup
|
| 446 |
+
# for an object.
|
| 447 |
+
#
|
| 448 |
+
# It checks, for all arguments, if the opt is an option of that class
|
| 449 |
+
# and of that component. If that is the case it adds the component name
|
| 450 |
+
# to the list of components for that option.
|
| 451 |
+
# The variable is the object variable: itcl_option_components($opt)
|
| 452 |
+
#
|
| 453 |
+
# Handles the following syntax:
|
| 454 |
+
#
|
| 455 |
+
# keepcomponentoption <componentName> <optionName> ?<optionName> ...?
|
| 456 |
+
#
|
| 457 |
+
# ======================================================================
|
| 458 |
+
|
| 459 |
+
|
| 460 |
+
proc keepcomponentoption {args} {
|
| 461 |
+
upvar win win
|
| 462 |
+
upvar itcl_hull itcl_hull
|
| 463 |
+
|
| 464 |
+
set usage "wrong # args, should be: keepcomponentoption componentName optionName ?optionName ...?"
|
| 465 |
+
|
| 466 |
+
#puts stderr "KEEP!$args![uplevel 1 namespace current]!"
|
| 467 |
+
if {[llength $args] < 2} {
|
| 468 |
+
puts stderr $usage
|
| 469 |
+
return -code error
|
| 470 |
+
}
|
| 471 |
+
set my_hull [uplevel 1 set itcl_hull]
|
| 472 |
+
set my_class [uplevel 1 namespace current]
|
| 473 |
+
set comp [lindex $args 0]
|
| 474 |
+
set args [lrange $args 1 end]
|
| 475 |
+
set class_info_dict [dict get $::itcl::internal::dicts::classComponents $my_class]
|
| 476 |
+
if {![dict exists $class_info_dict $comp]} {
|
| 477 |
+
puts stderr "keepcomponentoption cannot find component \"$comp\""
|
| 478 |
+
return -code error
|
| 479 |
+
}
|
| 480 |
+
set class_comp_dict [dict get $class_info_dict $comp]
|
| 481 |
+
if {![dict exists $class_comp_dict -keptoptions]} {
|
| 482 |
+
dict set class_comp_dict -keptoptions [list]
|
| 483 |
+
}
|
| 484 |
+
foreach opt $args {
|
| 485 |
+
#puts stderr "KEEP!$opt!"
|
| 486 |
+
if {[string range $opt 0 0] ne "-"} {
|
| 487 |
+
puts stderr "keepcomponentoption: option must begin with a \"-\"!"
|
| 488 |
+
return -code error
|
| 489 |
+
}
|
| 490 |
+
if {[lsearch [dict get $class_comp_dict -keptoptions] $opt] < 0} {
|
| 491 |
+
dict lappend class_comp_dict -keptoptions $opt
|
| 492 |
+
}
|
| 493 |
+
}
|
| 494 |
+
if {![info exists ::itcl::internal::component_objects([lindex [uplevel 1 info context] 1])]} {
|
| 495 |
+
set comp_object $::itcl::internal::component_objects([lindex [uplevel 1 info context] 1])
|
| 496 |
+
} else {
|
| 497 |
+
set comp_object "unknown_comp_obj_$comp!"
|
| 498 |
+
}
|
| 499 |
+
dict set class_info_dict $comp $class_comp_dict
|
| 500 |
+
dict set ::itcl::internal::dicts::classComponents $my_class $class_info_dict
|
| 501 |
+
puts stderr "CLDI!$class_comp_dict!"
|
| 502 |
+
addToItclOptions $my_class $comp_object $args [list]
|
| 503 |
+
}
|
| 504 |
+
|
| 505 |
+
proc ignorecomponentoption {args} {
|
| 506 |
+
puts stderr "IGNORE_COMPONENT_OPTION!$args!"
|
| 507 |
+
}
|
| 508 |
+
|
| 509 |
+
proc renamecomponentoption {args} {
|
| 510 |
+
puts stderr "rename_COMPONENT_OPTION!$args!"
|
| 511 |
+
}
|
| 512 |
+
|
| 513 |
+
proc addoptioncomponent {args} {
|
| 514 |
+
puts stderr "ADD_OPTION_COMPONENT!$args!"
|
| 515 |
+
}
|
| 516 |
+
|
| 517 |
+
proc ignoreoptioncomponent {args} {
|
| 518 |
+
puts stderr "IGNORE_OPTION_COMPONENT!$args!"
|
| 519 |
+
}
|
| 520 |
+
|
| 521 |
+
proc renameoptioncomponent {args} {
|
| 522 |
+
puts stderr "RENAME_OPTION_COMPONENT!$args!"
|
| 523 |
+
}
|
| 524 |
+
|
| 525 |
+
proc getEclassOptions {args} {
|
| 526 |
+
upvar win win
|
| 527 |
+
|
| 528 |
+
#puts stderr "getEclassOptions!$args!$win![uplevel 1 namespace current]!"
|
| 529 |
+
#parray ::itcl::internal::variables::${win}::itcl_options
|
| 530 |
+
set result [list]
|
| 531 |
+
foreach opt [array names ::itcl::internal::variables::${win}::itcl_options] {
|
| 532 |
+
if {[catch {
|
| 533 |
+
foreach {res cls def} [set ::itcl::internal::variables::${win}::__itcl_option_infos($opt)] break
|
| 534 |
+
lappend result [list $opt $res $cls $def [set ::itcl::internal::variables::${win}::itcl_options($opt)]]
|
| 535 |
+
} msg]} {
|
| 536 |
+
}
|
| 537 |
+
}
|
| 538 |
+
return $result
|
| 539 |
+
}
|
| 540 |
+
|
| 541 |
+
proc eclassConfigure {args} {
|
| 542 |
+
upvar win win
|
| 543 |
+
|
| 544 |
+
#puts stderr "+++ eclassConfigure!$args!"
|
| 545 |
+
if {[llength $args] > 1} {
|
| 546 |
+
foreach {opt val} $args break
|
| 547 |
+
if {[::info exists ::itcl::internal::variables::${win}::itcl_options($opt)]} {
|
| 548 |
+
set ::itcl::internal::variables::${win}::itcl_options($opt) $val
|
| 549 |
+
return
|
| 550 |
+
}
|
| 551 |
+
} else {
|
| 552 |
+
foreach {opt} $args break
|
| 553 |
+
if {[::info exists ::itcl::internal::variables::${win}::itcl_options($opt)]} {
|
| 554 |
+
#puts stderr "OP![set ::itcl::internal::variables::${win}::itcl_options($opt)]!"
|
| 555 |
+
foreach {res cls def} [set ::itcl::internal::variables::${win}::__itcl_option_infos($opt)] break
|
| 556 |
+
return [list $opt $res $cls $def [set ::itcl::internal::variables::${win}::itcl_options($opt)]]
|
| 557 |
+
}
|
| 558 |
+
}
|
| 559 |
+
return -code error
|
| 560 |
+
}
|
| 561 |
+
|
| 562 |
+
}
|
micromamba_root/Library/lib/itcl4.2.3/itclWidget.tcl
ADDED
|
@@ -0,0 +1,447 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#
|
| 2 |
+
# itclWidget.tcl
|
| 3 |
+
# ----------------------------------------------------------------------
|
| 4 |
+
# Invoked automatically upon startup to customize the interpreter
|
| 5 |
+
# for [incr Tcl] when one of ::itcl::widget or ::itcl::widgetadaptor is called.
|
| 6 |
+
# ----------------------------------------------------------------------
|
| 7 |
+
# AUTHOR: Arnulf P. Wiedemann
|
| 8 |
+
#
|
| 9 |
+
# ----------------------------------------------------------------------
|
| 10 |
+
# Copyright (c) 2008 Arnulf P. Wiedemann
|
| 11 |
+
# ======================================================================
|
| 12 |
+
# See the file "license.terms" for information on usage and
|
| 13 |
+
# redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
| 14 |
+
|
| 15 |
+
package require Tk 8.6
|
| 16 |
+
# package require itclwidget [set ::itcl::version]
|
| 17 |
+
|
| 18 |
+
namespace eval ::itcl {
|
| 19 |
+
|
| 20 |
+
proc widget {name args} {
|
| 21 |
+
set result [uplevel 1 ::itcl::internal::commands::genericclass widget $name $args]
|
| 22 |
+
# we handle create by owerselfs !! allow classunknown to handle that
|
| 23 |
+
oo::objdefine $result unexport create
|
| 24 |
+
return $result
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
proc widgetadaptor {name args} {
|
| 28 |
+
set result [uplevel 1 ::itcl::internal::commands::genericclass widgetadaptor $name $args]
|
| 29 |
+
# we handle create by owerselfs !! allow classunknown to handle that
|
| 30 |
+
oo::objdefine $result unexport create
|
| 31 |
+
return $result
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
} ; # end ::itcl
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
namespace eval ::itcl::internal::commands {
|
| 38 |
+
|
| 39 |
+
proc initWidgetOptions {varNsName widgetName className} {
|
| 40 |
+
set myDict [set ::itcl::internal::dicts::classOptions]
|
| 41 |
+
if {$myDict eq ""} {
|
| 42 |
+
return
|
| 43 |
+
}
|
| 44 |
+
if {![dict exists $myDict $className]} {
|
| 45 |
+
return
|
| 46 |
+
}
|
| 47 |
+
set myDict [dict get $myDict $className]
|
| 48 |
+
foreach option [dict keys $myDict] {
|
| 49 |
+
set infos [dict get $myDict $option]
|
| 50 |
+
set resource [dict get $infos -resource]
|
| 51 |
+
set class [dict get $infos -class]
|
| 52 |
+
set value [::option get $widgetName $resource $class]
|
| 53 |
+
if {$value eq ""} {
|
| 54 |
+
if {[dict exists $infos -default]} {
|
| 55 |
+
set defaultValue [dict get $infos -default]
|
| 56 |
+
uplevel 1 set ${varNsName}::itcl_options($option) $defaultValue
|
| 57 |
+
}
|
| 58 |
+
} else {
|
| 59 |
+
uplevel 1 set ${varNsName}::itcl_options($option) $value
|
| 60 |
+
}
|
| 61 |
+
}
|
| 62 |
+
}
|
| 63 |
+
|
| 64 |
+
proc initWidgetDelegatedOptions {varNsName widgetName className args} {
|
| 65 |
+
set myDict [set ::itcl::internal::dicts::classDelegatedOptions]
|
| 66 |
+
if {$myDict eq ""} {
|
| 67 |
+
return
|
| 68 |
+
}
|
| 69 |
+
if {![dict exists $myDict $className]} {
|
| 70 |
+
return
|
| 71 |
+
}
|
| 72 |
+
set myDict [dict get $myDict $className]
|
| 73 |
+
foreach option [dict keys $myDict] {
|
| 74 |
+
set infos [dict get $myDict $option]
|
| 75 |
+
if {![dict exists $infos -resource]} {
|
| 76 |
+
# this is the case when delegating "*"
|
| 77 |
+
continue
|
| 78 |
+
}
|
| 79 |
+
if {![dict exists $infos -component]} {
|
| 80 |
+
# nothing to do
|
| 81 |
+
continue
|
| 82 |
+
}
|
| 83 |
+
# check if not in the command line options
|
| 84 |
+
# these have higher priority
|
| 85 |
+
set myOption $option
|
| 86 |
+
if {[dict exists $infos -as]} {
|
| 87 |
+
set myOption [dict get $infos -as]
|
| 88 |
+
}
|
| 89 |
+
set noOptionSet 0
|
| 90 |
+
foreach {optName optVal} $args {
|
| 91 |
+
if {$optName eq $myOption} {
|
| 92 |
+
set noOptionSet 1
|
| 93 |
+
break
|
| 94 |
+
}
|
| 95 |
+
}
|
| 96 |
+
if {$noOptionSet} {
|
| 97 |
+
continue
|
| 98 |
+
}
|
| 99 |
+
set resource [dict get $infos -resource]
|
| 100 |
+
set class [dict get $infos -class]
|
| 101 |
+
set component [dict get $infos -component]
|
| 102 |
+
set value [::option get $widgetName $resource $class]
|
| 103 |
+
if {$component ne ""} {
|
| 104 |
+
if {$value ne ""} {
|
| 105 |
+
set compVar [namespace eval ${varNsName}${className} "set $component"]
|
| 106 |
+
if {$compVar ne ""} {
|
| 107 |
+
uplevel 1 $compVar configure $myOption $value
|
| 108 |
+
}
|
| 109 |
+
}
|
| 110 |
+
}
|
| 111 |
+
}
|
| 112 |
+
}
|
| 113 |
+
|
| 114 |
+
proc widgetinitobjectoptions {varNsName widgetName className} {
|
| 115 |
+
#puts stderr "initWidgetObjectOptions!$varNsName!$widgetName!$className!"
|
| 116 |
+
}
|
| 117 |
+
|
| 118 |
+
proc deletehull {newName oldName what} {
|
| 119 |
+
if {$what eq "delete"} {
|
| 120 |
+
set name [namespace tail $newName]
|
| 121 |
+
regsub {hull[0-9]+} $name {} name
|
| 122 |
+
rename $name {}
|
| 123 |
+
}
|
| 124 |
+
if {$what eq "rename"} {
|
| 125 |
+
set name [namespace tail $newName]
|
| 126 |
+
regsub {hull[0-9]+} $name {} name
|
| 127 |
+
rename $name {}
|
| 128 |
+
}
|
| 129 |
+
}
|
| 130 |
+
|
| 131 |
+
proc hullandoptionsinstall {objectName className widgetClass hulltype args} {
|
| 132 |
+
if {$hulltype eq ""} {
|
| 133 |
+
set hulltype frame
|
| 134 |
+
}
|
| 135 |
+
set idx 0
|
| 136 |
+
set found 0
|
| 137 |
+
foreach {optName optValue} $args {
|
| 138 |
+
if {$optName eq "-class"} {
|
| 139 |
+
set found 1
|
| 140 |
+
set widgetClass $optValue
|
| 141 |
+
break
|
| 142 |
+
}
|
| 143 |
+
incr idx
|
| 144 |
+
}
|
| 145 |
+
if {$found} {
|
| 146 |
+
set args [lreplace $args $idx [expr {$idx + 1}]]
|
| 147 |
+
}
|
| 148 |
+
if {$widgetClass eq ""} {
|
| 149 |
+
set widgetClass $className
|
| 150 |
+
set widgetClass [string totitle $widgetClass]
|
| 151 |
+
}
|
| 152 |
+
set cmd "set win $objectName; ::itcl::builtin::installhull using $hulltype -class $widgetClass $args"
|
| 153 |
+
uplevel 2 $cmd
|
| 154 |
+
}
|
| 155 |
+
|
| 156 |
+
} ; # end ::itcl::internal::commands
|
| 157 |
+
|
| 158 |
+
namespace eval ::itcl::builtin {
|
| 159 |
+
|
| 160 |
+
proc installhull {args} {
|
| 161 |
+
set cmdPath ::itcl::internal::commands
|
| 162 |
+
set className [uplevel 1 info class]
|
| 163 |
+
|
| 164 |
+
set replace 0
|
| 165 |
+
switch -- [llength $args] {
|
| 166 |
+
0 {
|
| 167 |
+
return -code error\
|
| 168 |
+
"wrong # args: should be \"[lindex [info level 0] 0]\
|
| 169 |
+
name|using <widgetType> ?arg ...?\""
|
| 170 |
+
}
|
| 171 |
+
1 {
|
| 172 |
+
set widgetName [lindex $args 0]
|
| 173 |
+
set varNsName $::itcl::internal::varNsName($widgetName)
|
| 174 |
+
}
|
| 175 |
+
default {
|
| 176 |
+
upvar win win
|
| 177 |
+
set widgetName $win
|
| 178 |
+
|
| 179 |
+
set varNsName $::itcl::internal::varNsName($widgetName)
|
| 180 |
+
set widgetType [lindex $args 1]
|
| 181 |
+
incr replace
|
| 182 |
+
if {[llength $args] > 3 && [lindex $args 2] eq "-class"} {
|
| 183 |
+
set classNam [lindex $args 3]
|
| 184 |
+
incr replace 2
|
| 185 |
+
} else {
|
| 186 |
+
set classNam [string totitle $widgetType]
|
| 187 |
+
}
|
| 188 |
+
uplevel 1 [lreplace $args 0 $replace $widgetType $widgetName -class $classNam]
|
| 189 |
+
uplevel 1 [list ${cmdPath}::initWidgetOptions $varNsName $widgetName $className]
|
| 190 |
+
}
|
| 191 |
+
}
|
| 192 |
+
|
| 193 |
+
# initialize the itcl_hull variable
|
| 194 |
+
set i 0
|
| 195 |
+
set nam ::itcl::internal::widgets::hull
|
| 196 |
+
while {1} {
|
| 197 |
+
incr i
|
| 198 |
+
set hullNam ${nam}${i}$widgetName
|
| 199 |
+
if {[::info command $hullNam] eq ""} {
|
| 200 |
+
break
|
| 201 |
+
}
|
| 202 |
+
}
|
| 203 |
+
uplevel 1 [list ${cmdPath}::sethullwindowname $widgetName]
|
| 204 |
+
uplevel 1 [list ::rename $widgetName $hullNam]
|
| 205 |
+
uplevel 1 [list ::trace add command $hullNam {delete rename} ::itcl::internal::commands::deletehull]
|
| 206 |
+
catch {${cmdPath}::checksetitclhull [list] 0}
|
| 207 |
+
namespace eval ${varNsName}${className} "set itcl_hull $hullNam"
|
| 208 |
+
catch {${cmdPath}::checksetitclhull [list] 2}
|
| 209 |
+
uplevel 1 [lreplace $args 0 $replace ${cmdPath}::initWidgetDelegatedOptions $varNsName $widgetName $className]
|
| 210 |
+
}
|
| 211 |
+
|
| 212 |
+
proc installcomponent {args} {
|
| 213 |
+
upvar win win
|
| 214 |
+
|
| 215 |
+
set className [uplevel 1 info class]
|
| 216 |
+
set myType [${className}::info types [namespace tail $className]]
|
| 217 |
+
set isType 0
|
| 218 |
+
if {$myType ne ""} {
|
| 219 |
+
set isType 1
|
| 220 |
+
}
|
| 221 |
+
set numArgs [llength $args]
|
| 222 |
+
set usage "usage: installcomponent <componentName> using <widgetType> <widgetPath> ?-option value ...?"
|
| 223 |
+
if {$numArgs < 4} {
|
| 224 |
+
error $usage
|
| 225 |
+
}
|
| 226 |
+
foreach {componentName using widgetType widgetPath} $args break
|
| 227 |
+
set opts [lrange $args 4 end]
|
| 228 |
+
if {$using ne "using"} {
|
| 229 |
+
error $usage
|
| 230 |
+
}
|
| 231 |
+
if {!$isType} {
|
| 232 |
+
set hullExists [uplevel 1 ::info exists itcl_hull]
|
| 233 |
+
if {!$hullExists} {
|
| 234 |
+
error "cannot install \"$componentName\" before \"itcl_hull\" exists"
|
| 235 |
+
}
|
| 236 |
+
set hullVal [uplevel 1 set itcl_hull]
|
| 237 |
+
if {$hullVal eq ""} {
|
| 238 |
+
error "cannot install \"$componentName\" before \"itcl_hull\" exists"
|
| 239 |
+
}
|
| 240 |
+
}
|
| 241 |
+
# check for delegated option and ask the option database for the values
|
| 242 |
+
# first check for number of delegated options
|
| 243 |
+
set numOpts 0
|
| 244 |
+
set starOption 0
|
| 245 |
+
set myDict [set ::itcl::internal::dicts::classDelegatedOptions]
|
| 246 |
+
if {[dict exists $myDict $className]} {
|
| 247 |
+
set myDict [dict get $myDict $className]
|
| 248 |
+
foreach option [dict keys $myDict] {
|
| 249 |
+
if {$option eq "*"} {
|
| 250 |
+
set starOption 1
|
| 251 |
+
}
|
| 252 |
+
incr numOpts
|
| 253 |
+
}
|
| 254 |
+
}
|
| 255 |
+
set myOptionDict [set ::itcl::internal::dicts::classOptions]
|
| 256 |
+
if {[dict exists $myOptionDict $className]} {
|
| 257 |
+
set myOptionDict [dict get $myOptionDict $className]
|
| 258 |
+
}
|
| 259 |
+
set cmd [list $widgetPath configure]
|
| 260 |
+
set cmd1 "set $componentName \[$widgetType $widgetPath\]"
|
| 261 |
+
uplevel 1 $cmd1
|
| 262 |
+
if {$starOption} {
|
| 263 |
+
upvar $componentName compName
|
| 264 |
+
set cmd1 [list $compName configure]
|
| 265 |
+
set configInfos [uplevel 1 $cmd1]
|
| 266 |
+
foreach entry $configInfos {
|
| 267 |
+
if {[llength $entry] > 2} {
|
| 268 |
+
foreach {optName resource class defaultValue} $entry break
|
| 269 |
+
set val ""
|
| 270 |
+
catch {
|
| 271 |
+
set val [::option get $win $resource $class]
|
| 272 |
+
}
|
| 273 |
+
if {$val ne ""} {
|
| 274 |
+
set addOpt 1
|
| 275 |
+
if {[dict exists $myDict $$optName]} {
|
| 276 |
+
set addOpt 0
|
| 277 |
+
} else {
|
| 278 |
+
set starDict [dict get $myDict "*"]
|
| 279 |
+
if {[dict exists $starDict -except]} {
|
| 280 |
+
set exceptions [dict get $starDict -except]
|
| 281 |
+
if {[lsearch $exceptions $optName] >= 0} {
|
| 282 |
+
set addOpt 0
|
| 283 |
+
}
|
| 284 |
+
|
| 285 |
+
}
|
| 286 |
+
if {[dict exists $myOptionDict $optName]} {
|
| 287 |
+
set addOpt 0
|
| 288 |
+
}
|
| 289 |
+
}
|
| 290 |
+
if {$addOpt} {
|
| 291 |
+
lappend cmd $optName $val
|
| 292 |
+
}
|
| 293 |
+
|
| 294 |
+
}
|
| 295 |
+
|
| 296 |
+
}
|
| 297 |
+
}
|
| 298 |
+
} else {
|
| 299 |
+
foreach optName [dict keys $myDict] {
|
| 300 |
+
set optInfos [dict get $myDict $optName]
|
| 301 |
+
set resource [dict get $optInfos -resource]
|
| 302 |
+
set class [namespace tail $className]
|
| 303 |
+
set class [string totitle $class]
|
| 304 |
+
set val ""
|
| 305 |
+
catch {
|
| 306 |
+
set val [::option get $win $resource $class]
|
| 307 |
+
}
|
| 308 |
+
if {$val ne ""} {
|
| 309 |
+
if {[dict exists $optInfos -as] } {
|
| 310 |
+
set optName [dict get $optInfos -as]
|
| 311 |
+
}
|
| 312 |
+
lappend cmd $optName $val
|
| 313 |
+
}
|
| 314 |
+
}
|
| 315 |
+
}
|
| 316 |
+
lappend cmd {*}$opts
|
| 317 |
+
uplevel 1 $cmd
|
| 318 |
+
}
|
| 319 |
+
|
| 320 |
+
} ; # end ::itcl::builtin
|
| 321 |
+
|
| 322 |
+
set ::itcl::internal::dicts::hullTypes [list \
|
| 323 |
+
frame \
|
| 324 |
+
toplevel \
|
| 325 |
+
labelframe \
|
| 326 |
+
ttk:frame \
|
| 327 |
+
ttk:toplevel \
|
| 328 |
+
ttk:labelframe \
|
| 329 |
+
]
|
| 330 |
+
|
| 331 |
+
namespace eval ::itcl::builtin::Info {
|
| 332 |
+
|
| 333 |
+
proc hulltypes {args} {
|
| 334 |
+
namespace upvar ::itcl::internal::dicts hullTypes hullTypes
|
| 335 |
+
|
| 336 |
+
set numArgs [llength $args]
|
| 337 |
+
if {$numArgs > 1} {
|
| 338 |
+
error "wrong # args should be: info hulltypes ?<pattern>?"
|
| 339 |
+
}
|
| 340 |
+
set pattern ""
|
| 341 |
+
if {$numArgs > 0} {
|
| 342 |
+
set pattern [lindex $args 0]
|
| 343 |
+
}
|
| 344 |
+
if {$pattern ne ""} {
|
| 345 |
+
return [lsearch -all -inline -glob $hullTypes $pattern]
|
| 346 |
+
}
|
| 347 |
+
return $hullTypes
|
| 348 |
+
|
| 349 |
+
}
|
| 350 |
+
|
| 351 |
+
proc widgetclasses {args} {
|
| 352 |
+
set numArgs [llength $args]
|
| 353 |
+
if {$numArgs > 1} {
|
| 354 |
+
error "wrong # args should be: info widgetclasses ?<pattern>?"
|
| 355 |
+
}
|
| 356 |
+
set pattern ""
|
| 357 |
+
if {$numArgs > 0} {
|
| 358 |
+
set pattern [lindex $args 0]
|
| 359 |
+
}
|
| 360 |
+
set myDict [set ::itcl::internal::dicts::classes]
|
| 361 |
+
if {![dict exists $myDict widget]} {
|
| 362 |
+
return [list]
|
| 363 |
+
}
|
| 364 |
+
set myDict [dict get $myDict widget]
|
| 365 |
+
set result [list]
|
| 366 |
+
if {$pattern ne ""} {
|
| 367 |
+
foreach key [dict keys $myDict] {
|
| 368 |
+
set myInfo [dict get $myDict $key]
|
| 369 |
+
set value [dict get $myInfo -widget]
|
| 370 |
+
if {[string match $pattern $value]} {
|
| 371 |
+
lappend result $value
|
| 372 |
+
}
|
| 373 |
+
}
|
| 374 |
+
} else {
|
| 375 |
+
foreach key [dict keys $myDict] {
|
| 376 |
+
set myInfo [dict get $myDict $key]
|
| 377 |
+
lappend result [dict get $myInfo -widget]
|
| 378 |
+
}
|
| 379 |
+
}
|
| 380 |
+
return $result
|
| 381 |
+
}
|
| 382 |
+
|
| 383 |
+
proc widgets {args} {
|
| 384 |
+
set numArgs [llength $args]
|
| 385 |
+
if {$numArgs > 1} {
|
| 386 |
+
error "wrong # args should be: info widgets ?<pattern>?"
|
| 387 |
+
}
|
| 388 |
+
set pattern ""
|
| 389 |
+
if {$numArgs > 0} {
|
| 390 |
+
set pattern [lindex $args 0]
|
| 391 |
+
}
|
| 392 |
+
set myDict [set ::itcl::internal::dicts::classes]
|
| 393 |
+
if {![dict exists $myDict widget]} {
|
| 394 |
+
return [list]
|
| 395 |
+
}
|
| 396 |
+
set myDict [dict get $myDict widget]
|
| 397 |
+
set result [list]
|
| 398 |
+
if {$pattern ne ""} {
|
| 399 |
+
foreach key [dict keys $myDict] {
|
| 400 |
+
set myInfo [dict get $myDict $key]
|
| 401 |
+
set value [dict get $myInfo -name]
|
| 402 |
+
if {[string match $pattern $value]} {
|
| 403 |
+
lappend result $value
|
| 404 |
+
}
|
| 405 |
+
}
|
| 406 |
+
} else {
|
| 407 |
+
foreach key [dict keys $myDict] {
|
| 408 |
+
set myInfo [dict get $myDict $key]
|
| 409 |
+
lappend result [dict get $myInfo -name]
|
| 410 |
+
}
|
| 411 |
+
}
|
| 412 |
+
return $result
|
| 413 |
+
}
|
| 414 |
+
|
| 415 |
+
proc widgetadaptors {args} {
|
| 416 |
+
set numArgs [llength $args]
|
| 417 |
+
if {$numArgs > 1} {
|
| 418 |
+
error "wrong # args should be: info widgetadaptors ?<pattern>?"
|
| 419 |
+
}
|
| 420 |
+
set pattern ""
|
| 421 |
+
if {$numArgs > 0} {
|
| 422 |
+
set pattern [lindex $args 0]
|
| 423 |
+
}
|
| 424 |
+
set myDict [set ::itcl::internal::dicts::classes]
|
| 425 |
+
if {![dict exists $myDict widgetadaptor]} {
|
| 426 |
+
return [list]
|
| 427 |
+
}
|
| 428 |
+
set myDict [dict get $myDict widgetadaptor]
|
| 429 |
+
set result [list]
|
| 430 |
+
if {$pattern ne ""} {
|
| 431 |
+
foreach key [dict keys $myDict] {
|
| 432 |
+
set myInfo [dict get $myDict $key]
|
| 433 |
+
set value [dict get $myInfo -name]
|
| 434 |
+
if {[string match $pattern $value]} {
|
| 435 |
+
lappend result $value
|
| 436 |
+
}
|
| 437 |
+
}
|
| 438 |
+
} else {
|
| 439 |
+
foreach key [dict keys $myDict] {
|
| 440 |
+
set myInfo [dict get $myDict $key]
|
| 441 |
+
lappend result [dict get $myInfo -name]
|
| 442 |
+
}
|
| 443 |
+
}
|
| 444 |
+
return $result
|
| 445 |
+
}
|
| 446 |
+
|
| 447 |
+
} ; # end ::itcl::builtin::Info
|
micromamba_root/Library/lib/itcl4.2.3/itclstub423.lib
ADDED
|
Binary file (3.7 kB). View file
|
|
|
micromamba_root/Library/lib/itcl4.2.3/pkgIndex.tcl
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# -*- tcl -*-
|
| 2 |
+
# Tcl package index file, version 1.1
|
| 3 |
+
#
|
| 4 |
+
|
| 5 |
+
if {![package vsatisfies [package provide Tcl] 8.6-]} {return}
|
| 6 |
+
|
| 7 |
+
if {[package vsatisfies [package provide Tcl] 9.0-]} {
|
| 8 |
+
package ifneeded itcl 4.2.3 \
|
| 9 |
+
[list load [file join $dir tcl9itcl423.dll] Itcl]
|
| 10 |
+
} else {
|
| 11 |
+
package ifneeded itcl 4.2.3 \
|
| 12 |
+
[list load [file join $dir itcl423.dll] Itcl]
|
| 13 |
+
}
|
| 14 |
+
package ifneeded Itcl 4.2.3 [list package require -exact itcl 4.2.3]
|
micromamba_root/Library/lib/itcl4.2.3/test_Itcl_CreateObject.tcl
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# this is a program for testing the stubs interface ItclCreateObject.
|
| 2 |
+
# it uses itclTestRegisterC.c with the call C function functionality,
|
| 3 |
+
# so it also tests that feature.
|
| 4 |
+
# you need to define in Makefile CFLAGS: -DITCL_DEBUG_C_INTERFACE
|
| 5 |
+
# for makeing that work.
|
| 6 |
+
package require itcl
|
| 7 |
+
|
| 8 |
+
::itcl::class ::c1 {
|
| 9 |
+
public method c0 {args} @cArgFunc
|
| 10 |
+
public method m1 { args } { puts "Hello Tcl $args" }
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
set obj1 [::c1 #auto ]
|
| 14 |
+
$obj1 m1 World
|
| 15 |
+
|
| 16 |
+
# C method cargFunc implements a call to Itcl_CreateObject!
|
| 17 |
+
#
|
| 18 |
+
# args for method c0 of class ::c1
|
| 19 |
+
# arg1 does not matter
|
| 20 |
+
# arg2 is the class name
|
| 21 |
+
# arg3 is the full class name (full path name)
|
| 22 |
+
# arg4 is the object name of the created Itcl object
|
| 23 |
+
set obj2 [$obj1 c0 ::itcl::parser::handleClass ::c1 ::c1 ::c1::c11]
|
| 24 |
+
# test, if it is working!
|
| 25 |
+
$obj2 m1 Folks
|
| 26 |
+
|
micromamba_root/Library/lib/nmake/nmakehlp.c
ADDED
|
@@ -0,0 +1,815 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/*
|
| 2 |
+
* ----------------------------------------------------------------------------
|
| 3 |
+
* nmakehlp.c --
|
| 4 |
+
*
|
| 5 |
+
* This is used to fix limitations within nmake and the environment.
|
| 6 |
+
*
|
| 7 |
+
* Copyright (c) 2002 by David Gravereaux.
|
| 8 |
+
* Copyright (c) 2006 by Pat Thoyts
|
| 9 |
+
*
|
| 10 |
+
* See the file "license.terms" for information on usage and redistribution of
|
| 11 |
+
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
| 12 |
+
* ----------------------------------------------------------------------------
|
| 13 |
+
*/
|
| 14 |
+
|
| 15 |
+
#define _CRT_SECURE_NO_DEPRECATE
|
| 16 |
+
#include <windows.h>
|
| 17 |
+
#ifdef _MSC_VER
|
| 18 |
+
#pragma comment (lib, "user32.lib")
|
| 19 |
+
#pragma comment (lib, "kernel32.lib")
|
| 20 |
+
#endif
|
| 21 |
+
#include <stdio.h>
|
| 22 |
+
#include <math.h>
|
| 23 |
+
|
| 24 |
+
/*
|
| 25 |
+
* This library is required for x64 builds with _some_ versions of MSVC
|
| 26 |
+
*/
|
| 27 |
+
#if defined(_M_IA64) || defined(_M_AMD64)
|
| 28 |
+
#if _MSC_VER >= 1400 && _MSC_VER < 1500
|
| 29 |
+
#pragma comment(lib, "bufferoverflowU")
|
| 30 |
+
#endif
|
| 31 |
+
#endif
|
| 32 |
+
|
| 33 |
+
/* ISO hack for dumb VC++ */
|
| 34 |
+
#ifdef _MSC_VER
|
| 35 |
+
#define snprintf _snprintf
|
| 36 |
+
#endif
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
/* protos */
|
| 40 |
+
|
| 41 |
+
static int CheckForCompilerFeature(const char *option);
|
| 42 |
+
static int CheckForLinkerFeature(char **options, int count);
|
| 43 |
+
static int IsIn(const char *string, const char *substring);
|
| 44 |
+
static int SubstituteFile(const char *substs, const char *filename);
|
| 45 |
+
static int QualifyPath(const char *path);
|
| 46 |
+
static int LocateDependency(const char *keyfile);
|
| 47 |
+
static const char *GetVersionFromFile(const char *filename, const char *match, int numdots);
|
| 48 |
+
static DWORD WINAPI ReadFromPipe(LPVOID args);
|
| 49 |
+
|
| 50 |
+
/* globals */
|
| 51 |
+
|
| 52 |
+
#define CHUNK 25
|
| 53 |
+
#define STATICBUFFERSIZE 1000
|
| 54 |
+
typedef struct {
|
| 55 |
+
HANDLE pipe;
|
| 56 |
+
char buffer[STATICBUFFERSIZE];
|
| 57 |
+
} pipeinfo;
|
| 58 |
+
|
| 59 |
+
pipeinfo Out = {INVALID_HANDLE_VALUE, ""};
|
| 60 |
+
pipeinfo Err = {INVALID_HANDLE_VALUE, ""};
|
| 61 |
+
|
| 62 |
+
/*
|
| 63 |
+
* exitcodes: 0 == no, 1 == yes, 2 == error
|
| 64 |
+
*/
|
| 65 |
+
|
| 66 |
+
int
|
| 67 |
+
main(
|
| 68 |
+
int argc,
|
| 69 |
+
char *argv[])
|
| 70 |
+
{
|
| 71 |
+
char msg[300];
|
| 72 |
+
DWORD dwWritten;
|
| 73 |
+
int chars;
|
| 74 |
+
const char *s;
|
| 75 |
+
|
| 76 |
+
/*
|
| 77 |
+
* Make sure children (cl.exe and link.exe) are kept quiet.
|
| 78 |
+
*/
|
| 79 |
+
|
| 80 |
+
SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX);
|
| 81 |
+
|
| 82 |
+
/*
|
| 83 |
+
* Make sure the compiler and linker aren't effected by the outside world.
|
| 84 |
+
*/
|
| 85 |
+
|
| 86 |
+
SetEnvironmentVariable("CL", "");
|
| 87 |
+
SetEnvironmentVariable("LINK", "");
|
| 88 |
+
|
| 89 |
+
if (argc > 1 && *argv[1] == '-') {
|
| 90 |
+
switch (*(argv[1]+1)) {
|
| 91 |
+
case 'c':
|
| 92 |
+
if (argc != 3) {
|
| 93 |
+
chars = snprintf(msg, sizeof(msg) - 1,
|
| 94 |
+
"usage: %s -c <compiler option>\n"
|
| 95 |
+
"Tests for whether cl.exe supports an option\n"
|
| 96 |
+
"exitcodes: 0 == no, 1 == yes, 2 == error\n", argv[0]);
|
| 97 |
+
WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars,
|
| 98 |
+
&dwWritten, NULL);
|
| 99 |
+
return 2;
|
| 100 |
+
}
|
| 101 |
+
return CheckForCompilerFeature(argv[2]);
|
| 102 |
+
case 'l':
|
| 103 |
+
if (argc < 3) {
|
| 104 |
+
chars = snprintf(msg, sizeof(msg) - 1,
|
| 105 |
+
"usage: %s -l <linker option> ?<mandatory option> ...?\n"
|
| 106 |
+
"Tests for whether link.exe supports an option\n"
|
| 107 |
+
"exitcodes: 0 == no, 1 == yes, 2 == error\n", argv[0]);
|
| 108 |
+
WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars,
|
| 109 |
+
&dwWritten, NULL);
|
| 110 |
+
return 2;
|
| 111 |
+
}
|
| 112 |
+
return CheckForLinkerFeature(&argv[2], argc-2);
|
| 113 |
+
case 'f':
|
| 114 |
+
if (argc == 2) {
|
| 115 |
+
chars = snprintf(msg, sizeof(msg) - 1,
|
| 116 |
+
"usage: %s -f <string> <substring>\n"
|
| 117 |
+
"Find a substring within another\n"
|
| 118 |
+
"exitcodes: 0 == no, 1 == yes, 2 == error\n", argv[0]);
|
| 119 |
+
WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars,
|
| 120 |
+
&dwWritten, NULL);
|
| 121 |
+
return 2;
|
| 122 |
+
} else if (argc == 3) {
|
| 123 |
+
/*
|
| 124 |
+
* If the string is blank, there is no match.
|
| 125 |
+
*/
|
| 126 |
+
|
| 127 |
+
return 0;
|
| 128 |
+
} else {
|
| 129 |
+
return IsIn(argv[2], argv[3]);
|
| 130 |
+
}
|
| 131 |
+
case 's':
|
| 132 |
+
if (argc == 2) {
|
| 133 |
+
chars = snprintf(msg, sizeof(msg) - 1,
|
| 134 |
+
"usage: %s -s <substitutions file> <file>\n"
|
| 135 |
+
"Perform a set of string map type substutitions on a file\n"
|
| 136 |
+
"exitcodes: 0\n",
|
| 137 |
+
argv[0]);
|
| 138 |
+
WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars,
|
| 139 |
+
&dwWritten, NULL);
|
| 140 |
+
return 2;
|
| 141 |
+
}
|
| 142 |
+
return SubstituteFile(argv[2], argv[3]);
|
| 143 |
+
case 'V':
|
| 144 |
+
if (argc != 4) {
|
| 145 |
+
chars = snprintf(msg, sizeof(msg) - 1,
|
| 146 |
+
"usage: %s -V filename matchstring\n"
|
| 147 |
+
"Extract a version from a file:\n"
|
| 148 |
+
"eg: pkgIndex.tcl \"package ifneeded http\"",
|
| 149 |
+
argv[0]);
|
| 150 |
+
WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars,
|
| 151 |
+
&dwWritten, NULL);
|
| 152 |
+
return 0;
|
| 153 |
+
}
|
| 154 |
+
s = GetVersionFromFile(argv[2], argv[3], *(argv[1]+2) - '0');
|
| 155 |
+
if (s && *s) {
|
| 156 |
+
printf("%s\n", s);
|
| 157 |
+
return 0;
|
| 158 |
+
} else
|
| 159 |
+
return 1; /* Version not found. Return non-0 exit code */
|
| 160 |
+
|
| 161 |
+
case 'Q':
|
| 162 |
+
if (argc != 3) {
|
| 163 |
+
chars = snprintf(msg, sizeof(msg) - 1,
|
| 164 |
+
"usage: %s -Q path\n"
|
| 165 |
+
"Emit the fully qualified path\n"
|
| 166 |
+
"exitcodes: 0 == no, 1 == yes, 2 == error\n", argv[0]);
|
| 167 |
+
WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars,
|
| 168 |
+
&dwWritten, NULL);
|
| 169 |
+
return 2;
|
| 170 |
+
}
|
| 171 |
+
return QualifyPath(argv[2]);
|
| 172 |
+
|
| 173 |
+
case 'L':
|
| 174 |
+
if (argc != 3) {
|
| 175 |
+
chars = snprintf(msg, sizeof(msg) - 1,
|
| 176 |
+
"usage: %s -L keypath\n"
|
| 177 |
+
"Emit the fully qualified path of directory containing keypath\n"
|
| 178 |
+
"exitcodes: 0 == success, 1 == not found, 2 == error\n", argv[0]);
|
| 179 |
+
WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars,
|
| 180 |
+
&dwWritten, NULL);
|
| 181 |
+
return 2;
|
| 182 |
+
}
|
| 183 |
+
return LocateDependency(argv[2]);
|
| 184 |
+
}
|
| 185 |
+
}
|
| 186 |
+
chars = snprintf(msg, sizeof(msg) - 1,
|
| 187 |
+
"usage: %s -c|-f|-l|-Q|-s|-V ...\n"
|
| 188 |
+
"This is a little helper app to equalize shell differences between WinNT and\n"
|
| 189 |
+
"Win9x and get nmake.exe to accomplish its job.\n",
|
| 190 |
+
argv[0]);
|
| 191 |
+
WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, chars, &dwWritten, NULL);
|
| 192 |
+
return 2;
|
| 193 |
+
}
|
| 194 |
+
|
| 195 |
+
static int
|
| 196 |
+
CheckForCompilerFeature(
|
| 197 |
+
const char *option)
|
| 198 |
+
{
|
| 199 |
+
STARTUPINFO si;
|
| 200 |
+
PROCESS_INFORMATION pi;
|
| 201 |
+
SECURITY_ATTRIBUTES sa;
|
| 202 |
+
DWORD threadID;
|
| 203 |
+
char msg[300];
|
| 204 |
+
BOOL ok;
|
| 205 |
+
HANDLE hProcess, h, pipeThreads[2];
|
| 206 |
+
char cmdline[100];
|
| 207 |
+
|
| 208 |
+
hProcess = GetCurrentProcess();
|
| 209 |
+
|
| 210 |
+
ZeroMemory(&pi, sizeof(PROCESS_INFORMATION));
|
| 211 |
+
ZeroMemory(&si, sizeof(STARTUPINFO));
|
| 212 |
+
si.cb = sizeof(STARTUPINFO);
|
| 213 |
+
si.dwFlags = STARTF_USESTDHANDLES;
|
| 214 |
+
si.hStdInput = INVALID_HANDLE_VALUE;
|
| 215 |
+
|
| 216 |
+
ZeroMemory(&sa, sizeof(SECURITY_ATTRIBUTES));
|
| 217 |
+
sa.nLength = sizeof(SECURITY_ATTRIBUTES);
|
| 218 |
+
sa.lpSecurityDescriptor = NULL;
|
| 219 |
+
sa.bInheritHandle = FALSE;
|
| 220 |
+
|
| 221 |
+
/*
|
| 222 |
+
* Create a non-inheritible pipe.
|
| 223 |
+
*/
|
| 224 |
+
|
| 225 |
+
CreatePipe(&Out.pipe, &h, &sa, 0);
|
| 226 |
+
|
| 227 |
+
/*
|
| 228 |
+
* Dupe the write side, make it inheritible, and close the original.
|
| 229 |
+
*/
|
| 230 |
+
|
| 231 |
+
DuplicateHandle(hProcess, h, hProcess, &si.hStdOutput, 0, TRUE,
|
| 232 |
+
DUPLICATE_SAME_ACCESS | DUPLICATE_CLOSE_SOURCE);
|
| 233 |
+
|
| 234 |
+
/*
|
| 235 |
+
* Same as above, but for the error side.
|
| 236 |
+
*/
|
| 237 |
+
|
| 238 |
+
CreatePipe(&Err.pipe, &h, &sa, 0);
|
| 239 |
+
DuplicateHandle(hProcess, h, hProcess, &si.hStdError, 0, TRUE,
|
| 240 |
+
DUPLICATE_SAME_ACCESS | DUPLICATE_CLOSE_SOURCE);
|
| 241 |
+
|
| 242 |
+
/*
|
| 243 |
+
* Base command line.
|
| 244 |
+
*/
|
| 245 |
+
|
| 246 |
+
lstrcpy(cmdline, "cl.exe -nologo -c -TC -Zs -X -Fp.\\_junk.pch ");
|
| 247 |
+
|
| 248 |
+
/*
|
| 249 |
+
* Append our option for testing
|
| 250 |
+
*/
|
| 251 |
+
|
| 252 |
+
lstrcat(cmdline, option);
|
| 253 |
+
|
| 254 |
+
/*
|
| 255 |
+
* Filename to compile, which exists, but is nothing and empty.
|
| 256 |
+
*/
|
| 257 |
+
|
| 258 |
+
lstrcat(cmdline, " .\\nul");
|
| 259 |
+
|
| 260 |
+
ok = CreateProcess(
|
| 261 |
+
NULL, /* Module name. */
|
| 262 |
+
cmdline, /* Command line. */
|
| 263 |
+
NULL, /* Process handle not inheritable. */
|
| 264 |
+
NULL, /* Thread handle not inheritable. */
|
| 265 |
+
TRUE, /* yes, inherit handles. */
|
| 266 |
+
DETACHED_PROCESS, /* No console for you. */
|
| 267 |
+
NULL, /* Use parent's environment block. */
|
| 268 |
+
NULL, /* Use parent's starting directory. */
|
| 269 |
+
&si, /* Pointer to STARTUPINFO structure. */
|
| 270 |
+
&pi); /* Pointer to PROCESS_INFORMATION structure. */
|
| 271 |
+
|
| 272 |
+
if (!ok) {
|
| 273 |
+
DWORD err = GetLastError();
|
| 274 |
+
int chars = snprintf(msg, sizeof(msg) - 1,
|
| 275 |
+
"Tried to launch: \"%s\", but got error [%u]: ", cmdline, err);
|
| 276 |
+
|
| 277 |
+
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM|FORMAT_MESSAGE_IGNORE_INSERTS|
|
| 278 |
+
FORMAT_MESSAGE_MAX_WIDTH_MASK, 0L, err, 0, (LPSTR)&msg[chars],
|
| 279 |
+
(300-chars), 0);
|
| 280 |
+
WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, lstrlen(msg), &err,NULL);
|
| 281 |
+
return 2;
|
| 282 |
+
}
|
| 283 |
+
|
| 284 |
+
/*
|
| 285 |
+
* Close our references to the write handles that have now been inherited.
|
| 286 |
+
*/
|
| 287 |
+
|
| 288 |
+
CloseHandle(si.hStdOutput);
|
| 289 |
+
CloseHandle(si.hStdError);
|
| 290 |
+
|
| 291 |
+
WaitForInputIdle(pi.hProcess, 5000);
|
| 292 |
+
CloseHandle(pi.hThread);
|
| 293 |
+
|
| 294 |
+
/*
|
| 295 |
+
* Start the pipe reader threads.
|
| 296 |
+
*/
|
| 297 |
+
|
| 298 |
+
pipeThreads[0] = CreateThread(NULL, 0, ReadFromPipe, &Out, 0, &threadID);
|
| 299 |
+
pipeThreads[1] = CreateThread(NULL, 0, ReadFromPipe, &Err, 0, &threadID);
|
| 300 |
+
|
| 301 |
+
/*
|
| 302 |
+
* Block waiting for the process to end.
|
| 303 |
+
*/
|
| 304 |
+
|
| 305 |
+
WaitForSingleObject(pi.hProcess, INFINITE);
|
| 306 |
+
CloseHandle(pi.hProcess);
|
| 307 |
+
|
| 308 |
+
/*
|
| 309 |
+
* Wait for our pipe to get done reading, should it be a little slow.
|
| 310 |
+
*/
|
| 311 |
+
|
| 312 |
+
WaitForMultipleObjects(2, pipeThreads, TRUE, 500);
|
| 313 |
+
CloseHandle(pipeThreads[0]);
|
| 314 |
+
CloseHandle(pipeThreads[1]);
|
| 315 |
+
|
| 316 |
+
/*
|
| 317 |
+
* Look for the commandline warning code in both streams.
|
| 318 |
+
* - in MSVC 6 & 7 we get D4002, in MSVC 8 we get D9002.
|
| 319 |
+
*/
|
| 320 |
+
|
| 321 |
+
return !(strstr(Out.buffer, "D4002") != NULL
|
| 322 |
+
|| strstr(Err.buffer, "D4002") != NULL
|
| 323 |
+
|| strstr(Out.buffer, "D9002") != NULL
|
| 324 |
+
|| strstr(Err.buffer, "D9002") != NULL
|
| 325 |
+
|| strstr(Out.buffer, "D2021") != NULL
|
| 326 |
+
|| strstr(Err.buffer, "D2021") != NULL);
|
| 327 |
+
}
|
| 328 |
+
|
| 329 |
+
static int
|
| 330 |
+
CheckForLinkerFeature(
|
| 331 |
+
char **options,
|
| 332 |
+
int count)
|
| 333 |
+
{
|
| 334 |
+
STARTUPINFO si;
|
| 335 |
+
PROCESS_INFORMATION pi;
|
| 336 |
+
SECURITY_ATTRIBUTES sa;
|
| 337 |
+
DWORD threadID;
|
| 338 |
+
char msg[300];
|
| 339 |
+
BOOL ok;
|
| 340 |
+
HANDLE hProcess, h, pipeThreads[2];
|
| 341 |
+
int i;
|
| 342 |
+
char cmdline[255];
|
| 343 |
+
|
| 344 |
+
hProcess = GetCurrentProcess();
|
| 345 |
+
|
| 346 |
+
ZeroMemory(&pi, sizeof(PROCESS_INFORMATION));
|
| 347 |
+
ZeroMemory(&si, sizeof(STARTUPINFO));
|
| 348 |
+
si.cb = sizeof(STARTUPINFO);
|
| 349 |
+
si.dwFlags = STARTF_USESTDHANDLES;
|
| 350 |
+
si.hStdInput = INVALID_HANDLE_VALUE;
|
| 351 |
+
|
| 352 |
+
ZeroMemory(&sa, sizeof(SECURITY_ATTRIBUTES));
|
| 353 |
+
sa.nLength = sizeof(SECURITY_ATTRIBUTES);
|
| 354 |
+
sa.lpSecurityDescriptor = NULL;
|
| 355 |
+
sa.bInheritHandle = TRUE;
|
| 356 |
+
|
| 357 |
+
/*
|
| 358 |
+
* Create a non-inheritible pipe.
|
| 359 |
+
*/
|
| 360 |
+
|
| 361 |
+
CreatePipe(&Out.pipe, &h, &sa, 0);
|
| 362 |
+
|
| 363 |
+
/*
|
| 364 |
+
* Dupe the write side, make it inheritible, and close the original.
|
| 365 |
+
*/
|
| 366 |
+
|
| 367 |
+
DuplicateHandle(hProcess, h, hProcess, &si.hStdOutput, 0, TRUE,
|
| 368 |
+
DUPLICATE_SAME_ACCESS | DUPLICATE_CLOSE_SOURCE);
|
| 369 |
+
|
| 370 |
+
/*
|
| 371 |
+
* Same as above, but for the error side.
|
| 372 |
+
*/
|
| 373 |
+
|
| 374 |
+
CreatePipe(&Err.pipe, &h, &sa, 0);
|
| 375 |
+
DuplicateHandle(hProcess, h, hProcess, &si.hStdError, 0, TRUE,
|
| 376 |
+
DUPLICATE_SAME_ACCESS | DUPLICATE_CLOSE_SOURCE);
|
| 377 |
+
|
| 378 |
+
/*
|
| 379 |
+
* Base command line.
|
| 380 |
+
*/
|
| 381 |
+
|
| 382 |
+
lstrcpy(cmdline, "link.exe -nologo ");
|
| 383 |
+
|
| 384 |
+
/*
|
| 385 |
+
* Append our option for testing.
|
| 386 |
+
*/
|
| 387 |
+
|
| 388 |
+
for (i = 0; i < count; i++) {
|
| 389 |
+
lstrcat(cmdline, " \"");
|
| 390 |
+
lstrcat(cmdline, options[i]);
|
| 391 |
+
lstrcat(cmdline, "\"");
|
| 392 |
+
}
|
| 393 |
+
|
| 394 |
+
ok = CreateProcess(
|
| 395 |
+
NULL, /* Module name. */
|
| 396 |
+
cmdline, /* Command line. */
|
| 397 |
+
NULL, /* Process handle not inheritable. */
|
| 398 |
+
NULL, /* Thread handle not inheritable. */
|
| 399 |
+
TRUE, /* yes, inherit handles. */
|
| 400 |
+
DETACHED_PROCESS, /* No console for you. */
|
| 401 |
+
NULL, /* Use parent's environment block. */
|
| 402 |
+
NULL, /* Use parent's starting directory. */
|
| 403 |
+
&si, /* Pointer to STARTUPINFO structure. */
|
| 404 |
+
&pi); /* Pointer to PROCESS_INFORMATION structure. */
|
| 405 |
+
|
| 406 |
+
if (!ok) {
|
| 407 |
+
DWORD err = GetLastError();
|
| 408 |
+
int chars = snprintf(msg, sizeof(msg) - 1,
|
| 409 |
+
"Tried to launch: \"%s\", but got error [%u]: ", cmdline, err);
|
| 410 |
+
|
| 411 |
+
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM|FORMAT_MESSAGE_IGNORE_INSERTS|
|
| 412 |
+
FORMAT_MESSAGE_MAX_WIDTH_MASK, 0L, err, 0, (LPSTR)&msg[chars],
|
| 413 |
+
(300-chars), 0);
|
| 414 |
+
WriteFile(GetStdHandle(STD_ERROR_HANDLE), msg, lstrlen(msg), &err,NULL);
|
| 415 |
+
return 2;
|
| 416 |
+
}
|
| 417 |
+
|
| 418 |
+
/*
|
| 419 |
+
* Close our references to the write handles that have now been inherited.
|
| 420 |
+
*/
|
| 421 |
+
|
| 422 |
+
CloseHandle(si.hStdOutput);
|
| 423 |
+
CloseHandle(si.hStdError);
|
| 424 |
+
|
| 425 |
+
WaitForInputIdle(pi.hProcess, 5000);
|
| 426 |
+
CloseHandle(pi.hThread);
|
| 427 |
+
|
| 428 |
+
/*
|
| 429 |
+
* Start the pipe reader threads.
|
| 430 |
+
*/
|
| 431 |
+
|
| 432 |
+
pipeThreads[0] = CreateThread(NULL, 0, ReadFromPipe, &Out, 0, &threadID);
|
| 433 |
+
pipeThreads[1] = CreateThread(NULL, 0, ReadFromPipe, &Err, 0, &threadID);
|
| 434 |
+
|
| 435 |
+
/*
|
| 436 |
+
* Block waiting for the process to end.
|
| 437 |
+
*/
|
| 438 |
+
|
| 439 |
+
WaitForSingleObject(pi.hProcess, INFINITE);
|
| 440 |
+
CloseHandle(pi.hProcess);
|
| 441 |
+
|
| 442 |
+
/*
|
| 443 |
+
* Wait for our pipe to get done reading, should it be a little slow.
|
| 444 |
+
*/
|
| 445 |
+
|
| 446 |
+
WaitForMultipleObjects(2, pipeThreads, TRUE, 500);
|
| 447 |
+
CloseHandle(pipeThreads[0]);
|
| 448 |
+
CloseHandle(pipeThreads[1]);
|
| 449 |
+
|
| 450 |
+
/*
|
| 451 |
+
* Look for the commandline warning code in the stderr stream.
|
| 452 |
+
*/
|
| 453 |
+
|
| 454 |
+
return !(strstr(Out.buffer, "LNK1117") != NULL ||
|
| 455 |
+
strstr(Err.buffer, "LNK1117") != NULL ||
|
| 456 |
+
strstr(Out.buffer, "LNK4044") != NULL ||
|
| 457 |
+
strstr(Err.buffer, "LNK4044") != NULL ||
|
| 458 |
+
strstr(Out.buffer, "LNK4224") != NULL ||
|
| 459 |
+
strstr(Err.buffer, "LNK4224") != NULL);
|
| 460 |
+
}
|
| 461 |
+
|
| 462 |
+
static DWORD WINAPI
|
| 463 |
+
ReadFromPipe(
|
| 464 |
+
LPVOID args)
|
| 465 |
+
{
|
| 466 |
+
pipeinfo *pi = (pipeinfo *) args;
|
| 467 |
+
char *lastBuf = pi->buffer;
|
| 468 |
+
DWORD dwRead;
|
| 469 |
+
BOOL ok;
|
| 470 |
+
|
| 471 |
+
again:
|
| 472 |
+
if (lastBuf - pi->buffer + CHUNK > STATICBUFFERSIZE) {
|
| 473 |
+
CloseHandle(pi->pipe);
|
| 474 |
+
return (DWORD)-1;
|
| 475 |
+
}
|
| 476 |
+
ok = ReadFile(pi->pipe, lastBuf, CHUNK, &dwRead, 0L);
|
| 477 |
+
if (!ok || dwRead == 0) {
|
| 478 |
+
CloseHandle(pi->pipe);
|
| 479 |
+
return 0;
|
| 480 |
+
}
|
| 481 |
+
lastBuf += dwRead;
|
| 482 |
+
goto again;
|
| 483 |
+
|
| 484 |
+
return 0; /* makes the compiler happy */
|
| 485 |
+
}
|
| 486 |
+
|
| 487 |
+
static int
|
| 488 |
+
IsIn(
|
| 489 |
+
const char *string,
|
| 490 |
+
const char *substring)
|
| 491 |
+
{
|
| 492 |
+
return (strstr(string, substring) != NULL);
|
| 493 |
+
}
|
| 494 |
+
|
| 495 |
+
/*
|
| 496 |
+
* GetVersionFromFile --
|
| 497 |
+
* Looks for a match string in a file and then returns the version
|
| 498 |
+
* following the match where a version is anything acceptable to
|
| 499 |
+
* package provide or package ifneeded.
|
| 500 |
+
*/
|
| 501 |
+
|
| 502 |
+
static const char *
|
| 503 |
+
GetVersionFromFile(
|
| 504 |
+
const char *filename,
|
| 505 |
+
const char *match,
|
| 506 |
+
int numdots)
|
| 507 |
+
{
|
| 508 |
+
static char szBuffer[100];
|
| 509 |
+
char *szResult = NULL;
|
| 510 |
+
FILE *fp = fopen(filename, "rt");
|
| 511 |
+
|
| 512 |
+
if (fp != NULL) {
|
| 513 |
+
/*
|
| 514 |
+
* Read data until we see our match string.
|
| 515 |
+
*/
|
| 516 |
+
|
| 517 |
+
while (fgets(szBuffer, sizeof(szBuffer), fp) != NULL) {
|
| 518 |
+
LPSTR p, q;
|
| 519 |
+
|
| 520 |
+
p = strstr(szBuffer, match);
|
| 521 |
+
if (p != NULL) {
|
| 522 |
+
/*
|
| 523 |
+
* Skip to first digit after the match.
|
| 524 |
+
*/
|
| 525 |
+
|
| 526 |
+
p += strlen(match);
|
| 527 |
+
while (*p && !isdigit((unsigned char)*p)) {
|
| 528 |
+
++p;
|
| 529 |
+
}
|
| 530 |
+
|
| 531 |
+
/*
|
| 532 |
+
* Find ending whitespace.
|
| 533 |
+
*/
|
| 534 |
+
|
| 535 |
+
q = p;
|
| 536 |
+
while (*q && (strchr("0123456789.ab", *q)) && (((!strchr(".ab", *q)
|
| 537 |
+
&& !strchr("ab", q[-1])) || --numdots))) {
|
| 538 |
+
++q;
|
| 539 |
+
}
|
| 540 |
+
|
| 541 |
+
*q = 0;
|
| 542 |
+
szResult = p;
|
| 543 |
+
break;
|
| 544 |
+
}
|
| 545 |
+
}
|
| 546 |
+
fclose(fp);
|
| 547 |
+
}
|
| 548 |
+
return szResult;
|
| 549 |
+
}
|
| 550 |
+
|
| 551 |
+
/*
|
| 552 |
+
* List helpers for the SubstituteFile function
|
| 553 |
+
*/
|
| 554 |
+
|
| 555 |
+
typedef struct list_item_t {
|
| 556 |
+
struct list_item_t *nextPtr;
|
| 557 |
+
char * key;
|
| 558 |
+
char * value;
|
| 559 |
+
} list_item_t;
|
| 560 |
+
|
| 561 |
+
/* insert a list item into the list (list may be null) */
|
| 562 |
+
static list_item_t *
|
| 563 |
+
list_insert(list_item_t **listPtrPtr, const char *key, const char *value)
|
| 564 |
+
{
|
| 565 |
+
list_item_t *itemPtr = (list_item_t *)malloc(sizeof(list_item_t));
|
| 566 |
+
if (itemPtr) {
|
| 567 |
+
itemPtr->key = strdup(key);
|
| 568 |
+
itemPtr->value = strdup(value);
|
| 569 |
+
itemPtr->nextPtr = NULL;
|
| 570 |
+
|
| 571 |
+
while(*listPtrPtr) {
|
| 572 |
+
listPtrPtr = &(*listPtrPtr)->nextPtr;
|
| 573 |
+
}
|
| 574 |
+
*listPtrPtr = itemPtr;
|
| 575 |
+
}
|
| 576 |
+
return itemPtr;
|
| 577 |
+
}
|
| 578 |
+
|
| 579 |
+
static void
|
| 580 |
+
list_free(list_item_t **listPtrPtr)
|
| 581 |
+
{
|
| 582 |
+
list_item_t *tmpPtr, *listPtr = *listPtrPtr;
|
| 583 |
+
while (listPtr) {
|
| 584 |
+
tmpPtr = listPtr;
|
| 585 |
+
listPtr = listPtr->nextPtr;
|
| 586 |
+
free(tmpPtr->key);
|
| 587 |
+
free(tmpPtr->value);
|
| 588 |
+
free(tmpPtr);
|
| 589 |
+
}
|
| 590 |
+
}
|
| 591 |
+
|
| 592 |
+
/*
|
| 593 |
+
* SubstituteFile --
|
| 594 |
+
* As windows doesn't provide anything useful like sed and it's unreliable
|
| 595 |
+
* to use the tclsh you are building against (consider x-platform builds -
|
| 596 |
+
* eg compiling AMD64 target from IX86) we provide a simple substitution
|
| 597 |
+
* option here to handle autoconf style substitutions.
|
| 598 |
+
* The substitution file is whitespace and line delimited. The file should
|
| 599 |
+
* consist of lines matching the regular expression:
|
| 600 |
+
* \s*\S+\s+\S*$
|
| 601 |
+
*
|
| 602 |
+
* Usage is something like:
|
| 603 |
+
* nmakehlp -S << $** > $@
|
| 604 |
+
* @PACKAGE_NAME@ $(PACKAGE_NAME)
|
| 605 |
+
* @PACKAGE_VERSION@ $(PACKAGE_VERSION)
|
| 606 |
+
* <<
|
| 607 |
+
*/
|
| 608 |
+
|
| 609 |
+
static int
|
| 610 |
+
SubstituteFile(
|
| 611 |
+
const char *substitutions,
|
| 612 |
+
const char *filename)
|
| 613 |
+
{
|
| 614 |
+
static char szBuffer[1024], szCopy[1024];
|
| 615 |
+
list_item_t *substPtr = NULL;
|
| 616 |
+
FILE *fp, *sp;
|
| 617 |
+
|
| 618 |
+
fp = fopen(filename, "rt");
|
| 619 |
+
if (fp != NULL) {
|
| 620 |
+
|
| 621 |
+
/*
|
| 622 |
+
* Build a list of substutitions from the first filename
|
| 623 |
+
*/
|
| 624 |
+
|
| 625 |
+
sp = fopen(substitutions, "rt");
|
| 626 |
+
if (sp != NULL) {
|
| 627 |
+
while (fgets(szBuffer, sizeof(szBuffer), sp) != NULL) {
|
| 628 |
+
unsigned char *ks, *ke, *vs, *ve;
|
| 629 |
+
ks = (unsigned char*)szBuffer;
|
| 630 |
+
while (ks && *ks && isspace(*ks)) ++ks;
|
| 631 |
+
ke = ks;
|
| 632 |
+
while (ke && *ke && !isspace(*ke)) ++ke;
|
| 633 |
+
vs = ke;
|
| 634 |
+
while (vs && *vs && isspace(*vs)) ++vs;
|
| 635 |
+
ve = vs;
|
| 636 |
+
while (ve && *ve && !(*ve == '\r' || *ve == '\n')) ++ve;
|
| 637 |
+
*ke = 0, *ve = 0;
|
| 638 |
+
list_insert(&substPtr, (char*)ks, (char*)vs);
|
| 639 |
+
}
|
| 640 |
+
fclose(sp);
|
| 641 |
+
}
|
| 642 |
+
|
| 643 |
+
/* debug: dump the list */
|
| 644 |
+
#ifndef NDEBUG
|
| 645 |
+
{
|
| 646 |
+
int n = 0;
|
| 647 |
+
list_item_t *p = NULL;
|
| 648 |
+
for (p = substPtr; p != NULL; p = p->nextPtr, ++n) {
|
| 649 |
+
fprintf(stderr, "% 3d '%s' => '%s'\n", n, p->key, p->value);
|
| 650 |
+
}
|
| 651 |
+
}
|
| 652 |
+
#endif
|
| 653 |
+
|
| 654 |
+
/*
|
| 655 |
+
* Run the substitutions over each line of the input
|
| 656 |
+
*/
|
| 657 |
+
|
| 658 |
+
while (fgets(szBuffer, sizeof(szBuffer), fp) != NULL) {
|
| 659 |
+
list_item_t *p = NULL;
|
| 660 |
+
for (p = substPtr; p != NULL; p = p->nextPtr) {
|
| 661 |
+
char *m = strstr(szBuffer, p->key);
|
| 662 |
+
if (m) {
|
| 663 |
+
char *cp, *op, *sp;
|
| 664 |
+
cp = szCopy;
|
| 665 |
+
op = szBuffer;
|
| 666 |
+
while (op != m) *cp++ = *op++;
|
| 667 |
+
sp = p->value;
|
| 668 |
+
while (sp && *sp) *cp++ = *sp++;
|
| 669 |
+
op += strlen(p->key);
|
| 670 |
+
while (*op) *cp++ = *op++;
|
| 671 |
+
*cp = 0;
|
| 672 |
+
memcpy(szBuffer, szCopy, sizeof(szCopy));
|
| 673 |
+
}
|
| 674 |
+
}
|
| 675 |
+
printf("%s", szBuffer);
|
| 676 |
+
}
|
| 677 |
+
|
| 678 |
+
list_free(&substPtr);
|
| 679 |
+
}
|
| 680 |
+
fclose(fp);
|
| 681 |
+
return 0;
|
| 682 |
+
}
|
| 683 |
+
|
| 684 |
+
BOOL FileExists(LPCTSTR szPath)
|
| 685 |
+
{
|
| 686 |
+
#ifndef INVALID_FILE_ATTRIBUTES
|
| 687 |
+
#define INVALID_FILE_ATTRIBUTES ((DWORD)-1)
|
| 688 |
+
#endif
|
| 689 |
+
DWORD pathAttr = GetFileAttributes(szPath);
|
| 690 |
+
return (pathAttr != INVALID_FILE_ATTRIBUTES &&
|
| 691 |
+
!(pathAttr & FILE_ATTRIBUTE_DIRECTORY));
|
| 692 |
+
}
|
| 693 |
+
|
| 694 |
+
|
| 695 |
+
/*
|
| 696 |
+
* QualifyPath --
|
| 697 |
+
*
|
| 698 |
+
* This composes the current working directory with a provided path
|
| 699 |
+
* and returns the fully qualified and normalized path.
|
| 700 |
+
* Mostly needed to setup paths for testing.
|
| 701 |
+
*/
|
| 702 |
+
|
| 703 |
+
static int
|
| 704 |
+
QualifyPath(
|
| 705 |
+
const char *szPath)
|
| 706 |
+
{
|
| 707 |
+
char szCwd[MAX_PATH + 1];
|
| 708 |
+
|
| 709 |
+
GetFullPathName(szPath, sizeof(szCwd)-1, szCwd, NULL);
|
| 710 |
+
printf("%s\n", szCwd);
|
| 711 |
+
return 0;
|
| 712 |
+
}
|
| 713 |
+
|
| 714 |
+
/*
|
| 715 |
+
* Implements LocateDependency for a single directory. See that command
|
| 716 |
+
* for an explanation.
|
| 717 |
+
* Returns 0 if found after printing the directory.
|
| 718 |
+
* Returns 1 if not found but no errors.
|
| 719 |
+
* Returns 2 on any kind of error
|
| 720 |
+
* Basically, these are used as exit codes for the process.
|
| 721 |
+
*/
|
| 722 |
+
static int LocateDependencyHelper(const char *dir, const char *keypath)
|
| 723 |
+
{
|
| 724 |
+
HANDLE hSearch;
|
| 725 |
+
char path[MAX_PATH+1];
|
| 726 |
+
size_t dirlen;
|
| 727 |
+
int keylen, ret;
|
| 728 |
+
WIN32_FIND_DATA finfo;
|
| 729 |
+
|
| 730 |
+
if (dir == NULL || keypath == NULL)
|
| 731 |
+
return 2; /* Have no real error reporting mechanism into nmake */
|
| 732 |
+
dirlen = strlen(dir);
|
| 733 |
+
if ((dirlen + 3) > sizeof(path))
|
| 734 |
+
return 2;
|
| 735 |
+
strncpy(path, dir, dirlen);
|
| 736 |
+
strncpy(path+dirlen, "\\*", 3); /* Including terminating \0 */
|
| 737 |
+
keylen = strlen(keypath);
|
| 738 |
+
|
| 739 |
+
#if 0 /* This function is not available in Visual C++ 6 */
|
| 740 |
+
/*
|
| 741 |
+
* Use numerics 0 -> FindExInfoStandard,
|
| 742 |
+
* 1 -> FindExSearchLimitToDirectories,
|
| 743 |
+
* as these are not defined in Visual C++ 6
|
| 744 |
+
*/
|
| 745 |
+
hSearch = FindFirstFileEx(path, 0, &finfo, 1, NULL, 0);
|
| 746 |
+
#else
|
| 747 |
+
hSearch = FindFirstFile(path, &finfo);
|
| 748 |
+
#endif
|
| 749 |
+
if (hSearch == INVALID_HANDLE_VALUE)
|
| 750 |
+
return 1; /* Not found */
|
| 751 |
+
|
| 752 |
+
/* Loop through all subdirs checking if the keypath is under there */
|
| 753 |
+
ret = 1; /* Assume not found */
|
| 754 |
+
do {
|
| 755 |
+
int sublen;
|
| 756 |
+
/*
|
| 757 |
+
* We need to check it is a directory despite the
|
| 758 |
+
* FindExSearchLimitToDirectories in the above call. See SDK docs
|
| 759 |
+
*/
|
| 760 |
+
if ((finfo.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == 0)
|
| 761 |
+
continue;
|
| 762 |
+
sublen = strlen(finfo.cFileName);
|
| 763 |
+
if ((dirlen+1+sublen+1+keylen+1) > sizeof(path))
|
| 764 |
+
continue; /* Path does not fit, assume not matched */
|
| 765 |
+
strncpy(path+dirlen+1, finfo.cFileName, sublen);
|
| 766 |
+
path[dirlen+1+sublen] = '\\';
|
| 767 |
+
strncpy(path+dirlen+1+sublen+1, keypath, keylen+1);
|
| 768 |
+
if (FileExists(path)) {
|
| 769 |
+
/* Found a match, print to stdout */
|
| 770 |
+
path[dirlen+1+sublen] = '\0';
|
| 771 |
+
QualifyPath(path);
|
| 772 |
+
ret = 0;
|
| 773 |
+
break;
|
| 774 |
+
}
|
| 775 |
+
} while (FindNextFile(hSearch, &finfo));
|
| 776 |
+
FindClose(hSearch);
|
| 777 |
+
return ret;
|
| 778 |
+
}
|
| 779 |
+
|
| 780 |
+
/*
|
| 781 |
+
* LocateDependency --
|
| 782 |
+
*
|
| 783 |
+
* Locates a dependency for a package.
|
| 784 |
+
* keypath - a relative path within the package directory
|
| 785 |
+
* that is used to confirm it is the correct directory.
|
| 786 |
+
* The search path for the package directory is currently only
|
| 787 |
+
* the parent and grandparent of the current working directory.
|
| 788 |
+
* If found, the command prints
|
| 789 |
+
* name_DIRPATH=<full path of located directory>
|
| 790 |
+
* and returns 0. If not found, does not print anything and returns 1.
|
| 791 |
+
*/
|
| 792 |
+
static int LocateDependency(const char *keypath)
|
| 793 |
+
{
|
| 794 |
+
size_t i;
|
| 795 |
+
int ret;
|
| 796 |
+
static const char *paths[] = {"..", "..\\..", "..\\..\\.."};
|
| 797 |
+
|
| 798 |
+
for (i = 0; i < (sizeof(paths)/sizeof(paths[0])); ++i) {
|
| 799 |
+
ret = LocateDependencyHelper(paths[i], keypath);
|
| 800 |
+
if (ret == 0)
|
| 801 |
+
return ret;
|
| 802 |
+
}
|
| 803 |
+
return ret;
|
| 804 |
+
}
|
| 805 |
+
|
| 806 |
+
|
| 807 |
+
/*
|
| 808 |
+
* Local variables:
|
| 809 |
+
* mode: c
|
| 810 |
+
* c-basic-offset: 4
|
| 811 |
+
* fill-column: 78
|
| 812 |
+
* indent-tabs-mode: t
|
| 813 |
+
* tab-width: 8
|
| 814 |
+
* End:
|
| 815 |
+
*/
|
micromamba_root/Library/lib/nmake/rules.vc
ADDED
|
@@ -0,0 +1,1887 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#------------------------------------------------------------- -*- makefile -*-
|
| 2 |
+
# rules.vc --
|
| 3 |
+
#
|
| 4 |
+
# Part of the nmake based build system for Tcl and its extensions.
|
| 5 |
+
# This file does all the hard work in terms of parsing build options,
|
| 6 |
+
# compiler switches, defining common targets and macros. The Tcl makefile
|
| 7 |
+
# directly includes this. Extensions include it via "rules-ext.vc".
|
| 8 |
+
#
|
| 9 |
+
# See TIP 477 (https://core.tcl-lang.org/tips/doc/main/tip/477.md) for
|
| 10 |
+
# detailed documentation.
|
| 11 |
+
#
|
| 12 |
+
# See the file "license.terms" for information on usage and redistribution
|
| 13 |
+
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
| 14 |
+
#
|
| 15 |
+
# Copyright (c) 2001-2003 David Gravereaux.
|
| 16 |
+
# Copyright (c) 2003-2008 Patrick Thoyts
|
| 17 |
+
# Copyright (c) 2017 Ashok P. Nadkarni
|
| 18 |
+
#------------------------------------------------------------------------------
|
| 19 |
+
|
| 20 |
+
!ifndef _RULES_VC
|
| 21 |
+
_RULES_VC = 1
|
| 22 |
+
|
| 23 |
+
# The following macros define the version of the rules.vc nmake build system
|
| 24 |
+
# For modifications that are not backward-compatible, you *must* change
|
| 25 |
+
# the major version.
|
| 26 |
+
RULES_VERSION_MAJOR = 1
|
| 27 |
+
RULES_VERSION_MINOR = 10
|
| 28 |
+
|
| 29 |
+
# The PROJECT macro must be defined by parent makefile.
|
| 30 |
+
!if "$(PROJECT)" == ""
|
| 31 |
+
!error *** Error: Macro PROJECT not defined! Please define it before including rules.vc
|
| 32 |
+
!endif
|
| 33 |
+
|
| 34 |
+
!if "$(PRJ_PACKAGE_TCLNAME)" == ""
|
| 35 |
+
PRJ_PACKAGE_TCLNAME = $(PROJECT)
|
| 36 |
+
!endif
|
| 37 |
+
|
| 38 |
+
# Also special case Tcl and Tk to save some typing later
|
| 39 |
+
DOING_TCL = 0
|
| 40 |
+
DOING_TK = 0
|
| 41 |
+
!if "$(PROJECT)" == "tcl"
|
| 42 |
+
DOING_TCL = 1
|
| 43 |
+
!elseif "$(PROJECT)" == "tk"
|
| 44 |
+
DOING_TK = 1
|
| 45 |
+
!endif
|
| 46 |
+
|
| 47 |
+
!ifndef NEED_TK
|
| 48 |
+
# Backwards compatibility
|
| 49 |
+
!ifdef PROJECT_REQUIRES_TK
|
| 50 |
+
NEED_TK = $(PROJECT_REQUIRES_TK)
|
| 51 |
+
!else
|
| 52 |
+
NEED_TK = 0
|
| 53 |
+
!endif
|
| 54 |
+
!endif
|
| 55 |
+
|
| 56 |
+
!ifndef NEED_TCL_SOURCE
|
| 57 |
+
NEED_TCL_SOURCE = 0
|
| 58 |
+
!endif
|
| 59 |
+
|
| 60 |
+
!ifdef NEED_TK_SOURCE
|
| 61 |
+
!if $(NEED_TK_SOURCE)
|
| 62 |
+
NEED_TK = 1
|
| 63 |
+
!endif
|
| 64 |
+
!else
|
| 65 |
+
NEED_TK_SOURCE = 0
|
| 66 |
+
!endif
|
| 67 |
+
|
| 68 |
+
################################################################
|
| 69 |
+
# Nmake is a pretty weak environment in syntax and capabilities
|
| 70 |
+
# so this file is necessarily verbose. It's broken down into
|
| 71 |
+
# the following parts.
|
| 72 |
+
#
|
| 73 |
+
# 0. Sanity check that compiler environment is set up and initialize
|
| 74 |
+
# any built-in settings from the parent makefile
|
| 75 |
+
# 1. First define the external tools used for compiling, copying etc.
|
| 76 |
+
# as this is independent of everything else.
|
| 77 |
+
# 2. Figure out our build structure in terms of the directory, whether
|
| 78 |
+
# we are building Tcl or an extension, etc.
|
| 79 |
+
# 3. Determine the compiler and linker versions
|
| 80 |
+
# 4. Build the nmakehlp helper application
|
| 81 |
+
# 5. Determine the supported compiler options and features
|
| 82 |
+
# 6. Parse the OPTS macro value for user-specified build configuration
|
| 83 |
+
# 7. Parse the STATS macro value for statistics instrumentation
|
| 84 |
+
# 8. Parse the CHECKS macro for additional compilation checks
|
| 85 |
+
# 9. Extract Tcl, and possibly Tk, version numbers from the headers
|
| 86 |
+
# 10. Based on this selected configuration, construct the output
|
| 87 |
+
# directory and file paths
|
| 88 |
+
# 11. Construct the paths where the package is to be installed
|
| 89 |
+
# 12. Set up the actual options passed to compiler and linker based
|
| 90 |
+
# on the information gathered above.
|
| 91 |
+
# 13. Define some standard build targets and implicit rules. These may
|
| 92 |
+
# be optionally disabled by the parent makefile.
|
| 93 |
+
# 14. (For extensions only.) Compare the configuration of the target
|
| 94 |
+
# Tcl and the extensions and warn against discrepancies.
|
| 95 |
+
#
|
| 96 |
+
# One final note about the macro names used. They are as they are
|
| 97 |
+
# for historical reasons. We would like legacy extensions to
|
| 98 |
+
# continue to work with this make include file so be wary of
|
| 99 |
+
# changing them for consistency or clarity.
|
| 100 |
+
|
| 101 |
+
# 0. Sanity check compiler environment
|
| 102 |
+
|
| 103 |
+
# Check to see we are configured to build with MSVC (MSDEVDIR, MSVCDIR or
|
| 104 |
+
# VCINSTALLDIR) or with the MS Platform SDK (MSSDK or WindowsSDKDir)
|
| 105 |
+
|
| 106 |
+
!if !defined(MSDEVDIR) && !defined(MSVCDIR) && !defined(VCINSTALLDIR) && !defined(MSSDK) && !defined(WINDOWSSDKDIR)
|
| 107 |
+
MSG = ^
|
| 108 |
+
Visual C++ compiler environment not initialized.
|
| 109 |
+
!error $(MSG)
|
| 110 |
+
!endif
|
| 111 |
+
|
| 112 |
+
# We need to run from the directory the parent makefile is located in.
|
| 113 |
+
# nmake does not tell us what makefile was used to invoke it so parent
|
| 114 |
+
# makefile has to set the MAKEFILEVC macro or we just make a guess and
|
| 115 |
+
# warn if we think that is not the case.
|
| 116 |
+
!if "$(MAKEFILEVC)" == ""
|
| 117 |
+
|
| 118 |
+
!if exist("$(PROJECT).vc")
|
| 119 |
+
MAKEFILEVC = $(PROJECT).vc
|
| 120 |
+
!elseif exist("makefile.vc")
|
| 121 |
+
MAKEFILEVC = makefile.vc
|
| 122 |
+
!endif
|
| 123 |
+
!endif # "$(MAKEFILEVC)" == ""
|
| 124 |
+
|
| 125 |
+
!if !exist("$(MAKEFILEVC)")
|
| 126 |
+
MSG = ^
|
| 127 |
+
You must run nmake from the directory containing the project makefile.^
|
| 128 |
+
If you are doing that and getting this message, set the MAKEFILEVC^
|
| 129 |
+
macro to the name of the project makefile.
|
| 130 |
+
!message WARNING: $(MSG)
|
| 131 |
+
!endif
|
| 132 |
+
|
| 133 |
+
|
| 134 |
+
################################################################
|
| 135 |
+
# 1. Define external programs being used
|
| 136 |
+
|
| 137 |
+
#----------------------------------------------------------
|
| 138 |
+
# Set the proper copy method to avoid overwrite questions
|
| 139 |
+
# to the user when copying files and selecting the right
|
| 140 |
+
# "delete all" method.
|
| 141 |
+
#----------------------------------------------------------
|
| 142 |
+
|
| 143 |
+
RMDIR = rmdir /S /Q
|
| 144 |
+
CPY = xcopy /i /y >NUL
|
| 145 |
+
CPYDIR = xcopy /e /i /y >NUL
|
| 146 |
+
COPY = copy /y >NUL
|
| 147 |
+
MKDIR = mkdir
|
| 148 |
+
|
| 149 |
+
######################################################################
|
| 150 |
+
# 2. Figure out our build environment in terms of what we're building.
|
| 151 |
+
#
|
| 152 |
+
# (a) Tcl itself
|
| 153 |
+
# (b) Tk
|
| 154 |
+
# (c) a Tcl extension using libraries/includes from an *installed* Tcl
|
| 155 |
+
# (d) a Tcl extension using libraries/includes from Tcl source directory
|
| 156 |
+
#
|
| 157 |
+
# This last is needed because some extensions still need
|
| 158 |
+
# some Tcl interfaces that are not publicly exposed.
|
| 159 |
+
#
|
| 160 |
+
# The fragment will set the following macros:
|
| 161 |
+
# ROOT - root of this module sources
|
| 162 |
+
# COMPATDIR - source directory that holds compatibility sources
|
| 163 |
+
# DOCDIR - source directory containing documentation files
|
| 164 |
+
# GENERICDIR - platform-independent source directory
|
| 165 |
+
# WIN_DIR - Windows-specific source directory
|
| 166 |
+
# TESTDIR - directory containing test files
|
| 167 |
+
# TOOLSDIR - directory containing build tools
|
| 168 |
+
# _TCLDIR - root of the Tcl installation OR the Tcl sources. Not set
|
| 169 |
+
# when building Tcl itself.
|
| 170 |
+
# _INSTALLDIR - native form of the installation path. For Tcl
|
| 171 |
+
# this will be the root of the Tcl installation. For extensions
|
| 172 |
+
# this will be the lib directory under the root.
|
| 173 |
+
# TCLINSTALL - set to 1 if _TCLDIR refers to
|
| 174 |
+
# headers and libraries from an installed Tcl, and 0 if built against
|
| 175 |
+
# Tcl sources. Not set when building Tcl itself. Yes, not very well
|
| 176 |
+
# named.
|
| 177 |
+
# _TCL_H - native path to the tcl.h file
|
| 178 |
+
#
|
| 179 |
+
# If Tk is involved, also sets the following
|
| 180 |
+
# _TKDIR - native form Tk installation OR Tk source. Not set if building
|
| 181 |
+
# Tk itself.
|
| 182 |
+
# TKINSTALL - set 1 if _TKDIR refers to installed Tk and 0 if Tk sources
|
| 183 |
+
# _TK_H - native path to the tk.h file
|
| 184 |
+
|
| 185 |
+
# Root directory for sources and assumed subdirectories
|
| 186 |
+
ROOT = $(MAKEDIR)\..
|
| 187 |
+
# The following paths CANNOT have spaces in them as they appear on the
|
| 188 |
+
# left side of implicit rules.
|
| 189 |
+
!ifndef COMPATDIR
|
| 190 |
+
COMPATDIR = $(ROOT)\compat
|
| 191 |
+
!endif
|
| 192 |
+
!ifndef DOCDIR
|
| 193 |
+
DOCDIR = $(ROOT)\doc
|
| 194 |
+
!endif
|
| 195 |
+
!ifndef GENERICDIR
|
| 196 |
+
GENERICDIR = $(ROOT)\generic
|
| 197 |
+
!endif
|
| 198 |
+
!ifndef TOOLSDIR
|
| 199 |
+
TOOLSDIR = $(ROOT)\tools
|
| 200 |
+
!endif
|
| 201 |
+
!ifndef TESTDIR
|
| 202 |
+
TESTDIR = $(ROOT)\tests
|
| 203 |
+
!endif
|
| 204 |
+
!ifndef LIBDIR
|
| 205 |
+
!if exist("$(ROOT)\library")
|
| 206 |
+
LIBDIR = $(ROOT)\library
|
| 207 |
+
!else
|
| 208 |
+
LIBDIR = $(ROOT)\lib
|
| 209 |
+
!endif
|
| 210 |
+
!endif
|
| 211 |
+
!ifndef DEMODIR
|
| 212 |
+
!if exist("$(LIBDIR)\demos")
|
| 213 |
+
DEMODIR = $(LIBDIR)\demos
|
| 214 |
+
!else
|
| 215 |
+
DEMODIR = $(ROOT)\demos
|
| 216 |
+
!endif
|
| 217 |
+
!endif # ifndef DEMODIR
|
| 218 |
+
# Do NOT use WINDIR because it is Windows internal environment
|
| 219 |
+
# variable to point to c:\windows!
|
| 220 |
+
WIN_DIR = $(ROOT)\win
|
| 221 |
+
|
| 222 |
+
!ifndef RCDIR
|
| 223 |
+
!if exist("$(WIN_DIR)\rc")
|
| 224 |
+
RCDIR = $(WIN_DIR)\rc
|
| 225 |
+
!else
|
| 226 |
+
RCDIR = $(WIN_DIR)
|
| 227 |
+
!endif
|
| 228 |
+
!endif
|
| 229 |
+
RCDIR = $(RCDIR:/=\)
|
| 230 |
+
|
| 231 |
+
# The target directory where the built packages and binaries will be installed.
|
| 232 |
+
# INSTALLDIR is the (optional) path specified by the user.
|
| 233 |
+
# _INSTALLDIR is INSTALLDIR using the backslash separator syntax
|
| 234 |
+
!ifdef INSTALLDIR
|
| 235 |
+
### Fix the path separators.
|
| 236 |
+
_INSTALLDIR = $(INSTALLDIR:/=\)
|
| 237 |
+
!else
|
| 238 |
+
### Assume the normal default.
|
| 239 |
+
_INSTALLDIR = $(HOMEDRIVE)\Tcl
|
| 240 |
+
!endif
|
| 241 |
+
|
| 242 |
+
!if $(DOING_TCL)
|
| 243 |
+
|
| 244 |
+
# BEGIN Case 2(a) - Building Tcl itself
|
| 245 |
+
|
| 246 |
+
# Only need to define _TCL_H
|
| 247 |
+
_TCL_H = ..\generic\tcl.h
|
| 248 |
+
|
| 249 |
+
# END Case 2(a) - Building Tcl itself
|
| 250 |
+
|
| 251 |
+
!elseif $(DOING_TK)
|
| 252 |
+
|
| 253 |
+
# BEGIN Case 2(b) - Building Tk
|
| 254 |
+
|
| 255 |
+
TCLINSTALL = 0 # Tk always builds against Tcl source, not an installed Tcl
|
| 256 |
+
!if "$(TCLDIR)" == ""
|
| 257 |
+
!if [echo TCLDIR = \> nmakehlp.out] \
|
| 258 |
+
|| [nmakehlp -L generic\tcl.h >> nmakehlp.out]
|
| 259 |
+
!error *** Could not locate Tcl source directory.
|
| 260 |
+
!endif
|
| 261 |
+
!include nmakehlp.out
|
| 262 |
+
!endif # TCLDIR == ""
|
| 263 |
+
|
| 264 |
+
_TCLDIR = $(TCLDIR:/=\)
|
| 265 |
+
_TCL_H = $(_TCLDIR)\generic\tcl.h
|
| 266 |
+
!if !exist("$(_TCL_H)")
|
| 267 |
+
!error Could not locate tcl.h. Please set the TCLDIR macro to point to the Tcl *source* directory.
|
| 268 |
+
!endif
|
| 269 |
+
|
| 270 |
+
_TK_H = ..\generic\tk.h
|
| 271 |
+
|
| 272 |
+
# END Case 2(b) - Building Tk
|
| 273 |
+
|
| 274 |
+
!else
|
| 275 |
+
|
| 276 |
+
# BEGIN Case 2(c) or (d) - Building an extension other than Tk
|
| 277 |
+
|
| 278 |
+
# If command line has specified Tcl location through TCLDIR, use it
|
| 279 |
+
# else default to the INSTALLDIR setting
|
| 280 |
+
!if "$(TCLDIR)" != ""
|
| 281 |
+
|
| 282 |
+
_TCLDIR = $(TCLDIR:/=\)
|
| 283 |
+
!if exist("$(_TCLDIR)\include\tcl.h") # Case 2(c) with TCLDIR defined
|
| 284 |
+
TCLINSTALL = 1
|
| 285 |
+
_TCL_H = $(_TCLDIR)\include\tcl.h
|
| 286 |
+
!elseif exist("$(_TCLDIR)\generic\tcl.h") # Case 2(d) with TCLDIR defined
|
| 287 |
+
TCLINSTALL = 0
|
| 288 |
+
_TCL_H = $(_TCLDIR)\generic\tcl.h
|
| 289 |
+
!endif
|
| 290 |
+
|
| 291 |
+
!else # # Case 2(c) for extensions with TCLDIR undefined
|
| 292 |
+
|
| 293 |
+
# Need to locate Tcl depending on whether it needs Tcl source or not.
|
| 294 |
+
# If we don't, check the INSTALLDIR for an installed Tcl first
|
| 295 |
+
|
| 296 |
+
!if exist("$(_INSTALLDIR)\include\tcl.h") && !$(NEED_TCL_SOURCE)
|
| 297 |
+
|
| 298 |
+
TCLINSTALL = 1
|
| 299 |
+
TCLDIR = $(_INSTALLDIR)\..
|
| 300 |
+
# NOTE: we will be resetting _INSTALLDIR to _INSTALLDIR/lib for extensions
|
| 301 |
+
# later so the \.. accounts for the /lib
|
| 302 |
+
_TCLDIR = $(_INSTALLDIR)\..
|
| 303 |
+
_TCL_H = $(_TCLDIR)\include\tcl.h
|
| 304 |
+
|
| 305 |
+
!else # exist(...) && !$(NEED_TCL_SOURCE)
|
| 306 |
+
|
| 307 |
+
!if [echo _TCLDIR = \> nmakehlp.out] \
|
| 308 |
+
|| [nmakehlp -L generic\tcl.h >> nmakehlp.out]
|
| 309 |
+
!error *** Could not locate Tcl source directory.
|
| 310 |
+
!endif
|
| 311 |
+
!include nmakehlp.out
|
| 312 |
+
TCLINSTALL = 0
|
| 313 |
+
TCLDIR = $(_TCLDIR)
|
| 314 |
+
_TCL_H = $(_TCLDIR)\generic\tcl.h
|
| 315 |
+
|
| 316 |
+
!endif # exist(...) && !$(NEED_TCL_SOURCE)
|
| 317 |
+
|
| 318 |
+
!endif # TCLDIR
|
| 319 |
+
|
| 320 |
+
!ifndef _TCL_H
|
| 321 |
+
MSG =^
|
| 322 |
+
Failed to find tcl.h. The TCLDIR macro is set incorrectly or is not set and default path does not contain tcl.h.
|
| 323 |
+
!error $(MSG)
|
| 324 |
+
!endif
|
| 325 |
+
|
| 326 |
+
# Now do the same to locate Tk headers and libs if project requires Tk
|
| 327 |
+
!if $(NEED_TK)
|
| 328 |
+
|
| 329 |
+
!if "$(TKDIR)" != ""
|
| 330 |
+
|
| 331 |
+
_TKDIR = $(TKDIR:/=\)
|
| 332 |
+
!if exist("$(_TKDIR)\include\tk.h")
|
| 333 |
+
TKINSTALL = 1
|
| 334 |
+
_TK_H = $(_TKDIR)\include\tk.h
|
| 335 |
+
!elseif exist("$(_TKDIR)\generic\tk.h")
|
| 336 |
+
TKINSTALL = 0
|
| 337 |
+
_TK_H = $(_TKDIR)\generic\tk.h
|
| 338 |
+
!endif
|
| 339 |
+
|
| 340 |
+
!else # TKDIR not defined
|
| 341 |
+
|
| 342 |
+
# Need to locate Tcl depending on whether it needs Tcl source or not.
|
| 343 |
+
# If we don't, check the INSTALLDIR for an installed Tcl first
|
| 344 |
+
|
| 345 |
+
!if exist("$(_INSTALLDIR)\include\tk.h") && !$(NEED_TK_SOURCE)
|
| 346 |
+
|
| 347 |
+
TKINSTALL = 1
|
| 348 |
+
# NOTE: we will be resetting _INSTALLDIR to _INSTALLDIR/lib for extensions
|
| 349 |
+
# later so the \.. accounts for the /lib
|
| 350 |
+
_TKDIR = $(_INSTALLDIR)\..
|
| 351 |
+
_TK_H = $(_TKDIR)\include\tk.h
|
| 352 |
+
TKDIR = $(_TKDIR)
|
| 353 |
+
|
| 354 |
+
!else # exist("$(_INSTALLDIR)\include\tk.h") && !$(NEED_TK_SOURCE)
|
| 355 |
+
|
| 356 |
+
!if [echo _TKDIR = \> nmakehlp.out] \
|
| 357 |
+
|| [nmakehlp -L generic\tk.h >> nmakehlp.out]
|
| 358 |
+
!error *** Could not locate Tk source directory.
|
| 359 |
+
!endif
|
| 360 |
+
!include nmakehlp.out
|
| 361 |
+
TKINSTALL = 0
|
| 362 |
+
TKDIR = $(_TKDIR)
|
| 363 |
+
_TK_H = $(_TKDIR)\generic\tk.h
|
| 364 |
+
|
| 365 |
+
!endif # exist("$(_INSTALLDIR)\include\tk.h") && !$(NEED_TK_SOURCE)
|
| 366 |
+
|
| 367 |
+
!endif # TKDIR
|
| 368 |
+
|
| 369 |
+
!ifndef _TK_H
|
| 370 |
+
MSG =^
|
| 371 |
+
Failed to find tk.h. The TKDIR macro is set incorrectly or is not set and default path does not contain tk.h.
|
| 372 |
+
!error $(MSG)
|
| 373 |
+
!endif
|
| 374 |
+
|
| 375 |
+
!endif # NEED_TK
|
| 376 |
+
|
| 377 |
+
!if $(NEED_TCL_SOURCE) && $(TCLINSTALL)
|
| 378 |
+
MSG = ^
|
| 379 |
+
*** Warning: This extension requires the source distribution of Tcl.^
|
| 380 |
+
*** Please set the TCLDIR macro to point to the Tcl sources.
|
| 381 |
+
!error $(MSG)
|
| 382 |
+
!endif
|
| 383 |
+
|
| 384 |
+
!if $(NEED_TK_SOURCE)
|
| 385 |
+
!if $(TKINSTALL)
|
| 386 |
+
MSG = ^
|
| 387 |
+
*** Warning: This extension requires the source distribution of Tk.^
|
| 388 |
+
*** Please set the TKDIR macro to point to the Tk sources.
|
| 389 |
+
!error $(MSG)
|
| 390 |
+
!endif
|
| 391 |
+
!endif
|
| 392 |
+
|
| 393 |
+
|
| 394 |
+
# If INSTALLDIR set to Tcl installation root dir then reset to the
|
| 395 |
+
# lib dir for installing extensions
|
| 396 |
+
!if exist("$(_INSTALLDIR)\include\tcl.h")
|
| 397 |
+
_INSTALLDIR=$(_INSTALLDIR)\lib
|
| 398 |
+
!endif
|
| 399 |
+
|
| 400 |
+
# END Case 2(c) or (d) - Building an extension
|
| 401 |
+
!endif # if $(DOING_TCL)
|
| 402 |
+
|
| 403 |
+
################################################################
|
| 404 |
+
# 3. Determine compiler version and architecture
|
| 405 |
+
# In this section, we figure out the compiler version and the
|
| 406 |
+
# architecture for which we are building. This sets the
|
| 407 |
+
# following macros:
|
| 408 |
+
# VCVERSION - the internal compiler version as 1200, 1400, 1910 etc.
|
| 409 |
+
# This is also printed by the compiler in dotted form 19.10 etc.
|
| 410 |
+
# VCVER - the "marketing version", for example Visual C++ 6 for internal
|
| 411 |
+
# compiler version 1200. This is kept only for legacy reasons as it
|
| 412 |
+
# does not make sense for recent Microsoft compilers. Only used for
|
| 413 |
+
# output directory names.
|
| 414 |
+
# ARCH - set to IX86, ARM64 or AMD64 depending on 32- or 64-bit target
|
| 415 |
+
# NATIVE_ARCH - set to IX86, ARM64 or AMD64 for the host machine
|
| 416 |
+
# MACHINE - same as $(ARCH) - legacy
|
| 417 |
+
# _VC_MANIFEST_EMBED_{DLL,EXE} - commands for embedding a manifest if needed
|
| 418 |
+
|
| 419 |
+
cc32 = $(CC) # built-in default.
|
| 420 |
+
link32 = link
|
| 421 |
+
lib32 = lib
|
| 422 |
+
rc32 = $(RC) # built-in default.
|
| 423 |
+
|
| 424 |
+
#----------------------------------------------------------------
|
| 425 |
+
# Figure out the compiler architecture and version by writing
|
| 426 |
+
# the C macros to a file, preprocessing them with the C
|
| 427 |
+
# preprocessor and reading back the created file
|
| 428 |
+
|
| 429 |
+
_HASH=^#
|
| 430 |
+
_VC_MANIFEST_EMBED_EXE=
|
| 431 |
+
_VC_MANIFEST_EMBED_DLL=
|
| 432 |
+
VCVER=0
|
| 433 |
+
!if ![echo VCVERSION=_MSC_VER > vercl.x] \
|
| 434 |
+
&& ![echo $(_HASH)if defined(_M_IX86) >> vercl.x] \
|
| 435 |
+
&& ![echo ARCH=IX86 >> vercl.x] \
|
| 436 |
+
&& ![echo $(_HASH)elif defined(_M_AMD64) >> vercl.x] \
|
| 437 |
+
&& ![echo ARCH=AMD64 >> vercl.x] \
|
| 438 |
+
&& ![echo $(_HASH)elif defined(_M_ARM64) >> vercl.x] \
|
| 439 |
+
&& ![echo ARCH=ARM64 >> vercl.x] \
|
| 440 |
+
&& ![echo $(_HASH)endif >> vercl.x] \
|
| 441 |
+
&& ![$(cc32) -nologo -TC -P vercl.x 2>NUL]
|
| 442 |
+
!include vercl.i
|
| 443 |
+
!if $(VCVERSION) < 1900
|
| 444 |
+
!if ![echo VCVER= ^\> vercl.vc] \
|
| 445 |
+
&& ![set /a $(VCVERSION) / 100 - 6 >> vercl.vc]
|
| 446 |
+
!include vercl.vc
|
| 447 |
+
!endif
|
| 448 |
+
!else
|
| 449 |
+
# The simple calculation above does not apply to new Visual Studio releases
|
| 450 |
+
# Keep the compiler version in its native form.
|
| 451 |
+
VCVER = $(VCVERSION)
|
| 452 |
+
!endif
|
| 453 |
+
!endif
|
| 454 |
+
|
| 455 |
+
!if ![del 2>NUL /q/f vercl.x vercl.i vercl.vc]
|
| 456 |
+
!endif
|
| 457 |
+
|
| 458 |
+
#----------------------------------------------------------------
|
| 459 |
+
# The MACHINE macro is used by legacy makefiles so set it as well
|
| 460 |
+
!ifdef MACHINE
|
| 461 |
+
!if "$(MACHINE)" == "x86"
|
| 462 |
+
!undef MACHINE
|
| 463 |
+
MACHINE = IX86
|
| 464 |
+
!elseif "$(MACHINE)" == "arm64"
|
| 465 |
+
!undef MACHINE
|
| 466 |
+
MACHINE = ARM64
|
| 467 |
+
!elseif "$(MACHINE)" == "x64"
|
| 468 |
+
!undef MACHINE
|
| 469 |
+
MACHINE = AMD64
|
| 470 |
+
!endif
|
| 471 |
+
!if "$(MACHINE)" != "$(ARCH)"
|
| 472 |
+
!error Specified MACHINE macro $(MACHINE) does not match detected target architecture $(ARCH).
|
| 473 |
+
!endif
|
| 474 |
+
!else
|
| 475 |
+
MACHINE=$(ARCH)
|
| 476 |
+
!endif
|
| 477 |
+
|
| 478 |
+
#---------------------------------------------------------------
|
| 479 |
+
# The PLATFORM_IDENTIFY macro matches the values returned by
|
| 480 |
+
# the Tcl platform::identify command
|
| 481 |
+
!if "$(MACHINE)" == "AMD64"
|
| 482 |
+
PLATFORM_IDENTIFY = win32-x86_64
|
| 483 |
+
!elseif "$(MACHINE)" == "ARM64"
|
| 484 |
+
PLATFORM_IDENTIFY = win32-arm
|
| 485 |
+
!else
|
| 486 |
+
PLATFORM_IDENTIFY = win32-ix86
|
| 487 |
+
!endif
|
| 488 |
+
|
| 489 |
+
# The MULTIPLATFORM macro controls whether binary extensions are installed
|
| 490 |
+
# in platform-specific directories. Intended to be set/used by extensions.
|
| 491 |
+
!ifndef MULTIPLATFORM_INSTALL
|
| 492 |
+
MULTIPLATFORM_INSTALL = 0
|
| 493 |
+
!endif
|
| 494 |
+
|
| 495 |
+
#------------------------------------------------------------
|
| 496 |
+
# Figure out the *host* architecture by reading the registry
|
| 497 |
+
|
| 498 |
+
!if ![reg query HKLM\Hardware\Description\System\CentralProcessor\0 /v Identifier | findstr /i x86]
|
| 499 |
+
NATIVE_ARCH=IX86
|
| 500 |
+
!elseif ![reg query HKLM\Hardware\Description\System\CentralProcessor\0 /v Identifier | findstr /i ARM | findstr /i 64-bit]
|
| 501 |
+
NATIVE_ARCH=ARM64
|
| 502 |
+
!else
|
| 503 |
+
NATIVE_ARCH=AMD64
|
| 504 |
+
!endif
|
| 505 |
+
|
| 506 |
+
# Since MSVC8 we must deal with manifest resources.
|
| 507 |
+
!if $(VCVERSION) >= 1400
|
| 508 |
+
_VC_MANIFEST_EMBED_EXE=if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;1
|
| 509 |
+
_VC_MANIFEST_EMBED_DLL=if exist $@.manifest mt -nologo -manifest $@.manifest -outputresource:$@;2
|
| 510 |
+
!endif
|
| 511 |
+
|
| 512 |
+
################################################################
|
| 513 |
+
# 4. Build the nmakehlp program
|
| 514 |
+
# This is a helper app we need to overcome nmake's limiting
|
| 515 |
+
# environment. We will call out to it to get various bits of
|
| 516 |
+
# information about supported compiler options etc.
|
| 517 |
+
#
|
| 518 |
+
# Tcl itself will always use the nmakehlp.c program which is
|
| 519 |
+
# in its own source. It will be kept updated there.
|
| 520 |
+
#
|
| 521 |
+
# Extensions built against an installed Tcl will use the installed
|
| 522 |
+
# copy of Tcl's nmakehlp.c if there is one and their own version
|
| 523 |
+
# otherwise. In the latter case, they would also be using their own
|
| 524 |
+
# rules.vc. Note that older versions of Tcl do not install nmakehlp.c
|
| 525 |
+
# or rules.vc.
|
| 526 |
+
#
|
| 527 |
+
# Extensions built against Tcl sources will use the one from the Tcl source.
|
| 528 |
+
#
|
| 529 |
+
# When building an extension using a sufficiently new version of Tcl,
|
| 530 |
+
# rules-ext.vc will define NMAKEHLPC appropriately to point to the
|
| 531 |
+
# copy of nmakehlp.c to be used.
|
| 532 |
+
|
| 533 |
+
!ifndef NMAKEHLPC
|
| 534 |
+
# Default to the one in the current directory (the extension's own nmakehlp.c)
|
| 535 |
+
NMAKEHLPC = nmakehlp.c
|
| 536 |
+
|
| 537 |
+
!if !$(DOING_TCL)
|
| 538 |
+
!if $(TCLINSTALL)
|
| 539 |
+
!if exist("$(_TCLDIR)\lib\nmake\nmakehlp.c")
|
| 540 |
+
NMAKEHLPC = $(_TCLDIR)\lib\nmake\nmakehlp.c
|
| 541 |
+
!endif
|
| 542 |
+
!else # !$(TCLINSTALL)
|
| 543 |
+
!if exist("$(_TCLDIR)\win\nmakehlp.c")
|
| 544 |
+
NMAKEHLPC = $(_TCLDIR)\win\nmakehlp.c
|
| 545 |
+
!endif
|
| 546 |
+
!endif # $(TCLINSTALL)
|
| 547 |
+
!endif # !$(DOING_TCL)
|
| 548 |
+
|
| 549 |
+
!endif # NMAKEHLPC
|
| 550 |
+
|
| 551 |
+
# We always build nmakehlp even if it exists since we do not know
|
| 552 |
+
# what source it was built from.
|
| 553 |
+
!if "$(MACHINE)" == "IX86" || "$(MACHINE)" == "$(NATIVE_ARCH)"
|
| 554 |
+
!if [$(cc32) -nologo "$(NMAKEHLPC)" -link -subsystem:console > nul]
|
| 555 |
+
!endif
|
| 556 |
+
!else
|
| 557 |
+
!if [copy $(NMAKEHLPC:nmakehlp.c=x86_64-w64-mingw32-nmakehlp.exe) nmakehlp.exe >NUL]
|
| 558 |
+
!endif
|
| 559 |
+
!endif
|
| 560 |
+
|
| 561 |
+
################################################################
|
| 562 |
+
# 5. Test for compiler features
|
| 563 |
+
# Visual C++ compiler options have changed over the years. Check
|
| 564 |
+
# which options are supported by the compiler in use.
|
| 565 |
+
#
|
| 566 |
+
# The following macros are set:
|
| 567 |
+
# OPTIMIZATIONS - the compiler flags to be used for optimized builds
|
| 568 |
+
# DEBUGFLAGS - the compiler flags to be used for debug builds
|
| 569 |
+
# LINKERFLAGS - Flags passed to the linker
|
| 570 |
+
#
|
| 571 |
+
# Note that these are the compiler settings *available*, not those
|
| 572 |
+
# that will be *used*. The latter depends on the OPTS macro settings
|
| 573 |
+
# which we have not yet parsed.
|
| 574 |
+
#
|
| 575 |
+
# Also note that some of the flags in OPTIMIZATIONS are not really
|
| 576 |
+
# related to optimization. They are placed there only for legacy reasons
|
| 577 |
+
# as some extensions expect them to be included in that macro.
|
| 578 |
+
|
| 579 |
+
# -Op improves float consistency. Note only needed for older compilers
|
| 580 |
+
# Newer compilers do not need or support this option.
|
| 581 |
+
!if [nmakehlp -c -Op]
|
| 582 |
+
FPOPTS = -Op
|
| 583 |
+
!endif
|
| 584 |
+
|
| 585 |
+
# Strict floating point semantics - present in newer compilers in lieu of -Op
|
| 586 |
+
!if [nmakehlp -c -fp:strict]
|
| 587 |
+
FPOPTS = $(FPOPTS) -fp:strict
|
| 588 |
+
!endif
|
| 589 |
+
|
| 590 |
+
!if "$(MACHINE)" == "IX86"
|
| 591 |
+
### test for pentium errata
|
| 592 |
+
!if [nmakehlp -c -QI0f]
|
| 593 |
+
!message *** Compiler has 'Pentium 0x0f fix'
|
| 594 |
+
FPOPTS = $(FPOPTS) -QI0f
|
| 595 |
+
!else
|
| 596 |
+
!message *** Compiler does not have 'Pentium 0x0f fix'
|
| 597 |
+
!endif
|
| 598 |
+
!endif
|
| 599 |
+
|
| 600 |
+
### test for optimizations
|
| 601 |
+
# /O2 optimization includes /Og /Oi /Ot /Oy /Ob2 /Gs /GF /Gy as per
|
| 602 |
+
# documentation. Note we do NOT want /Gs as that inserts a _chkstk
|
| 603 |
+
# stack probe at *every* function entry, not just those with more than
|
| 604 |
+
# a page of stack allocation resulting in a performance hit. However,
|
| 605 |
+
# /O2 documentation is misleading as its stack probes are simply the
|
| 606 |
+
# default page size locals allocation probes and not what is implied
|
| 607 |
+
# by an explicit /Gs option.
|
| 608 |
+
|
| 609 |
+
OPTIMIZATIONS = $(FPOPTS)
|
| 610 |
+
|
| 611 |
+
!if [nmakehlp -c -O2]
|
| 612 |
+
OPTIMIZING = 1
|
| 613 |
+
OPTIMIZATIONS = $(OPTIMIZATIONS) -O2
|
| 614 |
+
!else
|
| 615 |
+
# Legacy, really. All modern compilers support this
|
| 616 |
+
!message *** Compiler does not have 'Optimizations'
|
| 617 |
+
OPTIMIZING = 0
|
| 618 |
+
!endif
|
| 619 |
+
|
| 620 |
+
# Checks for buffer overflows in local arrays
|
| 621 |
+
!if [nmakehlp -c -GS]
|
| 622 |
+
OPTIMIZATIONS = $(OPTIMIZATIONS) -GS
|
| 623 |
+
!endif
|
| 624 |
+
|
| 625 |
+
# Link time optimization. Note that this option (potentially) makes
|
| 626 |
+
# generated libraries only usable by the specific VC++ version that
|
| 627 |
+
# created it. Requires /LTCG linker option
|
| 628 |
+
!if [nmakehlp -c -GL]
|
| 629 |
+
OPTIMIZATIONS = $(OPTIMIZATIONS) -GL
|
| 630 |
+
CC_GL_OPT_ENABLED = 1
|
| 631 |
+
!else
|
| 632 |
+
# In newer compilers -GL and -YX are incompatible.
|
| 633 |
+
!if [nmakehlp -c -YX]
|
| 634 |
+
OPTIMIZATIONS = $(OPTIMIZATIONS) -YX
|
| 635 |
+
!endif
|
| 636 |
+
!endif # [nmakehlp -c -GL]
|
| 637 |
+
|
| 638 |
+
DEBUGFLAGS = $(FPOPTS)
|
| 639 |
+
|
| 640 |
+
# Run time error checks. Not available or valid in a release, non-debug build
|
| 641 |
+
# RTC is for modern compilers, -GZ is legacy
|
| 642 |
+
!if [nmakehlp -c -RTC1]
|
| 643 |
+
DEBUGFLAGS = $(DEBUGFLAGS) -RTC1
|
| 644 |
+
!elseif [nmakehlp -c -GZ]
|
| 645 |
+
DEBUGFLAGS = $(DEBUGFLAGS) -GZ
|
| 646 |
+
!endif
|
| 647 |
+
|
| 648 |
+
#----------------------------------------------------------------
|
| 649 |
+
# Linker flags
|
| 650 |
+
|
| 651 |
+
# LINKER_TESTFLAGS are for internal use when we call nmakehlp to test
|
| 652 |
+
# if the linker supports a specific option. Without these flags link will
|
| 653 |
+
# return "LNK1561: entry point must be defined" error compiling from VS-IDE:
|
| 654 |
+
# They are not passed through to the actual application / extension
|
| 655 |
+
# link rules.
|
| 656 |
+
!ifndef LINKER_TESTFLAGS
|
| 657 |
+
LINKER_TESTFLAGS = /DLL /NOENTRY /OUT:nmakehlp.out
|
| 658 |
+
!endif
|
| 659 |
+
|
| 660 |
+
LINKERFLAGS =
|
| 661 |
+
|
| 662 |
+
# If compiler has enabled link time optimization, linker must too with -ltcg
|
| 663 |
+
!ifdef CC_GL_OPT_ENABLED
|
| 664 |
+
!if [nmakehlp -l -ltcg $(LINKER_TESTFLAGS)]
|
| 665 |
+
LINKERFLAGS = $(LINKERFLAGS) -ltcg
|
| 666 |
+
!endif
|
| 667 |
+
!endif
|
| 668 |
+
|
| 669 |
+
|
| 670 |
+
################################################################
|
| 671 |
+
# 6. Extract various version numbers from headers
|
| 672 |
+
# For Tcl and Tk, version numbers are extracted from tcl.h and tk.h
|
| 673 |
+
# respectively. For extensions, versions are extracted from the
|
| 674 |
+
# configure.in or configure.ac from the TEA configuration if it
|
| 675 |
+
# exists, and unset otherwise.
|
| 676 |
+
# Sets the following macros:
|
| 677 |
+
# TCL_MAJOR_VERSION
|
| 678 |
+
# TCL_MINOR_VERSION
|
| 679 |
+
# TCL_RELEASE_SERIAL
|
| 680 |
+
# TCL_PATCH_LEVEL
|
| 681 |
+
# TCL_PATCH_LETTER
|
| 682 |
+
# TCL_VERSION
|
| 683 |
+
# TK_MAJOR_VERSION
|
| 684 |
+
# TK_MINOR_VERSION
|
| 685 |
+
# TK_RELEASE_SERIAL
|
| 686 |
+
# TK_PATCH_LEVEL
|
| 687 |
+
# TK_PATCH_LETTER
|
| 688 |
+
# TK_VERSION
|
| 689 |
+
# DOTVERSION - set as (for example) 2.5
|
| 690 |
+
# VERSION - set as (for example 25)
|
| 691 |
+
#--------------------------------------------------------------
|
| 692 |
+
|
| 693 |
+
!if [echo REM = This file is generated from rules.vc > versions.vc]
|
| 694 |
+
!endif
|
| 695 |
+
!if [echo TCL_MAJOR_VERSION = \>> versions.vc] \
|
| 696 |
+
&& [nmakehlp -V "$(_TCL_H)" "define TCL_MAJOR_VERSION" >> versions.vc]
|
| 697 |
+
!endif
|
| 698 |
+
!if [echo TCL_MINOR_VERSION = \>> versions.vc] \
|
| 699 |
+
&& [nmakehlp -V "$(_TCL_H)" TCL_MINOR_VERSION >> versions.vc]
|
| 700 |
+
!endif
|
| 701 |
+
!if [echo TCL_RELEASE_SERIAL = \>> versions.vc] \
|
| 702 |
+
&& [nmakehlp -V "$(_TCL_H)" TCL_RELEASE_SERIAL >> versions.vc]
|
| 703 |
+
!endif
|
| 704 |
+
!if [echo TCL_PATCH_LEVEL = \>> versions.vc] \
|
| 705 |
+
&& [nmakehlp -V "$(_TCL_H)" TCL_PATCH_LEVEL >> versions.vc]
|
| 706 |
+
!endif
|
| 707 |
+
|
| 708 |
+
!if defined(_TK_H)
|
| 709 |
+
!if [echo TK_MAJOR_VERSION = \>> versions.vc] \
|
| 710 |
+
&& [nmakehlp -V $(_TK_H) "define TK_MAJOR_VERSION" >> versions.vc]
|
| 711 |
+
!endif
|
| 712 |
+
!if [echo TK_MINOR_VERSION = \>> versions.vc] \
|
| 713 |
+
&& [nmakehlp -V $(_TK_H) TK_MINOR_VERSION >> versions.vc]
|
| 714 |
+
!endif
|
| 715 |
+
!if [echo TK_RELEASE_SERIAL = \>> versions.vc] \
|
| 716 |
+
&& [nmakehlp -V "$(_TK_H)" TK_RELEASE_SERIAL >> versions.vc]
|
| 717 |
+
!endif
|
| 718 |
+
!if [echo TK_PATCH_LEVEL = \>> versions.vc] \
|
| 719 |
+
&& [nmakehlp -V $(_TK_H) TK_PATCH_LEVEL >> versions.vc]
|
| 720 |
+
!endif
|
| 721 |
+
!endif # _TK_H
|
| 722 |
+
|
| 723 |
+
!include versions.vc
|
| 724 |
+
|
| 725 |
+
TCL_VERSION = $(TCL_MAJOR_VERSION)$(TCL_MINOR_VERSION)
|
| 726 |
+
TCL_DOTVERSION = $(TCL_MAJOR_VERSION).$(TCL_MINOR_VERSION)
|
| 727 |
+
!if [nmakehlp -f $(TCL_PATCH_LEVEL) "a"]
|
| 728 |
+
TCL_PATCH_LETTER = a
|
| 729 |
+
!elseif [nmakehlp -f $(TCL_PATCH_LEVEL) "b"]
|
| 730 |
+
TCL_PATCH_LETTER = b
|
| 731 |
+
!else
|
| 732 |
+
TCL_PATCH_LETTER = .
|
| 733 |
+
!endif
|
| 734 |
+
|
| 735 |
+
!if defined(_TK_H)
|
| 736 |
+
|
| 737 |
+
TK_VERSION = $(TK_MAJOR_VERSION)$(TK_MINOR_VERSION)
|
| 738 |
+
TK_DOTVERSION = $(TK_MAJOR_VERSION).$(TK_MINOR_VERSION)
|
| 739 |
+
!if [nmakehlp -f $(TK_PATCH_LEVEL) "a"]
|
| 740 |
+
TK_PATCH_LETTER = a
|
| 741 |
+
!elseif [nmakehlp -f $(TK_PATCH_LEVEL) "b"]
|
| 742 |
+
TK_PATCH_LETTER = b
|
| 743 |
+
!else
|
| 744 |
+
TK_PATCH_LETTER = .
|
| 745 |
+
!endif
|
| 746 |
+
|
| 747 |
+
!endif
|
| 748 |
+
|
| 749 |
+
# Set DOTVERSION and VERSION
|
| 750 |
+
!if $(DOING_TCL)
|
| 751 |
+
|
| 752 |
+
DOTVERSION = $(TCL_MAJOR_VERSION).$(TCL_MINOR_VERSION)
|
| 753 |
+
VERSION = $(TCL_VERSION)
|
| 754 |
+
|
| 755 |
+
!elseif $(DOING_TK)
|
| 756 |
+
|
| 757 |
+
DOTVERSION = $(TK_DOTVERSION)
|
| 758 |
+
VERSION = $(TK_VERSION)
|
| 759 |
+
|
| 760 |
+
!else # Doing a non-Tk extension
|
| 761 |
+
|
| 762 |
+
# If parent makefile has not defined DOTVERSION, try to get it from TEA
|
| 763 |
+
# first from a configure.in file, and then from configure.ac
|
| 764 |
+
!ifndef DOTVERSION
|
| 765 |
+
!if [echo DOTVERSION = \> versions.vc] \
|
| 766 |
+
|| [nmakehlp -V $(ROOT)\configure.in ^[$(PROJECT)^] >> versions.vc]
|
| 767 |
+
!if [echo DOTVERSION = \> versions.vc] \
|
| 768 |
+
|| [nmakehlp -V $(ROOT)\configure.ac ^[$(PROJECT)^] >> versions.vc]
|
| 769 |
+
!error *** Could not figure out extension version. Please define DOTVERSION in parent makefile before including rules.vc.
|
| 770 |
+
!endif
|
| 771 |
+
!endif
|
| 772 |
+
!include versions.vc
|
| 773 |
+
!endif # DOTVERSION
|
| 774 |
+
VERSION = $(DOTVERSION:.=)
|
| 775 |
+
|
| 776 |
+
!endif # $(DOING_TCL) ... etc.
|
| 777 |
+
|
| 778 |
+
# Windows RC files have 3 version components. Ensure this irrespective
|
| 779 |
+
# of how many components the package has specified. Basically, ensure
|
| 780 |
+
# minimum 4 components by appending 4 0's and then pick out the first 4.
|
| 781 |
+
# Also take care of the fact that DOTVERSION may have "a" or "b" instead
|
| 782 |
+
# of "." separating the version components.
|
| 783 |
+
DOTSEPARATED=$(DOTVERSION:a=.)
|
| 784 |
+
DOTSEPARATED=$(DOTSEPARATED:b=.)
|
| 785 |
+
!if [echo RCCOMMAVERSION = \> versions.vc] \
|
| 786 |
+
|| [for /f "tokens=1,2,3,4,5* delims=." %a in ("$(DOTSEPARATED).0.0.0.0") do echo %a,%b,%c,%d >> versions.vc]
|
| 787 |
+
!error *** Could not generate RCCOMMAVERSION ***
|
| 788 |
+
!endif
|
| 789 |
+
!include versions.vc
|
| 790 |
+
|
| 791 |
+
########################################################################
|
| 792 |
+
# 7. Parse the OPTS macro to work out the requested build configuration.
|
| 793 |
+
# Based on this, we will construct the actual switches to be passed to the
|
| 794 |
+
# compiler and linker using the macros defined in the previous section.
|
| 795 |
+
# The following macros are defined by this section based on OPTS
|
| 796 |
+
# STATIC_BUILD - 0 -> Tcl is to be built as a shared library
|
| 797 |
+
# 1 -> build as a static library and shell
|
| 798 |
+
# TCL_THREADS - legacy but always 1 on Windows since winsock requires it.
|
| 799 |
+
# DEBUG - 1 -> debug build, 0 -> release builds
|
| 800 |
+
# SYMBOLS - 1 -> generate PDB's, 0 -> no PDB's
|
| 801 |
+
# PROFILE - 1 -> generate profiling info, 0 -> no profiling
|
| 802 |
+
# PGO - 1 -> profile based optimization, 0 -> no
|
| 803 |
+
# MSVCRT - 1 -> link to dynamic C runtime even when building static Tcl build
|
| 804 |
+
# 0 -> link to static C runtime for static Tcl build.
|
| 805 |
+
# Does not impact shared Tcl builds (STATIC_BUILD == 0)
|
| 806 |
+
# Default: 1 for Tcl 8.7 and up, 0 otherwise.
|
| 807 |
+
# TCL_USE_STATIC_PACKAGES - 1 -> statically link the registry and dde extensions
|
| 808 |
+
# in the Tcl and Wish shell. 0 -> keep them as shared libraries. Does
|
| 809 |
+
# not impact shared Tcl builds. Implied by STATIC_BUILD since Tcl 8.7.
|
| 810 |
+
# USE_THREAD_ALLOC - 1 -> Use a shared global free pool for allocation.
|
| 811 |
+
# 0 -> Use the non-thread allocator.
|
| 812 |
+
# UNCHECKED - 1 -> when doing a debug build with symbols, use the release
|
| 813 |
+
# C runtime, 0 -> use the debug C runtime.
|
| 814 |
+
# USE_STUBS - 1 -> compile to use stubs interfaces, 0 -> direct linking
|
| 815 |
+
# CONFIG_CHECK - 1 -> check current build configuration against Tcl
|
| 816 |
+
# configuration (ignored for Tcl itself)
|
| 817 |
+
# _USE_64BIT_TIME_T - forces a build using 64-bit time_t for 32-bit build
|
| 818 |
+
# (CRT library should support this, not needed for Tcl 9.x)
|
| 819 |
+
# TCL_UTF_MAX=3 - forces a build using UTF-16 internally (not recommended).
|
| 820 |
+
# Further, LINKERFLAGS are modified based on above.
|
| 821 |
+
|
| 822 |
+
# Default values for all the above
|
| 823 |
+
STATIC_BUILD = 0
|
| 824 |
+
TCL_THREADS = 1
|
| 825 |
+
DEBUG = 0
|
| 826 |
+
SYMBOLS = 0
|
| 827 |
+
PROFILE = 0
|
| 828 |
+
PGO = 0
|
| 829 |
+
MSVCRT = 1
|
| 830 |
+
TCL_USE_STATIC_PACKAGES = 0
|
| 831 |
+
USE_THREAD_ALLOC = 1
|
| 832 |
+
UNCHECKED = 0
|
| 833 |
+
CONFIG_CHECK = 1
|
| 834 |
+
!if $(DOING_TCL)
|
| 835 |
+
USE_STUBS = 0
|
| 836 |
+
!else
|
| 837 |
+
USE_STUBS = 1
|
| 838 |
+
!endif
|
| 839 |
+
|
| 840 |
+
# If OPTS is not empty AND does not contain "none" which turns off all OPTS
|
| 841 |
+
# set the above macros based on OPTS content
|
| 842 |
+
!if "$(OPTS)" != "" && ![nmakehlp -f "$(OPTS)" "none"]
|
| 843 |
+
|
| 844 |
+
# OPTS are specified, parse them
|
| 845 |
+
|
| 846 |
+
!if [nmakehlp -f $(OPTS) "static"]
|
| 847 |
+
!message *** Doing static
|
| 848 |
+
STATIC_BUILD = 1
|
| 849 |
+
!endif
|
| 850 |
+
|
| 851 |
+
!if [nmakehlp -f $(OPTS) "nostubs"]
|
| 852 |
+
!message *** Not using stubs
|
| 853 |
+
USE_STUBS = 0
|
| 854 |
+
!endif
|
| 855 |
+
|
| 856 |
+
!if [nmakehlp -f $(OPTS) "nomsvcrt"]
|
| 857 |
+
!message *** Doing nomsvcrt
|
| 858 |
+
MSVCRT = 0
|
| 859 |
+
!else
|
| 860 |
+
!if [nmakehlp -f $(OPTS) "msvcrt"]
|
| 861 |
+
!message *** Doing msvcrt
|
| 862 |
+
!else
|
| 863 |
+
!if $(TCL_MAJOR_VERSION) == 8 && $(TCL_MINOR_VERSION) < 7 && $(STATIC_BUILD)
|
| 864 |
+
MSVCRT = 0
|
| 865 |
+
!endif
|
| 866 |
+
!endif
|
| 867 |
+
!endif # [nmakehlp -f $(OPTS) "nomsvcrt"]
|
| 868 |
+
|
| 869 |
+
!if [nmakehlp -f $(OPTS) "staticpkg"] && $(STATIC_BUILD)
|
| 870 |
+
!message *** Doing staticpkg
|
| 871 |
+
TCL_USE_STATIC_PACKAGES = 1
|
| 872 |
+
!endif
|
| 873 |
+
|
| 874 |
+
!if [nmakehlp -f $(OPTS) "nothreads"]
|
| 875 |
+
!message *** Compile explicitly for non-threaded tcl
|
| 876 |
+
TCL_THREADS = 0
|
| 877 |
+
USE_THREAD_ALLOC= 0
|
| 878 |
+
!endif
|
| 879 |
+
|
| 880 |
+
!if $(TCL_MAJOR_VERSION) == 8
|
| 881 |
+
!if [nmakehlp -f $(OPTS) "time64bit"]
|
| 882 |
+
!message *** Force 64-bit time_t
|
| 883 |
+
_USE_64BIT_TIME_T = 1
|
| 884 |
+
!endif
|
| 885 |
+
|
| 886 |
+
!if [nmakehlp -f $(OPTS) "utf16"]
|
| 887 |
+
!message *** Force UTF-16 internally
|
| 888 |
+
TCL_UTF_MAX = 3
|
| 889 |
+
!endif
|
| 890 |
+
!endif
|
| 891 |
+
|
| 892 |
+
# Yes, it's weird that the "symbols" option controls DEBUG and
|
| 893 |
+
# the "pdbs" option controls SYMBOLS. That's historical.
|
| 894 |
+
!if [nmakehlp -f $(OPTS) "symbols"]
|
| 895 |
+
!message *** Doing symbols
|
| 896 |
+
DEBUG = 1
|
| 897 |
+
!else
|
| 898 |
+
DEBUG = 0
|
| 899 |
+
!endif
|
| 900 |
+
|
| 901 |
+
!if [nmakehlp -f $(OPTS) "pdbs"]
|
| 902 |
+
!message *** Doing pdbs
|
| 903 |
+
SYMBOLS = 1
|
| 904 |
+
!else
|
| 905 |
+
SYMBOLS = 0
|
| 906 |
+
!endif
|
| 907 |
+
|
| 908 |
+
!if [nmakehlp -f $(OPTS) "profile"]
|
| 909 |
+
!message *** Doing profile
|
| 910 |
+
PROFILE = 1
|
| 911 |
+
!else
|
| 912 |
+
PROFILE = 0
|
| 913 |
+
!endif
|
| 914 |
+
|
| 915 |
+
!if [nmakehlp -f $(OPTS) "pgi"]
|
| 916 |
+
!message *** Doing profile guided optimization instrumentation
|
| 917 |
+
PGO = 1
|
| 918 |
+
!elseif [nmakehlp -f $(OPTS) "pgo"]
|
| 919 |
+
!message *** Doing profile guided optimization
|
| 920 |
+
PGO = 2
|
| 921 |
+
!else
|
| 922 |
+
PGO = 0
|
| 923 |
+
!endif
|
| 924 |
+
|
| 925 |
+
!if [nmakehlp -f $(OPTS) "loimpact"]
|
| 926 |
+
!message *** Warning: ignoring option "loimpact" - deprecated on modern Windows.
|
| 927 |
+
!endif
|
| 928 |
+
|
| 929 |
+
# TBD - should get rid of this option
|
| 930 |
+
!if [nmakehlp -f $(OPTS) "thrdalloc"]
|
| 931 |
+
!message *** Doing thrdalloc
|
| 932 |
+
USE_THREAD_ALLOC = 1
|
| 933 |
+
!endif
|
| 934 |
+
|
| 935 |
+
!if [nmakehlp -f $(OPTS) "tclalloc"]
|
| 936 |
+
USE_THREAD_ALLOC = 0
|
| 937 |
+
!endif
|
| 938 |
+
|
| 939 |
+
!if [nmakehlp -f $(OPTS) "unchecked"]
|
| 940 |
+
!message *** Doing unchecked
|
| 941 |
+
UNCHECKED = 1
|
| 942 |
+
!else
|
| 943 |
+
UNCHECKED = 0
|
| 944 |
+
!endif
|
| 945 |
+
|
| 946 |
+
!if [nmakehlp -f $(OPTS) "noconfigcheck"]
|
| 947 |
+
CONFIG_CHECK = 1
|
| 948 |
+
!else
|
| 949 |
+
CONFIG_CHECK = 0
|
| 950 |
+
!endif
|
| 951 |
+
|
| 952 |
+
!endif # "$(OPTS)" != "" && ... parsing of OPTS
|
| 953 |
+
|
| 954 |
+
# Set linker flags based on above
|
| 955 |
+
|
| 956 |
+
!if $(PGO) > 1
|
| 957 |
+
!if [nmakehlp -l -ltcg:pgoptimize $(LINKER_TESTFLAGS)]
|
| 958 |
+
LINKERFLAGS = $(LINKERFLAGS:-ltcg=) -ltcg:pgoptimize
|
| 959 |
+
!else
|
| 960 |
+
MSG=^
|
| 961 |
+
This compiler does not support profile guided optimization.
|
| 962 |
+
!error $(MSG)
|
| 963 |
+
!endif
|
| 964 |
+
!elseif $(PGO) > 0
|
| 965 |
+
!if [nmakehlp -l -ltcg:pginstrument $(LINKER_TESTFLAGS)]
|
| 966 |
+
LINKERFLAGS = $(LINKERFLAGS:-ltcg=) -ltcg:pginstrument
|
| 967 |
+
!else
|
| 968 |
+
MSG=^
|
| 969 |
+
This compiler does not support profile guided optimization.
|
| 970 |
+
!error $(MSG)
|
| 971 |
+
!endif
|
| 972 |
+
!endif
|
| 973 |
+
|
| 974 |
+
################################################################
|
| 975 |
+
# 8. Parse the STATS macro to configure code instrumentation
|
| 976 |
+
# The following macros are set by this section:
|
| 977 |
+
# TCL_MEM_DEBUG - 1 -> enables memory allocation instrumentation
|
| 978 |
+
# 0 -> disables
|
| 979 |
+
# TCL_COMPILE_DEBUG - 1 -> enables byte compiler logging
|
| 980 |
+
# 0 -> disables
|
| 981 |
+
|
| 982 |
+
# Default both are off
|
| 983 |
+
TCL_MEM_DEBUG = 0
|
| 984 |
+
TCL_COMPILE_DEBUG = 0
|
| 985 |
+
|
| 986 |
+
!if "$(STATS)" != "" && ![nmakehlp -f "$(STATS)" "none"]
|
| 987 |
+
|
| 988 |
+
!if [nmakehlp -f $(STATS) "memdbg"]
|
| 989 |
+
!message *** Doing memdbg
|
| 990 |
+
TCL_MEM_DEBUG = 1
|
| 991 |
+
!else
|
| 992 |
+
TCL_MEM_DEBUG = 0
|
| 993 |
+
!endif
|
| 994 |
+
|
| 995 |
+
!if [nmakehlp -f $(STATS) "compdbg"]
|
| 996 |
+
!message *** Doing compdbg
|
| 997 |
+
TCL_COMPILE_DEBUG = 1
|
| 998 |
+
!else
|
| 999 |
+
TCL_COMPILE_DEBUG = 0
|
| 1000 |
+
!endif
|
| 1001 |
+
|
| 1002 |
+
!endif
|
| 1003 |
+
|
| 1004 |
+
####################################################################
|
| 1005 |
+
# 9. Parse the CHECKS macro to configure additional compiler checks
|
| 1006 |
+
# The following macros are set by this section:
|
| 1007 |
+
# WARNINGS - compiler switches that control the warnings level
|
| 1008 |
+
# TCL_NO_DEPRECATED - 1 -> disable support for deprecated functions
|
| 1009 |
+
# 0 -> enable deprecated functions
|
| 1010 |
+
|
| 1011 |
+
# Defaults - Permit deprecated functions and warning level 3
|
| 1012 |
+
TCL_NO_DEPRECATED = 0
|
| 1013 |
+
WARNINGS = -W3
|
| 1014 |
+
|
| 1015 |
+
!if "$(CHECKS)" != "" && ![nmakehlp -f "$(CHECKS)" "none"]
|
| 1016 |
+
|
| 1017 |
+
!if [nmakehlp -f $(CHECKS) "nodep"]
|
| 1018 |
+
!message *** Doing nodep check
|
| 1019 |
+
TCL_NO_DEPRECATED = 1
|
| 1020 |
+
!endif
|
| 1021 |
+
|
| 1022 |
+
!if [nmakehlp -f $(CHECKS) "fullwarn"]
|
| 1023 |
+
!message *** Doing full warnings check
|
| 1024 |
+
WARNINGS = -W4
|
| 1025 |
+
!if [nmakehlp -l -warn:3 $(LINKER_TESTFLAGS)]
|
| 1026 |
+
LINKERFLAGS = $(LINKERFLAGS) -warn:3
|
| 1027 |
+
!endif
|
| 1028 |
+
!endif
|
| 1029 |
+
|
| 1030 |
+
!if [nmakehlp -f $(CHECKS) "64bit"] && [nmakehlp -c -Wp64]
|
| 1031 |
+
!message *** Doing 64bit portability warnings
|
| 1032 |
+
WARNINGS = $(WARNINGS) -Wp64
|
| 1033 |
+
!endif
|
| 1034 |
+
|
| 1035 |
+
!endif
|
| 1036 |
+
|
| 1037 |
+
|
| 1038 |
+
################################################################
|
| 1039 |
+
# 10. Construct output directory and file paths
|
| 1040 |
+
# Figure-out how to name our intermediate and output directories.
|
| 1041 |
+
# In order to avoid inadvertent mixing of object files built using
|
| 1042 |
+
# different compilers, build configurations etc.,
|
| 1043 |
+
#
|
| 1044 |
+
# Naming convention (suffixes):
|
| 1045 |
+
# t = full thread support. (Not used for Tcl >= 8.7)
|
| 1046 |
+
# s = static library (as opposed to an import library)
|
| 1047 |
+
# g = linked to the debug enabled C run-time.
|
| 1048 |
+
# x = special static build when it links to the dynamic C run-time.
|
| 1049 |
+
#
|
| 1050 |
+
# The following macros are set in this section:
|
| 1051 |
+
# SUFX - the suffix to use for binaries based on above naming convention
|
| 1052 |
+
# BUILDDIRTOP - the toplevel default output directory
|
| 1053 |
+
# is of the form {Release,Debug}[_AMD64][_COMPILERVERSION]
|
| 1054 |
+
# TMP_DIR - directory where object files are created
|
| 1055 |
+
# OUT_DIR - directory where output executables are created
|
| 1056 |
+
# Both TMP_DIR and OUT_DIR are defaulted only if not defined by the
|
| 1057 |
+
# parent makefile (or command line). The default values are
|
| 1058 |
+
# based on BUILDDIRTOP.
|
| 1059 |
+
# STUBPREFIX - name of the stubs library for this project
|
| 1060 |
+
# PRJIMPLIB - output path of the generated project import library
|
| 1061 |
+
# PRJLIBNAME - name of generated project library
|
| 1062 |
+
# PRJLIB - output path of generated project library
|
| 1063 |
+
# PRJSTUBLIBNAME - name of the generated project stubs library
|
| 1064 |
+
# PRJSTUBLIB - output path of the generated project stubs library
|
| 1065 |
+
# RESFILE - output resource file (only if not static build)
|
| 1066 |
+
|
| 1067 |
+
SUFX = tsgx
|
| 1068 |
+
|
| 1069 |
+
!if $(DEBUG)
|
| 1070 |
+
BUILDDIRTOP = Debug
|
| 1071 |
+
!else
|
| 1072 |
+
BUILDDIRTOP = Release
|
| 1073 |
+
!endif
|
| 1074 |
+
|
| 1075 |
+
!if "$(MACHINE)" != "IX86"
|
| 1076 |
+
BUILDDIRTOP =$(BUILDDIRTOP)_$(MACHINE)
|
| 1077 |
+
!endif
|
| 1078 |
+
!if $(VCVER) > 6
|
| 1079 |
+
BUILDDIRTOP =$(BUILDDIRTOP)_VC$(VCVER)
|
| 1080 |
+
!endif
|
| 1081 |
+
|
| 1082 |
+
!if !$(DEBUG) || $(TCL_VERSION) > 86 || $(DEBUG) && $(UNCHECKED)
|
| 1083 |
+
SUFX = $(SUFX:g=)
|
| 1084 |
+
!endif
|
| 1085 |
+
|
| 1086 |
+
TMP_DIRFULL = .\$(BUILDDIRTOP)\$(PROJECT)_ThreadedDynamicStaticX
|
| 1087 |
+
|
| 1088 |
+
!if !$(STATIC_BUILD)
|
| 1089 |
+
TMP_DIRFULL = $(TMP_DIRFULL:Static=)
|
| 1090 |
+
SUFX = $(SUFX:s=)
|
| 1091 |
+
EXT = dll
|
| 1092 |
+
TMP_DIRFULL = $(TMP_DIRFULL:X=)
|
| 1093 |
+
SUFX = $(SUFX:x=)
|
| 1094 |
+
!else
|
| 1095 |
+
TMP_DIRFULL = $(TMP_DIRFULL:Dynamic=)
|
| 1096 |
+
EXT = lib
|
| 1097 |
+
!if !$(MSVCRT)
|
| 1098 |
+
TMP_DIRFULL = $(TMP_DIRFULL:X=)
|
| 1099 |
+
SUFX = $(SUFX:x=)
|
| 1100 |
+
!endif
|
| 1101 |
+
!endif
|
| 1102 |
+
|
| 1103 |
+
!if !$(TCL_THREADS) || $(TCL_VERSION) > 86
|
| 1104 |
+
TMP_DIRFULL = $(TMP_DIRFULL:Threaded=)
|
| 1105 |
+
SUFX = $(SUFX:t=)
|
| 1106 |
+
!endif
|
| 1107 |
+
|
| 1108 |
+
!ifndef TMP_DIR
|
| 1109 |
+
TMP_DIR = $(TMP_DIRFULL)
|
| 1110 |
+
!ifndef OUT_DIR
|
| 1111 |
+
OUT_DIR = .\$(BUILDDIRTOP)
|
| 1112 |
+
!endif
|
| 1113 |
+
!else
|
| 1114 |
+
!ifndef OUT_DIR
|
| 1115 |
+
OUT_DIR = $(TMP_DIR)
|
| 1116 |
+
!endif
|
| 1117 |
+
!endif
|
| 1118 |
+
|
| 1119 |
+
# Relative paths -> absolute
|
| 1120 |
+
!if [echo OUT_DIR = \> nmakehlp.out] \
|
| 1121 |
+
|| [nmakehlp -Q "$(OUT_DIR)" >> nmakehlp.out]
|
| 1122 |
+
!error *** Could not fully qualify path OUT_DIR=$(OUT_DIR)
|
| 1123 |
+
!endif
|
| 1124 |
+
!if [echo TMP_DIR = \>> nmakehlp.out] \
|
| 1125 |
+
|| [nmakehlp -Q "$(TMP_DIR)" >> nmakehlp.out]
|
| 1126 |
+
!error *** Could not fully qualify path TMP_DIR=$(TMP_DIR)
|
| 1127 |
+
!endif
|
| 1128 |
+
!include nmakehlp.out
|
| 1129 |
+
|
| 1130 |
+
# The name of the stubs library for the project being built
|
| 1131 |
+
STUBPREFIX = $(PROJECT)stub
|
| 1132 |
+
|
| 1133 |
+
#
|
| 1134 |
+
# Set up paths to various Tcl executables and libraries needed by extensions
|
| 1135 |
+
#
|
| 1136 |
+
|
| 1137 |
+
# TIP 430. Unused for 8.6 but no harm defining it to allow a common rules.vc
|
| 1138 |
+
TCLSCRIPTZIPNAME = libtcl$(TCL_MAJOR_VERSION).$(TCL_MINOR_VERSION)$(TCL_PATCH_LETTER)$(TCL_RELEASE_SERIAL).zip
|
| 1139 |
+
TKSCRIPTZIPNAME = libtk$(TK_MAJOR_VERSION).$(TK_MINOR_VERSION)$(TK_PATCH_LETTER)$(TK_RELEASE_SERIAL).zip
|
| 1140 |
+
|
| 1141 |
+
!if $(DOING_TCL)
|
| 1142 |
+
TCLSHNAME = $(PROJECT)sh$(VERSION)$(SUFX).exe
|
| 1143 |
+
TCLSH = $(OUT_DIR)\$(TCLSHNAME)
|
| 1144 |
+
TCLIMPLIB = $(OUT_DIR)\$(PROJECT)$(VERSION)$(SUFX).lib
|
| 1145 |
+
TCLLIBNAME = $(PROJECT)$(VERSION)$(SUFX).$(EXT)
|
| 1146 |
+
TCLLIB = $(OUT_DIR)\$(TCLLIBNAME)
|
| 1147 |
+
TCLSCRIPTZIP = $(OUT_DIR)\$(TCLSCRIPTZIPNAME)
|
| 1148 |
+
|
| 1149 |
+
TCLSTUBLIBNAME = $(STUBPREFIX)$(VERSION).lib
|
| 1150 |
+
TCLSTUBLIB = $(OUT_DIR)\$(TCLSTUBLIBNAME)
|
| 1151 |
+
TCL_INCLUDES = -I"$(WIN_DIR)" -I"$(GENERICDIR)"
|
| 1152 |
+
|
| 1153 |
+
!else # !$(DOING_TCL)
|
| 1154 |
+
|
| 1155 |
+
!if $(TCLINSTALL) # Building against an installed Tcl
|
| 1156 |
+
|
| 1157 |
+
# When building extensions, we need to locate tclsh. Depending on version
|
| 1158 |
+
# of Tcl we are building against, this may or may not have a "t" suffix.
|
| 1159 |
+
# Try various possibilities in turn.
|
| 1160 |
+
TCLSH = $(_TCLDIR)\bin\tclsh$(TCL_VERSION)$(SUFX:t=).exe
|
| 1161 |
+
!if !exist("$(TCLSH)")
|
| 1162 |
+
TCLSH = $(_TCLDIR)\bin\tclsh$(TCL_VERSION)t$(SUFX:t=).exe
|
| 1163 |
+
!endif
|
| 1164 |
+
|
| 1165 |
+
TCLSTUBLIB = $(_TCLDIR)\lib\tclstub$(TCL_VERSION).lib
|
| 1166 |
+
TCLIMPLIB = $(_TCLDIR)\lib\tcl$(TCL_VERSION)$(SUFX:t=).lib
|
| 1167 |
+
# When building extensions, may be linking against Tcl that does not add
|
| 1168 |
+
# "t" suffix (e.g. 8.5 or 8.7). If lib not found check for that possibility.
|
| 1169 |
+
!if !exist("$(TCLIMPLIB)")
|
| 1170 |
+
TCLIMPLIB = $(_TCLDIR)\lib\tcl$(TCL_VERSION)t$(SUFX:t=).lib
|
| 1171 |
+
!endif
|
| 1172 |
+
TCL_LIBRARY = $(_TCLDIR)\lib
|
| 1173 |
+
TCLREGLIB = $(_TCLDIR)\lib\tclreg13$(SUFX:t=).lib
|
| 1174 |
+
TCLDDELIB = $(_TCLDIR)\lib\tcldde14$(SUFX:t=).lib
|
| 1175 |
+
TCLSCRIPTZIP = $(_TCLDIR)\lib\$(TCLSCRIPTZIPNAME)
|
| 1176 |
+
TCLTOOLSDIR = \must\have\tcl\sources\to\build\this\target
|
| 1177 |
+
TCL_INCLUDES = -I"$(_TCLDIR)\include"
|
| 1178 |
+
|
| 1179 |
+
!else # Building against Tcl sources
|
| 1180 |
+
|
| 1181 |
+
TCLSH = $(_TCLDIR)\win\$(BUILDDIRTOP)\tclsh$(TCL_VERSION)$(SUFX:t=).exe
|
| 1182 |
+
!if !exist($(TCLSH))
|
| 1183 |
+
TCLSH = $(_TCLDIR)\win\$(BUILDDIRTOP)\tclsh$(TCL_VERSION)t$(SUFX:t=).exe
|
| 1184 |
+
!endif
|
| 1185 |
+
TCLSTUBLIB = $(_TCLDIR)\win\$(BUILDDIRTOP)\tclstub$(TCL_VERSION).lib
|
| 1186 |
+
TCLIMPLIB = $(_TCLDIR)\win\$(BUILDDIRTOP)\tcl$(TCL_VERSION)$(SUFX:t=).lib
|
| 1187 |
+
# When building extensions, may be linking against Tcl that does not add
|
| 1188 |
+
# "t" suffix (e.g. 8.5 or 8.7). If lib not found check for that possibility.
|
| 1189 |
+
!if !exist("$(TCLIMPLIB)")
|
| 1190 |
+
TCLIMPLIB = $(_TCLDIR)\win\$(BUILDDIRTOP)\tcl$(TCL_VERSION)t$(SUFX:t=).lib
|
| 1191 |
+
!endif
|
| 1192 |
+
TCL_LIBRARY = $(_TCLDIR)\library
|
| 1193 |
+
TCLREGLIB = $(_TCLDIR)\win\$(BUILDDIRTOP)\tclreg13$(SUFX:t=).lib
|
| 1194 |
+
TCLDDELIB = $(_TCLDIR)\win\$(BUILDDIRTOP)\tcldde14$(SUFX:t=).lib
|
| 1195 |
+
TCLSCRIPTZIP = $(_TCLDIR)\win\$(BUILDDIRTOP)\$(TCLSCRIPTZIPNAME)
|
| 1196 |
+
TCLTOOLSDIR = $(_TCLDIR)\tools
|
| 1197 |
+
TCL_INCLUDES = -I"$(_TCLDIR)\generic" -I"$(_TCLDIR)\win"
|
| 1198 |
+
|
| 1199 |
+
!endif # TCLINSTALL
|
| 1200 |
+
|
| 1201 |
+
tcllibs = "$(TCLSTUBLIB)" "$(TCLIMPLIB)"
|
| 1202 |
+
|
| 1203 |
+
!endif # $(DOING_TCL)
|
| 1204 |
+
|
| 1205 |
+
# We need a tclsh that will run on the host machine as part of the build.
|
| 1206 |
+
# IX86 runs on all architectures.
|
| 1207 |
+
!ifndef TCLSH_NATIVE
|
| 1208 |
+
!if "$(MACHINE)" == "IX86" || "$(MACHINE)" == "$(NATIVE_ARCH)"
|
| 1209 |
+
TCLSH_NATIVE = $(TCLSH)
|
| 1210 |
+
!else
|
| 1211 |
+
!error You must explicitly set TCLSH_NATIVE for cross-compilation
|
| 1212 |
+
!endif
|
| 1213 |
+
!endif
|
| 1214 |
+
|
| 1215 |
+
# Do the same for Tk and Tk extensions that require the Tk libraries
|
| 1216 |
+
!if $(DOING_TK) || $(NEED_TK)
|
| 1217 |
+
WISHNAMEPREFIX = wish
|
| 1218 |
+
WISHNAME = $(WISHNAMEPREFIX)$(TK_VERSION)$(SUFX).exe
|
| 1219 |
+
TKLIBNAME8 = tk$(TK_VERSION)$(SUFX).$(EXT)
|
| 1220 |
+
TKLIBNAME9 = tcl9tk$(TK_VERSION)$(SUFX).$(EXT)
|
| 1221 |
+
!if $(TCL_MAJOR_VERSION) == 8
|
| 1222 |
+
TKLIBNAME = tk$(TK_VERSION)$(SUFX).$(EXT)
|
| 1223 |
+
TKIMPLIBNAME = tk$(TK_VERSION)$(SUFX).lib
|
| 1224 |
+
!else
|
| 1225 |
+
TKLIBNAME = tcl9tk$(TK_VERSION)$(SUFX).$(EXT)
|
| 1226 |
+
TKIMPLIBNAME = tcl9tk$(TK_VERSION)$(SUFX).lib
|
| 1227 |
+
!endif
|
| 1228 |
+
TKSTUBLIBNAME = tkstub$(TK_VERSION).lib
|
| 1229 |
+
|
| 1230 |
+
!if $(DOING_TK)
|
| 1231 |
+
WISH = $(OUT_DIR)\$(WISHNAME)
|
| 1232 |
+
TKSTUBLIB = $(OUT_DIR)\$(TKSTUBLIBNAME)
|
| 1233 |
+
TKIMPLIB = $(OUT_DIR)\$(TKIMPLIBNAME)
|
| 1234 |
+
TKLIB = $(OUT_DIR)\$(TKLIBNAME)
|
| 1235 |
+
TK_INCLUDES = -I"$(WIN_DIR)" -I"$(GENERICDIR)"
|
| 1236 |
+
TKSCRIPTZIP = $(OUT_DIR)\$(TKSCRIPTZIPNAME)
|
| 1237 |
+
|
| 1238 |
+
!else # effectively NEED_TK
|
| 1239 |
+
|
| 1240 |
+
!if $(TKINSTALL) # Building against installed Tk
|
| 1241 |
+
WISH = $(_TKDIR)\bin\$(WISHNAME)
|
| 1242 |
+
TKSTUBLIB = $(_TKDIR)\lib\$(TKSTUBLIBNAME)
|
| 1243 |
+
TKIMPLIB = $(_TKDIR)\lib\$(TKIMPLIBNAME)
|
| 1244 |
+
# When building extensions, may be linking against Tk that does not add
|
| 1245 |
+
# "t" suffix (e.g. 8.5 or 8.7). If lib not found check for that possibility.
|
| 1246 |
+
!if !exist("$(TKIMPLIB)")
|
| 1247 |
+
TKIMPLIBNAME = tk$(TK_VERSION)$(SUFX:t=).lib
|
| 1248 |
+
TKIMPLIB = $(_TKDIR)\lib\$(TKIMPLIBNAME)
|
| 1249 |
+
!endif
|
| 1250 |
+
TK_INCLUDES = -I"$(_TKDIR)\include"
|
| 1251 |
+
TKSCRIPTZIP = $(_TKDIR)\lib\$(TKSCRIPTZIPNAME)
|
| 1252 |
+
|
| 1253 |
+
!else # Building against Tk sources
|
| 1254 |
+
|
| 1255 |
+
WISH = $(_TKDIR)\win\$(BUILDDIRTOP)\$(WISHNAME)
|
| 1256 |
+
TKSTUBLIB = $(_TKDIR)\win\$(BUILDDIRTOP)\$(TKSTUBLIBNAME)
|
| 1257 |
+
TKIMPLIB = $(_TKDIR)\win\$(BUILDDIRTOP)\$(TKIMPLIBNAME)
|
| 1258 |
+
# When building extensions, may be linking against Tk that does not add
|
| 1259 |
+
# "t" suffix (e.g. 8.5 or 8.7). If lib not found check for that possibility.
|
| 1260 |
+
!if !exist("$(TKIMPLIB)")
|
| 1261 |
+
TKIMPLIBNAME = tk$(TK_VERSION)$(SUFX:t=).lib
|
| 1262 |
+
TKIMPLIB = $(_TKDIR)\win\$(BUILDDIRTOP)\$(TKIMPLIBNAME)
|
| 1263 |
+
!endif
|
| 1264 |
+
TK_INCLUDES = -I"$(_TKDIR)\generic" -I"$(_TKDIR)\win" -I"$(_TKDIR)\xlib"
|
| 1265 |
+
TKSCRIPTZIP = $(_TKDIR)\win\$(BUILDDIRTOP)\$(TKSCRIPTZIPNAME)
|
| 1266 |
+
|
| 1267 |
+
!endif # TKINSTALL
|
| 1268 |
+
|
| 1269 |
+
tklibs = "$(TKSTUBLIB)" "$(TKIMPLIB)"
|
| 1270 |
+
|
| 1271 |
+
!endif # $(DOING_TK)
|
| 1272 |
+
!endif # $(DOING_TK) || $(NEED_TK)
|
| 1273 |
+
|
| 1274 |
+
# Various output paths
|
| 1275 |
+
PRJIMPLIB = $(OUT_DIR)\$(PROJECT)$(VERSION)$(SUFX).lib
|
| 1276 |
+
PRJLIBNAME8 = $(PROJECT)$(VERSION)$(SUFX).$(EXT)
|
| 1277 |
+
PRJLIBNAME9 = tcl9$(PROJECT)$(VERSION)$(SUFX).$(EXT)
|
| 1278 |
+
!if $(TCL_MAJOR_VERSION) == 8
|
| 1279 |
+
PRJLIBNAME = $(PRJLIBNAME8)
|
| 1280 |
+
!else
|
| 1281 |
+
PRJLIBNAME = $(PRJLIBNAME9)
|
| 1282 |
+
!endif
|
| 1283 |
+
PRJLIB = $(OUT_DIR)\$(PRJLIBNAME)
|
| 1284 |
+
|
| 1285 |
+
PRJSTUBLIBNAME = $(STUBPREFIX)$(VERSION).lib
|
| 1286 |
+
PRJSTUBLIB = $(OUT_DIR)\$(PRJSTUBLIBNAME)
|
| 1287 |
+
|
| 1288 |
+
# If extension parent makefile has not defined a resource definition file,
|
| 1289 |
+
# we will generate one from standard template.
|
| 1290 |
+
!if !$(DOING_TCL) && !$(DOING_TK) && !$(STATIC_BUILD)
|
| 1291 |
+
!ifdef RCFILE
|
| 1292 |
+
RESFILE = $(TMP_DIR)\$(RCFILE:.rc=.res)
|
| 1293 |
+
!else
|
| 1294 |
+
RESFILE = $(TMP_DIR)\$(PROJECT).res
|
| 1295 |
+
!endif
|
| 1296 |
+
!endif
|
| 1297 |
+
|
| 1298 |
+
###################################################################
|
| 1299 |
+
# 11. Construct the paths for the installation directories
|
| 1300 |
+
# The following macros get defined in this section:
|
| 1301 |
+
# LIB_INSTALL_DIR - where libraries should be installed
|
| 1302 |
+
# BIN_INSTALL_DIR - where the executables should be installed
|
| 1303 |
+
# DOC_INSTALL_DIR - where documentation should be installed
|
| 1304 |
+
# SCRIPT_INSTALL_DIR - where scripts should be installed
|
| 1305 |
+
# INCLUDE_INSTALL_DIR - where C include files should be installed
|
| 1306 |
+
# DEMO_INSTALL_DIR - where demos should be installed
|
| 1307 |
+
# PRJ_INSTALL_DIR - where package will be installed (not set for Tcl and Tk)
|
| 1308 |
+
|
| 1309 |
+
!if $(DOING_TCL) || $(DOING_TK)
|
| 1310 |
+
LIB_INSTALL_DIR = $(_INSTALLDIR)\lib
|
| 1311 |
+
BIN_INSTALL_DIR = $(_INSTALLDIR)\bin
|
| 1312 |
+
DOC_INSTALL_DIR = $(_INSTALLDIR)\doc
|
| 1313 |
+
!if $(DOING_TCL)
|
| 1314 |
+
SCRIPT_INSTALL_DIR = $(_INSTALLDIR)\lib\$(PROJECT)$(TCL_MAJOR_VERSION).$(TCL_MINOR_VERSION)
|
| 1315 |
+
MODULE_INSTALL_DIR = $(_INSTALLDIR)\lib\tcl$(TCL_MAJOR_VERSION)
|
| 1316 |
+
!else # DOING_TK
|
| 1317 |
+
SCRIPT_INSTALL_DIR = $(_INSTALLDIR)\lib\$(PROJECT)$(TK_MAJOR_VERSION).$(TK_MINOR_VERSION)
|
| 1318 |
+
!endif
|
| 1319 |
+
DEMO_INSTALL_DIR = $(SCRIPT_INSTALL_DIR)\demos
|
| 1320 |
+
INCLUDE_INSTALL_DIR = $(_INSTALLDIR)\include
|
| 1321 |
+
|
| 1322 |
+
!else # extension other than Tk
|
| 1323 |
+
|
| 1324 |
+
PRJ_INSTALL_DIR = $(_INSTALLDIR)\$(PROJECT)$(DOTVERSION)
|
| 1325 |
+
!if $(MULTIPLATFORM_INSTALL)
|
| 1326 |
+
LIB_INSTALL_DIR = $(PRJ_INSTALL_DIR)\$(PLATFORM_IDENTIFY)
|
| 1327 |
+
BIN_INSTALL_DIR = $(PRJ_INSTALL_DIR)\$(PLATFORM_IDENTIFY)
|
| 1328 |
+
!else
|
| 1329 |
+
LIB_INSTALL_DIR = $(PRJ_INSTALL_DIR)
|
| 1330 |
+
BIN_INSTALL_DIR = $(PRJ_INSTALL_DIR)
|
| 1331 |
+
!endif
|
| 1332 |
+
DOC_INSTALL_DIR = $(PRJ_INSTALL_DIR)
|
| 1333 |
+
SCRIPT_INSTALL_DIR = $(PRJ_INSTALL_DIR)
|
| 1334 |
+
DEMO_INSTALL_DIR = $(PRJ_INSTALL_DIR)\demos
|
| 1335 |
+
INCLUDE_INSTALL_DIR = $(_INSTALLDIR)\..\include
|
| 1336 |
+
|
| 1337 |
+
!endif
|
| 1338 |
+
|
| 1339 |
+
###################################################################
|
| 1340 |
+
# 12. Set up actual options to be passed to the compiler and linker
|
| 1341 |
+
# Now we have all the information we need, set up the actual flags and
|
| 1342 |
+
# options that we will pass to the compiler and linker. The main
|
| 1343 |
+
# makefile should use these in combination with whatever other flags
|
| 1344 |
+
# and switches are specific to it.
|
| 1345 |
+
# The following macros are defined, names are for historical compatibility:
|
| 1346 |
+
# OPTDEFINES - /Dxxx C macro flags based on user-specified OPTS
|
| 1347 |
+
# COMPILERFLAGS - /Dxxx C macro flags independent of any configuration opttions
|
| 1348 |
+
# crt - Compiler switch that selects the appropriate C runtime
|
| 1349 |
+
# cdebug - Compiler switches related to debug AND optimizations
|
| 1350 |
+
# cwarn - Compiler switches that set warning levels
|
| 1351 |
+
# cflags - complete compiler switches (subsumes cdebug and cwarn)
|
| 1352 |
+
# ldebug - Linker switches controlling debug information and optimization
|
| 1353 |
+
# lflags - complete linker switches (subsumes ldebug) except subsystem type
|
| 1354 |
+
# dlllflags - complete linker switches to build DLLs (subsumes lflags)
|
| 1355 |
+
# conlflags - complete linker switches for console program (subsumes lflags)
|
| 1356 |
+
# guilflags - complete linker switches for GUI program (subsumes lflags)
|
| 1357 |
+
# baselibs - minimum Windows libraries required. Parent makefile can
|
| 1358 |
+
# define PRJ_LIBS before including rules.rc if additional libs are needed
|
| 1359 |
+
|
| 1360 |
+
OPTDEFINES = /DSTDC_HEADERS /DUSE_NMAKE=1
|
| 1361 |
+
!if $(VCVERSION) > 1600
|
| 1362 |
+
OPTDEFINES = $(OPTDEFINES) /DHAVE_STDINT_H=1
|
| 1363 |
+
!else
|
| 1364 |
+
OPTDEFINES = $(OPTDEFINES) /DMP_NO_STDINT=1
|
| 1365 |
+
!endif
|
| 1366 |
+
!if $(VCVERSION) >= 1800
|
| 1367 |
+
OPTDEFINES = $(OPTDEFINES) /DHAVE_INTTYPES_H=1 /DHAVE_STDBOOL_H=1
|
| 1368 |
+
!endif
|
| 1369 |
+
|
| 1370 |
+
!if $(TCL_MEM_DEBUG)
|
| 1371 |
+
OPTDEFINES = $(OPTDEFINES) /DTCL_MEM_DEBUG
|
| 1372 |
+
!endif
|
| 1373 |
+
!if $(TCL_COMPILE_DEBUG)
|
| 1374 |
+
OPTDEFINES = $(OPTDEFINES) /DTCL_COMPILE_DEBUG /DTCL_COMPILE_STATS
|
| 1375 |
+
!endif
|
| 1376 |
+
!if $(TCL_THREADS) && $(TCL_VERSION) < 87
|
| 1377 |
+
OPTDEFINES = $(OPTDEFINES) /DTCL_THREADS=1
|
| 1378 |
+
!if $(USE_THREAD_ALLOC) && $(TCL_VERSION) < 87
|
| 1379 |
+
OPTDEFINES = $(OPTDEFINES) /DUSE_THREAD_ALLOC=1
|
| 1380 |
+
!endif
|
| 1381 |
+
!endif
|
| 1382 |
+
!if $(STATIC_BUILD)
|
| 1383 |
+
OPTDEFINES = $(OPTDEFINES) /DSTATIC_BUILD
|
| 1384 |
+
!elseif $(TCL_VERSION) > 86
|
| 1385 |
+
OPTDEFINES = $(OPTDEFINES) /DTCL_WITH_EXTERNAL_TOMMATH
|
| 1386 |
+
!if "$(MACHINE)" == "AMD64" || "$(MACHINE)" == "ARM64"
|
| 1387 |
+
OPTDEFINES = $(OPTDEFINES) /DMP_64BIT
|
| 1388 |
+
!endif
|
| 1389 |
+
!endif
|
| 1390 |
+
!if $(TCL_NO_DEPRECATED)
|
| 1391 |
+
OPTDEFINES = $(OPTDEFINES) /DTCL_NO_DEPRECATED
|
| 1392 |
+
!endif
|
| 1393 |
+
|
| 1394 |
+
!if $(USE_STUBS)
|
| 1395 |
+
# Note we do not define USE_TCL_STUBS even when building tk since some
|
| 1396 |
+
# test targets in tk do not use stubs
|
| 1397 |
+
!if !$(DOING_TCL)
|
| 1398 |
+
USE_STUBS_DEFS = /DUSE_TCL_STUBS /DUSE_TCLOO_STUBS
|
| 1399 |
+
!if $(NEED_TK)
|
| 1400 |
+
USE_STUBS_DEFS = $(USE_STUBS_DEFS) /DUSE_TK_STUBS
|
| 1401 |
+
!endif
|
| 1402 |
+
!endif
|
| 1403 |
+
!endif # USE_STUBS
|
| 1404 |
+
|
| 1405 |
+
!if !$(DEBUG)
|
| 1406 |
+
OPTDEFINES = $(OPTDEFINES) /DNDEBUG
|
| 1407 |
+
!if $(OPTIMIZING)
|
| 1408 |
+
OPTDEFINES = $(OPTDEFINES) /DTCL_CFG_OPTIMIZED
|
| 1409 |
+
!endif
|
| 1410 |
+
!endif
|
| 1411 |
+
!if $(PROFILE)
|
| 1412 |
+
OPTDEFINES = $(OPTDEFINES) /DTCL_CFG_PROFILED
|
| 1413 |
+
!endif
|
| 1414 |
+
!if "$(MACHINE)" == "AMD64" || "$(MACHINE)" == "ARM64"
|
| 1415 |
+
OPTDEFINES = $(OPTDEFINES) /DTCL_CFG_DO64BIT
|
| 1416 |
+
!endif
|
| 1417 |
+
!if $(VCVERSION) < 1300
|
| 1418 |
+
OPTDEFINES = $(OPTDEFINES) /DNO_STRTOI64=1
|
| 1419 |
+
!endif
|
| 1420 |
+
|
| 1421 |
+
!if $(TCL_MAJOR_VERSION) == 8
|
| 1422 |
+
!if "$(_USE_64BIT_TIME_T)" == "1"
|
| 1423 |
+
OPTDEFINES = $(OPTDEFINES) /D_USE_64BIT_TIME_T=1
|
| 1424 |
+
!endif
|
| 1425 |
+
|
| 1426 |
+
# _ATL_XP_TARGETING - Newer SDK's need this to build for XP
|
| 1427 |
+
COMPILERFLAGS = /D_ATL_XP_TARGETING
|
| 1428 |
+
!endif
|
| 1429 |
+
!if "$(TCL_UTF_MAX)" == "3"
|
| 1430 |
+
OPTDEFINES = $(OPTDEFINES) /DTCL_UTF_MAX=3
|
| 1431 |
+
!endif
|
| 1432 |
+
|
| 1433 |
+
# Like the TEA system only set this non empty for non-Tk extensions
|
| 1434 |
+
# Note: some extensions use PACKAGE_NAME and others use PACKAGE_TCLNAME
|
| 1435 |
+
# so we pass both
|
| 1436 |
+
!if !$(DOING_TCL) && !$(DOING_TK)
|
| 1437 |
+
PKGNAMEFLAGS = /DPACKAGE_NAME="\"$(PRJ_PACKAGE_TCLNAME)\"" \
|
| 1438 |
+
/DPACKAGE_TCLNAME="\"$(PRJ_PACKAGE_TCLNAME)\"" \
|
| 1439 |
+
/DPACKAGE_VERSION="\"$(DOTVERSION)\"" \
|
| 1440 |
+
/DMODULE_SCOPE=extern
|
| 1441 |
+
!endif
|
| 1442 |
+
|
| 1443 |
+
# crt picks the C run time based on selected OPTS
|
| 1444 |
+
!if $(MSVCRT)
|
| 1445 |
+
!if $(DEBUG) && !$(UNCHECKED)
|
| 1446 |
+
crt = -MDd
|
| 1447 |
+
!else
|
| 1448 |
+
crt = -MD
|
| 1449 |
+
!endif
|
| 1450 |
+
!else
|
| 1451 |
+
!if $(DEBUG) && !$(UNCHECKED)
|
| 1452 |
+
crt = -MTd
|
| 1453 |
+
!else
|
| 1454 |
+
crt = -MT
|
| 1455 |
+
!endif
|
| 1456 |
+
!endif
|
| 1457 |
+
|
| 1458 |
+
# cdebug includes compiler options for debugging as well as optimization.
|
| 1459 |
+
!if $(DEBUG)
|
| 1460 |
+
|
| 1461 |
+
# In debugging mode, optimizations need to be disabled
|
| 1462 |
+
cdebug = -Zi -Od $(DEBUGFLAGS)
|
| 1463 |
+
|
| 1464 |
+
!else
|
| 1465 |
+
|
| 1466 |
+
cdebug = $(OPTIMIZATIONS)
|
| 1467 |
+
!if $(SYMBOLS)
|
| 1468 |
+
cdebug = $(cdebug) -Zi
|
| 1469 |
+
!endif
|
| 1470 |
+
|
| 1471 |
+
!endif # $(DEBUG)
|
| 1472 |
+
|
| 1473 |
+
# cwarn includes default warning levels, also C4090 (buggy) and C4146 is useless.
|
| 1474 |
+
cwarn = $(WARNINGS) -wd4090 -wd4146
|
| 1475 |
+
|
| 1476 |
+
!if "$(MACHINE)" == "AMD64" || "$(MACHINE)" == "ARM64"
|
| 1477 |
+
# Disable pointer<->int warnings related to cast between different sizes
|
| 1478 |
+
# There are a gadzillion of these due to use of ClientData and
|
| 1479 |
+
# clutter up compiler
|
| 1480 |
+
# output increasing chance of a real warning getting lost. So disable them.
|
| 1481 |
+
# Eventually some day, Tcl will be 64-bit clean.
|
| 1482 |
+
cwarn = $(cwarn) -wd4311 -wd4312
|
| 1483 |
+
!endif
|
| 1484 |
+
|
| 1485 |
+
### Common compiler options that are architecture specific
|
| 1486 |
+
!if "$(MACHINE)" == "ARM"
|
| 1487 |
+
carch = /D_ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE
|
| 1488 |
+
!else
|
| 1489 |
+
carch =
|
| 1490 |
+
!endif
|
| 1491 |
+
|
| 1492 |
+
# cpuid is only available on intel machines
|
| 1493 |
+
!if "$(MACHINE)" == "IX86" || "$(MACHINE)" == "AMD64"
|
| 1494 |
+
carch = $(carch) /DHAVE_CPUID=1
|
| 1495 |
+
!endif
|
| 1496 |
+
|
| 1497 |
+
!if $(DEBUG)
|
| 1498 |
+
# Turn warnings into errors
|
| 1499 |
+
cwarn = $(cwarn) -WX
|
| 1500 |
+
!endif
|
| 1501 |
+
|
| 1502 |
+
INCLUDES = $(TCL_INCLUDES) $(TK_INCLUDES) $(PRJ_INCLUDES)
|
| 1503 |
+
!if !$(DOING_TCL) && !$(DOING_TK)
|
| 1504 |
+
INCLUDES = $(INCLUDES) -I"$(GENERICDIR)" -I"$(WIN_DIR)" -I"$(COMPATDIR)"
|
| 1505 |
+
!endif
|
| 1506 |
+
|
| 1507 |
+
# These flags are defined roughly in the order of the pre-reform
|
| 1508 |
+
# rules.vc/makefile.vc to help visually compare that the pre- and
|
| 1509 |
+
# post-reform build logs
|
| 1510 |
+
|
| 1511 |
+
# cflags contains generic flags used for building practically all object files
|
| 1512 |
+
cflags = -nologo -c $(COMPILERFLAGS) $(carch) $(cwarn) -Fp$(TMP_DIR)^\ $(cdebug)
|
| 1513 |
+
|
| 1514 |
+
# appcflags contains $(cflags) and flags for building the application
|
| 1515 |
+
# object files (e.g. tclsh, or wish) pkgcflags contains $(cflags) plus
|
| 1516 |
+
# flags used for building shared object files The two differ in the
|
| 1517 |
+
# BUILD_$(PROJECT) macro which should be defined only for the shared
|
| 1518 |
+
# library *implementation* and not for its caller interface
|
| 1519 |
+
|
| 1520 |
+
appcflags_nostubs = $(cflags) $(crt) $(INCLUDES) $(TCL_DEFINES) $(PRJ_DEFINES) $(OPTDEFINES)
|
| 1521 |
+
appcflags = $(appcflags_nostubs) $(USE_STUBS_DEFS)
|
| 1522 |
+
pkgcflags = $(appcflags) $(PKGNAMEFLAGS) /DBUILD_$(PROJECT)
|
| 1523 |
+
pkgcflags_nostubs = $(appcflags_nostubs) $(PKGNAMEFLAGS) /DBUILD_$(PROJECT)
|
| 1524 |
+
|
| 1525 |
+
# stubscflags contains $(cflags) plus flags used for building a stubs
|
| 1526 |
+
# library for the package. Note: /DSTATIC_BUILD is defined in
|
| 1527 |
+
# $(OPTDEFINES) only if the OPTS configuration indicates a static
|
| 1528 |
+
# library. However the stubs library is ALWAYS static hence included
|
| 1529 |
+
# here irrespective of the OPTS setting.
|
| 1530 |
+
#
|
| 1531 |
+
# TBD - tclvfs has a comment that stubs libs should not be compiled with -GL
|
| 1532 |
+
# without stating why. Tcl itself compiled stubs libs with this flag.
|
| 1533 |
+
# so we do not remove it from cflags. -GL may prevent extensions
|
| 1534 |
+
# compiled with one VC version to fail to link against stubs library
|
| 1535 |
+
# compiled with another VC version. Check for this and fix accordingly.
|
| 1536 |
+
stubscflags = $(cflags) $(PKGNAMEFLAGS) $(PRJ_DEFINES) $(OPTDEFINES) /Zl /GL- /DSTATIC_BUILD $(INCLUDES) $(USE_STUBS_DEFS)
|
| 1537 |
+
|
| 1538 |
+
# Link flags
|
| 1539 |
+
|
| 1540 |
+
!if $(DEBUG)
|
| 1541 |
+
ldebug = -debug -debugtype:cv
|
| 1542 |
+
!else
|
| 1543 |
+
ldebug = -release -opt:ref -opt:icf,3
|
| 1544 |
+
!if $(SYMBOLS)
|
| 1545 |
+
ldebug = $(ldebug) -debug -debugtype:cv
|
| 1546 |
+
!endif
|
| 1547 |
+
!endif
|
| 1548 |
+
|
| 1549 |
+
# Note: Profiling is currently only possible with the Visual Studio Enterprise
|
| 1550 |
+
!if $(PROFILE)
|
| 1551 |
+
ldebug= $(ldebug) -profile
|
| 1552 |
+
!endif
|
| 1553 |
+
|
| 1554 |
+
### Declarations common to all linker versions
|
| 1555 |
+
lflags = -nologo -machine:$(MACHINE) $(LINKERFLAGS) $(ldebug)
|
| 1556 |
+
|
| 1557 |
+
!if $(MSVCRT) && !($(DEBUG) && !$(UNCHECKED)) && $(VCVERSION) >= 1900
|
| 1558 |
+
lflags = $(lflags) -nodefaultlib:libucrt.lib
|
| 1559 |
+
!endif
|
| 1560 |
+
|
| 1561 |
+
dlllflags = $(lflags) -dll
|
| 1562 |
+
conlflags = $(lflags) -subsystem:console
|
| 1563 |
+
guilflags = $(lflags) -subsystem:windows
|
| 1564 |
+
|
| 1565 |
+
# Libraries that are required for every image.
|
| 1566 |
+
# Extensions should define any additional libraries with $(PRJ_LIBS)
|
| 1567 |
+
winlibs = kernel32.lib advapi32.lib
|
| 1568 |
+
|
| 1569 |
+
!if $(NEED_TK)
|
| 1570 |
+
winlibs = $(winlibs) gdi32.lib user32.lib uxtheme.lib
|
| 1571 |
+
!endif
|
| 1572 |
+
|
| 1573 |
+
# Avoid 'unresolved external symbol __security_cookie' errors.
|
| 1574 |
+
# c.f. http://support.microsoft.com/?id=894573
|
| 1575 |
+
!if "$(MACHINE)" == "AMD64"
|
| 1576 |
+
!if $(VCVERSION) > 1399 && $(VCVERSION) < 1500
|
| 1577 |
+
winlibs = $(winlibs) bufferoverflowU.lib
|
| 1578 |
+
!endif
|
| 1579 |
+
!endif
|
| 1580 |
+
|
| 1581 |
+
baselibs = $(winlibs) $(PRJ_LIBS)
|
| 1582 |
+
|
| 1583 |
+
!if $(MSVCRT) && !($(DEBUG) && !$(UNCHECKED)) && $(VCVERSION) >= 1900
|
| 1584 |
+
baselibs = $(baselibs) ucrt.lib
|
| 1585 |
+
!endif
|
| 1586 |
+
|
| 1587 |
+
################################################################
|
| 1588 |
+
# 13. Define standard commands, common make targets and implicit rules
|
| 1589 |
+
|
| 1590 |
+
CCPKGCMD = $(cc32) $(pkgcflags) -Fo$(TMP_DIR)^\
|
| 1591 |
+
CCAPPCMD = $(cc32) $(appcflags) -Fo$(TMP_DIR)^\
|
| 1592 |
+
CCSTUBSCMD = $(cc32) $(stubscflags) -Fo$(TMP_DIR)^\
|
| 1593 |
+
|
| 1594 |
+
LIBCMD = $(lib32) -nologo $(LINKERFLAGS) -out:$@
|
| 1595 |
+
DLLCMD = $(link32) $(dlllflags) -out:$@ $(baselibs) $(tcllibs) $(tklibs)
|
| 1596 |
+
|
| 1597 |
+
CONEXECMD = $(link32) $(conlflags) -out:$@ $(baselibs) $(tcllibs) $(tklibs)
|
| 1598 |
+
GUIEXECMD = $(link32) $(guilflags) -out:$@ $(baselibs) $(tcllibs) $(tklibs)
|
| 1599 |
+
RESCMD = $(rc32) -fo $@ -r -i "$(GENERICDIR)" -i "$(TMP_DIR)" \
|
| 1600 |
+
$(TCL_INCLUDES) \
|
| 1601 |
+
/DDEBUG=$(DEBUG) -d UNCHECKED=$(UNCHECKED) \
|
| 1602 |
+
/DCOMMAVERSION=$(RCCOMMAVERSION) \
|
| 1603 |
+
/DDOTVERSION=\"$(DOTVERSION)\" \
|
| 1604 |
+
/DVERSION=\"$(VERSION)\" \
|
| 1605 |
+
/DSUFX=\"$(SUFX)\" \
|
| 1606 |
+
/DPROJECT=\"$(PROJECT)\" \
|
| 1607 |
+
/DPRJLIBNAME=\"$(PRJLIBNAME)\"
|
| 1608 |
+
|
| 1609 |
+
!ifndef DEFAULT_BUILD_TARGET
|
| 1610 |
+
DEFAULT_BUILD_TARGET = $(PROJECT)
|
| 1611 |
+
!endif
|
| 1612 |
+
|
| 1613 |
+
default-target: $(DEFAULT_BUILD_TARGET)
|
| 1614 |
+
|
| 1615 |
+
!if $(MULTIPLATFORM_INSTALL)
|
| 1616 |
+
default-pkgindex:
|
| 1617 |
+
@echo if {[package vsatisfies [package provide Tcl] 9.0-]} { > $(OUT_DIR)\pkgIndex.tcl
|
| 1618 |
+
@echo package ifneeded $(PRJ_PACKAGE_TCLNAME) $(DOTVERSION) \
|
| 1619 |
+
[list load [file join $$dir $(PLATFORM_IDENTIFY) $(PRJLIBNAME9)]] >> $(OUT_DIR)\pkgIndex.tcl
|
| 1620 |
+
@echo } else { >> $(OUT_DIR)\pkgIndex.tcl
|
| 1621 |
+
@echo package ifneeded $(PRJ_PACKAGE_TCLNAME) $(DOTVERSION) \
|
| 1622 |
+
[list load [file join $$dir $(PLATFORM_IDENTIFY) $(PRJLIBNAME8)]] >> $(OUT_DIR)\pkgIndex.tcl
|
| 1623 |
+
@echo } >> $(OUT_DIR)\pkgIndex.tcl
|
| 1624 |
+
!else
|
| 1625 |
+
default-pkgindex:
|
| 1626 |
+
@echo if {[package vsatisfies [package provide Tcl] 9.0-]} { > $(OUT_DIR)\pkgIndex.tcl
|
| 1627 |
+
@echo package ifneeded $(PRJ_PACKAGE_TCLNAME) $(DOTVERSION) \
|
| 1628 |
+
[list load [file join $$dir $(PRJLIBNAME9)]] >> $(OUT_DIR)\pkgIndex.tcl
|
| 1629 |
+
@echo } else { >> $(OUT_DIR)\pkgIndex.tcl
|
| 1630 |
+
@echo package ifneeded $(PRJ_PACKAGE_TCLNAME) $(DOTVERSION) \
|
| 1631 |
+
[list load [file join $$dir $(PRJLIBNAME8)]] >> $(OUT_DIR)\pkgIndex.tcl
|
| 1632 |
+
@echo } >> $(OUT_DIR)\pkgIndex.tcl
|
| 1633 |
+
!endif
|
| 1634 |
+
|
| 1635 |
+
default-pkgindex-tea:
|
| 1636 |
+
@if exist $(ROOT)\pkgIndex.tcl.in nmakehlp -s << $(ROOT)\pkgIndex.tcl.in > $(OUT_DIR)\pkgIndex.tcl
|
| 1637 |
+
@PACKAGE_VERSION@ $(DOTVERSION)
|
| 1638 |
+
@PACKAGE_NAME@ $(PRJ_PACKAGE_TCLNAME)
|
| 1639 |
+
@PACKAGE_TCLNAME@ $(PRJ_PACKAGE_TCLNAME)
|
| 1640 |
+
@PKG_LIB_FILE@ $(PRJLIBNAME)
|
| 1641 |
+
@PKG_LIB_FILE8@ $(PRJLIBNAME8)
|
| 1642 |
+
@PKG_LIB_FILE9@ $(PRJLIBNAME9)
|
| 1643 |
+
<<
|
| 1644 |
+
|
| 1645 |
+
default-install: default-install-binaries default-install-libraries
|
| 1646 |
+
!if $(SYMBOLS)
|
| 1647 |
+
default-install: default-install-pdbs
|
| 1648 |
+
!endif
|
| 1649 |
+
|
| 1650 |
+
# Again to deal with historical brokenness, there is some confusion
|
| 1651 |
+
# in terminlogy. For extensions, the "install-binaries" was used to
|
| 1652 |
+
# locate target directory for *binary shared libraries* and thus
|
| 1653 |
+
# the appropriate macro is LIB_INSTALL_DIR since BIN_INSTALL_DIR is
|
| 1654 |
+
# for executables (exes). On the other hand the "install-libraries"
|
| 1655 |
+
# target is for *scripts* and should have been called "install-scripts".
|
| 1656 |
+
default-install-binaries: $(PRJLIB)
|
| 1657 |
+
@echo Installing binaries to '$(LIB_INSTALL_DIR)'
|
| 1658 |
+
@if not exist "$(LIB_INSTALL_DIR)" mkdir "$(LIB_INSTALL_DIR)"
|
| 1659 |
+
@$(CPY) $(PRJLIB) "$(LIB_INSTALL_DIR)" >NUL
|
| 1660 |
+
|
| 1661 |
+
# Alias for default-install-scripts
|
| 1662 |
+
default-install-libraries: default-install-scripts
|
| 1663 |
+
|
| 1664 |
+
default-install-scripts: $(OUT_DIR)\pkgIndex.tcl
|
| 1665 |
+
@echo Installing libraries to '$(SCRIPT_INSTALL_DIR)'
|
| 1666 |
+
@if exist $(LIBDIR) $(CPY) $(LIBDIR)\*.tcl "$(SCRIPT_INSTALL_DIR)"
|
| 1667 |
+
@echo Installing package index in '$(SCRIPT_INSTALL_DIR)'
|
| 1668 |
+
@$(CPY) $(OUT_DIR)\pkgIndex.tcl $(SCRIPT_INSTALL_DIR)
|
| 1669 |
+
|
| 1670 |
+
default-install-stubs:
|
| 1671 |
+
@echo Installing stubs library to '$(SCRIPT_INSTALL_DIR)'
|
| 1672 |
+
@if not exist "$(SCRIPT_INSTALL_DIR)" mkdir "$(SCRIPT_INSTALL_DIR)"
|
| 1673 |
+
@$(CPY) $(PRJSTUBLIB) "$(SCRIPT_INSTALL_DIR)" >NUL
|
| 1674 |
+
|
| 1675 |
+
default-install-pdbs:
|
| 1676 |
+
@echo Installing PDBs to '$(LIB_INSTALL_DIR)'
|
| 1677 |
+
@if not exist "$(LIB_INSTALL_DIR)" mkdir "$(LIB_INSTALL_DIR)"
|
| 1678 |
+
@$(CPY) "$(OUT_DIR)\*.pdb" "$(LIB_INSTALL_DIR)\"
|
| 1679 |
+
|
| 1680 |
+
# "emacs font-lock highlighting fix
|
| 1681 |
+
|
| 1682 |
+
default-install-docs-html:
|
| 1683 |
+
@echo Installing documentation files to '$(DOC_INSTALL_DIR)'
|
| 1684 |
+
@if not exist "$(DOC_INSTALL_DIR)" mkdir "$(DOC_INSTALL_DIR)"
|
| 1685 |
+
@if exist $(DOCDIR) for %f in ("$(DOCDIR)\*.html" "$(DOCDIR)\*.css" "$(DOCDIR)\*.png") do @$(COPY) %f "$(DOC_INSTALL_DIR)"
|
| 1686 |
+
|
| 1687 |
+
default-install-docs-n:
|
| 1688 |
+
@echo Installing documentation files to '$(DOC_INSTALL_DIR)'
|
| 1689 |
+
@if not exist "$(DOC_INSTALL_DIR)" mkdir "$(DOC_INSTALL_DIR)"
|
| 1690 |
+
@if exist $(DOCDIR) for %f in ("$(DOCDIR)\*.n") do @$(COPY) %f "$(DOC_INSTALL_DIR)"
|
| 1691 |
+
|
| 1692 |
+
default-install-demos:
|
| 1693 |
+
@echo Installing demos to '$(DEMO_INSTALL_DIR)'
|
| 1694 |
+
@if not exist "$(DEMO_INSTALL_DIR)" mkdir "$(DEMO_INSTALL_DIR)"
|
| 1695 |
+
@if exist $(DEMODIR) $(CPYDIR) "$(DEMODIR)" "$(DEMO_INSTALL_DIR)"
|
| 1696 |
+
|
| 1697 |
+
default-clean:
|
| 1698 |
+
@echo Cleaning $(TMP_DIR)\* ...
|
| 1699 |
+
@if exist $(TMP_DIR)\nul $(RMDIR) $(TMP_DIR)
|
| 1700 |
+
@echo Cleaning $(WIN_DIR)\nmakehlp.obj, nmakehlp.exe ...
|
| 1701 |
+
@if exist $(WIN_DIR)\nmakehlp.obj del $(WIN_DIR)\nmakehlp.obj
|
| 1702 |
+
@if exist $(WIN_DIR)\nmakehlp.exe del $(WIN_DIR)\nmakehlp.exe
|
| 1703 |
+
@if exist $(WIN_DIR)\nmakehlp.out del $(WIN_DIR)\nmakehlp.out
|
| 1704 |
+
@echo Cleaning $(WIN_DIR)\nmhlp-out.txt ...
|
| 1705 |
+
@if exist $(WIN_DIR)\nmhlp-out.txt del $(WIN_DIR)\nmhlp-out.txt
|
| 1706 |
+
@echo Cleaning $(WIN_DIR)\_junk.pch ...
|
| 1707 |
+
@if exist $(WIN_DIR)\_junk.pch del $(WIN_DIR)\_junk.pch
|
| 1708 |
+
@echo Cleaning $(WIN_DIR)\vercl.x, vercl.i ...
|
| 1709 |
+
@if exist $(WIN_DIR)\vercl.x del $(WIN_DIR)\vercl.x
|
| 1710 |
+
@if exist $(WIN_DIR)\vercl.i del $(WIN_DIR)\vercl.i
|
| 1711 |
+
@echo Cleaning $(WIN_DIR)\versions.vc, version.vc ...
|
| 1712 |
+
@if exist $(WIN_DIR)\versions.vc del $(WIN_DIR)\versions.vc
|
| 1713 |
+
@if exist $(WIN_DIR)\version.vc del $(WIN_DIR)\version.vc
|
| 1714 |
+
|
| 1715 |
+
default-hose: default-clean
|
| 1716 |
+
@echo Hosing $(OUT_DIR)\* ...
|
| 1717 |
+
@if exist $(OUT_DIR)\nul $(RMDIR) $(OUT_DIR)
|
| 1718 |
+
|
| 1719 |
+
# Only for backward compatibility
|
| 1720 |
+
default-distclean: default-hose
|
| 1721 |
+
|
| 1722 |
+
default-setup:
|
| 1723 |
+
@if not exist $(OUT_DIR)\nul mkdir $(OUT_DIR)
|
| 1724 |
+
@if not exist $(TMP_DIR)\nul mkdir $(TMP_DIR)
|
| 1725 |
+
|
| 1726 |
+
!if "$(TESTPAT)" != ""
|
| 1727 |
+
TESTFLAGS = $(TESTFLAGS) -file $(TESTPAT)
|
| 1728 |
+
!endif
|
| 1729 |
+
|
| 1730 |
+
default-test: default-setup $(PROJECT)
|
| 1731 |
+
@set TCLLIBPATH=$(OUT_DIR:\=/)
|
| 1732 |
+
@if exist $(LIBDIR) for %f in ("$(LIBDIR)\*.tcl") do @$(COPY) %f "$(OUT_DIR)"
|
| 1733 |
+
cd "$(TESTDIR)" && $(DEBUGGER) $(TCLSH) all.tcl $(TESTFLAGS)
|
| 1734 |
+
|
| 1735 |
+
default-shell: default-setup $(PROJECT)
|
| 1736 |
+
@set TCLLIBPATH=$(OUT_DIR:\=/)
|
| 1737 |
+
@if exist $(LIBDIR) for %f in ("$(LIBDIR)\*.tcl") do @$(COPY) %f "$(OUT_DIR)"
|
| 1738 |
+
$(DEBUGGER) $(TCLSH)
|
| 1739 |
+
|
| 1740 |
+
# Generation of Windows version resource
|
| 1741 |
+
!ifdef RCFILE
|
| 1742 |
+
|
| 1743 |
+
# Note: don't use $** in below rule because there may be other dependencies
|
| 1744 |
+
# and only the "main" rc must be passed to the resource compiler
|
| 1745 |
+
$(TMP_DIR)\$(PROJECT).res: $(RCDIR)\$(PROJECT).rc
|
| 1746 |
+
$(RESCMD) $(RCDIR)\$(PROJECT).rc
|
| 1747 |
+
|
| 1748 |
+
!else
|
| 1749 |
+
|
| 1750 |
+
# If parent makefile has not defined a resource definition file,
|
| 1751 |
+
# we will generate one from standard template.
|
| 1752 |
+
$(TMP_DIR)\$(PROJECT).res: $(TMP_DIR)\$(PROJECT).rc
|
| 1753 |
+
|
| 1754 |
+
$(TMP_DIR)\$(PROJECT).rc:
|
| 1755 |
+
@$(COPY) << $(TMP_DIR)\$(PROJECT).rc
|
| 1756 |
+
#include <winver.h>
|
| 1757 |
+
|
| 1758 |
+
VS_VERSION_INFO VERSIONINFO
|
| 1759 |
+
FILEVERSION COMMAVERSION
|
| 1760 |
+
PRODUCTVERSION COMMAVERSION
|
| 1761 |
+
FILEFLAGSMASK 0x3fL
|
| 1762 |
+
#ifdef DEBUG
|
| 1763 |
+
FILEFLAGS VS_FF_DEBUG
|
| 1764 |
+
#else
|
| 1765 |
+
FILEFLAGS 0x0L
|
| 1766 |
+
#endif
|
| 1767 |
+
FILEOS VOS_NT_WINDOWS32
|
| 1768 |
+
FILETYPE VFT_DLL
|
| 1769 |
+
FILESUBTYPE 0x0L
|
| 1770 |
+
BEGIN
|
| 1771 |
+
BLOCK "StringFileInfo"
|
| 1772 |
+
BEGIN
|
| 1773 |
+
BLOCK "040904b0"
|
| 1774 |
+
BEGIN
|
| 1775 |
+
VALUE "FileDescription", "Tcl extension " PROJECT
|
| 1776 |
+
VALUE "OriginalFilename", PRJLIBNAME
|
| 1777 |
+
VALUE "FileVersion", DOTVERSION
|
| 1778 |
+
VALUE "ProductName", "Package " PROJECT " for Tcl"
|
| 1779 |
+
VALUE "ProductVersion", DOTVERSION
|
| 1780 |
+
END
|
| 1781 |
+
END
|
| 1782 |
+
BLOCK "VarFileInfo"
|
| 1783 |
+
BEGIN
|
| 1784 |
+
VALUE "Translation", 0x409, 1200
|
| 1785 |
+
END
|
| 1786 |
+
END
|
| 1787 |
+
|
| 1788 |
+
<<
|
| 1789 |
+
|
| 1790 |
+
!endif # ifdef RCFILE
|
| 1791 |
+
|
| 1792 |
+
!ifndef DISABLE_IMPLICIT_RULES
|
| 1793 |
+
DISABLE_IMPLICIT_RULES = 0
|
| 1794 |
+
!endif
|
| 1795 |
+
|
| 1796 |
+
!if !$(DISABLE_IMPLICIT_RULES)
|
| 1797 |
+
# Implicit rule definitions - only for building library objects. For stubs and
|
| 1798 |
+
# main application, the makefile should define explicit rules.
|
| 1799 |
+
|
| 1800 |
+
{$(ROOT)}.c{$(TMP_DIR)}.obj::
|
| 1801 |
+
$(CCPKGCMD) @<<
|
| 1802 |
+
$<
|
| 1803 |
+
<<
|
| 1804 |
+
|
| 1805 |
+
{$(WIN_DIR)}.c{$(TMP_DIR)}.obj::
|
| 1806 |
+
$(CCPKGCMD) @<<
|
| 1807 |
+
$<
|
| 1808 |
+
<<
|
| 1809 |
+
|
| 1810 |
+
{$(GENERICDIR)}.c{$(TMP_DIR)}.obj::
|
| 1811 |
+
$(CCPKGCMD) @<<
|
| 1812 |
+
$<
|
| 1813 |
+
<<
|
| 1814 |
+
|
| 1815 |
+
{$(COMPATDIR)}.c{$(TMP_DIR)}.obj::
|
| 1816 |
+
$(CCPKGCMD) @<<
|
| 1817 |
+
$<
|
| 1818 |
+
<<
|
| 1819 |
+
|
| 1820 |
+
{$(RCDIR)}.rc{$(TMP_DIR)}.res:
|
| 1821 |
+
$(RESCMD) $<
|
| 1822 |
+
|
| 1823 |
+
{$(WIN_DIR)}.rc{$(TMP_DIR)}.res:
|
| 1824 |
+
$(RESCMD) $<
|
| 1825 |
+
|
| 1826 |
+
{$(TMP_DIR)}.rc{$(TMP_DIR)}.res:
|
| 1827 |
+
$(RESCMD) $<
|
| 1828 |
+
|
| 1829 |
+
.SUFFIXES:
|
| 1830 |
+
.SUFFIXES:.c .rc
|
| 1831 |
+
|
| 1832 |
+
!endif
|
| 1833 |
+
|
| 1834 |
+
################################################################
|
| 1835 |
+
# 14. Sanity check selected options against Tcl build options
|
| 1836 |
+
# When building an extension, certain configuration options should
|
| 1837 |
+
# match the ones used when Tcl was built. Here we check and
|
| 1838 |
+
# warn on a mismatch.
|
| 1839 |
+
!if !$(DOING_TCL)
|
| 1840 |
+
|
| 1841 |
+
!if $(TCLINSTALL) # Building against an installed Tcl
|
| 1842 |
+
!if exist("$(_TCLDIR)\lib\nmake\tcl.nmake")
|
| 1843 |
+
TCLNMAKECONFIG = "$(_TCLDIR)\lib\nmake\tcl.nmake"
|
| 1844 |
+
!endif
|
| 1845 |
+
!else # !$(TCLINSTALL) - building against Tcl source
|
| 1846 |
+
!if exist("$(_TCLDIR)\win\$(BUILDDIRTOP)\tcl.nmake")
|
| 1847 |
+
TCLNMAKECONFIG = "$(_TCLDIR)\win\$(BUILDDIRTOP)\tcl.nmake"
|
| 1848 |
+
!endif
|
| 1849 |
+
!endif # TCLINSTALL
|
| 1850 |
+
|
| 1851 |
+
!if $(CONFIG_CHECK)
|
| 1852 |
+
!ifdef TCLNMAKECONFIG
|
| 1853 |
+
!include $(TCLNMAKECONFIG)
|
| 1854 |
+
|
| 1855 |
+
!if defined(CORE_MACHINE) && "$(CORE_MACHINE)" != "$(MACHINE)"
|
| 1856 |
+
!error ERROR: Build target ($(MACHINE)) does not match the Tcl library architecture ($(CORE_MACHINE)).
|
| 1857 |
+
!endif
|
| 1858 |
+
!if $(TCL_VERSION) < 87 && defined(CORE_USE_THREAD_ALLOC) && $(CORE_USE_THREAD_ALLOC) != $(USE_THREAD_ALLOC)
|
| 1859 |
+
!message WARNING: Value of USE_THREAD_ALLOC ($(USE_THREAD_ALLOC)) does not match its Tcl core value ($(CORE_USE_THREAD_ALLOC)).
|
| 1860 |
+
!endif
|
| 1861 |
+
!if defined(CORE_DEBUG) && $(CORE_DEBUG) != $(DEBUG)
|
| 1862 |
+
!message WARNING: Value of DEBUG ($(DEBUG)) does not match its Tcl library configuration ($(DEBUG)).
|
| 1863 |
+
!endif
|
| 1864 |
+
!endif
|
| 1865 |
+
|
| 1866 |
+
!endif # TCLNMAKECONFIG
|
| 1867 |
+
|
| 1868 |
+
!endif # !$(DOING_TCL)
|
| 1869 |
+
|
| 1870 |
+
|
| 1871 |
+
#----------------------------------------------------------
|
| 1872 |
+
# Display stats being used.
|
| 1873 |
+
#----------------------------------------------------------
|
| 1874 |
+
|
| 1875 |
+
!if !$(DOING_TCL)
|
| 1876 |
+
!message *** Building against Tcl at '$(_TCLDIR)'
|
| 1877 |
+
!endif
|
| 1878 |
+
!if !$(DOING_TK) && $(NEED_TK)
|
| 1879 |
+
!message *** Building against Tk at '$(_TKDIR)'
|
| 1880 |
+
!endif
|
| 1881 |
+
!message *** Intermediate directory will be '$(TMP_DIR)'
|
| 1882 |
+
!message *** Output directory will be '$(OUT_DIR)'
|
| 1883 |
+
!message *** Installation, if selected, will be in '$(_INSTALLDIR)'
|
| 1884 |
+
!message *** Suffix for binaries will be '$(SUFX)'
|
| 1885 |
+
!message *** Compiler version $(VCVER). Target $(MACHINE), host $(NATIVE_ARCH).
|
| 1886 |
+
|
| 1887 |
+
!endif # ifdef _RULES_VC
|
micromamba_root/Library/lib/nmake/targets.vc
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#------------------------------------------------------------- -*- makefile -*-
|
| 2 |
+
# targets.vc --
|
| 3 |
+
#
|
| 4 |
+
# Part of the nmake based build system for Tcl and its extensions.
|
| 5 |
+
# This file defines some standard targets for the convenience of extensions
|
| 6 |
+
# and can be optionally included by the extension makefile.
|
| 7 |
+
# See TIP 477 (https://core.tcl-lang.org/tips/doc/main/tip/477.md) for docs.
|
| 8 |
+
|
| 9 |
+
$(PROJECT): setup pkgindex $(PRJLIB)
|
| 10 |
+
|
| 11 |
+
!ifdef PRJ_STUBOBJS
|
| 12 |
+
$(PROJECT): $(PRJSTUBLIB)
|
| 13 |
+
$(PRJSTUBLIB): $(PRJ_STUBOBJS)
|
| 14 |
+
$(LIBCMD) $**
|
| 15 |
+
|
| 16 |
+
$(PRJ_STUBOBJS):
|
| 17 |
+
$(CCSTUBSCMD) %s
|
| 18 |
+
!endif # PRJ_STUBOBJS
|
| 19 |
+
|
| 20 |
+
!ifdef PRJ_MANIFEST
|
| 21 |
+
$(PROJECT): $(PRJLIB).manifest
|
| 22 |
+
$(PRJLIB).manifest: $(PRJ_MANIFEST)
|
| 23 |
+
@nmakehlp -s << $** >$@
|
| 24 |
+
@MACHINE@ $(MACHINE:IX86=X86)
|
| 25 |
+
<<
|
| 26 |
+
!endif
|
| 27 |
+
|
| 28 |
+
!if "$(PROJECT)" != "tcl" && "$(PROJECT)" != "tk"
|
| 29 |
+
$(PRJLIB): $(PRJ_OBJS) $(RESFILE)
|
| 30 |
+
!if $(STATIC_BUILD)
|
| 31 |
+
$(LIBCMD) $**
|
| 32 |
+
!else
|
| 33 |
+
$(DLLCMD) $**
|
| 34 |
+
$(_VC_MANIFEST_EMBED_DLL)
|
| 35 |
+
!endif
|
| 36 |
+
-@del $*.exp
|
| 37 |
+
!endif
|
| 38 |
+
|
| 39 |
+
!if "$(PRJ_HEADERS)" != "" && "$(PRJ_OBJS)" != ""
|
| 40 |
+
$(PRJ_OBJS): $(PRJ_HEADERS)
|
| 41 |
+
!endif
|
| 42 |
+
|
| 43 |
+
# If parent makefile has defined stub objects, add their installation
|
| 44 |
+
# to the default install
|
| 45 |
+
!if "$(PRJ_STUBOBJS)" != ""
|
| 46 |
+
default-install: default-install-stubs
|
| 47 |
+
!endif
|
| 48 |
+
|
| 49 |
+
# Unlike the other default targets, these cannot be in rules.vc because
|
| 50 |
+
# the executed command depends on existence of macro PRJ_HEADERS_PUBLIC
|
| 51 |
+
# that the parent makefile will not define until after including rules-ext.vc
|
| 52 |
+
!if "$(PRJ_HEADERS_PUBLIC)" != ""
|
| 53 |
+
default-install: default-install-headers
|
| 54 |
+
default-install-headers:
|
| 55 |
+
@echo Installing headers to '$(INCLUDE_INSTALL_DIR)'
|
| 56 |
+
@for %f in ($(PRJ_HEADERS_PUBLIC)) do @$(COPY) %f "$(INCLUDE_INSTALL_DIR)"
|
| 57 |
+
!endif
|
| 58 |
+
|
| 59 |
+
!if "$(DISABLE_STANDARD_TARGETS)" == ""
|
| 60 |
+
DISABLE_STANDARD_TARGETS = 0
|
| 61 |
+
!endif
|
| 62 |
+
|
| 63 |
+
!if "$(DISABLE_TARGET_setup)" == ""
|
| 64 |
+
DISABLE_TARGET_setup = 0
|
| 65 |
+
!endif
|
| 66 |
+
!if "$(DISABLE_TARGET_install)" == ""
|
| 67 |
+
DISABLE_TARGET_install = 0
|
| 68 |
+
!endif
|
| 69 |
+
!if "$(DISABLE_TARGET_clean)" == ""
|
| 70 |
+
DISABLE_TARGET_clean = 0
|
| 71 |
+
!endif
|
| 72 |
+
!if "$(DISABLE_TARGET_test)" == ""
|
| 73 |
+
DISABLE_TARGET_test = 0
|
| 74 |
+
!endif
|
| 75 |
+
!if "$(DISABLE_TARGET_shell)" == ""
|
| 76 |
+
DISABLE_TARGET_shell = 0
|
| 77 |
+
!endif
|
| 78 |
+
|
| 79 |
+
!if !$(DISABLE_STANDARD_TARGETS)
|
| 80 |
+
!if !$(DISABLE_TARGET_setup)
|
| 81 |
+
setup: default-setup
|
| 82 |
+
!endif
|
| 83 |
+
!if !$(DISABLE_TARGET_install)
|
| 84 |
+
install: default-install
|
| 85 |
+
!endif
|
| 86 |
+
!if !$(DISABLE_TARGET_clean)
|
| 87 |
+
clean: default-clean
|
| 88 |
+
realclean: hose
|
| 89 |
+
hose: default-hose
|
| 90 |
+
distclean: realclean default-distclean
|
| 91 |
+
!endif
|
| 92 |
+
!if !$(DISABLE_TARGET_test)
|
| 93 |
+
test: default-test
|
| 94 |
+
!endif
|
| 95 |
+
!if !$(DISABLE_TARGET_shell)
|
| 96 |
+
shell: default-shell
|
| 97 |
+
!endif
|
| 98 |
+
!endif # DISABLE_STANDARD_TARGETS
|
micromamba_root/Library/lib/nmake/tcl.nmake
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
CORE_MACHINE = AMD64
|
| 2 |
+
CORE_DEBUG = 0
|
| 3 |
+
CORE_TCL_THREADS = 1
|
| 4 |
+
CORE_USE_THREAD_ALLOC = 1
|
micromamba_root/Library/lib/nmake/x86_64-w64-mingw32-nmakehlp.exe
ADDED
|
Binary file (25.6 kB). View file
|
|
|
micromamba_root/Library/lib/pkgconfig/libcrypto.pc
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
prefix=D:/code/apps/devtools/micromamba_root/Library
|
| 2 |
+
exec_prefix=${prefix}
|
| 3 |
+
libdir=${exec_prefix}/lib
|
| 4 |
+
includedir=${prefix}/include
|
| 5 |
+
|
| 6 |
+
Name: OpenSSL-libcrypto
|
| 7 |
+
Description: OpenSSL cryptography library
|
| 8 |
+
Libs: -L"${libdir}" -llibcrypto
|
| 9 |
+
Libs.private: -lcrypt32 -lws2_32
|
| 10 |
+
Cflags: -I"${includedir}"
|
| 11 |
+
Version: 3.6.2
|
micromamba_root/Library/lib/pkgconfig/libffi.pc
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
prefix=/d/bld/libffi_1769455939380/_h_env/Library
|
| 2 |
+
exec_prefix=${prefix}
|
| 3 |
+
libdir=${exec_prefix}/lib
|
| 4 |
+
toolexeclibdir=${libdir}
|
| 5 |
+
includedir=/d/bld/libffi_1769455939380/_h_env/Library/include
|
| 6 |
+
|
| 7 |
+
Name: libffi
|
| 8 |
+
Description: Library supporting Foreign Function Interfaces
|
| 9 |
+
Version: 3.5.2
|
| 10 |
+
Libs: -L${toolexeclibdir} -lffi
|
| 11 |
+
Cflags: -I${includedir}
|
micromamba_root/Library/lib/pkgconfig/libpcre.pc
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Package Information for pkg-config
|
| 2 |
+
|
| 3 |
+
prefix=D:/code/apps/devtools/micromamba_root/Library
|
| 4 |
+
exec_prefix=${prefix}
|
| 5 |
+
libdir=${exec_prefix}/lib
|
| 6 |
+
includedir=${prefix}/include
|
| 7 |
+
|
| 8 |
+
Name: libpcre
|
| 9 |
+
Description: PCRE - Perl compatible regular expressions C library with 8 bit character support
|
| 10 |
+
Version: 8.45
|
| 11 |
+
Libs: -L${libdir} -lpcre
|
| 12 |
+
Libs.private:
|
| 13 |
+
Cflags: -I${includedir}
|
micromamba_root/Library/lib/pkgconfig/libpcrecpp.pc
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Package Information for pkg-config
|
| 2 |
+
|
| 3 |
+
prefix=D:/code/apps/devtools/micromamba_root/Library
|
| 4 |
+
exec_prefix=${prefix}
|
| 5 |
+
libdir=${exec_prefix}/lib
|
| 6 |
+
includedir=${prefix}/include
|
| 7 |
+
|
| 8 |
+
Name: libpcrecpp
|
| 9 |
+
Description: PCRECPP - C++ wrapper for PCRE
|
| 10 |
+
Version: 8.45
|
| 11 |
+
Libs: -L${libdir} -lpcre -lpcrecpp
|
| 12 |
+
Cflags: -I${includedir}
|
micromamba_root/Library/lib/pkgconfig/libpcreposix.pc
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Package Information for pkg-config
|
| 2 |
+
|
| 3 |
+
prefix=D:/code/apps/devtools/micromamba_root/Library
|
| 4 |
+
exec_prefix=${prefix}
|
| 5 |
+
libdir=${exec_prefix}/lib
|
| 6 |
+
includedir=${prefix}/include
|
| 7 |
+
|
| 8 |
+
Name: libpcreposix
|
| 9 |
+
Description: PCREPosix - Posix compatible interface to libpcre
|
| 10 |
+
Version: 8.45
|
| 11 |
+
Libs: -L${libdir} -lpcreposix
|
| 12 |
+
Cflags: -I${includedir}
|
| 13 |
+
Requires.private: libpcre
|
micromamba_root/Library/lib/pkgconfig/libssl.pc
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
prefix=D:/code/apps/devtools/micromamba_root/Library
|
| 2 |
+
exec_prefix=${prefix}
|
| 3 |
+
libdir=${exec_prefix}/lib
|
| 4 |
+
includedir=${prefix}/include
|
| 5 |
+
|
| 6 |
+
Name: OpenSSL-libssl
|
| 7 |
+
Description: Secure Sockets Layer and cryptography libraries
|
| 8 |
+
Libs: -L"${libdir}" -llibssl
|
| 9 |
+
Requires: libcrypto
|
| 10 |
+
Cflags: -I"${includedir}"
|
| 11 |
+
Version: 3.6.2
|
micromamba_root/Library/lib/pkgconfig/libzstd.pc
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ZSTD - standard compression algorithm
|
| 2 |
+
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
| 3 |
+
# BSD 2-Clause License (https://opensource.org/licenses/bsd-license.php)
|
| 4 |
+
|
| 5 |
+
prefix=D:/code/apps/devtools/micromamba_root/Library
|
| 6 |
+
exec_prefix=${prefix}
|
| 7 |
+
includedir=${prefix}/include
|
| 8 |
+
libdir=${exec_prefix}/lib
|
| 9 |
+
|
| 10 |
+
Name: zstd
|
| 11 |
+
Description: fast lossless compression algorithm library
|
| 12 |
+
URL: https://facebook.github.io/zstd/
|
| 13 |
+
Version: 1.5.7
|
| 14 |
+
Libs: -L${libdir} -lzstd
|
| 15 |
+
Libs.private:
|
| 16 |
+
Cflags: -I${includedir}
|
micromamba_root/Library/lib/pkgconfig/openssl.pc
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
prefix=D:/code/apps/devtools/micromamba_root/Library
|
| 2 |
+
exec_prefix=${prefix}
|
| 3 |
+
libdir=${exec_prefix}/lib
|
| 4 |
+
includedir=${prefix}/include
|
| 5 |
+
|
| 6 |
+
Name: OpenSSL
|
| 7 |
+
Description: Secure Sockets Layer and cryptography libraries and tools
|
| 8 |
+
Requires: libssl libcrypto
|
| 9 |
+
Version: 3.6.2
|
micromamba_root/Library/lib/pkgconfig/tinyxml2.pc
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
prefix=D:/code/apps/devtools/micromamba_root/Library
|
| 2 |
+
exec_prefix=${prefix}
|
| 3 |
+
libdir=${exec_prefix}/lib
|
| 4 |
+
includedir=${prefix}/include
|
| 5 |
+
|
| 6 |
+
Name: TinyXML2
|
| 7 |
+
Description: simple, small, C++ XML parser
|
| 8 |
+
Version: 11.0.0
|
| 9 |
+
Libs: -L${libdir} -ltinyxml2
|
| 10 |
+
Cflags: -I${includedir}
|
micromamba_root/Library/lib/reg1.3/pkgIndex.tcl
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
if {![package vsatisfies [package provide Tcl] 8.5]} return
|
| 2 |
+
if {[info sharedlibextension] != ".dll"} return
|
| 3 |
+
if {[::tcl::pkgconfig get debug]} {
|
| 4 |
+
package ifneeded registry 1.3.5 \
|
| 5 |
+
[list load [file join $dir tclreg13g.dll] Registry]
|
| 6 |
+
} else {
|
| 7 |
+
package ifneeded registry 1.3.5 \
|
| 8 |
+
[list load [file join $dir tclreg13.dll] Registry]
|
| 9 |
+
}
|
micromamba_root/Library/lib/reg1.3/tclreg13.dll
ADDED
|
Binary file (23 kB). View file
|
|
|
micromamba_root/Library/lib/sqlite3.40.0/pkgIndex.tcl
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
if {[package vsatisfies [package provide Tcl] 9.0-]} {
|
| 2 |
+
package ifneeded sqlite3 3.40.0 [list load [file join $dir tcl9sqlite3400t.dll] [string totitle sqlite3]]
|
| 3 |
+
} else {
|
| 4 |
+
package ifneeded sqlite3 3.40.0 [list load [file join $dir sqlite3400t.dll] [string totitle sqlite3]]
|
| 5 |
+
}
|
micromamba_root/Library/lib/sqlite3.40.0/sqlite3.n
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.TH sqlite3 n 4.1 "Tcl-Extensions"
|
| 2 |
+
.HS sqlite3 tcl
|
| 3 |
+
.BS
|
| 4 |
+
.SH NAME
|
| 5 |
+
sqlite3 \- an interface to the SQLite3 database engine
|
| 6 |
+
.SH SYNOPSIS
|
| 7 |
+
\fBsqlite3\fI command_name ?filename?\fR
|
| 8 |
+
.br
|
| 9 |
+
.SH DESCRIPTION
|
| 10 |
+
SQLite3 is a self-contains, zero-configuration, transactional SQL database
|
| 11 |
+
engine. This extension provides an easy to use interface for accessing
|
| 12 |
+
SQLite database files from Tcl.
|
| 13 |
+
.PP
|
| 14 |
+
For full documentation see \fIhttp://www.sqlite.org/\fR and
|
| 15 |
+
in particular \fIhttp://www.sqlite.org/tclsqlite.html\fR.
|
micromamba_root/Library/lib/tcl8.6/auto.tcl
ADDED
|
@@ -0,0 +1,648 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# auto.tcl --
|
| 2 |
+
#
|
| 3 |
+
# utility procs formerly in init.tcl dealing with auto execution of commands
|
| 4 |
+
# and can be auto loaded themselves.
|
| 5 |
+
#
|
| 6 |
+
# Copyright (c) 1991-1993 The Regents of the University of California.
|
| 7 |
+
# Copyright (c) 1994-1998 Sun Microsystems, Inc.
|
| 8 |
+
#
|
| 9 |
+
# See the file "license.terms" for information on usage and redistribution of
|
| 10 |
+
# this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
| 11 |
+
#
|
| 12 |
+
|
| 13 |
+
# auto_reset --
|
| 14 |
+
#
|
| 15 |
+
# Destroy all cached information for auto-loading and auto-execution, so that
|
| 16 |
+
# the information gets recomputed the next time it's needed. Also delete any
|
| 17 |
+
# commands that are listed in the auto-load index.
|
| 18 |
+
#
|
| 19 |
+
# Arguments:
|
| 20 |
+
# None.
|
| 21 |
+
|
| 22 |
+
proc auto_reset {} {
|
| 23 |
+
global auto_execs auto_index auto_path
|
| 24 |
+
if {[array exists auto_index]} {
|
| 25 |
+
foreach cmdName [array names auto_index] {
|
| 26 |
+
set fqcn [namespace which $cmdName]
|
| 27 |
+
if {$fqcn eq ""} {
|
| 28 |
+
continue
|
| 29 |
+
}
|
| 30 |
+
rename $fqcn {}
|
| 31 |
+
}
|
| 32 |
+
}
|
| 33 |
+
unset -nocomplain auto_execs auto_index ::tcl::auto_oldpath
|
| 34 |
+
if {[catch {llength $auto_path}]} {
|
| 35 |
+
set auto_path [list [info library]]
|
| 36 |
+
} elseif {[info library] ni $auto_path} {
|
| 37 |
+
lappend auto_path [info library]
|
| 38 |
+
}
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
# tcl_findLibrary --
|
| 42 |
+
#
|
| 43 |
+
# This is a utility for extensions that searches for a library directory
|
| 44 |
+
# using a canonical searching algorithm. A side effect is to source the
|
| 45 |
+
# initialization script and set a global library variable.
|
| 46 |
+
#
|
| 47 |
+
# Arguments:
|
| 48 |
+
# basename Prefix of the directory name, (e.g., "tk")
|
| 49 |
+
# version Version number of the package, (e.g., "8.0")
|
| 50 |
+
# patch Patchlevel of the package, (e.g., "8.0.3")
|
| 51 |
+
# initScript Initialization script to source (e.g., tk.tcl)
|
| 52 |
+
# enVarName environment variable to honor (e.g., TK_LIBRARY)
|
| 53 |
+
# varName Global variable to set when done (e.g., tk_library)
|
| 54 |
+
|
| 55 |
+
proc tcl_findLibrary {basename version patch initScript enVarName varName} {
|
| 56 |
+
upvar #0 $varName the_library
|
| 57 |
+
global auto_path env tcl_platform
|
| 58 |
+
|
| 59 |
+
set dirs {}
|
| 60 |
+
set errors {}
|
| 61 |
+
|
| 62 |
+
# The C application may have hardwired a path, which we honor
|
| 63 |
+
|
| 64 |
+
if {[info exists the_library] && $the_library ne ""} {
|
| 65 |
+
lappend dirs $the_library
|
| 66 |
+
} else {
|
| 67 |
+
# Do the canonical search
|
| 68 |
+
|
| 69 |
+
# 1. From an environment variable, if it exists. Placing this first
|
| 70 |
+
# gives the end-user ultimate control to work-around any bugs, or
|
| 71 |
+
# to customize.
|
| 72 |
+
|
| 73 |
+
if {[info exists env($enVarName)]} {
|
| 74 |
+
lappend dirs $env($enVarName)
|
| 75 |
+
}
|
| 76 |
+
|
| 77 |
+
# 2. In the package script directory registered within the
|
| 78 |
+
# configuration of the package itself.
|
| 79 |
+
|
| 80 |
+
catch {
|
| 81 |
+
lappend dirs [::${basename}::pkgconfig get scriptdir,runtime]
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
# 3. Relative to auto_path directories. This checks relative to the
|
| 85 |
+
# Tcl library as well as allowing loading of libraries added to the
|
| 86 |
+
# auto_path that is not relative to the core library or binary paths.
|
| 87 |
+
foreach d $auto_path {
|
| 88 |
+
lappend dirs [file join $d $basename$version]
|
| 89 |
+
if {$tcl_platform(platform) eq "unix"
|
| 90 |
+
&& $tcl_platform(os) eq "Darwin"} {
|
| 91 |
+
# 4. On MacOSX, check the Resources/Scripts subdir too
|
| 92 |
+
lappend dirs [file join $d $basename$version Resources Scripts]
|
| 93 |
+
}
|
| 94 |
+
}
|
| 95 |
+
|
| 96 |
+
# 3. Various locations relative to the executable
|
| 97 |
+
# ../lib/foo1.0 (From bin directory in install hierarchy)
|
| 98 |
+
# ../../lib/foo1.0 (From bin/arch directory in install hierarchy)
|
| 99 |
+
# ../library (From unix directory in build hierarchy)
|
| 100 |
+
#
|
| 101 |
+
# Remaining locations are out of date (when relevant, they ought to be
|
| 102 |
+
# covered by the $::auto_path seach above) and disabled.
|
| 103 |
+
#
|
| 104 |
+
# ../../library (From unix/arch directory in build hierarchy)
|
| 105 |
+
# ../../foo1.0.1/library
|
| 106 |
+
# (From unix directory in parallel build hierarchy)
|
| 107 |
+
# ../../../foo1.0.1/library
|
| 108 |
+
# (From unix/arch directory in parallel build hierarchy)
|
| 109 |
+
|
| 110 |
+
set parentDir [file dirname [file dirname [info nameofexecutable]]]
|
| 111 |
+
set grandParentDir [file dirname $parentDir]
|
| 112 |
+
lappend dirs [file join $parentDir lib $basename$version]
|
| 113 |
+
lappend dirs [file join $grandParentDir lib $basename$version]
|
| 114 |
+
lappend dirs [file join $parentDir library]
|
| 115 |
+
if {0} {
|
| 116 |
+
lappend dirs [file join $grandParentDir library]
|
| 117 |
+
lappend dirs [file join $grandParentDir $basename$patch library]
|
| 118 |
+
lappend dirs [file join [file dirname $grandParentDir] \
|
| 119 |
+
$basename$patch library]
|
| 120 |
+
}
|
| 121 |
+
}
|
| 122 |
+
# uniquify $dirs in order
|
| 123 |
+
array set seen {}
|
| 124 |
+
foreach i $dirs {
|
| 125 |
+
# Make sure $i is unique under normalization. Avoid repeated [source].
|
| 126 |
+
if {[interp issafe]} {
|
| 127 |
+
# Safe interps have no [file normalize].
|
| 128 |
+
set norm $i
|
| 129 |
+
} else {
|
| 130 |
+
set norm [file normalize $i]
|
| 131 |
+
}
|
| 132 |
+
if {[info exists seen($norm)]} {
|
| 133 |
+
continue
|
| 134 |
+
}
|
| 135 |
+
set seen($norm) {}
|
| 136 |
+
|
| 137 |
+
set the_library $i
|
| 138 |
+
set file [file join $i $initScript]
|
| 139 |
+
|
| 140 |
+
# source everything when in a safe interpreter because we have a
|
| 141 |
+
# source command, but no file exists command
|
| 142 |
+
|
| 143 |
+
if {[interp issafe] || [file exists $file]} {
|
| 144 |
+
if {![catch {uplevel #0 [list source $file]} msg opts]} {
|
| 145 |
+
return
|
| 146 |
+
}
|
| 147 |
+
append errors "$file: $msg\n"
|
| 148 |
+
append errors [dict get $opts -errorinfo]\n
|
| 149 |
+
}
|
| 150 |
+
}
|
| 151 |
+
unset -nocomplain the_library
|
| 152 |
+
set msg "Can't find a usable $initScript in the following directories: \n"
|
| 153 |
+
append msg " $dirs\n\n"
|
| 154 |
+
append msg "$errors\n\n"
|
| 155 |
+
append msg "This probably means that $basename wasn't installed properly.\n"
|
| 156 |
+
error $msg
|
| 157 |
+
}
|
| 158 |
+
|
| 159 |
+
|
| 160 |
+
# ----------------------------------------------------------------------
|
| 161 |
+
# auto_mkindex
|
| 162 |
+
# ----------------------------------------------------------------------
|
| 163 |
+
# The following procedures are used to generate the tclIndex file from Tcl
|
| 164 |
+
# source files. They use a special safe interpreter to parse Tcl source
|
| 165 |
+
# files, writing out index entries as "proc" commands are encountered. This
|
| 166 |
+
# implementation won't work in a safe interpreter, since a safe interpreter
|
| 167 |
+
# can't create the special parser and mess with its commands.
|
| 168 |
+
|
| 169 |
+
if {[interp issafe]} {
|
| 170 |
+
return ;# Stop sourcing the file here
|
| 171 |
+
}
|
| 172 |
+
|
| 173 |
+
# auto_mkindex --
|
| 174 |
+
# Regenerate a tclIndex file from Tcl source files. Takes as argument the
|
| 175 |
+
# name of the directory in which the tclIndex file is to be placed, followed
|
| 176 |
+
# by any number of glob patterns to use in that directory to locate all of the
|
| 177 |
+
# relevant files.
|
| 178 |
+
#
|
| 179 |
+
# Arguments:
|
| 180 |
+
# dir - Name of the directory in which to create an index.
|
| 181 |
+
|
| 182 |
+
# args - Any number of additional arguments giving the names of files
|
| 183 |
+
# within dir. If no additional are given auto_mkindex will look
|
| 184 |
+
# for *.tcl.
|
| 185 |
+
|
| 186 |
+
proc auto_mkindex {dir args} {
|
| 187 |
+
if {[interp issafe]} {
|
| 188 |
+
error "can't generate index within safe interpreter"
|
| 189 |
+
}
|
| 190 |
+
|
| 191 |
+
set oldDir [pwd]
|
| 192 |
+
cd $dir
|
| 193 |
+
|
| 194 |
+
append index "# Tcl autoload index file, version 2.0\n"
|
| 195 |
+
append index "# This file is generated by the \"auto_mkindex\" command\n"
|
| 196 |
+
append index "# and sourced to set up indexing information for one or\n"
|
| 197 |
+
append index "# more commands. Typically each line is a command that\n"
|
| 198 |
+
append index "# sets an element in the auto_index array, where the\n"
|
| 199 |
+
append index "# element name is the name of a command and the value is\n"
|
| 200 |
+
append index "# a script that loads the command.\n\n"
|
| 201 |
+
if {![llength $args]} {
|
| 202 |
+
set args *.tcl
|
| 203 |
+
}
|
| 204 |
+
|
| 205 |
+
auto_mkindex_parser::init
|
| 206 |
+
foreach file [lsort [glob -- {*}$args]] {
|
| 207 |
+
try {
|
| 208 |
+
append index [auto_mkindex_parser::mkindex $file]
|
| 209 |
+
} on error {msg opts} {
|
| 210 |
+
cd $oldDir
|
| 211 |
+
return -options $opts $msg
|
| 212 |
+
}
|
| 213 |
+
}
|
| 214 |
+
auto_mkindex_parser::cleanup
|
| 215 |
+
|
| 216 |
+
set fid [open "tclIndex" w]
|
| 217 |
+
puts -nonewline $fid $index
|
| 218 |
+
close $fid
|
| 219 |
+
cd $oldDir
|
| 220 |
+
}
|
| 221 |
+
|
| 222 |
+
# Original version of auto_mkindex that just searches the source code for
|
| 223 |
+
# "proc" at the beginning of the line.
|
| 224 |
+
|
| 225 |
+
proc auto_mkindex_old {dir args} {
|
| 226 |
+
set oldDir [pwd]
|
| 227 |
+
cd $dir
|
| 228 |
+
set dir [pwd]
|
| 229 |
+
append index "# Tcl autoload index file, version 2.0\n"
|
| 230 |
+
append index "# This file is generated by the \"auto_mkindex\" command\n"
|
| 231 |
+
append index "# and sourced to set up indexing information for one or\n"
|
| 232 |
+
append index "# more commands. Typically each line is a command that\n"
|
| 233 |
+
append index "# sets an element in the auto_index array, where the\n"
|
| 234 |
+
append index "# element name is the name of a command and the value is\n"
|
| 235 |
+
append index "# a script that loads the command.\n\n"
|
| 236 |
+
if {![llength $args]} {
|
| 237 |
+
set args *.tcl
|
| 238 |
+
}
|
| 239 |
+
foreach file [lsort [glob -- {*}$args]] {
|
| 240 |
+
set f ""
|
| 241 |
+
set error [catch {
|
| 242 |
+
set f [open $file]
|
| 243 |
+
fconfigure $f -eofchar "\032 {}"
|
| 244 |
+
while {[gets $f line] >= 0} {
|
| 245 |
+
if {[regexp {^proc[ ]+([^ ]*)} $line match procName]} {
|
| 246 |
+
set procName [lindex [auto_qualify $procName "::"] 0]
|
| 247 |
+
append index "set [list auto_index($procName)]"
|
| 248 |
+
append index " \[list source \[file join \$dir [list $file]\]\]\n"
|
| 249 |
+
}
|
| 250 |
+
}
|
| 251 |
+
close $f
|
| 252 |
+
} msg opts]
|
| 253 |
+
if {$error} {
|
| 254 |
+
catch {close $f}
|
| 255 |
+
cd $oldDir
|
| 256 |
+
return -options $opts $msg
|
| 257 |
+
}
|
| 258 |
+
}
|
| 259 |
+
set f ""
|
| 260 |
+
set error [catch {
|
| 261 |
+
set f [open tclIndex w]
|
| 262 |
+
puts -nonewline $f $index
|
| 263 |
+
close $f
|
| 264 |
+
cd $oldDir
|
| 265 |
+
} msg opts]
|
| 266 |
+
if {$error} {
|
| 267 |
+
catch {close $f}
|
| 268 |
+
cd $oldDir
|
| 269 |
+
error $msg $info $code
|
| 270 |
+
return -options $opts $msg
|
| 271 |
+
}
|
| 272 |
+
}
|
| 273 |
+
|
| 274 |
+
# Create a safe interpreter that can be used to parse Tcl source files
|
| 275 |
+
# generate a tclIndex file for autoloading. This interp contains commands for
|
| 276 |
+
# things that need index entries. Each time a command is executed, it writes
|
| 277 |
+
# an entry out to the index file.
|
| 278 |
+
|
| 279 |
+
namespace eval auto_mkindex_parser {
|
| 280 |
+
variable parser "" ;# parser used to build index
|
| 281 |
+
variable index "" ;# maintains index as it is built
|
| 282 |
+
variable scriptFile "" ;# name of file being processed
|
| 283 |
+
variable contextStack "" ;# stack of namespace scopes
|
| 284 |
+
variable imports "" ;# keeps track of all imported cmds
|
| 285 |
+
variable initCommands ;# list of commands that create aliases
|
| 286 |
+
if {![info exists initCommands]} {
|
| 287 |
+
set initCommands [list]
|
| 288 |
+
}
|
| 289 |
+
|
| 290 |
+
proc init {} {
|
| 291 |
+
variable parser
|
| 292 |
+
variable initCommands
|
| 293 |
+
|
| 294 |
+
if {![interp issafe]} {
|
| 295 |
+
set parser [interp create -safe]
|
| 296 |
+
$parser hide info
|
| 297 |
+
$parser hide rename
|
| 298 |
+
$parser hide proc
|
| 299 |
+
$parser hide namespace
|
| 300 |
+
$parser hide eval
|
| 301 |
+
$parser hide puts
|
| 302 |
+
foreach ns [$parser invokehidden namespace children ::] {
|
| 303 |
+
# MUST NOT DELETE "::tcl" OR BAD THINGS HAPPEN!
|
| 304 |
+
if {$ns eq "::tcl"} continue
|
| 305 |
+
$parser invokehidden namespace delete $ns
|
| 306 |
+
}
|
| 307 |
+
foreach cmd [$parser invokehidden info commands ::*] {
|
| 308 |
+
$parser invokehidden rename $cmd {}
|
| 309 |
+
}
|
| 310 |
+
$parser invokehidden proc unknown {args} {}
|
| 311 |
+
|
| 312 |
+
# We'll need access to the "namespace" command within the
|
| 313 |
+
# interp. Put it back, but move it out of the way.
|
| 314 |
+
|
| 315 |
+
$parser expose namespace
|
| 316 |
+
$parser invokehidden rename namespace _%@namespace
|
| 317 |
+
$parser expose eval
|
| 318 |
+
$parser invokehidden rename eval _%@eval
|
| 319 |
+
|
| 320 |
+
# Install all the registered psuedo-command implementations
|
| 321 |
+
|
| 322 |
+
foreach cmd $initCommands {
|
| 323 |
+
eval $cmd
|
| 324 |
+
}
|
| 325 |
+
}
|
| 326 |
+
}
|
| 327 |
+
proc cleanup {} {
|
| 328 |
+
variable parser
|
| 329 |
+
interp delete $parser
|
| 330 |
+
unset parser
|
| 331 |
+
}
|
| 332 |
+
}
|
| 333 |
+
|
| 334 |
+
# auto_mkindex_parser::mkindex --
|
| 335 |
+
#
|
| 336 |
+
# Used by the "auto_mkindex" command to create a "tclIndex" file for the given
|
| 337 |
+
# Tcl source file. Executes the commands in the file, and handles things like
|
| 338 |
+
# the "proc" command by adding an entry for the index file. Returns a string
|
| 339 |
+
# that represents the index file.
|
| 340 |
+
#
|
| 341 |
+
# Arguments:
|
| 342 |
+
# file Name of Tcl source file to be indexed.
|
| 343 |
+
|
| 344 |
+
proc auto_mkindex_parser::mkindex {file} {
|
| 345 |
+
variable parser
|
| 346 |
+
variable index
|
| 347 |
+
variable scriptFile
|
| 348 |
+
variable contextStack
|
| 349 |
+
variable imports
|
| 350 |
+
|
| 351 |
+
set scriptFile $file
|
| 352 |
+
|
| 353 |
+
set fid [open $file]
|
| 354 |
+
fconfigure $fid -eofchar "\032 {}"
|
| 355 |
+
set contents [read $fid]
|
| 356 |
+
close $fid
|
| 357 |
+
|
| 358 |
+
# There is one problem with sourcing files into the safe interpreter:
|
| 359 |
+
# references like "$x" will fail since code is not really being executed
|
| 360 |
+
# and variables do not really exist. To avoid this, we replace all $ with
|
| 361 |
+
# \0 (literally, the null char) later, when getting proc names we will
|
| 362 |
+
# have to reverse this replacement, in case there were any $ in the proc
|
| 363 |
+
# name. This will cause a problem if somebody actually tries to have a \0
|
| 364 |
+
# in their proc name. Too bad for them.
|
| 365 |
+
set contents [string map [list \$ \0] $contents]
|
| 366 |
+
|
| 367 |
+
set index ""
|
| 368 |
+
set contextStack ""
|
| 369 |
+
set imports ""
|
| 370 |
+
|
| 371 |
+
$parser eval $contents
|
| 372 |
+
|
| 373 |
+
foreach name $imports {
|
| 374 |
+
catch {$parser eval [list _%@namespace forget $name]}
|
| 375 |
+
}
|
| 376 |
+
return $index
|
| 377 |
+
}
|
| 378 |
+
|
| 379 |
+
# auto_mkindex_parser::hook command
|
| 380 |
+
#
|
| 381 |
+
# Registers a Tcl command to evaluate when initializing the child interpreter
|
| 382 |
+
# used by the mkindex parser. The command is evaluated in the parent
|
| 383 |
+
# interpreter, and can use the variable auto_mkindex_parser::parser to get to
|
| 384 |
+
# the child
|
| 385 |
+
|
| 386 |
+
proc auto_mkindex_parser::hook {cmd} {
|
| 387 |
+
variable initCommands
|
| 388 |
+
|
| 389 |
+
lappend initCommands $cmd
|
| 390 |
+
}
|
| 391 |
+
|
| 392 |
+
# auto_mkindex_parser::slavehook command
|
| 393 |
+
#
|
| 394 |
+
# Registers a Tcl command to evaluate when initializing the child interpreter
|
| 395 |
+
# used by the mkindex parser. The command is evaluated in the child
|
| 396 |
+
# interpreter.
|
| 397 |
+
|
| 398 |
+
proc auto_mkindex_parser::slavehook {cmd} {
|
| 399 |
+
variable initCommands
|
| 400 |
+
|
| 401 |
+
# The $parser variable is defined to be the name of the child interpreter
|
| 402 |
+
# when this command is used later.
|
| 403 |
+
|
| 404 |
+
lappend initCommands "\$parser eval [list $cmd]"
|
| 405 |
+
}
|
| 406 |
+
|
| 407 |
+
# auto_mkindex_parser::command --
|
| 408 |
+
#
|
| 409 |
+
# Registers a new command with the "auto_mkindex_parser" interpreter that
|
| 410 |
+
# parses Tcl files. These commands are fake versions of things like the
|
| 411 |
+
# "proc" command. When you execute them, they simply write out an entry to a
|
| 412 |
+
# "tclIndex" file for auto-loading.
|
| 413 |
+
#
|
| 414 |
+
# This procedure allows extensions to register their own commands with the
|
| 415 |
+
# auto_mkindex facility. For example, a package like [incr Tcl] might
|
| 416 |
+
# register a "class" command so that class definitions could be added to a
|
| 417 |
+
# "tclIndex" file for auto-loading.
|
| 418 |
+
#
|
| 419 |
+
# Arguments:
|
| 420 |
+
# name Name of command recognized in Tcl files.
|
| 421 |
+
# arglist Argument list for command.
|
| 422 |
+
# body Implementation of command to handle indexing.
|
| 423 |
+
|
| 424 |
+
proc auto_mkindex_parser::command {name arglist body} {
|
| 425 |
+
hook [list auto_mkindex_parser::commandInit $name $arglist $body]
|
| 426 |
+
}
|
| 427 |
+
|
| 428 |
+
# auto_mkindex_parser::commandInit --
|
| 429 |
+
#
|
| 430 |
+
# This does the actual work set up by auto_mkindex_parser::command. This is
|
| 431 |
+
# called when the interpreter used by the parser is created.
|
| 432 |
+
#
|
| 433 |
+
# Arguments:
|
| 434 |
+
# name Name of command recognized in Tcl files.
|
| 435 |
+
# arglist Argument list for command.
|
| 436 |
+
# body Implementation of command to handle indexing.
|
| 437 |
+
|
| 438 |
+
proc auto_mkindex_parser::commandInit {name arglist body} {
|
| 439 |
+
variable parser
|
| 440 |
+
|
| 441 |
+
set ns [namespace qualifiers $name]
|
| 442 |
+
set tail [namespace tail $name]
|
| 443 |
+
if {$ns eq ""} {
|
| 444 |
+
set fakeName [namespace current]::_%@fake_$tail
|
| 445 |
+
} else {
|
| 446 |
+
set fakeName [namespace current]::[string map {:: _} _%@fake_$name]
|
| 447 |
+
}
|
| 448 |
+
proc $fakeName $arglist $body
|
| 449 |
+
|
| 450 |
+
# YUK! Tcl won't let us alias fully qualified command names, so we can't
|
| 451 |
+
# handle names like "::itcl::class". Instead, we have to build procs with
|
| 452 |
+
# the fully qualified names, and have the procs point to the aliases.
|
| 453 |
+
|
| 454 |
+
if {[string match *::* $name]} {
|
| 455 |
+
set exportCmd [list _%@namespace export [namespace tail $name]]
|
| 456 |
+
$parser eval [list _%@namespace eval $ns $exportCmd]
|
| 457 |
+
|
| 458 |
+
# The following proc definition does not work if you want to tolerate
|
| 459 |
+
# space or something else diabolical in the procedure name, (i.e.,
|
| 460 |
+
# space in $alias). The following does not work:
|
| 461 |
+
# "_%@eval {$alias} \$args"
|
| 462 |
+
# because $alias gets concat'ed to $args. The following does not work
|
| 463 |
+
# because $cmd is somehow undefined
|
| 464 |
+
# "set cmd {$alias} \; _%@eval {\$cmd} \$args"
|
| 465 |
+
# A gold star to someone that can make test autoMkindex-3.3 work
|
| 466 |
+
# properly
|
| 467 |
+
|
| 468 |
+
set alias [namespace tail $fakeName]
|
| 469 |
+
$parser invokehidden proc $name {args} "_%@eval {$alias} \$args"
|
| 470 |
+
$parser alias $alias $fakeName
|
| 471 |
+
} else {
|
| 472 |
+
$parser alias $name $fakeName
|
| 473 |
+
}
|
| 474 |
+
return
|
| 475 |
+
}
|
| 476 |
+
|
| 477 |
+
# auto_mkindex_parser::fullname --
|
| 478 |
+
#
|
| 479 |
+
# Used by commands like "proc" within the auto_mkindex parser. Returns the
|
| 480 |
+
# qualified namespace name for the "name" argument. If the "name" does not
|
| 481 |
+
# start with "::", elements are added from the current namespace stack to
|
| 482 |
+
# produce a qualified name. Then, the name is examined to see whether or not
|
| 483 |
+
# it should really be qualified. If the name has more than the leading "::",
|
| 484 |
+
# it is returned as a fully qualified name. Otherwise, it is returned as a
|
| 485 |
+
# simple name. That way, the Tcl autoloader will recognize it properly.
|
| 486 |
+
#
|
| 487 |
+
# Arguments:
|
| 488 |
+
# name - Name that is being added to index.
|
| 489 |
+
|
| 490 |
+
proc auto_mkindex_parser::fullname {name} {
|
| 491 |
+
variable contextStack
|
| 492 |
+
|
| 493 |
+
if {![string match ::* $name]} {
|
| 494 |
+
foreach ns $contextStack {
|
| 495 |
+
set name "${ns}::$name"
|
| 496 |
+
if {[string match ::* $name]} {
|
| 497 |
+
break
|
| 498 |
+
}
|
| 499 |
+
}
|
| 500 |
+
}
|
| 501 |
+
|
| 502 |
+
if {[namespace qualifiers $name] eq ""} {
|
| 503 |
+
set name [namespace tail $name]
|
| 504 |
+
} elseif {![string match ::* $name]} {
|
| 505 |
+
set name "::$name"
|
| 506 |
+
}
|
| 507 |
+
|
| 508 |
+
# Earlier, mkindex replaced all $'s with \0. Now, we have to reverse that
|
| 509 |
+
# replacement.
|
| 510 |
+
return [string map [list \0 \$] $name]
|
| 511 |
+
}
|
| 512 |
+
|
| 513 |
+
# auto_mkindex_parser::indexEntry --
|
| 514 |
+
#
|
| 515 |
+
# Used by commands like "proc" within the auto_mkindex parser to add a
|
| 516 |
+
# correctly-quoted entry to the index. This is shared code so it is done
|
| 517 |
+
# *right*, in one place.
|
| 518 |
+
#
|
| 519 |
+
# Arguments:
|
| 520 |
+
# name - Name that is being added to index.
|
| 521 |
+
|
| 522 |
+
proc auto_mkindex_parser::indexEntry {name} {
|
| 523 |
+
variable index
|
| 524 |
+
variable scriptFile
|
| 525 |
+
|
| 526 |
+
# We convert all metacharacters to their backslashed form, and pre-split
|
| 527 |
+
# the file name that we know about (which will be a proper list, and so
|
| 528 |
+
# correctly quoted).
|
| 529 |
+
|
| 530 |
+
set name [string range [list \}[fullname $name]] 2 end]
|
| 531 |
+
set filenameParts [file split $scriptFile]
|
| 532 |
+
|
| 533 |
+
append index [format \
|
| 534 |
+
{set auto_index(%s) [list source [file join $dir %s]]%s} \
|
| 535 |
+
$name $filenameParts \n]
|
| 536 |
+
return
|
| 537 |
+
}
|
| 538 |
+
|
| 539 |
+
if {[llength $::auto_mkindex_parser::initCommands]} {
|
| 540 |
+
return
|
| 541 |
+
}
|
| 542 |
+
|
| 543 |
+
# Register all of the procedures for the auto_mkindex parser that will build
|
| 544 |
+
# the "tclIndex" file.
|
| 545 |
+
|
| 546 |
+
# AUTO MKINDEX: proc name arglist body
|
| 547 |
+
# Adds an entry to the auto index list for the given procedure name.
|
| 548 |
+
|
| 549 |
+
auto_mkindex_parser::command proc {name args} {
|
| 550 |
+
indexEntry $name
|
| 551 |
+
}
|
| 552 |
+
|
| 553 |
+
# Conditionally add support for Tcl byte code files. There are some tricky
|
| 554 |
+
# details here. First, we need to get the tbcload library initialized in the
|
| 555 |
+
# current interpreter. We cannot load tbcload into the child until we have
|
| 556 |
+
# done so because it needs access to the tcl_patchLevel variable. Second,
|
| 557 |
+
# because the package index file may defer loading the library until we invoke
|
| 558 |
+
# a command, we need to explicitly invoke auto_load to force it to be loaded.
|
| 559 |
+
# This should be a noop if the package has already been loaded
|
| 560 |
+
|
| 561 |
+
auto_mkindex_parser::hook {
|
| 562 |
+
try {
|
| 563 |
+
package require tbcload
|
| 564 |
+
} on error {} {
|
| 565 |
+
# OK, don't have it so do nothing
|
| 566 |
+
} on ok {} {
|
| 567 |
+
if {[namespace which -command tbcload::bcproc] eq ""} {
|
| 568 |
+
auto_load tbcload::bcproc
|
| 569 |
+
}
|
| 570 |
+
load {} tbcload $auto_mkindex_parser::parser
|
| 571 |
+
|
| 572 |
+
# AUTO MKINDEX: tbcload::bcproc name arglist body
|
| 573 |
+
# Adds an entry to the auto index list for the given pre-compiled
|
| 574 |
+
# procedure name.
|
| 575 |
+
|
| 576 |
+
auto_mkindex_parser::commandInit tbcload::bcproc {name args} {
|
| 577 |
+
indexEntry $name
|
| 578 |
+
}
|
| 579 |
+
}
|
| 580 |
+
}
|
| 581 |
+
|
| 582 |
+
# AUTO MKINDEX: namespace eval name command ?arg arg...?
|
| 583 |
+
# Adds the namespace name onto the context stack and evaluates the associated
|
| 584 |
+
# body of commands.
|
| 585 |
+
#
|
| 586 |
+
# AUTO MKINDEX: namespace import ?-force? pattern ?pattern...?
|
| 587 |
+
# Performs the "import" action in the parser interpreter. This is important
|
| 588 |
+
# for any commands contained in a namespace that affect the index. For
|
| 589 |
+
# example, a script may say "itcl::class ...", or it may import "itcl::*" and
|
| 590 |
+
# then say "class ...". This procedure does the import operation, but keeps
|
| 591 |
+
# track of imported patterns so we can remove the imports later.
|
| 592 |
+
|
| 593 |
+
auto_mkindex_parser::command namespace {op args} {
|
| 594 |
+
switch -- $op {
|
| 595 |
+
eval {
|
| 596 |
+
variable parser
|
| 597 |
+
variable contextStack
|
| 598 |
+
|
| 599 |
+
set name [lindex $args 0]
|
| 600 |
+
set args [lrange $args 1 end]
|
| 601 |
+
|
| 602 |
+
set contextStack [linsert $contextStack 0 $name]
|
| 603 |
+
$parser eval [list _%@namespace eval $name] $args
|
| 604 |
+
set contextStack [lrange $contextStack 1 end]
|
| 605 |
+
}
|
| 606 |
+
import {
|
| 607 |
+
variable parser
|
| 608 |
+
variable imports
|
| 609 |
+
foreach pattern $args {
|
| 610 |
+
if {$pattern ne "-force"} {
|
| 611 |
+
lappend imports $pattern
|
| 612 |
+
}
|
| 613 |
+
}
|
| 614 |
+
catch {$parser eval "_%@namespace import $args"}
|
| 615 |
+
}
|
| 616 |
+
ensemble {
|
| 617 |
+
variable parser
|
| 618 |
+
variable contextStack
|
| 619 |
+
if {[lindex $args 0] eq "create"} {
|
| 620 |
+
set name ::[join [lreverse $contextStack] ::]
|
| 621 |
+
catch {
|
| 622 |
+
set name [dict get [lrange $args 1 end] -command]
|
| 623 |
+
if {![string match ::* $name]} {
|
| 624 |
+
set name ::[join [lreverse $contextStack] ::]$name
|
| 625 |
+
}
|
| 626 |
+
regsub -all ::+ $name :: name
|
| 627 |
+
}
|
| 628 |
+
# create artifical proc to force an entry in the tclIndex
|
| 629 |
+
$parser eval [list ::proc $name {} {}]
|
| 630 |
+
}
|
| 631 |
+
}
|
| 632 |
+
}
|
| 633 |
+
}
|
| 634 |
+
|
| 635 |
+
# AUTO MKINDEX: oo::class create name ?definition?
|
| 636 |
+
# Adds an entry to the auto index list for the given class name.
|
| 637 |
+
auto_mkindex_parser::command oo::class {op name {body ""}} {
|
| 638 |
+
if {$op eq "create"} {
|
| 639 |
+
indexEntry $name
|
| 640 |
+
}
|
| 641 |
+
}
|
| 642 |
+
auto_mkindex_parser::command class {op name {body ""}} {
|
| 643 |
+
if {$op eq "create"} {
|
| 644 |
+
indexEntry $name
|
| 645 |
+
}
|
| 646 |
+
}
|
| 647 |
+
|
| 648 |
+
return
|
micromamba_root/Library/lib/tcl8.6/clock.tcl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
micromamba_root/Library/lib/tcl8.6/encoding/ascii.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: ascii, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E0000
|
| 13 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 14 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 15 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 16 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 17 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 18 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 19 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 20 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
micromamba_root/Library/lib/tcl8.6/encoding/big5.enc
ADDED
|
@@ -0,0 +1,1516 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: big5, multi-byte
|
| 2 |
+
M
|
| 3 |
+
003F 0 89
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
0080008100820083008400850086008700880089008A008B008C008D008E008F
|
| 14 |
+
0090009100920093009400950096009700980099009A009B009C009D009E009F
|
| 15 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 16 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 17 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 18 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 19 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 20 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 21 |
+
A1
|
| 22 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 23 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 24 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 25 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 26 |
+
3000FF0C30013002FF0E2022FF1BFF1AFF1FFF01FE3020262025FE50FF64FE52
|
| 27 |
+
00B7FE54FE55FE56FE57FF5C2013FE312014FE33FFFDFE34FE4FFF08FF09FE35
|
| 28 |
+
FE36FF5BFF5DFE37FE3830143015FE39FE3A30103011FE3BFE3C300A300BFE3D
|
| 29 |
+
FE3E30083009FE3FFE40300C300DFE41FE42300E300FFE43FE44FE59FE5A0000
|
| 30 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 31 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 32 |
+
0000FE5BFE5CFE5DFE5E20182019201C201D301D301E20352032FF03FF06FF0A
|
| 33 |
+
203B00A7300325CB25CF25B325B225CE2606260525C725C625A125A025BD25BC
|
| 34 |
+
32A32105203EFFFDFF3FFFFDFE49FE4AFE4DFE4EFE4BFE4CFE5FFE60FE61FF0B
|
| 35 |
+
FF0D00D700F700B1221AFF1CFF1EFF1D226622672260221E22522261FE62FE63
|
| 36 |
+
FE64FE65FE66223C2229222A22A52220221F22BF33D233D1222B222E22352234
|
| 37 |
+
26402642264126092191219321902192219621972199219822252223FFFD0000
|
| 38 |
+
A2
|
| 39 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 40 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 41 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 42 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 43 |
+
FFFDFF0FFF3CFF0400A5301200A200A3FF05FF2021032109FE69FE6AFE6B33D5
|
| 44 |
+
339C339D339E33CE33A1338E338F33C400B05159515B515E515D5161516355E7
|
| 45 |
+
74E97CCE25812582258325842585258625872588258F258E258D258C258B258A
|
| 46 |
+
2589253C2534252C2524251C2594250025022595250C251025142518256D0000
|
| 47 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 48 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 49 |
+
0000256E2570256F2550255E256A256125E225E325E525E4257125722573FF10
|
| 50 |
+
FF11FF12FF13FF14FF15FF16FF17FF18FF192160216121622163216421652166
|
| 51 |
+
216721682169302130223023302430253026302730283029FFFD5344FFFDFF21
|
| 52 |
+
FF22FF23FF24FF25FF26FF27FF28FF29FF2AFF2BFF2CFF2DFF2EFF2FFF30FF31
|
| 53 |
+
FF32FF33FF34FF35FF36FF37FF38FF39FF3AFF41FF42FF43FF44FF45FF46FF47
|
| 54 |
+
FF48FF49FF4AFF4BFF4CFF4DFF4EFF4FFF50FF51FF52FF53FF54FF55FF560000
|
| 55 |
+
A3
|
| 56 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 57 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 58 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 59 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 60 |
+
FF57FF58FF59FF5A039103920393039403950396039703980399039A039B039C
|
| 61 |
+
039D039E039F03A003A103A303A403A503A603A703A803A903B103B203B303B4
|
| 62 |
+
03B503B603B703B803B903BA03BB03BC03BD03BE03BF03C003C103C303C403C5
|
| 63 |
+
03C603C703C803C931053106310731083109310A310B310C310D310E310F0000
|
| 64 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 65 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 66 |
+
00003110311131123113311431153116311731183119311A311B311C311D311E
|
| 67 |
+
311F312031213122312331243125312631273128312902D902C902CA02C702CB
|
| 68 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 69 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 70 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 71 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 72 |
+
A4
|
| 73 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 74 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 75 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 76 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 77 |
+
4E004E594E014E034E434E5D4E864E8C4EBA513F5165516B51E052005201529B
|
| 78 |
+
53155341535C53C84E094E0B4E084E0A4E2B4E3851E14E454E484E5F4E5E4E8E
|
| 79 |
+
4EA15140520352FA534353C953E3571F58EB5915592759735B505B515B535BF8
|
| 80 |
+
5C0F5C225C385C715DDD5DE55DF15DF25DF35DFE5E725EFE5F0B5F13624D0000
|
| 81 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 82 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 83 |
+
00004E114E104E0D4E2D4E304E394E4B5C394E884E914E954E924E944EA24EC1
|
| 84 |
+
4EC04EC34EC64EC74ECD4ECA4ECB4EC4514351415167516D516E516C519751F6
|
| 85 |
+
52065207520852FB52FE52FF53165339534853475345535E538453CB53CA53CD
|
| 86 |
+
58EC5929592B592A592D5B545C115C245C3A5C6F5DF45E7B5EFF5F145F155FC3
|
| 87 |
+
62086236624B624E652F6587659765A465B965E566F0670867286B206B626B79
|
| 88 |
+
6BCB6BD46BDB6C0F6C34706B722A7236723B72477259725B72AC738B4E190000
|
| 89 |
+
A5
|
| 90 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 91 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 92 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 93 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 94 |
+
4E164E154E144E184E3B4E4D4E4F4E4E4EE54ED84ED44ED54ED64ED74EE34EE4
|
| 95 |
+
4ED94EDE514551445189518A51AC51F951FA51F8520A52A0529F530553065317
|
| 96 |
+
531D4EDF534A534953615360536F536E53BB53EF53E453F353EC53EE53E953E8
|
| 97 |
+
53FC53F853F553EB53E653EA53F253F153F053E553ED53FB56DB56DA59160000
|
| 98 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 99 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 100 |
+
0000592E5931597459765B555B835C3C5DE85DE75DE65E025E035E735E7C5F01
|
| 101 |
+
5F185F175FC5620A625362546252625165A565E6672E672C672A672B672D6B63
|
| 102 |
+
6BCD6C116C106C386C416C406C3E72AF7384738974DC74E67518751F75287529
|
| 103 |
+
7530753175327533758B767D76AE76BF76EE77DB77E277F3793A79BE7A747ACB
|
| 104 |
+
4E1E4E1F4E524E534E694E994EA44EA64EA54EFF4F094F194F0A4F154F0D4F10
|
| 105 |
+
4F114F0F4EF24EF64EFB4EF04EF34EFD4F014F0B514951475146514851680000
|
| 106 |
+
A6
|
| 107 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 108 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 109 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 110 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 111 |
+
5171518D51B0521752115212520E521652A3530853215320537053715409540F
|
| 112 |
+
540C540A54105401540B54045411540D54085403540E5406541256E056DE56DD
|
| 113 |
+
573357305728572D572C572F57295919591A59375938598459785983597D5979
|
| 114 |
+
598259815B575B585B875B885B855B895BFA5C165C795DDE5E065E765E740000
|
| 115 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 116 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 117 |
+
00005F0F5F1B5FD95FD6620E620C620D62106263625B6258653665E965E865EC
|
| 118 |
+
65ED66F266F36709673D6734673167356B216B646B7B6C166C5D6C576C596C5F
|
| 119 |
+
6C606C506C556C616C5B6C4D6C4E7070725F725D767E7AF97C737CF87F367F8A
|
| 120 |
+
7FBD80018003800C80128033807F8089808B808C81E381EA81F381FC820C821B
|
| 121 |
+
821F826E8272827E866B8840884C8863897F96214E324EA84F4D4F4F4F474F57
|
| 122 |
+
4F5E4F344F5B4F554F304F504F514F3D4F3A4F384F434F544F3C4F464F630000
|
| 123 |
+
A7
|
| 124 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 125 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 126 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 127 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 128 |
+
4F5C4F604F2F4F4E4F364F594F5D4F484F5A514C514B514D517551B651B75225
|
| 129 |
+
52245229522A522852AB52A952AA52AC532353735375541D542D541E543E5426
|
| 130 |
+
544E542754465443543354485442541B5429544A5439543B5438542E54355436
|
| 131 |
+
5420543C54405431542B541F542C56EA56F056E456EB574A57515740574D0000
|
| 132 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 133 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 134 |
+
00005747574E573E5750574F573B58EF593E599D599259A8599E59A359995996
|
| 135 |
+
598D59A45993598A59A55B5D5B5C5B5A5B5B5B8C5B8B5B8F5C2C5C405C415C3F
|
| 136 |
+
5C3E5C905C915C945C8C5DEB5E0C5E8F5E875E8A5EF75F045F1F5F645F625F77
|
| 137 |
+
5F795FD85FCC5FD75FCD5FF15FEB5FF85FEA6212621162846297629662806276
|
| 138 |
+
6289626D628A627C627E627962736292626F6298626E62956293629162866539
|
| 139 |
+
653B653865F166F4675F674E674F67506751675C6756675E6749674667600000
|
| 140 |
+
A8
|
| 141 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 142 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 143 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 144 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 145 |
+
675367576B656BCF6C426C5E6C996C816C886C896C856C9B6C6A6C7A6C906C70
|
| 146 |
+
6C8C6C686C966C926C7D6C836C726C7E6C746C866C766C8D6C946C986C827076
|
| 147 |
+
707C707D707872627261726072C472C27396752C752B75377538768276EF77E3
|
| 148 |
+
79C179C079BF7A767CFB7F5580968093809D8098809B809A80B2826F82920000
|
| 149 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 150 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 151 |
+
0000828B828D898B89D28A008C378C468C558C9D8D648D708DB38EAB8ECA8F9B
|
| 152 |
+
8FB08FC28FC68FC58FC45DE1909190A290AA90A690A3914991C691CC9632962E
|
| 153 |
+
9631962A962C4E264E564E734E8B4E9B4E9E4EAB4EAC4F6F4F9D4F8D4F734F7F
|
| 154 |
+
4F6C4F9B4F8B4F864F834F704F754F884F694F7B4F964F7E4F8F4F914F7A5154
|
| 155 |
+
51525155516951775176517851BD51FD523B52385237523A5230522E52365241
|
| 156 |
+
52BE52BB5352535453535351536653775378537953D653D453D7547354750000
|
| 157 |
+
A9
|
| 158 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 159 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 160 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 161 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 162 |
+
5496547854955480547B5477548454925486547C549054715476548C549A5462
|
| 163 |
+
5468548B547D548E56FA57835777576A5769576157665764577C591C59495947
|
| 164 |
+
59485944595459BE59BB59D459B959AE59D159C659D059CD59CB59D359CA59AF
|
| 165 |
+
59B359D259C55B5F5B645B635B975B9A5B985B9C5B995B9B5C1A5C485C450000
|
| 166 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 167 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 168 |
+
00005C465CB75CA15CB85CA95CAB5CB15CB35E185E1A5E165E155E1B5E115E78
|
| 169 |
+
5E9A5E975E9C5E955E965EF65F265F275F295F805F815F7F5F7C5FDD5FE05FFD
|
| 170 |
+
5FF55FFF600F6014602F60356016602A6015602160276029602B601B62166215
|
| 171 |
+
623F623E6240627F62C962CC62C462BF62C262B962D262DB62AB62D362D462CB
|
| 172 |
+
62C862A862BD62BC62D062D962C762CD62B562DA62B162D862D662D762C662AC
|
| 173 |
+
62CE653E65A765BC65FA66146613660C66066602660E6600660F6615660A0000
|
| 174 |
+
AA
|
| 175 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 176 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 177 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 178 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 179 |
+
6607670D670B676D678B67956771679C677367776787679D6797676F6770677F
|
| 180 |
+
6789677E67906775679A6793677C676A67726B236B666B676B7F6C136C1B6CE3
|
| 181 |
+
6CE86CF36CB16CCC6CE56CB36CBD6CBE6CBC6CE26CAB6CD56CD36CB86CC46CB9
|
| 182 |
+
6CC16CAE6CD76CC56CF16CBF6CBB6CE16CDB6CCA6CAC6CEF6CDC6CD66CE00000
|
| 183 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 184 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 185 |
+
00007095708E7092708A7099722C722D723872487267726972C072CE72D972D7
|
| 186 |
+
72D073A973A8739F73AB73A5753D759D7599759A768476C276F276F477E577FD
|
| 187 |
+
793E7940794179C979C87A7A7A797AFA7CFE7F547F8C7F8B800580BA80A580A2
|
| 188 |
+
80B180A180AB80A980B480AA80AF81E581FE820D82B3829D829982AD82BD829F
|
| 189 |
+
82B982B182AC82A582AF82B882A382B082BE82B7864E8671521D88688ECB8FCE
|
| 190 |
+
8FD48FD190B590B890B190B691C791D195779580961C9640963F963B96440000
|
| 191 |
+
AB
|
| 192 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 193 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 194 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 195 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 196 |
+
964296B996E89752975E4E9F4EAD4EAE4FE14FB54FAF4FBF4FE04FD14FCF4FDD
|
| 197 |
+
4FC34FB64FD84FDF4FCA4FD74FAE4FD04FC44FC24FDA4FCE4FDE4FB751575192
|
| 198 |
+
519151A0524E5243524A524D524C524B524752C752C952C352C1530D5357537B
|
| 199 |
+
539A53DB54AC54C054A854CE54C954B854A654B354C754C254BD54AA54C10000
|
| 200 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 201 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 202 |
+
000054C454C854AF54AB54B154BB54A954A754BF56FF5782578B57A057A357A2
|
| 203 |
+
57CE57AE579359555951594F594E595059DC59D859FF59E359E85A0359E559EA
|
| 204 |
+
59DA59E65A0159FB5B695BA35BA65BA45BA25BA55C015C4E5C4F5C4D5C4B5CD9
|
| 205 |
+
5CD25DF75E1D5E255E1F5E7D5EA05EA65EFA5F085F2D5F655F885F855F8A5F8B
|
| 206 |
+
5F875F8C5F896012601D60206025600E6028604D60706068606260466043606C
|
| 207 |
+
606B606A6064624162DC6316630962FC62ED630162EE62FD630762F162F70000
|
| 208 |
+
AC
|
| 209 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 210 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 211 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 212 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 213 |
+
62EF62EC62FE62F463116302653F654565AB65BD65E26625662D66206627662F
|
| 214 |
+
661F66286631662466F767FF67D367F167D467D067EC67B667AF67F567E967EF
|
| 215 |
+
67C467D167B467DA67E567B867CF67DE67F367B067D967E267DD67D26B6A6B83
|
| 216 |
+
6B866BB56BD26BD76C1F6CC96D0B6D326D2A6D416D256D0C6D316D1E6D170000
|
| 217 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 218 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 219 |
+
00006D3B6D3D6D3E6D366D1B6CF56D396D276D386D296D2E6D356D0E6D2B70AB
|
| 220 |
+
70BA70B370AC70AF70AD70B870AE70A472307272726F727472E972E072E173B7
|
| 221 |
+
73CA73BB73B273CD73C073B3751A752D754F754C754E754B75AB75A475A575A2
|
| 222 |
+
75A3767876867687768876C876C676C376C5770176F976F87709770B76FE76FC
|
| 223 |
+
770777DC78027814780C780D794679497948794779B979BA79D179D279CB7A7F
|
| 224 |
+
7A817AFF7AFD7C7D7D027D057D007D097D077D047D067F387F8E7FBF80040000
|
| 225 |
+
AD
|
| 226 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 227 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 228 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 229 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 230 |
+
8010800D8011803680D680E580DA80C380C480CC80E180DB80CE80DE80E480DD
|
| 231 |
+
81F4822282E78303830582E382DB82E6830482E58302830982D282D782F18301
|
| 232 |
+
82DC82D482D182DE82D382DF82EF830686508679867B867A884D886B898189D4
|
| 233 |
+
8A088A028A038C9E8CA08D748D738DB48ECD8ECC8FF08FE68FE28FEA8FE50000
|
| 234 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 235 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 236 |
+
00008FED8FEB8FE48FE890CA90CE90C190C3914B914A91CD95829650964B964C
|
| 237 |
+
964D9762976997CB97ED97F3980198A898DB98DF999699994E584EB3500C500D
|
| 238 |
+
50234FEF502650254FF8502950165006503C501F501A501250114FFA50005014
|
| 239 |
+
50284FF15021500B501950184FF34FEE502D502A4FFE502B5009517C51A451A5
|
| 240 |
+
51A251CD51CC51C651CB5256525C5254525B525D532A537F539F539D53DF54E8
|
| 241 |
+
55105501553754FC54E554F2550654FA551454E954ED54E1550954EE54EA0000
|
| 242 |
+
AE
|
| 243 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 244 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 245 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 246 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 247 |
+
54E65527550754FD550F5703570457C257D457CB57C35809590F59575958595A
|
| 248 |
+
5A115A185A1C5A1F5A1B5A1359EC5A205A235A295A255A0C5A095B6B5C585BB0
|
| 249 |
+
5BB35BB65BB45BAE5BB55BB95BB85C045C515C555C505CED5CFD5CFB5CEA5CE8
|
| 250 |
+
5CF05CF65D015CF45DEE5E2D5E2B5EAB5EAD5EA75F315F925F915F9060590000
|
| 251 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 252 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 253 |
+
00006063606560506055606D6069606F6084609F609A608D6094608C60856096
|
| 254 |
+
624762F3630862FF634E633E632F635563426346634F6349633A6350633D632A
|
| 255 |
+
632B6328634D634C65486549659965C165C566426649664F66436652664C6645
|
| 256 |
+
664166F867146715671768216838684868466853683968426854682968B36817
|
| 257 |
+
684C6851683D67F468506840683C6843682A68456813681868416B8A6B896BB7
|
| 258 |
+
6C236C276C286C266C246CF06D6A6D956D886D876D666D786D776D596D930000
|
| 259 |
+
AF
|
| 260 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 261 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 262 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 263 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 264 |
+
6D6C6D896D6E6D5A6D746D696D8C6D8A6D796D856D656D9470CA70D870E470D9
|
| 265 |
+
70C870CF7239727972FC72F972FD72F872F7738673ED740973EE73E073EA73DE
|
| 266 |
+
7554755D755C755A755975BE75C575C775B275B375BD75BC75B975C275B8768B
|
| 267 |
+
76B076CA76CD76CE7729771F7720772877E9783078277838781D783478370000
|
| 268 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 269 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 270 |
+
00007825782D7820781F7832795579507960795F7956795E795D7957795A79E4
|
| 271 |
+
79E379E779DF79E679E979D87A847A887AD97B067B117C897D217D177D0B7D0A
|
| 272 |
+
7D207D227D147D107D157D1A7D1C7D0D7D197D1B7F3A7F5F7F947FC57FC18006
|
| 273 |
+
8018801580198017803D803F80F1810280F0810580ED80F4810680F880F38108
|
| 274 |
+
80FD810A80FC80EF81ED81EC82008210822A822B8228822C82BB832B83528354
|
| 275 |
+
834A83388350834983358334834F833283398336831783408331832883430000
|
| 276 |
+
B0
|
| 277 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 278 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 279 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 280 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 281 |
+
8654868A86AA869386A486A9868C86A3869C8870887788818882887D88798A18
|
| 282 |
+
8A108A0E8A0C8A158A0A8A178A138A168A0F8A118C488C7A8C798CA18CA28D77
|
| 283 |
+
8EAC8ED28ED48ECF8FB1900190068FF790008FFA8FF490038FFD90058FF89095
|
| 284 |
+
90E190DD90E29152914D914C91D891DD91D791DC91D995839662966396610000
|
| 285 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 286 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 287 |
+
0000965B965D96649658965E96BB98E299AC9AA89AD89B259B329B3C4E7E507A
|
| 288 |
+
507D505C50475043504C505A504950655076504E5055507550745077504F500F
|
| 289 |
+
506F506D515C519551F0526A526F52D252D952D852D55310530F5319533F5340
|
| 290 |
+
533E53C366FC5546556A55665544555E55615543554A55315556554F5555552F
|
| 291 |
+
55645538552E555C552C55635533554155575708570B570957DF5805580A5806
|
| 292 |
+
57E057E457FA5802583557F757F9592059625A365A415A495A665A6A5A400000
|
| 293 |
+
B1
|
| 294 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 295 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 296 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 297 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 298 |
+
5A3C5A625A5A5A465A4A5B705BC75BC55BC45BC25BBF5BC65C095C085C075C60
|
| 299 |
+
5C5C5C5D5D075D065D0E5D1B5D165D225D115D295D145D195D245D275D175DE2
|
| 300 |
+
5E385E365E335E375EB75EB85EB65EB55EBE5F355F375F575F6C5F695F6B5F97
|
| 301 |
+
5F995F9E5F985FA15FA05F9C607F60A3608960A060A860CB60B460E660BD0000
|
| 302 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 303 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 304 |
+
000060C560BB60B560DC60BC60D860D560C660DF60B860DA60C7621A621B6248
|
| 305 |
+
63A063A76372639663A263A563776367639863AA637163A963896383639B636B
|
| 306 |
+
63A863846388639963A163AC6392638F6380637B63696368637A655D65566551
|
| 307 |
+
65596557555F654F655865556554659C659B65AC65CF65CB65CC65CE665D665A
|
| 308 |
+
666466686666665E66F952D7671B688168AF68A2689368B5687F687668B168A7
|
| 309 |
+
689768B0688368C468AD688668856894689D68A8689F68A168826B326BBA0000
|
| 310 |
+
B2
|
| 311 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 312 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 313 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 314 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 315 |
+
6BEB6BEC6C2B6D8E6DBC6DF36DD96DB26DE16DCC6DE46DFB6DFA6E056DC76DCB
|
| 316 |
+
6DAF6DD16DAE6DDE6DF96DB86DF76DF56DC56DD26E1A6DB56DDA6DEB6DD86DEA
|
| 317 |
+
6DF16DEE6DE86DC66DC46DAA6DEC6DBF6DE670F97109710A70FD70EF723D727D
|
| 318 |
+
7281731C731B73167313731973877405740A7403740673FE740D74E074F60000
|
| 319 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 320 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 321 |
+
000074F7751C75227565756675627570758F75D475D575B575CA75CD768E76D4
|
| 322 |
+
76D276DB7737773E773C77367738773A786B7843784E79657968796D79FB7A92
|
| 323 |
+
7A957B207B287B1B7B2C7B267B197B1E7B2E7C927C977C957D467D437D717D2E
|
| 324 |
+
7D397D3C7D407D307D337D447D2F7D427D327D317F3D7F9E7F9A7FCC7FCE7FD2
|
| 325 |
+
801C804A8046812F81168123812B81298130812482028235823782368239838E
|
| 326 |
+
839E8398837883A2839683BD83AB8392838A8393838983A08377837B837C0000
|
| 327 |
+
B3
|
| 328 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 329 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 330 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 331 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 332 |
+
838683A786555F6A86C786C086B686C486B586C686CB86B186AF86C98853889E
|
| 333 |
+
888888AB88928896888D888B8993898F8A2A8A1D8A238A258A318A2D8A1F8A1B
|
| 334 |
+
8A228C498C5A8CA98CAC8CAB8CA88CAA8CA78D678D668DBE8DBA8EDB8EDF9019
|
| 335 |
+
900D901A90179023901F901D90109015901E9020900F90229016901B90140000
|
| 336 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 337 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 338 |
+
000090E890ED90FD915791CE91F591E691E391E791ED91E99589966A96759673
|
| 339 |
+
96789670967496769677966C96C096EA96E97AE07ADF980298039B5A9CE59E75
|
| 340 |
+
9E7F9EA59EBB50A2508D508550995091508050965098509A670051F152725274
|
| 341 |
+
5275526952DE52DD52DB535A53A5557B558055A7557C558A559D55985582559C
|
| 342 |
+
55AA55945587558B558355B355AE559F553E55B2559A55BB55AC55B1557E5589
|
| 343 |
+
55AB5599570D582F582A58345824583058315821581D582058F958FA59600000
|
| 344 |
+
B4
|
| 345 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 346 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 347 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 348 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 349 |
+
5A775A9A5A7F5A925A9B5AA75B735B715BD25BCC5BD35BD05C0A5C0B5C315D4C
|
| 350 |
+
5D505D345D475DFD5E455E3D5E405E435E7E5ECA5EC15EC25EC45F3C5F6D5FA9
|
| 351 |
+
5FAA5FA860D160E160B260B660E0611C612360FA611560F060FB60F4616860F1
|
| 352 |
+
610E60F6610961006112621F624963A3638C63CF63C063E963C963C663CD0000
|
| 353 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 354 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 355 |
+
000063D263E363D063E163D663ED63EE637663F463EA63DB645263DA63F9655E
|
| 356 |
+
6566656265636591659065AF666E667066746676666F6691667A667E667766FE
|
| 357 |
+
66FF671F671D68FA68D568E068D868D7690568DF68F568EE68E768F968D268F2
|
| 358 |
+
68E368CB68CD690D6912690E68C968DA696E68FB6B3E6B3A6B3D6B986B966BBC
|
| 359 |
+
6BEF6C2E6C2F6C2C6E2F6E386E546E216E326E676E4A6E206E256E236E1B6E5B
|
| 360 |
+
6E586E246E566E6E6E2D6E266E6F6E346E4D6E3A6E2C6E436E1D6E3E6ECB0000
|
| 361 |
+
B5
|
| 362 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 363 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 364 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 365 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 366 |
+
6E896E196E4E6E636E446E726E696E5F7119711A7126713071217136716E711C
|
| 367 |
+
724C728472807336732573347329743A742A743374227425743574367434742F
|
| 368 |
+
741B7426742875257526756B756A75E275DB75E375D975D875DE75E0767B767C
|
| 369 |
+
7696769376B476DC774F77ED785D786C786F7A0D7A087A0B7A057A007A980000
|
| 370 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 371 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 372 |
+
00007A977A967AE57AE37B497B567B467B507B527B547B4D7B4B7B4F7B517C9F
|
| 373 |
+
7CA57D5E7D507D687D557D2B7D6E7D727D617D667D627D707D7355847FD47FD5
|
| 374 |
+
800B8052808581558154814B8151814E81398146813E814C815381748212821C
|
| 375 |
+
83E9840383F8840D83E083C5840B83C183EF83F183F48457840A83F0840C83CC
|
| 376 |
+
83FD83F283CA8438840E840483DC840783D483DF865B86DF86D986ED86D486DB
|
| 377 |
+
86E486D086DE885788C188C288B1898389968A3B8A608A558A5E8A3C8A410000
|
| 378 |
+
B6
|
| 379 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 380 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 381 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 382 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 383 |
+
8A548A5B8A508A468A348A3A8A368A568C618C828CAF8CBC8CB38CBD8CC18CBB
|
| 384 |
+
8CC08CB48CB78CB68CBF8CB88D8A8D858D818DCE8DDD8DCB8DDA8DD18DCC8DDB
|
| 385 |
+
8DC68EFB8EF88EFC8F9C902E90359031903890329036910290F5910990FE9163
|
| 386 |
+
916591CF9214921592239209921E920D9210920792119594958F958B95910000
|
| 387 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 388 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 389 |
+
000095939592958E968A968E968B967D96859686968D9672968496C196C596C4
|
| 390 |
+
96C696C796EF96F297CC98059806980898E798EA98EF98E998F298ED99AE99AD
|
| 391 |
+
9EC39ECD9ED14E8250AD50B550B250B350C550BE50AC50B750BB50AF50C7527F
|
| 392 |
+
5277527D52DF52E652E452E252E3532F55DF55E855D355E655CE55DC55C755D1
|
| 393 |
+
55E355E455EF55DA55E155C555C655E555C957125713585E585158585857585A
|
| 394 |
+
5854586B584C586D584A58625852584B59675AC15AC95ACC5ABE5ABD5ABC0000
|
| 395 |
+
B7
|
| 396 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 397 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 398 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 399 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 400 |
+
5AB35AC25AB25D695D6F5E4C5E795EC95EC85F125F595FAC5FAE611A610F6148
|
| 401 |
+
611F60F3611B60F961016108614E614C6144614D613E61346127610D61066137
|
| 402 |
+
622162226413643E641E642A642D643D642C640F641C6414640D643664166417
|
| 403 |
+
6406656C659F65B06697668966876688669666846698668D67036994696D0000
|
| 404 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 405 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 406 |
+
0000695A697769606954697569306982694A6968696B695E695369796986695D
|
| 407 |
+
6963695B6B476B726BC06BBF6BD36BFD6EA26EAF6ED36EB66EC26E906E9D6EC7
|
| 408 |
+
6EC56EA56E986EBC6EBA6EAB6ED16E966E9C6EC46ED46EAA6EA76EB4714E7159
|
| 409 |
+
7169716471497167715C716C7166714C7165715E714671687156723A72527337
|
| 410 |
+
7345733F733E746F745A7455745F745E7441743F7459745B745C757675787600
|
| 411 |
+
75F0760175F275F175FA75FF75F475F376DE76DF775B776B7766775E77630000
|
| 412 |
+
B8
|
| 413 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 414 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 415 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 416 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 417 |
+
7779776A776C775C77657768776277EE788E78B078977898788C7889787C7891
|
| 418 |
+
7893787F797A797F7981842C79BD7A1C7A1A7A207A147A1F7A1E7A9F7AA07B77
|
| 419 |
+
7BC07B607B6E7B677CB17CB37CB57D937D797D917D817D8F7D5B7F6E7F697F6A
|
| 420 |
+
7F727FA97FA87FA480568058808680848171817081788165816E8173816B0000
|
| 421 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 422 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 423 |
+
00008179817A81668205824784828477843D843184758466846B8449846C845B
|
| 424 |
+
843C8435846184638469846D8446865E865C865F86F9871387088707870086FE
|
| 425 |
+
86FB870287038706870A885988DF88D488D988DC88D888DD88E188CA88D588D2
|
| 426 |
+
899C89E38A6B8A728A738A668A698A708A878A7C8A638AA08A718A858A6D8A62
|
| 427 |
+
8A6E8A6C8A798A7B8A3E8A688C628C8A8C898CCA8CC78CC88CC48CB28CC38CC2
|
| 428 |
+
8CC58DE18DDF8DE88DEF8DF38DFA8DEA8DE48DE68EB28F038F098EFE8F0A0000
|
| 429 |
+
B9
|
| 430 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 431 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 432 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 433 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 434 |
+
8F9F8FB2904B904A905390429054903C905590509047904F904E904D9051903E
|
| 435 |
+
904191129117916C916A916991C9923792579238923D9240923E925B924B9264
|
| 436 |
+
925192349249924D92459239923F925A959896989694969596CD96CB96C996CA
|
| 437 |
+
96F796FB96F996F6975697749776981098119813980A9812980C98FC98F40000
|
| 438 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 439 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 440 |
+
000098FD98FE99B399B199B49AE19CE99E829F0E9F139F2050E750EE50E550D6
|
| 441 |
+
50ED50DA50D550CF50D150F150CE50E9516251F352835282533153AD55FE5600
|
| 442 |
+
561B561755FD561456065609560D560E55F75616561F5608561055F657185716
|
| 443 |
+
5875587E58835893588A58795885587D58FD592559225924596A59695AE15AE6
|
| 444 |
+
5AE95AD75AD65AD85AE35B755BDE5BE75BE15BE55BE65BE85BE25BE45BDF5C0D
|
| 445 |
+
5C625D845D875E5B5E635E555E575E545ED35ED65F0A5F465F705FB961470000
|
| 446 |
+
BA
|
| 447 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 448 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 449 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 450 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 451 |
+
613F614B617761626163615F615A61586175622A64876458645464A46478645F
|
| 452 |
+
647A645164676434646D647B657265A165D765D666A266A8669D699C69A86995
|
| 453 |
+
69C169AE69D369CB699B69B769BB69AB69B469D069CD69AD69CC69A669C369A3
|
| 454 |
+
6B496B4C6C336F336F146EFE6F136EF46F296F3E6F206F2C6F0F6F026F220000
|
| 455 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 456 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 457 |
+
00006EFF6EEF6F066F316F386F326F236F156F2B6F2F6F886F2A6EEC6F016EF2
|
| 458 |
+
6ECC6EF771947199717D718A71847192723E729272967344735074647463746A
|
| 459 |
+
7470746D750475917627760D760B7609761376E176E37784777D777F776178C1
|
| 460 |
+
789F78A778B378A978A3798E798F798D7A2E7A317AAA7AA97AED7AEF7BA17B95
|
| 461 |
+
7B8B7B757B977B9D7B947B8F7BB87B877B847CB97CBD7CBE7DBB7DB07D9C7DBD
|
| 462 |
+
7DBE7DA07DCA7DB47DB27DB17DBA7DA27DBF7DB57DB87DAD7DD27DC77DAC0000
|
| 463 |
+
BB
|
| 464 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 465 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 466 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 467 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 468 |
+
7F707FE07FE17FDF805E805A808781508180818F8188818A817F818281E781FA
|
| 469 |
+
82078214821E824B84C984BF84C684C48499849E84B2849C84CB84B884C084D3
|
| 470 |
+
849084BC84D184CA873F871C873B872287258734871887558737872988F38902
|
| 471 |
+
88F488F988F888FD88E8891A88EF8AA68A8C8A9E8AA38A8D8AA18A938AA40000
|
| 472 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 473 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 474 |
+
00008AAA8AA58AA88A988A918A9A8AA78C6A8C8D8C8C8CD38CD18CD28D6B8D99
|
| 475 |
+
8D958DFC8F148F128F158F138FA390609058905C90639059905E9062905D905B
|
| 476 |
+
91199118911E917591789177917492789280928592989296927B9293929C92A8
|
| 477 |
+
927C929195A195A895A995A395A595A49699969C969B96CC96D29700977C9785
|
| 478 |
+
97F69817981898AF98B199039905990C990999C19AAF9AB09AE69B419B429CF4
|
| 479 |
+
9CF69CF39EBC9F3B9F4A5104510050FB50F550F9510251085109510551DC0000
|
| 480 |
+
BC
|
| 481 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 482 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 483 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 484 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 485 |
+
528752885289528D528A52F053B2562E563B56395632563F563456295653564E
|
| 486 |
+
565756745636562F56305880589F589E58B3589C58AE58A958A6596D5B095AFB
|
| 487 |
+
5B0B5AF55B0C5B085BEE5BEC5BE95BEB5C645C655D9D5D945E625E5F5E615EE2
|
| 488 |
+
5EDA5EDF5EDD5EE35EE05F485F715FB75FB561766167616E615D615561820000
|
| 489 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 490 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 491 |
+
0000617C6170616B617E61A7619061AB618E61AC619A61A4619461AE622E6469
|
| 492 |
+
646F6479649E64B26488649064B064A56493649564A9649264AE64AD64AB649A
|
| 493 |
+
64AC649964A264B365756577657866AE66AB66B466B16A236A1F69E86A016A1E
|
| 494 |
+
6A1969FD6A216A136A0A69F36A026A0569ED6A116B506B4E6BA46BC56BC66F3F
|
| 495 |
+
6F7C6F846F516F666F546F866F6D6F5B6F786F6E6F8E6F7A6F706F646F976F58
|
| 496 |
+
6ED56F6F6F606F5F719F71AC71B171A87256729B734E73577469748B74830000
|
| 497 |
+
BD
|
| 498 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 499 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 500 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 501 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 502 |
+
747E7480757F76207629761F7624762676217622769A76BA76E4778E7787778C
|
| 503 |
+
7791778B78CB78C578BA78CA78BE78D578BC78D07A3F7A3C7A407A3D7A377A3B
|
| 504 |
+
7AAF7AAE7BAD7BB17BC47BB47BC67BC77BC17BA07BCC7CCA7DE07DF47DEF7DFB
|
| 505 |
+
7DD87DEC7DDD7DE87DE37DDA7DDE7DE97D9E7DD97DF27DF97F757F777FAF0000
|
| 506 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 507 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 508 |
+
00007FE98026819B819C819D81A0819A81988517853D851A84EE852C852D8513
|
| 509 |
+
851185238521851484EC852584FF850687828774877687608766877887688759
|
| 510 |
+
8757874C8753885B885D89108907891289138915890A8ABC8AD28AC78AC48A95
|
| 511 |
+
8ACB8AF88AB28AC98AC28ABF8AB08AD68ACD8AB68AB98ADB8C4C8C4E8C6C8CE0
|
| 512 |
+
8CDE8CE68CE48CEC8CED8CE28CE38CDC8CEA8CE18D6D8D9F8DA38E2B8E108E1D
|
| 513 |
+
8E228E0F8E298E1F8E218E1E8EBA8F1D8F1B8F1F8F298F268F2A8F1C8F1E0000
|
| 514 |
+
BE
|
| 515 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 516 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 517 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 518 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 519 |
+
8F259069906E9068906D90779130912D9127913191879189918B918392C592BB
|
| 520 |
+
92B792EA92AC92E492C192B392BC92D292C792F092B295AD95B1970497069707
|
| 521 |
+
97099760978D978B978F9821982B981C98B3990A99139912991899DD99D099DF
|
| 522 |
+
99DB99D199D599D299D99AB79AEE9AEF9B279B459B449B779B6F9D069D090000
|
| 523 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 524 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 525 |
+
00009D039EA99EBE9ECE58A89F5251125118511451105115518051AA51DD5291
|
| 526 |
+
529352F35659566B5679566956645678566A566856655671566F566C56625676
|
| 527 |
+
58C158BE58C758C5596E5B1D5B345B785BF05C0E5F4A61B2619161A9618A61CD
|
| 528 |
+
61B661BE61CA61C8623064C564C164CB64BB64BC64DA64C464C764C264CD64BF
|
| 529 |
+
64D264D464BE657466C666C966B966C466C766B86A3D6A386A3A6A596A6B6A58
|
| 530 |
+
6A396A446A626A616A4B6A476A356A5F6A486B596B776C056FC26FB16FA10000
|
| 531 |
+
BF
|
| 532 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 533 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 534 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 535 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 536 |
+
6FC36FA46FC16FA76FB36FC06FB96FB66FA66FA06FB471BE71C971D071D271C8
|
| 537 |
+
71D571B971CE71D971DC71C371C47368749C74A37498749F749E74E2750C750D
|
| 538 |
+
76347638763A76E776E577A0779E779F77A578E878DA78EC78E779A67A4D7A4E
|
| 539 |
+
7A467A4C7A4B7ABA7BD97C117BC97BE47BDB7BE17BE97BE67CD57CD67E0A0000
|
| 540 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 541 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 542 |
+
00007E117E087E1B7E237E1E7E1D7E097E107F797FB27FF07FF17FEE802881B3
|
| 543 |
+
81A981A881FB820882588259854A855985488568856985438549856D856A855E
|
| 544 |
+
8783879F879E87A2878D8861892A89328925892B892189AA89A68AE68AFA8AEB
|
| 545 |
+
8AF18B008ADC8AE78AEE8AFE8B018B028AF78AED8AF38AF68AFC8C6B8C6D8C93
|
| 546 |
+
8CF48E448E318E348E428E398E358F3B8F2F8F388F338FA88FA6907590749078
|
| 547 |
+
9072907C907A913491929320933692F89333932F932292FC932B9304931A0000
|
| 548 |
+
C0
|
| 549 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 550 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 551 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 552 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 553 |
+
9310932693219315932E931995BB96A796A896AA96D5970E97119716970D9713
|
| 554 |
+
970F975B975C9766979898309838983B9837982D9839982499109928991E991B
|
| 555 |
+
9921991A99ED99E299F19AB89ABC9AFB9AED9B289B919D159D239D269D289D12
|
| 556 |
+
9D1B9ED89ED49F8D9F9C512A511F5121513252F5568E56805690568556870000
|
| 557 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 558 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 559 |
+
0000568F58D558D358D158CE5B305B2A5B245B7A5C375C685DBC5DBA5DBD5DB8
|
| 560 |
+
5E6B5F4C5FBD61C961C261C761E661CB6232623464CE64CA64D864E064F064E6
|
| 561 |
+
64EC64F164E264ED6582658366D966D66A806A946A846AA26A9C6ADB6AA36A7E
|
| 562 |
+
6A976A906AA06B5C6BAE6BDA6C086FD86FF16FDF6FE06FDB6FE46FEB6FEF6F80
|
| 563 |
+
6FEC6FE16FE96FD56FEE6FF071E771DF71EE71E671E571ED71EC71F471E07235
|
| 564 |
+
72467370737274A974B074A674A876467642764C76EA77B377AA77B077AC0000
|
| 565 |
+
C1
|
| 566 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 567 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 568 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 569 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 570 |
+
77A777AD77EF78F778FA78F478EF790179A779AA7A577ABF7C077C0D7BFE7BF7
|
| 571 |
+
7C0C7BE07CE07CDC7CDE7CE27CDF7CD97CDD7E2E7E3E7E467E377E327E437E2B
|
| 572 |
+
7E3D7E317E457E417E347E397E487E357E3F7E2F7F447FF37FFC807180728070
|
| 573 |
+
806F807381C681C381BA81C281C081BF81BD81C981BE81E88209827185AA0000
|
| 574 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 575 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 576 |
+
00008584857E859C8591859485AF859B858785A8858A866787C087D187B387D2
|
| 577 |
+
87C687AB87BB87BA87C887CB893B893689448938893D89AC8B0E8B178B198B1B
|
| 578 |
+
8B0A8B208B1D8B048B108C418C3F8C738CFA8CFD8CFC8CF88CFB8DA88E498E4B
|
| 579 |
+
8E488E4A8F448F3E8F428F458F3F907F907D9084908190829080913991A3919E
|
| 580 |
+
919C934D938293289375934A9365934B9318937E936C935B9370935A935495CA
|
| 581 |
+
95CB95CC95C895C696B196B896D6971C971E97A097D3984698B699359A010000
|
| 582 |
+
C2
|
| 583 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 584 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 585 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 586 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 587 |
+
99FF9BAE9BAB9BAA9BAD9D3B9D3F9E8B9ECF9EDE9EDC9EDD9EDB9F3E9F4B53E2
|
| 588 |
+
569556AE58D958D85B385F5D61E3623364F464F264FE650664FA64FB64F765B7
|
| 589 |
+
66DC67266AB36AAC6AC36ABB6AB86AC26AAE6AAF6B5F6B786BAF7009700B6FFE
|
| 590 |
+
70066FFA7011700F71FB71FC71FE71F87377737574A774BF7515765676580000
|
| 591 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 592 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 593 |
+
0000765277BD77BF77BB77BC790E79AE7A617A627A607AC47AC57C2B7C277C2A
|
| 594 |
+
7C1E7C237C217CE77E547E557E5E7E5A7E617E527E597F487FF97FFB80778076
|
| 595 |
+
81CD81CF820A85CF85A985CD85D085C985B085BA85B985A687EF87EC87F287E0
|
| 596 |
+
898689B289F48B288B398B2C8B2B8C508D058E598E638E668E648E5F8E558EC0
|
| 597 |
+
8F498F4D90879083908891AB91AC91D09394938A939693A293B393AE93AC93B0
|
| 598 |
+
9398939A939795D495D695D095D596E296DC96D996DB96DE972497A397A60000
|
| 599 |
+
C3
|
| 600 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 601 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 602 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 603 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 604 |
+
97AD97F9984D984F984C984E985398BA993E993F993D992E99A59A0E9AC19B03
|
| 605 |
+
9B069B4F9B4E9B4D9BCA9BC99BFD9BC89BC09D519D5D9D609EE09F159F2C5133
|
| 606 |
+
56A558DE58DF58E25BF59F905EEC61F261F761F661F56500650F66E066DD6AE5
|
| 607 |
+
6ADD6ADA6AD3701B701F7028701A701D701570187206720D725872A273780000
|
| 608 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 609 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 610 |
+
0000737A74BD74CA74E375877586765F766177C7791979B17A6B7A697C3E7C3F
|
| 611 |
+
7C387C3D7C377C407E6B7E6D7E797E697E6A7F857E737FB67FB97FB881D885E9
|
| 612 |
+
85DD85EA85D585E485E585F787FB8805880D87F987FE8960895F8956895E8B41
|
| 613 |
+
8B5C8B588B498B5A8B4E8B4F8B468B598D088D0A8E7C8E728E878E768E6C8E7A
|
| 614 |
+
8E748F548F4E8FAD908A908B91B191AE93E193D193DF93C393C893DC93DD93D6
|
| 615 |
+
93E293CD93D893E493D793E895DC96B496E3972A9727976197DC97FB985E0000
|
| 616 |
+
C4
|
| 617 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 618 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 619 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 620 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 621 |
+
9858985B98BC994599499A169A199B0D9BE89BE79BD69BDB9D899D619D729D6A
|
| 622 |
+
9D6C9E929E979E939EB452F856A856B756B656B456BC58E45B405B435B7D5BF6
|
| 623 |
+
5DC961F861FA65186514651966E667276AEC703E703070327210737B74CF7662
|
| 624 |
+
76657926792A792C792B7AC77AF67C4C7C437C4D7CEF7CF08FAE7E7D7E7C0000
|
| 625 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 626 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 627 |
+
00007E827F4C800081DA826685FB85F9861185FA8606860B8607860A88148815
|
| 628 |
+
896489BA89F88B708B6C8B668B6F8B5F8B6B8D0F8D0D8E898E818E858E8291B4
|
| 629 |
+
91CB9418940393FD95E1973098C49952995199A89A2B9A309A379A359C139C0D
|
| 630 |
+
9E799EB59EE89F2F9F5F9F639F615137513856C156C056C259145C6C5DCD61FC
|
| 631 |
+
61FE651D651C659566E96AFB6B046AFA6BB2704C721B72A774D674D4766977D3
|
| 632 |
+
7C507E8F7E8C7FBC8617862D861A882388228821881F896A896C89BD8B740000
|
| 633 |
+
C5
|
| 634 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 635 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 636 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 637 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 638 |
+
8B778B7D8D138E8A8E8D8E8B8F5F8FAF91BA942E94339435943A94389432942B
|
| 639 |
+
95E297389739973297FF9867986599579A459A439A409A3E9ACF9B549B519C2D
|
| 640 |
+
9C259DAF9DB49DC29DB89E9D9EEF9F199F5C9F669F67513C513B56C856CA56C9
|
| 641 |
+
5B7F5DD45DD25F4E61FF65246B0A6B6170517058738074E4758A766E766C0000
|
| 642 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 643 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 644 |
+
000079B37C607C5F807E807D81DF8972896F89FC8B808D168D178E918E938F61
|
| 645 |
+
9148944494519452973D973E97C397C1986B99559A559A4D9AD29B1A9C499C31
|
| 646 |
+
9C3E9C3B9DD39DD79F349F6C9F6A9F9456CC5DD662006523652B652A66EC6B10
|
| 647 |
+
74DA7ACA7C647C637C657E937E967E9481E28638863F88318B8A9090908F9463
|
| 648 |
+
946094649768986F995C9A5A9A5B9A579AD39AD49AD19C549C579C569DE59E9F
|
| 649 |
+
9EF456D158E9652C705E7671767277D77F507F888836883988628B938B920000
|
| 650 |
+
C6
|
| 651 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 652 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 653 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 654 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 655 |
+
8B9682778D1B91C0946A97429748974497C698709A5F9B229B589C5F9DF99DFA
|
| 656 |
+
9E7C9E7D9F079F779F725EF36B1670637C6C7C6E883B89C08EA191C194729470
|
| 657 |
+
9871995E9AD69B239ECC706477DA8B9A947797C99A629A657E9C8B9C8EAA91C5
|
| 658 |
+
947D947E947C9C779C789EF78C54947F9E1A72289A6A9B319E1B9E1E7C720000
|
| 659 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 660 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 661 |
+
000030FE309D309E3005304130423043304430453046304730483049304A304B
|
| 662 |
+
304C304D304E304F3050305130523053305430553056305730583059305A305B
|
| 663 |
+
305C305D305E305F3060306130623063306430653066306730683069306A306B
|
| 664 |
+
306C306D306E306F3070307130723073307430753076307730783079307A307B
|
| 665 |
+
307C307D307E307F3080308130823083308430853086308730883089308A308B
|
| 666 |
+
308C308D308E308F309030913092309330A130A230A330A430A530A630A70000
|
| 667 |
+
C7
|
| 668 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 669 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 670 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 671 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 672 |
+
30A830A930AA30AB30AC30AD30AE30AF30B030B130B230B330B430B530B630B7
|
| 673 |
+
30B830B930BA30BB30BC30BD30BE30BF30C030C130C230C330C430C530C630C7
|
| 674 |
+
30C830C930CA30CB30CC30CD30CE30CF30D030D130D230D330D430D530D630D7
|
| 675 |
+
30D830D930DA30DB30DC30DD30DE30DF30E030E130E230E330E430E530E60000
|
| 676 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 677 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 678 |
+
000030E730E830E930EA30EB30EC30ED30EE30EF30F030F130F230F330F430F5
|
| 679 |
+
30F60414041504010416041704180419041A041B041C04230424042504260427
|
| 680 |
+
04280429042A042B042C042D042E042F04300431043204330434043504510436
|
| 681 |
+
043704380439043A043B043C043D043E043F0440044104420443044404450446
|
| 682 |
+
044704480449044A044B044C044D044E044F2460246124622463246424652466
|
| 683 |
+
246724682469247424752476247724782479247A247B247C247D000000000000
|
| 684 |
+
C9
|
| 685 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 686 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 687 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 688 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 689 |
+
4E424E5C51F5531A53824E074E0C4E474E8D56D7FA0C5C6E5F734E0F51874E0E
|
| 690 |
+
4E2E4E934EC24EC94EC8519852FC536C53B957205903592C5C105DFF65E16BB3
|
| 691 |
+
6BCC6C14723F4E314E3C4EE84EDC4EE94EE14EDD4EDA520C531C534C57225723
|
| 692 |
+
5917592F5B815B845C125C3B5C745C735E045E805E825FC9620962506C150000
|
| 693 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 694 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 695 |
+
00006C366C436C3F6C3B72AE72B0738A79B8808A961E4F0E4F184F2C4EF54F14
|
| 696 |
+
4EF14F004EF74F084F1D4F024F054F224F134F044EF44F1251B1521352095210
|
| 697 |
+
52A65322531F534D538A540756E156DF572E572A5734593C5980597C5985597B
|
| 698 |
+
597E5977597F5B565C155C255C7C5C7A5C7B5C7E5DDF5E755E845F025F1A5F74
|
| 699 |
+
5FD55FD45FCF625C625E626462616266626262596260625A626565EF65EE673E
|
| 700 |
+
67396738673B673A673F673C67336C186C466C526C5C6C4F6C4A6C546C4B0000
|
| 701 |
+
CA
|
| 702 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 703 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 704 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 705 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 706 |
+
6C4C7071725E72B472B5738E752A767F7A757F518278827C8280827D827F864D
|
| 707 |
+
897E909990979098909B909496229624962096234F564F3B4F624F494F534F64
|
| 708 |
+
4F3E4F674F524F5F4F414F584F2D4F334F3F4F61518F51B9521C521E522152AD
|
| 709 |
+
52AE530953635372538E538F54305437542A545454455419541C542554180000
|
| 710 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 711 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 712 |
+
0000543D544F544154285424544756EE56E756E557415745574C5749574B5752
|
| 713 |
+
5906594059A6599859A05997598E59A25990598F59A759A15B8E5B925C285C2A
|
| 714 |
+
5C8D5C8F5C885C8B5C895C925C8A5C865C935C955DE05E0A5E0E5E8B5E895E8C
|
| 715 |
+
5E885E8D5F055F1D5F785F765FD25FD15FD05FED5FE85FEE5FF35FE15FE45FE3
|
| 716 |
+
5FFA5FEF5FF75FFB60005FF4623A6283628C628E628F629462876271627B627A
|
| 717 |
+
6270628162886277627D62726274653765F065F465F365F265F5674567470000
|
| 718 |
+
CB
|
| 719 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 720 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 721 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 722 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 723 |
+
67596755674C6748675D674D675A674B6BD06C196C1A6C786C676C6B6C846C8B
|
| 724 |
+
6C8F6C716C6F6C696C9A6C6D6C876C956C9C6C666C736C656C7B6C8E7074707A
|
| 725 |
+
726372BF72BD72C372C672C172BA72C573957397739373947392753A75397594
|
| 726 |
+
75957681793D80348095809980908092809C8290828F8285828E829182930000
|
| 727 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 728 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 729 |
+
0000828A828382848C788FC98FBF909F90A190A5909E90A790A096309628962F
|
| 730 |
+
962D4E334F984F7C4F854F7D4F804F874F764F744F894F844F774F4C4F974F6A
|
| 731 |
+
4F9A4F794F814F784F904F9C4F944F9E4F924F824F954F6B4F6E519E51BC51BE
|
| 732 |
+
5235523252335246523152BC530A530B533C539253945487547F548154915482
|
| 733 |
+
5488546B547A547E5465546C54745466548D546F546154605498546354675464
|
| 734 |
+
56F756F9576F5772576D576B57715770577657805775577B5773577457620000
|
| 735 |
+
CC
|
| 736 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 737 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 738 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 739 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 740 |
+
5768577D590C594559B559BA59CF59CE59B259CC59C159B659BC59C359D659B1
|
| 741 |
+
59BD59C059C859B459C75B625B655B935B955C445C475CAE5CA45CA05CB55CAF
|
| 742 |
+
5CA85CAC5C9F5CA35CAD5CA25CAA5CA75C9D5CA55CB65CB05CA65E175E145E19
|
| 743 |
+
5F285F225F235F245F545F825F7E5F7D5FDE5FE5602D602660196032600B0000
|
| 744 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 745 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 746 |
+
00006034600A60176033601A601E602C6022600D6010602E60136011600C6009
|
| 747 |
+
601C6214623D62AD62B462D162BE62AA62B662CA62AE62B362AF62BB62A962B0
|
| 748 |
+
62B8653D65A865BB660965FC66046612660865FB6603660B660D660565FD6611
|
| 749 |
+
661066F6670A6785676C678E67926776677B6798678667846774678D678C677A
|
| 750 |
+
679F679167996783677D67816778677967946B256B806B7E6BDE6C1D6C936CEC
|
| 751 |
+
6CEB6CEE6CD96CB66CD46CAD6CE76CB76CD06CC26CBA6CC36CC66CED6CF20000
|
| 752 |
+
CD
|
| 753 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 754 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 755 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 756 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 757 |
+
6CD26CDD6CB46C8A6C9D6C806CDE6CC06D306CCD6CC76CB06CF96CCF6CE96CD1
|
| 758 |
+
709470987085709370867084709170967082709A7083726A72D672CB72D872C9
|
| 759 |
+
72DC72D272D472DA72CC72D173A473A173AD73A673A273A073AC739D74DD74E8
|
| 760 |
+
753F7540753E758C759876AF76F376F176F076F577F877FC77F977FB77FA0000
|
| 761 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 762 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 763 |
+
000077F77942793F79C57A787A7B7AFB7C757CFD8035808F80AE80A380B880B5
|
| 764 |
+
80AD822082A082C082AB829A8298829B82B582A782AE82BC829E82BA82B482A8
|
| 765 |
+
82A182A982C282A482C382B682A28670866F866D866E8C568FD28FCB8FD38FCD
|
| 766 |
+
8FD68FD58FD790B290B490AF90B390B09639963D963C963A96434FCD4FC54FD3
|
| 767 |
+
4FB24FC94FCB4FC14FD44FDC4FD94FBB4FB34FDB4FC74FD64FBA4FC04FB94FEC
|
| 768 |
+
5244524952C052C2533D537C539753965399539854BA54A154AD54A554CF0000
|
| 769 |
+
CE
|
| 770 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 771 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 772 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 773 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 774 |
+
54C3830D54B754AE54D654B654C554C654A0547054BC54A254BE547254DE54B0
|
| 775 |
+
57B5579E579F57A4578C5797579D579B57945798578F579957A5579A579558F4
|
| 776 |
+
590D595359E159DE59EE5A0059F159DD59FA59FD59FC59F659E459F259F759DB
|
| 777 |
+
59E959F359F559E059FE59F459ED5BA85C4C5CD05CD85CCC5CD75CCB5CDB0000
|
| 778 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 779 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 780 |
+
00005CDE5CDA5CC95CC75CCA5CD65CD35CD45CCF5CC85CC65CCE5CDF5CF85DF9
|
| 781 |
+
5E215E225E235E205E245EB05EA45EA25E9B5EA35EA55F075F2E5F565F866037
|
| 782 |
+
603960546072605E6045605360476049605B604C60406042605F602460446058
|
| 783 |
+
6066606E6242624362CF630D630B62F5630E630362EB62F9630F630C62F862F6
|
| 784 |
+
63006313631462FA631562FB62F06541654365AA65BF6636662166326635661C
|
| 785 |
+
662666226633662B663A661D66346639662E670F671067C167F267C867BA0000
|
| 786 |
+
CF
|
| 787 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 788 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 789 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 790 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 791 |
+
67DC67BB67F867D867C067B767C567EB67E467DF67B567CD67B367F767F667EE
|
| 792 |
+
67E367C267B967CE67E767F067B267FC67C667ED67CC67AE67E667DB67FA67C9
|
| 793 |
+
67CA67C367EA67CB6B286B826B846BB66BD66BD86BE06C206C216D286D346D2D
|
| 794 |
+
6D1F6D3C6D3F6D126D0A6CDA6D336D046D196D3A6D1A6D116D006D1D6D420000
|
| 795 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 796 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 797 |
+
00006D016D186D376D036D0F6D406D076D206D2C6D086D226D096D1070B7709F
|
| 798 |
+
70BE70B170B070A170B470B570A972417249724A726C72707273726E72CA72E4
|
| 799 |
+
72E872EB72DF72EA72E672E3738573CC73C273C873C573B973B673B573B473EB
|
| 800 |
+
73BF73C773BE73C373C673B873CB74EC74EE752E7547754875A775AA767976C4
|
| 801 |
+
7708770377047705770A76F776FB76FA77E777E878067811781278057810780F
|
| 802 |
+
780E780978037813794A794C794B7945794479D579CD79CF79D679CE7A800000
|
| 803 |
+
D0
|
| 804 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 805 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 806 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 807 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 808 |
+
7A7E7AD17B007B017C7A7C787C797C7F7C807C817D037D087D017F587F917F8D
|
| 809 |
+
7FBE8007800E800F8014803780D880C780E080D180C880C280D080C580E380D9
|
| 810 |
+
80DC80CA80D580C980CF80D780E680CD81FF8221829482D982FE82F9830782E8
|
| 811 |
+
830082D5833A82EB82D682F482EC82E182F282F5830C82FB82F682F082EA0000
|
| 812 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 813 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 814 |
+
000082E482E082FA82F382ED86778674867C86738841884E8867886A886989D3
|
| 815 |
+
8A048A078D728FE38FE18FEE8FE090F190BD90BF90D590C590BE90C790CB90C8
|
| 816 |
+
91D491D39654964F96519653964A964E501E50055007501350225030501B4FF5
|
| 817 |
+
4FF450335037502C4FF64FF75017501C502050275035502F5031500E515A5194
|
| 818 |
+
519351CA51C451C551C851CE5261525A5252525E525F5255526252CD530E539E
|
| 819 |
+
552654E25517551254E754F354E4551A54FF5504550854EB5511550554F10000
|
| 820 |
+
D1
|
| 821 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 822 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 823 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 824 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 825 |
+
550A54FB54F754F854E0550E5503550B5701570257CC583257D557D257BA57C6
|
| 826 |
+
57BD57BC57B857B657BF57C757D057B957C1590E594A5A195A165A2D5A2E5A15
|
| 827 |
+
5A0F5A175A0A5A1E5A335B6C5BA75BAD5BAC5C035C565C545CEC5CFF5CEE5CF1
|
| 828 |
+
5CF75D005CF95E295E285EA85EAE5EAA5EAC5F335F305F67605D605A60670000
|
| 829 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 830 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 831 |
+
0000604160A26088608060926081609D60836095609B60976087609C608E6219
|
| 832 |
+
624662F263106356632C634463456336634363E46339634B634A633C63296341
|
| 833 |
+
6334635863546359632D63476333635A63516338635763406348654A654665C6
|
| 834 |
+
65C365C465C2664A665F6647665167126713681F681A684968326833683B684B
|
| 835 |
+
684F68166831681C6835682B682D682F684E68446834681D6812681468266828
|
| 836 |
+
682E684D683A682568206B2C6B2F6B2D6B316B346B6D80826B886BE66BE40000
|
| 837 |
+
D2
|
| 838 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 839 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 840 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 841 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 842 |
+
6BE86BE36BE26BE76C256D7A6D636D646D766D0D6D616D926D586D626D6D6D6F
|
| 843 |
+
6D916D8D6DEF6D7F6D866D5E6D676D606D976D706D7C6D5F6D826D986D2F6D68
|
| 844 |
+
6D8B6D7E6D806D846D166D836D7B6D7D6D756D9070DC70D370D170DD70CB7F39
|
| 845 |
+
70E270D770D270DE70E070D470CD70C570C670C770DA70CE70E1724272780000
|
| 846 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 847 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 848 |
+
000072777276730072FA72F472FE72F672F372FB730173D373D973E573D673BC
|
| 849 |
+
73E773E373E973DC73D273DB73D473DD73DA73D773D873E874DE74DF74F474F5
|
| 850 |
+
7521755B755F75B075C175BB75C475C075BF75B675BA768A76C9771D771B7710
|
| 851 |
+
771377127723771177157719771A772277277823782C78227835782F7828782E
|
| 852 |
+
782B782178297833782A78317954795B794F795C79537952795179EB79EC79E0
|
| 853 |
+
79EE79ED79EA79DC79DE79DD7A867A897A857A8B7A8C7A8A7A877AD87B100000
|
| 854 |
+
D3
|
| 855 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 856 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 857 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 858 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 859 |
+
7B047B137B057B0F7B087B0A7B0E7B097B127C847C917C8A7C8C7C887C8D7C85
|
| 860 |
+
7D1E7D1D7D117D0E7D187D167D137D1F7D127D0F7D0C7F5C7F617F5E7F607F5D
|
| 861 |
+
7F5B7F967F927FC37FC27FC08016803E803980FA80F280F980F5810180FB8100
|
| 862 |
+
8201822F82258333832D83448319835183258356833F83418326831C83220000
|
| 863 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 864 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 865 |
+
00008342834E831B832A8308833C834D8316832483208337832F832983478345
|
| 866 |
+
834C8353831E832C834B832783488653865286A286A88696868D8691869E8687
|
| 867 |
+
86978686868B869A868586A5869986A186A786958698868E869D869086948843
|
| 868 |
+
8844886D88758876887288808871887F886F8883887E8874887C8A128C478C57
|
| 869 |
+
8C7B8CA48CA38D768D788DB58DB78DB68ED18ED38FFE8FF590028FFF8FFB9004
|
| 870 |
+
8FFC8FF690D690E090D990DA90E390DF90E590D890DB90D790DC90E491500000
|
| 871 |
+
D4
|
| 872 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 873 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 874 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 875 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 876 |
+
914E914F91D591E291DA965C965F96BC98E39ADF9B2F4E7F5070506A5061505E
|
| 877 |
+
50605053504B505D50725048504D5041505B504A506250155045505F5069506B
|
| 878 |
+
5063506450465040506E50735057505151D0526B526D526C526E52D652D3532D
|
| 879 |
+
539C55755576553C554D55505534552A55515562553655355530555255450000
|
| 880 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 881 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 882 |
+
0000550C55325565554E55395548552D553B5540554B570A570757FB581457E2
|
| 883 |
+
57F657DC57F4580057ED57FD580857F8580B57F357CF580757EE57E357F257E5
|
| 884 |
+
57EC57E1580E57FC581057E75801580C57F157E957F0580D5804595C5A605A58
|
| 885 |
+
5A555A675A5E5A385A355A6D5A505A5F5A655A6C5A535A645A575A435A5D5A52
|
| 886 |
+
5A445A5B5A485A8E5A3E5A4D5A395A4C5A705A695A475A515A565A425A5C5B72
|
| 887 |
+
5B6E5BC15BC05C595D1E5D0B5D1D5D1A5D205D0C5D285D0D5D265D255D0F0000
|
| 888 |
+
D5
|
| 889 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 890 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 891 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 892 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 893 |
+
5D305D125D235D1F5D2E5E3E5E345EB15EB45EB95EB25EB35F365F385F9B5F96
|
| 894 |
+
5F9F608A6090608660BE60B060BA60D360D460CF60E460D960DD60C860B160DB
|
| 895 |
+
60B760CA60BF60C360CD60C063326365638A6382637D63BD639E63AD639D6397
|
| 896 |
+
63AB638E636F63876390636E63AF6375639C636D63AE637C63A4633B639F0000
|
| 897 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 898 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 899 |
+
00006378638563816391638D6370655365CD66656661665B6659665C66626718
|
| 900 |
+
687968876890689C686D686E68AE68AB6956686F68A368AC68A96875687468B2
|
| 901 |
+
688F68776892687C686B687268AA68806871687E689B6896688B68A0688968A4
|
| 902 |
+
6878687B6891688C688A687D6B366B336B376B386B916B8F6B8D6B8E6B8C6C2A
|
| 903 |
+
6DC06DAB6DB46DB36E746DAC6DE96DE26DB76DF66DD46E006DC86DE06DDF6DD6
|
| 904 |
+
6DBE6DE56DDC6DDD6DDB6DF46DCA6DBD6DED6DF06DBA6DD56DC26DCF6DC90000
|
| 905 |
+
D6
|
| 906 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 907 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 908 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 909 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 910 |
+
6DD06DF26DD36DFD6DD76DCD6DE36DBB70FA710D70F7711770F4710C70F07104
|
| 911 |
+
70F3711070FC70FF71067113710070F870F6710B7102710E727E727B727C727F
|
| 912 |
+
731D7317730773117318730A730872FF730F731E738873F673F873F574047401
|
| 913 |
+
73FD7407740073FA73FC73FF740C740B73F474087564756375CE75D275CF0000
|
| 914 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 915 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 916 |
+
000075CB75CC75D175D0768F768976D37739772F772D7731773277347733773D
|
| 917 |
+
7725773B7735784878527849784D784A784C782678457850796479677969796A
|
| 918 |
+
7963796B796179BB79FA79F879F679F77A8F7A947A907B357B477B347B257B30
|
| 919 |
+
7B227B247B337B187B2A7B1D7B317B2B7B2D7B2F7B327B387B1A7B237C947C98
|
| 920 |
+
7C967CA37D357D3D7D387D367D3A7D457D2C7D297D417D477D3E7D3F7D4A7D3B
|
| 921 |
+
7D287F637F957F9C7F9D7F9B7FCA7FCB7FCD7FD07FD17FC77FCF7FC9801F0000
|
| 922 |
+
D7
|
| 923 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 924 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 925 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 926 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 927 |
+
801E801B804780438048811881258119811B812D811F812C811E812181158127
|
| 928 |
+
811D8122821182388233823A823482328274839083A383A8838D837A837383A4
|
| 929 |
+
8374838F8381839583998375839483A9837D8383838C839D839B83AA838B837E
|
| 930 |
+
83A583AF8388839783B0837F83A6838783AE8376839A8659865686BF86B70000
|
| 931 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 932 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 933 |
+
000086C286C186C586BA86B086C886B986B386B886CC86B486BB86BC86C386BD
|
| 934 |
+
86BE88528889889588A888A288AA889A889188A1889F889888A78899889B8897
|
| 935 |
+
88A488AC888C8893888E898289D689D989D58A308A278A2C8A1E8C398C3B8C5C
|
| 936 |
+
8C5D8C7D8CA58D7D8D7B8D798DBC8DC28DB98DBF8DC18ED88EDE8EDD8EDC8ED7
|
| 937 |
+
8EE08EE19024900B9011901C900C902190EF90EA90F090F490F290F390D490EB
|
| 938 |
+
90EC90E991569158915A9153915591EC91F491F191F391F891E491F991EA0000
|
| 939 |
+
D8
|
| 940 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 941 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 942 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 943 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 944 |
+
91EB91F791E891EE957A95869588967C966D966B9671966F96BF976A980498E5
|
| 945 |
+
9997509B50955094509E508B50A35083508C508E509D5068509C509250825087
|
| 946 |
+
515F51D45312531153A453A7559155A855A555AD5577564555A255935588558F
|
| 947 |
+
55B5558155A3559255A4557D558C55A6557F559555A1558E570C582958370000
|
| 948 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 949 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 950 |
+
00005819581E58275823582857F558485825581C581B5833583F5836582E5839
|
| 951 |
+
5838582D582C583B59615AAF5A945A9F5A7A5AA25A9E5A785AA65A7C5AA55AAC
|
| 952 |
+
5A955AAE5A375A845A8A5A975A835A8B5AA95A7B5A7D5A8C5A9C5A8F5A935A9D
|
| 953 |
+
5BEA5BCD5BCB5BD45BD15BCA5BCE5C0C5C305D375D435D6B5D415D4B5D3F5D35
|
| 954 |
+
5D515D4E5D555D335D3A5D525D3D5D315D595D425D395D495D385D3C5D325D36
|
| 955 |
+
5D405D455E445E415F585FA65FA55FAB60C960B960CC60E260CE60C461140000
|
| 956 |
+
D9
|
| 957 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 958 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 959 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 960 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 961 |
+
60F2610A6116610560F5611360F860FC60FE60C161036118611D611060FF6104
|
| 962 |
+
610B624A639463B163B063CE63E563E863EF63C3649D63F363CA63E063F663D5
|
| 963 |
+
63F263F5646163DF63BE63DD63DC63C463D863D363C263C763CC63CB63C863F0
|
| 964 |
+
63D763D965326567656A6564655C65686565658C659D659E65AE65D065D20000
|
| 965 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 966 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 967 |
+
0000667C666C667B668066716679666A66726701690C68D3690468DC692A68EC
|
| 968 |
+
68EA68F1690F68D668F768EB68E468F66913691068F368E1690768CC69086970
|
| 969 |
+
68B4691168EF68C6691468F868D068FD68FC68E8690B690A691768CE68C868DD
|
| 970 |
+
68DE68E668F468D1690668D468E96915692568C76B396B3B6B3F6B3C6B946B97
|
| 971 |
+
6B996B956BBD6BF06BF26BF36C306DFC6E466E476E1F6E496E886E3C6E3D6E45
|
| 972 |
+
6E626E2B6E3F6E416E5D6E736E1C6E336E4B6E406E516E3B6E036E2E6E5E0000
|
| 973 |
+
DA
|
| 974 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 975 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 976 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 977 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 978 |
+
6E686E5C6E616E316E286E606E716E6B6E396E226E306E536E656E276E786E64
|
| 979 |
+
6E776E556E796E526E666E356E366E5A7120711E712F70FB712E713171237125
|
| 980 |
+
71227132711F7128713A711B724B725A7288728972867285728B7312730B7330
|
| 981 |
+
73227331733373277332732D732673237335730C742E742C7430742B74160000
|
| 982 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 983 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 984 |
+
0000741A7421742D743174247423741D74297420743274FB752F756F756C75E7
|
| 985 |
+
75DA75E175E675DD75DF75E475D77695769276DA774677477744774D7745774A
|
| 986 |
+
774E774B774C77DE77EC786078647865785C786D7871786A786E787078697868
|
| 987 |
+
785E786279747973797279707A027A0A7A037A0C7A047A997AE67AE47B4A7B3B
|
| 988 |
+
7B447B487B4C7B4E7B407B587B457CA27C9E7CA87CA17D587D6F7D637D537D56
|
| 989 |
+
7D677D6A7D4F7D6D7D5C7D6B7D527D547D697D517D5F7D4E7F3E7F3F7F650000
|
| 990 |
+
DB
|
| 991 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 992 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 993 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 994 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 995 |
+
7F667FA27FA07FA17FD78051804F805080FE80D48143814A8152814F8147813D
|
| 996 |
+
814D813A81E681EE81F781F881F98204823C823D823F8275833B83CF83F98423
|
| 997 |
+
83C083E8841283E783E483FC83F6841083C683C883EB83E383BF840183DD83E5
|
| 998 |
+
83D883FF83E183CB83CE83D683F583C98409840F83DE8411840683C283F30000
|
| 999 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1000 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1001 |
+
000083D583FA83C783D183EA841383C383EC83EE83C483FB83D783E2841B83DB
|
| 1002 |
+
83FE86D886E286E686D386E386DA86EA86DD86EB86DC86EC86E986D786E886D1
|
| 1003 |
+
88488856885588BA88D788B988B888C088BE88B688BC88B788BD88B2890188C9
|
| 1004 |
+
89958998899789DD89DA89DB8A4E8A4D8A398A598A408A578A588A448A458A52
|
| 1005 |
+
8A488A518A4A8A4C8A4F8C5F8C818C808CBA8CBE8CB08CB98CB58D848D808D89
|
| 1006 |
+
8DD88DD38DCD8DC78DD68DDC8DCF8DD58DD98DC88DD78DC58EEF8EF78EFA0000
|
| 1007 |
+
DC
|
| 1008 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1009 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1010 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1011 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1012 |
+
8EF98EE68EEE8EE58EF58EE78EE88EF68EEB8EF18EEC8EF48EE9902D9034902F
|
| 1013 |
+
9106912C910490FF90FC910890F990FB9101910091079105910391619164915F
|
| 1014 |
+
916291609201920A92259203921A9226920F920C9200921291FF91FD92069204
|
| 1015 |
+
92279202921C92249219921792059216957B958D958C95909687967E96880000
|
| 1016 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1017 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1018 |
+
000096899683968096C296C896C396F196F0976C9770976E980798A998EB9CE6
|
| 1019 |
+
9EF94E834E844EB650BD50BF50C650AE50C450CA50B450C850C250B050C150BA
|
| 1020 |
+
50B150CB50C950B650B851D7527A5278527B527C55C355DB55CC55D055CB55CA
|
| 1021 |
+
55DD55C055D455C455E955BF55D2558D55CF55D555E255D655C855F255CD55D9
|
| 1022 |
+
55C25714585358685864584F584D5849586F5855584E585D58595865585B583D
|
| 1023 |
+
5863587158FC5AC75AC45ACB5ABA5AB85AB15AB55AB05ABF5AC85ABB5AC60000
|
| 1024 |
+
DD
|
| 1025 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1026 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1027 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1028 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1029 |
+
5AB75AC05ACA5AB45AB65ACD5AB95A905BD65BD85BD95C1F5C335D715D635D4A
|
| 1030 |
+
5D655D725D6C5D5E5D685D675D625DF05E4F5E4E5E4A5E4D5E4B5EC55ECC5EC6
|
| 1031 |
+
5ECB5EC75F405FAF5FAD60F76149614A612B614561366132612E6146612F614F
|
| 1032 |
+
612961406220916862236225622463C563F163EB641064126409642064240000
|
| 1033 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1034 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1035 |
+
000064336443641F641564186439643764226423640C64266430642864416435
|
| 1036 |
+
642F640A641A644064256427640B63E7641B642E6421640E656F659265D36686
|
| 1037 |
+
668C66956690668B668A66996694667867206966695F6938694E69626971693F
|
| 1038 |
+
6945696A6939694269576959697A694869496935696C6933693D696568F06978
|
| 1039 |
+
693469696940696F69446976695869416974694C693B694B6937695C694F6951
|
| 1040 |
+
69326952692F697B693C6B466B456B436B426B486B416B9BFA0D6BFB6BFC0000
|
| 1041 |
+
DE
|
| 1042 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1043 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1044 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1045 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1046 |
+
6BF96BF76BF86E9B6ED66EC86E8F6EC06E9F6E936E946EA06EB16EB96EC66ED2
|
| 1047 |
+
6EBD6EC16E9E6EC96EB76EB06ECD6EA66ECF6EB26EBE6EC36EDC6ED86E996E92
|
| 1048 |
+
6E8E6E8D6EA46EA16EBF6EB36ED06ECA6E976EAE6EA371477154715271637160
|
| 1049 |
+
7141715D716271727178716A7161714271587143714B7170715F715071530000
|
| 1050 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1051 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1052 |
+
00007144714D715A724F728D728C72917290728E733C7342733B733A7340734A
|
| 1053 |
+
73497444744A744B7452745174577440744F7450744E74427446744D745474E1
|
| 1054 |
+
74FF74FE74FD751D75797577698375EF760F760375F775FE75FC75F975F87610
|
| 1055 |
+
75FB75F675ED75F575FD769976B576DD7755775F776077527756775A77697767
|
| 1056 |
+
77547759776D77E07887789A7894788F788478957885788678A1788378797899
|
| 1057 |
+
78807896787B797C7982797D79797A117A187A197A127A177A157A227A130000
|
| 1058 |
+
DF
|
| 1059 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1060 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1061 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1062 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1063 |
+
7A1B7A107AA37AA27A9E7AEB7B667B647B6D7B747B697B727B657B737B717B70
|
| 1064 |
+
7B617B787B767B637CB27CB47CAF7D887D867D807D8D7D7F7D857D7A7D8E7D7B
|
| 1065 |
+
7D837D7C7D8C7D947D847D7D7D927F6D7F6B7F677F687F6C7FA67FA57FA77FDB
|
| 1066 |
+
7FDC8021816481608177815C8169815B816281726721815E81768167816F0000
|
| 1067 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1068 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1069 |
+
000081448161821D8249824482408242824584F1843F845684768479848F848D
|
| 1070 |
+
846584518440848684678430844D847D845A845984748473845D8507845E8437
|
| 1071 |
+
843A8434847A8443847884328445842983D9844B842F8442842D845F84708439
|
| 1072 |
+
844E844C8452846F84C5848E843B8447843684338468847E8444842B84608454
|
| 1073 |
+
846E8450870B870486F7870C86FA86D686F5874D86F8870E8709870186F6870D
|
| 1074 |
+
870588D688CB88CD88CE88DE88DB88DA88CC88D08985899B89DF89E589E40000
|
| 1075 |
+
E0
|
| 1076 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1077 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1078 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1079 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1080 |
+
89E189E089E289DC89E68A768A868A7F8A618A3F8A778A828A848A758A838A81
|
| 1081 |
+
8A748A7A8C3C8C4B8C4A8C658C648C668C868C848C858CCC8D688D698D918D8C
|
| 1082 |
+
8D8E8D8F8D8D8D938D948D908D928DF08DE08DEC8DF18DEE8DD08DE98DE38DE2
|
| 1083 |
+
8DE78DF28DEB8DF48F068EFF8F018F008F058F078F088F028F0B9052903F0000
|
| 1084 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1085 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1086 |
+
000090449049903D9110910D910F911191169114910B910E916E916F92489252
|
| 1087 |
+
9230923A926692339265925E9283922E924A9246926D926C924F92609267926F
|
| 1088 |
+
92369261927092319254926392509272924E9253924C92569232959F959C959E
|
| 1089 |
+
959B969296939691969796CE96FA96FD96F896F59773977797789772980F980D
|
| 1090 |
+
980E98AC98F698F999AF99B299B099B59AAD9AAB9B5B9CEA9CED9CE79E809EFD
|
| 1091 |
+
50E650D450D750E850F350DB50EA50DD50E450D350EC50F050EF50E350E00000
|
| 1092 |
+
E1
|
| 1093 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1094 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1095 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1096 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1097 |
+
51D85280528152E952EB533053AC56275615560C561255FC560F561C56015613
|
| 1098 |
+
560255FA561D560455FF55F95889587C5890589858865881587F5874588B587A
|
| 1099 |
+
58875891588E587658825888587B5894588F58FE596B5ADC5AEE5AE55AD55AEA
|
| 1100 |
+
5ADA5AED5AEB5AF35AE25AE05ADB5AEC5ADE5ADD5AD95AE85ADF5B775BE00000
|
| 1101 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1102 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1103 |
+
00005BE35C635D825D805D7D5D865D7A5D815D775D8A5D895D885D7E5D7C5D8D
|
| 1104 |
+
5D795D7F5E585E595E535ED85ED15ED75ECE5EDC5ED55ED95ED25ED45F445F43
|
| 1105 |
+
5F6F5FB6612C61286141615E61716173615261536172616C618061746154617A
|
| 1106 |
+
615B6165613B616A6161615662296227622B642B644D645B645D647464766472
|
| 1107 |
+
6473647D6475646664A6644E6482645E645C644B645364606450647F643F646C
|
| 1108 |
+
646B645964656477657365A066A166A0669F67056704672269B169B669C90000
|
| 1109 |
+
E2
|
| 1110 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1111 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1112 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1113 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1114 |
+
69A069CE699669B069AC69BC69916999698E69A7698D69A969BE69AF69BF69C4
|
| 1115 |
+
69BD69A469D469B969CA699A69CF69B3699369AA69A1699E69D96997699069C2
|
| 1116 |
+
69B569A569C66B4A6B4D6B4B6B9E6B9F6BA06BC36BC46BFE6ECE6EF56EF16F03
|
| 1117 |
+
6F256EF86F376EFB6F2E6F096F4E6F196F1A6F276F186F3B6F126EED6F0A0000
|
| 1118 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1119 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1120 |
+
00006F366F736EF96EEE6F2D6F406F306F3C6F356EEB6F076F0E6F436F056EFD
|
| 1121 |
+
6EF66F396F1C6EFC6F3A6F1F6F0D6F1E6F086F21718771907189718071857182
|
| 1122 |
+
718F717B718671817197724472537297729572937343734D7351734C74627473
|
| 1123 |
+
7471747574727467746E750075027503757D759076167608760C76157611760A
|
| 1124 |
+
761476B87781777C77857782776E7780776F777E778378B278AA78B478AD78A8
|
| 1125 |
+
787E78AB789E78A578A078AC78A278A47998798A798B79967995799479930000
|
| 1126 |
+
E3
|
| 1127 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1128 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1129 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1130 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1131 |
+
79977988799279907A2B7A4A7A307A2F7A287A267AA87AAB7AAC7AEE7B887B9C
|
| 1132 |
+
7B8A7B917B907B967B8D7B8C7B9B7B8E7B857B9852847B997BA47B827CBB7CBF
|
| 1133 |
+
7CBC7CBA7DA77DB77DC27DA37DAA7DC17DC07DC57D9D7DCE7DC47DC67DCB7DCC
|
| 1134 |
+
7DAF7DB97D967DBC7D9F7DA67DAE7DA97DA17DC97F737FE27FE37FE57FDE0000
|
| 1135 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1136 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1137 |
+
00008024805D805C8189818681838187818D818C818B8215849784A484A1849F
|
| 1138 |
+
84BA84CE84C284AC84AE84AB84B984B484C184CD84AA849A84B184D0849D84A7
|
| 1139 |
+
84BB84A2849484C784CC849B84A984AF84A884D6849884B684CF84A084D784D4
|
| 1140 |
+
84D284DB84B084918661873387238728876B8740872E871E87218719871B8743
|
| 1141 |
+
872C8741873E874687208732872A872D873C8712873A87318735874287268727
|
| 1142 |
+
87388724871A8730871188F788E788F188F288FA88FE88EE88FC88F688FB0000
|
| 1143 |
+
E4
|
| 1144 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1145 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1146 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1147 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1148 |
+
88F088EC88EB899D89A1899F899E89E989EB89E88AAB8A998A8B8A928A8F8A96
|
| 1149 |
+
8C3D8C688C698CD58CCF8CD78D968E098E028DFF8E0D8DFD8E0A8E038E078E06
|
| 1150 |
+
8E058DFE8E008E048F108F118F0E8F0D9123911C91209122911F911D911A9124
|
| 1151 |
+
9121911B917A91729179917392A592A49276929B927A92A0929492AA928D0000
|
| 1152 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1153 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1154 |
+
000092A6929A92AB92799297927F92A392EE928E9282929592A2927D928892A1
|
| 1155 |
+
928A9286928C929992A7927E928792A9929D928B922D969E96A196FF9758977D
|
| 1156 |
+
977A977E978397809782977B97849781977F97CE97CD981698AD98AE99029900
|
| 1157 |
+
9907999D999C99C399B999BB99BA99C299BD99C79AB19AE39AE79B3E9B3F9B60
|
| 1158 |
+
9B619B5F9CF19CF29CF59EA750FF5103513050F85106510750F650FE510B510C
|
| 1159 |
+
50FD510A528B528C52F152EF56485642564C56355641564A5649564656580000
|
| 1160 |
+
E5
|
| 1161 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1162 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1163 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1164 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1165 |
+
565A56405633563D562C563E5638562A563A571A58AB589D58B158A058A358AF
|
| 1166 |
+
58AC58A558A158FF5AFF5AF45AFD5AF75AF65B035AF85B025AF95B015B075B05
|
| 1167 |
+
5B0F5C675D995D975D9F5D925DA25D935D955DA05D9C5DA15D9A5D9E5E695E5D
|
| 1168 |
+
5E605E5C7DF35EDB5EDE5EE15F495FB2618B6183617961B161B061A261890000
|
| 1169 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1170 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1171 |
+
0000619B619361AF61AD619F619261AA61A1618D616661B3622D646E64706496
|
| 1172 |
+
64A064856497649C648F648B648A648C64A3649F646864B164986576657A6579
|
| 1173 |
+
657B65B265B366B566B066A966B266B766AA66AF6A006A066A1769E569F86A15
|
| 1174 |
+
69F169E46A2069FF69EC69E26A1B6A1D69FE6A2769F269EE6A1469F769E76A40
|
| 1175 |
+
6A0869E669FB6A0D69FC69EB6A096A046A186A256A0F69F66A266A0769F46A16
|
| 1176 |
+
6B516BA56BA36BA26BA66C016C006BFF6C026F416F266F7E6F876FC66F920000
|
| 1177 |
+
E6
|
| 1178 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1179 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1180 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1181 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1182 |
+
6F8D6F896F8C6F626F4F6F856F5A6F966F766F6C6F826F556F726F526F506F57
|
| 1183 |
+
6F946F936F5D6F006F616F6B6F7D6F676F906F536F8B6F696F7F6F956F636F77
|
| 1184 |
+
6F6A6F7B71B271AF719B71B071A0719A71A971B5719D71A5719E71A471A171AA
|
| 1185 |
+
719C71A771B37298729A73587352735E735F7360735D735B7361735A73590000
|
| 1186 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1187 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1188 |
+
0000736274877489748A74867481747D74857488747C747975087507757E7625
|
| 1189 |
+
761E7619761D761C7623761A7628761B769C769D769E769B778D778F77897788
|
| 1190 |
+
78CD78BB78CF78CC78D178CE78D478C878C378C478C9799A79A179A0799C79A2
|
| 1191 |
+
799B6B767A397AB27AB47AB37BB77BCB7BBE7BAC7BCE7BAF7BB97BCA7BB57CC5
|
| 1192 |
+
7CC87CCC7CCB7DF77DDB7DEA7DE77DD77DE17E037DFA7DE67DF67DF17DF07DEE
|
| 1193 |
+
7DDF7F767FAC7FB07FAD7FED7FEB7FEA7FEC7FE67FE88064806781A3819F0000
|
| 1194 |
+
E7
|
| 1195 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1196 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1197 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1198 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1199 |
+
819E819581A2819981978216824F825382528250824E82518524853B850F8500
|
| 1200 |
+
8529850E8509850D851F850A8527851C84FB852B84FA8508850C84F4852A84F2
|
| 1201 |
+
851584F784EB84F384FC851284EA84E9851684FE8528851D852E850284FD851E
|
| 1202 |
+
84F68531852684E784E884F084EF84F9851885208530850B8519852F86620000
|
| 1203 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1204 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1205 |
+
0000875687638764877787E1877387588754875B87528761875A8751875E876D
|
| 1206 |
+
876A8750874E875F875D876F876C877A876E875C8765874F877B877587628767
|
| 1207 |
+
8769885A8905890C8914890B891789188919890689168911890E890989A289A4
|
| 1208 |
+
89A389ED89F089EC8ACF8AC68AB88AD38AD18AD48AD58ABB8AD78ABE8AC08AC5
|
| 1209 |
+
8AD88AC38ABA8ABD8AD98C3E8C4D8C8F8CE58CDF8CD98CE88CDA8CDD8CE78DA0
|
| 1210 |
+
8D9C8DA18D9B8E208E238E258E248E2E8E158E1B8E168E118E198E268E270000
|
| 1211 |
+
E8
|
| 1212 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1213 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1214 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1215 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1216 |
+
8E148E128E188E138E1C8E178E1A8F2C8F248F188F1A8F208F238F168F179073
|
| 1217 |
+
9070906F9067906B912F912B9129912A91329126912E91859186918A91819182
|
| 1218 |
+
9184918092D092C392C492C092D992B692CF92F192DF92D892E992D792DD92CC
|
| 1219 |
+
92EF92C292E892CA92C892CE92E692CD92D592C992E092DE92E792D192D30000
|
| 1220 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1221 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1222 |
+
000092B592E192C692B4957C95AC95AB95AE95B096A496A296D3970597089702
|
| 1223 |
+
975A978A978E978897D097CF981E981D9826982998289820981B982798B29908
|
| 1224 |
+
98FA9911991499169917991599DC99CD99CF99D399D499CE99C999D699D899CB
|
| 1225 |
+
99D799CC9AB39AEC9AEB9AF39AF29AF19B469B439B679B749B719B669B769B75
|
| 1226 |
+
9B709B689B649B6C9CFC9CFA9CFD9CFF9CF79D079D009CF99CFB9D089D059D04
|
| 1227 |
+
9E839ED39F0F9F10511C51135117511A511151DE533453E156705660566E0000
|
| 1228 |
+
E9
|
| 1229 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1230 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1231 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1232 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1233 |
+
567356665663566D5672565E5677571C571B58C858BD58C958BF58BA58C258BC
|
| 1234 |
+
58C65B175B195B1B5B215B145B135B105B165B285B1A5B205B1E5BEF5DAC5DB1
|
| 1235 |
+
5DA95DA75DB55DB05DAE5DAA5DA85DB25DAD5DAF5DB45E675E685E665E6F5EE9
|
| 1236 |
+
5EE75EE65EE85EE55F4B5FBC619D61A8619661C561B461C661C161CC61BA0000
|
| 1237 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1238 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1239 |
+
000061BF61B8618C64D764D664D064CF64C964BD648964C364DB64F364D96533
|
| 1240 |
+
657F657C65A266C866BE66C066CA66CB66CF66BD66BB66BA66CC67236A346A66
|
| 1241 |
+
6A496A676A326A686A3E6A5D6A6D6A766A5B6A516A286A5A6A3B6A3F6A416A6A
|
| 1242 |
+
6A646A506A4F6A546A6F6A696A606A3C6A5E6A566A556A4D6A4E6A466B556B54
|
| 1243 |
+
6B566BA76BAA6BAB6BC86BC76C046C036C066FAD6FCB6FA36FC76FBC6FCE6FC8
|
| 1244 |
+
6F5E6FC46FBD6F9E6FCA6FA870046FA56FAE6FBA6FAC6FAA6FCF6FBF6FB80000
|
| 1245 |
+
EA
|
| 1246 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1247 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1248 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1249 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1250 |
+
6FA26FC96FAB6FCD6FAF6FB26FB071C571C271BF71B871D671C071C171CB71D4
|
| 1251 |
+
71CA71C771CF71BD71D871BC71C671DA71DB729D729E736973667367736C7365
|
| 1252 |
+
736B736A747F749A74A074947492749574A1750B7580762F762D7631763D7633
|
| 1253 |
+
763C76357632763076BB76E6779A779D77A1779C779B77A277A3779577990000
|
| 1254 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1255 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1256 |
+
0000779778DD78E978E578EA78DE78E378DB78E178E278ED78DF78E079A47A44
|
| 1257 |
+
7A487A477AB67AB87AB57AB17AB77BDE7BE37BE77BDD7BD57BE57BDA7BE87BF9
|
| 1258 |
+
7BD47BEA7BE27BDC7BEB7BD87BDF7CD27CD47CD77CD07CD17E127E217E177E0C
|
| 1259 |
+
7E1F7E207E137E0E7E1C7E157E1A7E227E0B7E0F7E167E0D7E147E257E247F43
|
| 1260 |
+
7F7B7F7C7F7A7FB17FEF802A8029806C81B181A681AE81B981B581AB81B081AC
|
| 1261 |
+
81B481B281B781A781F282558256825785568545856B854D8553856185580000
|
| 1262 |
+
EB
|
| 1263 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1264 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1265 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1266 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1267 |
+
854085468564854185628544855185478563853E855B8571854E856E85758555
|
| 1268 |
+
85678560858C8566855D85548565856C866386658664879B878F879787938792
|
| 1269 |
+
87888781879687988779878787A3878587908791879D87848794879C879A8789
|
| 1270 |
+
891E89268930892D892E89278931892289298923892F892C891F89F18AE00000
|
| 1271 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1272 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1273 |
+
00008AE28AF28AF48AF58ADD8B148AE48ADF8AF08AC88ADE8AE18AE88AFF8AEF
|
| 1274 |
+
8AFB8C918C928C908CF58CEE8CF18CF08CF38D6C8D6E8DA58DA78E338E3E8E38
|
| 1275 |
+
8E408E458E368E3C8E3D8E418E308E3F8EBD8F368F2E8F358F328F398F378F34
|
| 1276 |
+
90769079907B908690FA913391359136919391909191918D918F9327931E9308
|
| 1277 |
+
931F9306930F937A9338933C931B9323931293019346932D930E930D92CB931D
|
| 1278 |
+
92FA9325931392F992F793349302932492FF932993399335932A9314930C0000
|
| 1279 |
+
EC
|
| 1280 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1281 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1282 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1283 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1284 |
+
930B92FE9309930092FB931695BC95CD95BE95B995BA95B695BF95B595BD96A9
|
| 1285 |
+
96D4970B9712971097999797979497F097F89835982F98329924991F99279929
|
| 1286 |
+
999E99EE99EC99E599E499F099E399EA99E999E79AB99ABF9AB49ABB9AF69AFA
|
| 1287 |
+
9AF99AF79B339B809B859B879B7C9B7E9B7B9B829B939B929B909B7A9B950000
|
| 1288 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1289 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1290 |
+
00009B7D9B889D259D179D209D1E9D149D299D1D9D189D229D109D199D1F9E88
|
| 1291 |
+
9E869E879EAE9EAD9ED59ED69EFA9F129F3D51265125512251245120512952F4
|
| 1292 |
+
5693568C568D568656845683567E5682567F568158D658D458CF58D25B2D5B25
|
| 1293 |
+
5B325B235B2C5B275B265B2F5B2E5B7B5BF15BF25DB75E6C5E6A5FBE5FBB61C3
|
| 1294 |
+
61B561BC61E761E061E561E461E861DE64EF64E964E364EB64E464E865816580
|
| 1295 |
+
65B665DA66D26A8D6A966A816AA56A896A9F6A9B6AA16A9E6A876A936A8E0000
|
| 1296 |
+
ED
|
| 1297 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1298 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1299 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1300 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1301 |
+
6A956A836AA86AA46A916A7F6AA66A9A6A856A8C6A926B5B6BAD6C096FCC6FA9
|
| 1302 |
+
6FF46FD46FE36FDC6FED6FE76FE66FDE6FF26FDD6FE26FE871E171F171E871F2
|
| 1303 |
+
71E471F071E27373736E736F749774B274AB749074AA74AD74B174A574AF7510
|
| 1304 |
+
75117512750F7584764376487649764776A476E977B577AB77B277B777B60000
|
| 1305 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1306 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1307 |
+
000077B477B177A877F078F378FD790278FB78FC78F2790578F978FE790479AB
|
| 1308 |
+
79A87A5C7A5B7A567A587A547A5A7ABE7AC07AC17C057C0F7BF27C007BFF7BFB
|
| 1309 |
+
7C0E7BF47C0B7BF37C027C097C037C017BF87BFD7C067BF07BF17C107C0A7CE8
|
| 1310 |
+
7E2D7E3C7E427E3398487E387E2A7E497E407E477E297E4C7E307E3B7E367E44
|
| 1311 |
+
7E3A7F457F7F7F7E7F7D7FF47FF2802C81BB81C481CC81CA81C581C781BC81E9
|
| 1312 |
+
825B825A825C85838580858F85A7859585A0858B85A3857B85A4859A859E0000
|
| 1313 |
+
EE
|
| 1314 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1315 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1316 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1317 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1318 |
+
8577857C858985A1857A85788557858E85968586858D8599859D858185A28582
|
| 1319 |
+
858885858579857685988590859F866887BE87AA87AD87C587B087AC87B987B5
|
| 1320 |
+
87BC87AE87C987C387C287CC87B787AF87C487CA87B487B687BF87B887BD87DE
|
| 1321 |
+
87B289358933893C893E894189528937894289AD89AF89AE89F289F38B1E0000
|
| 1322 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1323 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1324 |
+
00008B188B168B118B058B0B8B228B0F8B128B158B078B0D8B088B068B1C8B13
|
| 1325 |
+
8B1A8C4F8C708C728C718C6F8C958C948CF98D6F8E4E8E4D8E538E508E4C8E47
|
| 1326 |
+
8F438F409085907E9138919A91A2919B9199919F91A1919D91A093A1938393AF
|
| 1327 |
+
936493569347937C9358935C93769349935093519360936D938F934C936A9379
|
| 1328 |
+
935793559352934F93719377937B9361935E936393679380934E935995C795C0
|
| 1329 |
+
95C995C395C595B796AE96B096AC9720971F9718971D9719979A97A1979C0000
|
| 1330 |
+
EF
|
| 1331 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1332 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1333 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1334 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1335 |
+
979E979D97D597D497F198419844984A9849984598439925992B992C992A9933
|
| 1336 |
+
9932992F992D99319930999899A399A19A0299FA99F499F799F999F899F699FB
|
| 1337 |
+
99FD99FE99FC9A039ABE9AFE9AFD9B019AFC9B489B9A9BA89B9E9B9B9BA69BA1
|
| 1338 |
+
9BA59BA49B869BA29BA09BAF9D339D419D679D369D2E9D2F9D319D389D300000
|
| 1339 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1340 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1341 |
+
00009D459D429D439D3E9D379D409D3D7FF59D2D9E8A9E899E8D9EB09EC89EDA
|
| 1342 |
+
9EFB9EFF9F249F239F229F549FA05131512D512E5698569C5697569A569D5699
|
| 1343 |
+
59705B3C5C695C6A5DC05E6D5E6E61D861DF61ED61EE61F161EA61F061EB61D6
|
| 1344 |
+
61E964FF650464FD64F86501650364FC659465DB66DA66DB66D86AC56AB96ABD
|
| 1345 |
+
6AE16AC66ABA6AB66AB76AC76AB46AAD6B5E6BC96C0B7007700C700D70017005
|
| 1346 |
+
7014700E6FFF70006FFB70266FFC6FF7700A720171FF71F9720371FD73760000
|
| 1347 |
+
F0
|
| 1348 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1349 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1350 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1351 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1352 |
+
74B874C074B574C174BE74B674BB74C275147513765C76647659765076537657
|
| 1353 |
+
765A76A676BD76EC77C277BA78FF790C79137914790979107912791179AD79AC
|
| 1354 |
+
7A5F7C1C7C297C197C207C1F7C2D7C1D7C267C287C227C257C307E5C7E507E56
|
| 1355 |
+
7E637E587E627E5F7E517E607E577E537FB57FB37FF77FF8807581D181D20000
|
| 1356 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1357 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1358 |
+
000081D0825F825E85B485C685C085C385C285B385B585BD85C785C485BF85CB
|
| 1359 |
+
85CE85C885C585B185B685D2862485B885B785BE866987E787E687E287DB87EB
|
| 1360 |
+
87EA87E587DF87F387E487D487DC87D387ED87D887E387A487D787D9880187F4
|
| 1361 |
+
87E887DD8953894B894F894C89468950895189498B2A8B278B238B338B308B35
|
| 1362 |
+
8B478B2F8B3C8B3E8B318B258B378B268B368B2E8B248B3B8B3D8B3A8C428C75
|
| 1363 |
+
8C998C988C978CFE8D048D028D008E5C8E628E608E578E568E5E8E658E670000
|
| 1364 |
+
F1
|
| 1365 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1366 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1367 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1368 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1369 |
+
8E5B8E5A8E618E5D8E698E548F468F478F488F4B9128913A913B913E91A891A5
|
| 1370 |
+
91A791AF91AA93B5938C939293B7939B939D938993A7938E93AA939E93A69395
|
| 1371 |
+
93889399939F938D93B1939193B293A493A893B493A393A595D295D395D196B3
|
| 1372 |
+
96D796DA5DC296DF96D896DD97239722972597AC97AE97A897AB97A497AA0000
|
| 1373 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1374 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1375 |
+
000097A297A597D797D997D697D897FA98509851985298B89941993C993A9A0F
|
| 1376 |
+
9A0B9A099A0D9A049A119A0A9A059A079A069AC09ADC9B089B049B059B299B35
|
| 1377 |
+
9B4A9B4C9B4B9BC79BC69BC39BBF9BC19BB59BB89BD39BB69BC49BB99BBD9D5C
|
| 1378 |
+
9D539D4F9D4A9D5B9D4B9D599D569D4C9D579D529D549D5F9D589D5A9E8E9E8C
|
| 1379 |
+
9EDF9F019F009F169F259F2B9F2A9F299F289F4C9F5551345135529652F753B4
|
| 1380 |
+
56AB56AD56A656A756AA56AC58DA58DD58DB59125B3D5B3E5B3F5DC35E700000
|
| 1381 |
+
F2
|
| 1382 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1383 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1384 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1385 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1386 |
+
5FBF61FB65076510650D6509650C650E658465DE65DD66DE6AE76AE06ACC6AD1
|
| 1387 |
+
6AD96ACB6ADF6ADC6AD06AEB6ACF6ACD6ADE6B606BB06C0C7019702770207016
|
| 1388 |
+
702B702170227023702970177024701C702A720C720A72077202720572A572A6
|
| 1389 |
+
72A472A372A174CB74C574B774C37516766077C977CA77C477F1791D791B0000
|
| 1390 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1391 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1392 |
+
00007921791C7917791E79B07A677A687C337C3C7C397C2C7C3B7CEC7CEA7E76
|
| 1393 |
+
7E757E787E707E777E6F7E7A7E727E747E687F4B7F4A7F837F867FB77FFD7FFE
|
| 1394 |
+
807881D781D582648261826385EB85F185ED85D985E185E885DA85D785EC85F2
|
| 1395 |
+
85F885D885DF85E385DC85D185F085E685EF85DE85E2880087FA880387F687F7
|
| 1396 |
+
8809880C880B880687FC880887FF880A88028962895A895B89578961895C8958
|
| 1397 |
+
895D8959898889B789B689F68B508B488B4A8B408B538B568B548B4B8B550000
|
| 1398 |
+
F3
|
| 1399 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1400 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1401 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1402 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1403 |
+
8B518B428B528B578C438C778C768C9A8D068D078D098DAC8DAA8DAD8DAB8E6D
|
| 1404 |
+
8E788E738E6A8E6F8E7B8EC28F528F518F4F8F508F538FB49140913F91B091AD
|
| 1405 |
+
93DE93C793CF93C293DA93D093F993EC93CC93D993A993E693CA93D493EE93E3
|
| 1406 |
+
93D593C493CE93C093D293E7957D95DA95DB96E19729972B972C972897260000
|
| 1407 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1408 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1409 |
+
000097B397B797B697DD97DE97DF985C9859985D985798BF98BD98BB98BE9948
|
| 1410 |
+
9947994399A699A79A1A9A159A259A1D9A249A1B9A229A209A279A239A1E9A1C
|
| 1411 |
+
9A149AC29B0B9B0A9B0E9B0C9B379BEA9BEB9BE09BDE9BE49BE69BE29BF09BD4
|
| 1412 |
+
9BD79BEC9BDC9BD99BE59BD59BE19BDA9D779D819D8A9D849D889D719D809D78
|
| 1413 |
+
9D869D8B9D8C9D7D9D6B9D749D759D709D699D859D739D7B9D829D6F9D799D7F
|
| 1414 |
+
9D879D689E949E919EC09EFC9F2D9F409F419F4D9F569F579F58533756B20000
|
| 1415 |
+
F4
|
| 1416 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1417 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1418 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1419 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1420 |
+
56B556B358E35B455DC65DC75EEE5EEF5FC05FC161F9651765166515651365DF
|
| 1421 |
+
66E866E366E46AF36AF06AEA6AE86AF96AF16AEE6AEF703C7035702F70377034
|
| 1422 |
+
703170427038703F703A70397040703B703370417213721472A8737D737C74BA
|
| 1423 |
+
76AB76AA76BE76ED77CC77CE77CF77CD77F27925792379277928792479290000
|
| 1424 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1425 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1426 |
+
000079B27A6E7A6C7A6D7AF77C497C487C4A7C477C457CEE7E7B7E7E7E817E80
|
| 1427 |
+
7FBA7FFF807981DB81D9820B82688269862285FF860185FE861B860085F68604
|
| 1428 |
+
86098605860C85FD8819881088118817881388168963896689B989F78B608B6A
|
| 1429 |
+
8B5D8B688B638B658B678B6D8DAE8E868E888E848F598F568F578F558F588F5A
|
| 1430 |
+
908D9143914191B791B591B291B3940B941393FB9420940F941493FE94159410
|
| 1431 |
+
94289419940D93F5940093F79407940E9416941293FA940993F8940A93FF0000
|
| 1432 |
+
F5
|
| 1433 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1434 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1435 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1436 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1437 |
+
93FC940C93F69411940695DE95E095DF972E972F97B997BB97FD97FE98609862
|
| 1438 |
+
9863985F98C198C29950994E9959994C994B99539A329A349A319A2C9A2A9A36
|
| 1439 |
+
9A299A2E9A389A2D9AC79ACA9AC69B109B129B119C0B9C089BF79C059C129BF8
|
| 1440 |
+
9C409C079C0E9C069C179C149C099D9F9D999DA49D9D9D929D989D909D9B0000
|
| 1441 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1442 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1443 |
+
00009DA09D949D9C9DAA9D979DA19D9A9DA29DA89D9E9DA39DBF9DA99D969DA6
|
| 1444 |
+
9DA79E999E9B9E9A9EE59EE49EE79EE69F309F2E9F5B9F609F5E9F5D9F599F91
|
| 1445 |
+
513A51395298529756C356BD56BE5B485B475DCB5DCF5EF161FD651B6B026AFC
|
| 1446 |
+
6B036AF86B0070437044704A7048704970457046721D721A7219737E7517766A
|
| 1447 |
+
77D0792D7931792F7C547C537CF27E8A7E877E887E8B7E867E8D7F4D7FBB8030
|
| 1448 |
+
81DD8618862A8626861F8623861C86198627862E862186208629861E86250000
|
| 1449 |
+
F6
|
| 1450 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1451 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1452 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1453 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1454 |
+
8829881D881B88208824881C882B884A896D8969896E896B89FA8B798B788B45
|
| 1455 |
+
8B7A8B7B8D108D148DAF8E8E8E8C8F5E8F5B8F5D91469144914591B9943F943B
|
| 1456 |
+
94369429943D943C94309439942A9437942C9440943195E595E495E39735973A
|
| 1457 |
+
97BF97E1986498C998C698C0995899569A399A3D9A469A449A429A419A3A0000
|
| 1458 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1459 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1460 |
+
00009A3F9ACD9B159B179B189B169B3A9B529C2B9C1D9C1C9C2C9C239C289C29
|
| 1461 |
+
9C249C219DB79DB69DBC9DC19DC79DCA9DCF9DBE9DC59DC39DBB9DB59DCE9DB9
|
| 1462 |
+
9DBA9DAC9DC89DB19DAD9DCC9DB39DCD9DB29E7A9E9C9EEB9EEE9EED9F1B9F18
|
| 1463 |
+
9F1A9F319F4E9F659F649F924EB956C656C556CB59715B4B5B4C5DD55DD15EF2
|
| 1464 |
+
65216520652665226B0B6B086B096C0D7055705670577052721E721F72A9737F
|
| 1465 |
+
74D874D574D974D7766D76AD793579B47A707A717C577C5C7C597C5B7C5A0000
|
| 1466 |
+
F7
|
| 1467 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1468 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1469 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1470 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1471 |
+
7CF47CF17E917F4F7F8781DE826B863486358633862C86328636882C88288826
|
| 1472 |
+
882A8825897189BF89BE89FB8B7E8B848B828B868B858B7F8D158E958E948E9A
|
| 1473 |
+
8E928E908E968E978F608F629147944C9450944A944B944F9447944594489449
|
| 1474 |
+
9446973F97E3986A986998CB9954995B9A4E9A539A549A4C9A4F9A489A4A0000
|
| 1475 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1476 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1477 |
+
00009A499A529A509AD09B199B2B9B3B9B569B559C469C489C3F9C449C399C33
|
| 1478 |
+
9C419C3C9C379C349C329C3D9C369DDB9DD29DDE9DDA9DCB9DD09DDC9DD19DDF
|
| 1479 |
+
9DE99DD99DD89DD69DF59DD59DDD9EB69EF09F359F339F329F429F6B9F959FA2
|
| 1480 |
+
513D529958E858E759725B4D5DD8882F5F4F62016203620465296525659666EB
|
| 1481 |
+
6B116B126B0F6BCA705B705A7222738273817383767077D47C677C667E95826C
|
| 1482 |
+
863A86408639863C8631863B863E88308832882E883389768974897389FE0000
|
| 1483 |
+
F8
|
| 1484 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1485 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1486 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1487 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1488 |
+
8B8C8B8E8B8B8B888C458D198E988F648F6391BC94629455945D9457945E97C4
|
| 1489 |
+
97C598009A569A599B1E9B1F9B209C529C589C509C4A9C4D9C4B9C559C599C4C
|
| 1490 |
+
9C4E9DFB9DF79DEF9DE39DEB9DF89DE49DF69DE19DEE9DE69DF29DF09DE29DEC
|
| 1491 |
+
9DF49DF39DE89DED9EC29ED09EF29EF39F069F1C9F389F379F369F439F4F0000
|
| 1492 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1493 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1494 |
+
00009F719F709F6E9F6F56D356CD5B4E5C6D652D66ED66EE6B13705F7061705D
|
| 1495 |
+
7060722374DB74E577D5793879B779B67C6A7E977F89826D8643883888378835
|
| 1496 |
+
884B8B948B958E9E8E9F8EA08E9D91BE91BD91C2946B9468946996E597469743
|
| 1497 |
+
974797C797E59A5E9AD59B599C639C679C669C629C5E9C609E029DFE9E079E03
|
| 1498 |
+
9E069E059E009E019E099DFF9DFD9E049EA09F1E9F469F749F759F7656D4652E
|
| 1499 |
+
65B86B186B196B176B1A7062722672AA77D877D979397C697C6B7CF67E9A0000
|
| 1500 |
+
F9
|
| 1501 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1502 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1503 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1504 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1505 |
+
7E987E9B7E9981E081E18646864786488979897A897C897B89FF8B988B998EA5
|
| 1506 |
+
8EA48EA3946E946D946F9471947397499872995F9C689C6E9C6D9E0B9E0D9E10
|
| 1507 |
+
9E0F9E129E119EA19EF59F099F479F789F7B9F7A9F79571E70667C6F883C8DB2
|
| 1508 |
+
8EA691C394749478947694759A609C749C739C719C759E149E139EF69F0A0000
|
| 1509 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1510 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1511 |
+
00009FA4706870657CF7866A883E883D883F8B9E8C9C8EA98EC9974B98739874
|
| 1512 |
+
98CC996199AB9A649A669A679B249E159E179F4862076B1E7227864C8EA89482
|
| 1513 |
+
948094819A699A689B2E9E197229864B8B9F94839C799EB776759A6B9C7A9E1D
|
| 1514 |
+
7069706A9EA49F7E9F499F980000000000000000000000000000000000000000
|
| 1515 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1516 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
micromamba_root/Library/lib/tcl8.6/encoding/cns11643.enc
ADDED
|
@@ -0,0 +1,1584 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cns11643, double-byte
|
| 2 |
+
D
|
| 3 |
+
2134 0 93
|
| 4 |
+
21
|
| 5 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 6 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 7 |
+
00004E284E364E3F4E854E054E04518251965338536953B64E2A4E874E4951E2
|
| 8 |
+
4E464E8F4EBC4EBE516651E35204529C53B95902590A5B805DDB5E7A5E7F5EF4
|
| 9 |
+
5F505F515F61961D4E3C4E634E624EA351854EC54ECF4ECE4ECC518451865722
|
| 10 |
+
572351E45205529E529D52FD5300533A5C735346535D538653B7620953CC6C15
|
| 11 |
+
53CE57216C3F5E005F0C623762386534653565E04F0E738D4E974EE04F144EF1
|
| 12 |
+
4EE74EF74EE64F1D4F024F054F2256D8518B518C519951E55213520B52A60000
|
| 13 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 14 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 15 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 16 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 17 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 18 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 19 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 20 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 21 |
+
22
|
| 22 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 23 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 24 |
+
000053225304530353075407531E535F536D538953BA53D0598053F653F753F9
|
| 25 |
+
597E53F4597F5B565724590459185932593059345DDF59755E845B825BF95C14
|
| 26 |
+
5FD55FD45FCF625C625E626462615E815E835F0D5F52625A5FCA5FC7623965EE
|
| 27 |
+
624F65E7672F6B7A6C39673F673C6C376C446C45738C75927676909390926C4B
|
| 28 |
+
6C4C4E214E204E224E684E894E984EF94EEF7F5182784EF84F064F034EFC4EEE
|
| 29 |
+
4F1690994F284F1C4F074F1A4EFA4F17514A962351724F3B51B451B351B20000
|
| 30 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 31 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 32 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 33 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 34 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 35 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 36 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 37 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 38 |
+
23
|
| 39 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 40 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 41 |
+
00004F6451E84F675214520F5215521852A84F33534B534F518F5350521C538B
|
| 42 |
+
522153BE52AE53D2541653FF538E540054305405541354155445541956E35735
|
| 43 |
+
57365731573258EE59054E545447593656E756E55741597A574C5986574B5752
|
| 44 |
+
5B865F535C1859985C3D5C78598E59A25990598F5C8059A15E085B925C285C2A
|
| 45 |
+
5C8D5EF55F0E5C8B5C895C925FD35FDA5C935FDB5DE0620F625D625F62676257
|
| 46 |
+
9F505E8D65EB65EA5F7867375FD2673267366B226BCE5FEE6C586C516C770000
|
| 47 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 48 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 49 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 50 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 51 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 52 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 53 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 54 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 55 |
+
24
|
| 56 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 57 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 58 |
+
00006C3C5FFA6C5A5FF76C53706F7072706E6283628C707372B172B26287738F
|
| 59 |
+
627B627A6270793C6288808D808E6272827B65F08D718FB99096909A67454E24
|
| 60 |
+
4E7167554E9C4F454F4A4F394F37674B4F324F426C1A4F444F4B6C6B4F404F35
|
| 61 |
+
4F3151516C6F5150514E6C6D6C87519D6C9C51B551B851EC522352275226521F
|
| 62 |
+
522B522052B452B372C65325533B537473957397739373947392544D75397594
|
| 63 |
+
543A7681793D5444544C5423541A5432544B5421828F54345449545054220000
|
| 64 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 65 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 66 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 67 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 68 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 69 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 70 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 71 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 72 |
+
25
|
| 73 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 74 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 75 |
+
0000543F5451545A542F8FC956E956F256F356EF56ED56EC56E6574896285744
|
| 76 |
+
573F573C575357564F85575F5743575857574F744F894F8457464F4C573D4F6A
|
| 77 |
+
57425754575558F158F258F0590B9EA656F1593D4F955994598C519E599C51BE
|
| 78 |
+
5235599F5233599B52315989599A530B658853925B8D54875BFE5BFF5BFD5C2B
|
| 79 |
+
54885C845C8E5C9C5465546C5C855DF55E09546F54615E0B54985E925E905F03
|
| 80 |
+
56F75F1E5F6357725FE75FFE5FE65FDC5FCE57805FFC5FDF5FEC5FF657620000
|
| 81 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 82 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 83 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 84 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 85 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 86 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 87 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 88 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 89 |
+
26
|
| 90 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 91 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 92 |
+
00005FF25FF05FF95945621359BA59CF623B623C628259C159B659BC6278628B
|
| 93 |
+
59B1629E62A5629B629C6299628D6285629D62755C445C475CAE65F65CA05CB5
|
| 94 |
+
5CAF66F5675B5C9F675467525CA267586744674A67615CB66C7F6C916C9E5E14
|
| 95 |
+
6C6E6C7C6C9F6C755F246C566CA26C795F7D6CA15FE56CAA6CA0601970797077
|
| 96 |
+
707E600A7075707B7264601E72BB72BC72C772B972BE72B66011600C7398601C
|
| 97 |
+
6214623D62AD7593768062BE768376C076C162AE62B377F477F562A97ACC0000
|
| 98 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 99 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 100 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 101 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 102 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 103 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 104 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 105 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 106 |
+
27
|
| 107 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 108 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 109 |
+
00007ACD7CFA809F80918097809466048286828C65FB8295660B866C66058FB5
|
| 110 |
+
8FBE8FC766F68FC190A990A4678E6792677690A896279626962B963396349629
|
| 111 |
+
4E3D679F4E9D4F934F8A677D67814F6D4F8E4FA04FA24FA14F9F4FA36C1D4F72
|
| 112 |
+
6CEC4F8C51566CD96CB651906CAD6CE76CB751ED51FE522F6CC3523C52345239
|
| 113 |
+
52B952B552BF53556C9D5376537A53936D3053C153C253D554856CCF545F5493
|
| 114 |
+
548954799EFE548F5469546D70915494546A548A708356FD56FB56F872D80000
|
| 115 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 116 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 117 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 118 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 119 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 120 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 121 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 122 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 123 |
+
28
|
| 124 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 125 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 126 |
+
000056FC56F6576557815763576772D1576E5778577F73A673A258F3594B594C
|
| 127 |
+
74DD74E8753F59AD753E59C4759859C259B076F176F076F577F859BF77F959C9
|
| 128 |
+
59B859AC7942793F79C559B759D77AFB5B607CFD5B965B9E5B945B9F5B9D80B5
|
| 129 |
+
5C005C1982A082C05C495C4A82985CBB5CC182A782AE82BC5CB95C9E5CB45CBA
|
| 130 |
+
5DF65E135E125E7782C35E9882A25E995E9D5EF8866E5EF98FD25F065F218FCD
|
| 131 |
+
5F255F558FD790B290B45F845F8360306007963D6036963A96434FCD5FE90000
|
| 132 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 133 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 134 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 135 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 136 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 137 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 138 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 139 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 140 |
+
29
|
| 141 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 142 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 143 |
+
0000603D60084FC94FCB62BA62B24FDC62B762E462A74FDB4FC74FD662D562E1
|
| 144 |
+
62DD62A662C162C562C062DF62E062DE53976589539965A665BA54A165FF54A5
|
| 145 |
+
66176618660165FE54AE670C54B6676B67966782678A54BC67A354BE67A2678F
|
| 146 |
+
54B067F967806B266B276B686B69579D6B816BB46BD1578F57996C1C579A5795
|
| 147 |
+
58F4590D59536C976C6C6CDF5A006CEA59DD6CE46CD86CB26CCE6CC859F2708B
|
| 148 |
+
70887090708F59F570877089708D70815BA8708C5CD05CD872405CD75CCB0000
|
| 149 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 150 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 151 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 152 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 153 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 154 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 155 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 156 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 157 |
+
2A
|
| 158 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 159 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 160 |
+
00007265726672685CC95CC772CD72D372DB5CD472CF73A773A3739E5CDF73AF
|
| 161 |
+
5DF95E2173AA739C5E2075427544753B75415E9B759B759E5F0779C479C379C6
|
| 162 |
+
6037603979C7607279CA604560537ACF7C767C747CFF7CFC6042605F7F5980A8
|
| 163 |
+
6058606680B0624280B362CF80A480B680A780AC630380A65367820E82C4833E
|
| 164 |
+
829C63006313631462FA631582AA62F082C9654365AA82A682B2662166326635
|
| 165 |
+
8FCC8FD98FCA8FD88FCF90B7661D90AD90B99637670F9641963E96B697510000
|
| 166 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 167 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 168 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 169 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 170 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 171 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 172 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 173 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 174 |
+
2B
|
| 175 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 176 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 177 |
+
000097634E574E794EB24EB04EAF4EB14FD24FD567E44FBE4FB84FB04FB14FC8
|
| 178 |
+
67F667EE4FC64FCC4FE54FE34FB4516A67B2519F67C651C167CC51C251C35245
|
| 179 |
+
524867C967CA524F67EA67CB52C552CA52C453275358537D6BE053DD53DC53DA
|
| 180 |
+
53D954B96D1F54D054B454CA6D0A54A354DA54A46D1954B2549E549F54B56D1D
|
| 181 |
+
6D4254CD6D1854CC6D03570057AC5791578E578D579257A1579057A657A8709F
|
| 182 |
+
579C579657A770A170B470B570A958F572495909590872705952726E72CA0000
|
| 183 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 184 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 185 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 186 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 187 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 188 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 189 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 190 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 191 |
+
2C
|
| 192 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 193 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 194 |
+
000059DF72E859EB59EF59F059D55A0D5A0459F95A0259F859E259D959E75B6A
|
| 195 |
+
73B473EB5BAB73C75C1B5C2F73C6663C73CB74EC74EE5CD15CDC5CE65CE15CCD
|
| 196 |
+
76795CE25CDD5CE55DFB5DFA5E1E76F75EA176FA77E75EFC5EFB5F2F78127805
|
| 197 |
+
5F66780F780E7809605C7813604E6051794B794560236031607C605279D66060
|
| 198 |
+
604A60617AD162187B017C7A7C787C797C7F7C807C81631F631762EA63216304
|
| 199 |
+
63057FBE6531654465408014654265BE80C76629661B80C86623662C661A0000
|
| 200 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 201 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 202 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 203 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 204 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 205 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 206 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 207 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 208 |
+
2D
|
| 209 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 210 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 211 |
+
00006630663B661E6637663880C9670E80D780E667E867D6822167C767BC6852
|
| 212 |
+
67BF67D567FE836367FB833A67B168016805680067D782F26B2A6B6B82FB82F6
|
| 213 |
+
82F082EA6BE182E082FA6D236CFF6D146D056D136D066D21884E6D156CAF6CF4
|
| 214 |
+
6D026D458A076D268FE36D448FEE6D2470A590BD70A390D570A270BB70A070AA
|
| 215 |
+
90C891D470A870B670B270A79653964A70B9722E5005723C5013726D5030501B
|
| 216 |
+
72E772ED503372EC72E572E24FF773C473BD73CF73C973C173D0503173CE0000
|
| 217 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 218 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 219 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 220 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 221 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 222 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 223 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 224 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 225 |
+
2E
|
| 226 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 227 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 228 |
+
000074ED74EB519374EF754975507546754A5261754D75A6525E525F525575A8
|
| 229 |
+
52CD530E76C776FF54E276FD77E6780A54F37804780B78075504781578085511
|
| 230 |
+
79D379D479D079D77A7C54F854E07A7D7A837A8257017AD47AD57AD37AD07AD2
|
| 231 |
+
7AFE7AFC7C777C7C7C7B57B657BF57C757D057B957C1590E594A7F8F80D35A2D
|
| 232 |
+
80CB80D25A0F810980E280DF80C65B6C822482F782D882DD5C565C5482F882FC
|
| 233 |
+
5CEE5CF182E95D0082EE5E2982D0830E82E2830B82FD517986765F6786780000
|
| 234 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 235 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 236 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 237 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 238 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 239 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 240 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 241 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 242 |
+
2F
|
| 243 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 244 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 245 |
+
0000605A60678675867D6088884288666081898C8A0560958A0660978C9F609C
|
| 246 |
+
8FF18FE78FE98FEF90C290BC632C90C690C06336634390CD90C9634B90C4633C
|
| 247 |
+
958163419CEC50324FF9501D4FFF50044FF05003635150024FFC4FF250245008
|
| 248 |
+
5036502E65C35010503850394FFD50564FFB51A351A651A1681A684951C751C9
|
| 249 |
+
5260526452595265526752575263682B5253682F52CF684452CE52D052D152CC
|
| 250 |
+
68266828682E550D54F46825551354EF54F554F9550255006B6D808255180000
|
| 251 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 252 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 253 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 254 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 255 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 256 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 257 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 258 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 259 |
+
30
|
| 260 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 261 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 262 |
+
000054F054F66BE86BE355196BE7570557C96D6357B757CD6D0D6D616D9257BE
|
| 263 |
+
57BB6D6D57DB57C857C457C557D157CA57C06D676D605A215A2A6D7C5A1D6D82
|
| 264 |
+
5A0B6D2F6D686D8B6D7E5A226D846D165A246D7B5A145A316D905A2F5A1A5A12
|
| 265 |
+
70DD70CB5A2670E270D75BBC5BBB5BB75C055C065C525C5370C770DA5CFA5CEB
|
| 266 |
+
72425CF35CF55CE95CEF72FA5E2A5E305E2E5E2C5E2F5EAF5EA973D95EFD5F32
|
| 267 |
+
5F8E5F935F8F604F609973D2607E73D46074604B6073607573E874DE60560000
|
| 268 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 269 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 270 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 271 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 272 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 273 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 274 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 275 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 276 |
+
31
|
| 277 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 278 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 279 |
+
000060A9608B60A6755B609360AE609E60A7624575C075BF632E75BA63526330
|
| 280 |
+
635B771B6319631B77126331635D6337633563537722635C633F654B78227835
|
| 281 |
+
658B7828659A66506646664E6640782A664B6648795B66606644664D79526837
|
| 282 |
+
682479EC79E0681B683679EA682C681968566847683E681E7A8B681568226827
|
| 283 |
+
685968586855683068236B2E6B2B6B306B6C7B096B8B7C846BE96BEA6BE56D6B
|
| 284 |
+
7C8D7C856D736D577D117D0E6D5D6D566D8F6D5B6D1C6D9A6D9B6D997F610000
|
| 285 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 286 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 287 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 288 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 289 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 290 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 291 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 292 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 293 |
+
32
|
| 294 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 295 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 296 |
+
00006D816D717F5D7F5B6D726D5C6D9670C470DB70CC70D070E370DF80F270D6
|
| 297 |
+
70EE70D580FB81008201822F727A833372F573028319835173E273EC73D573F9
|
| 298 |
+
73DF73E683228342834E831B73E473E174F3834D831683248320755675557558
|
| 299 |
+
7557755E75C38353831E75B4834B75B18348865376CB76CC772A86967716770F
|
| 300 |
+
869E8687773F772B770E772486857721771877DD86A7869578247836869D7958
|
| 301 |
+
79598843796279DA79D9887679E179E579E879DB886F79E279F08874887C0000
|
| 302 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 303 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 304 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 305 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 306 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 307 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 308 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 309 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 310 |
+
33
|
| 311 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 312 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 313 |
+
00008A128C477ADA7ADD8CA47ADB7ADC8D788DB57B0D7B0B7B147C8E7C868FF5
|
| 314 |
+
7C877C837C8B90048FFC8FF690D67D2490D990DA90E37D257F627F937F997F97
|
| 315 |
+
90DC90E47FC47FC6800A91D591E28040803C803B80F680FF80EE810481038107
|
| 316 |
+
506A506180F750605053822D505D82278229831F8357505B504A506250158321
|
| 317 |
+
505F506983188358506450465040506E50738684869F869B868986A68692868F
|
| 318 |
+
86A0884F8878887A886E887B88848873555055348A0D8A0B8A19553655350000
|
| 319 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 320 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 321 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 322 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 323 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 324 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 325 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 326 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 327 |
+
34
|
| 328 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 329 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 330 |
+
0000553055525545550C8FF990099008553990DE9151553B554091DB91DF91DE
|
| 331 |
+
91D691E095859660965957F4965657ED57FD96BD57F8580B5042505958075044
|
| 332 |
+
50665052505450715050507B507C505857E758015079506C507851A851D151CF
|
| 333 |
+
5268527652D45A5553A053C45A385558554C55685A5F55495A6C5A53555D5529
|
| 334 |
+
5A43555455535A44555A5A48553A553F552B57EA5A4C57EF5A695A4757DD57FE
|
| 335 |
+
5A4257DE57E65B6E57E857FF580358F768A6591F5D1A595B595D595E5D0D0000
|
| 336 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 337 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 338 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 339 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 340 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 341 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 342 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 343 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 344 |
+
35
|
| 345 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 346 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 347 |
+
00005D265A2B5D0F5A3B5D125D235A615A3A5A6E5A4B5A6B5EB45EB95A455A4E
|
| 348 |
+
5A685A3D5A715A3F5A6F5A7560905A735A2C5A595A545A4F5A6360CF60E45BC8
|
| 349 |
+
60DD5BC360B15C5B5C6160CA5D215D0A5D0960C05D2C5D08638A63825D2A5D15
|
| 350 |
+
639E5D105D1363975D2F5D18636F5DE35E395E355E3A5E32639C636D63AE637C
|
| 351 |
+
5EBB5EBA5F345F39638563816391638D6098655360D066656661665B60D760AA
|
| 352 |
+
666260A160A4688760EE689C60E7686E68AE60DE6956686F637E638B68A90000
|
| 353 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 354 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 355 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 356 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 357 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 358 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 359 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 360 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 361 |
+
36
|
| 362 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 363 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 364 |
+
0000687563796386639368776373636A686B636C68AA637F687163B263BA6896
|
| 365 |
+
688B6366637468A4655A687B654E654D658D658E65AD6B3365C765CA6B9165C9
|
| 366 |
+
6B8D65E366576C2A66636667671A671967166DAC6DE9689E68B6689868736E00
|
| 367 |
+
689A688E68B768DB68A5686C68C168846DDB6DF46895687A68996DF068B868B9
|
| 368 |
+
68706DCF6B356DD06B906BBB6BED6DD76DCD6DE36DC16DC36DCE70F771176DAD
|
| 369 |
+
6E0470F06DB970F36DE770FC6E086E0671136E0A6DB070F66DF86E0C710E0000
|
| 370 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 371 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 372 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 373 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 374 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 375 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 376 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 377 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 378 |
+
37
|
| 379 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 380 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 381 |
+
00006DB1727B6E026E076E096E016E176DFF6E12730A730871037107710170F5
|
| 382 |
+
70F1710870F2710F740170FE7407740073FA731A7310730E740273F374087564
|
| 383 |
+
73FB75CE75D275CF751B752375617568768F756775D37739772F769077317732
|
| 384 |
+
76D576D776D67730773B7726784877407849771E784A784C782678477850784B
|
| 385 |
+
7851784F78427846796B796E796C79F279F879F179F579F379F97A907B357B3B
|
| 386 |
+
7A9A7A937A917AE17B247B337B217B1C7B167B177B367B1F7B2F7C937C990000
|
| 387 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 388 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 389 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 390 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 391 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 392 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 393 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 394 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 395 |
+
38
|
| 396 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 397 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 398 |
+
00007C9A7C9C7C947D497C967D347D377D3D7D2D7D367D4C7D457D2C7D487D41
|
| 399 |
+
7D477F3B7D3F7D4A7D3B7D288008801A7F9C801D7F9B8049804580447C9B7FD1
|
| 400 |
+
7FC7812A812E801F801E81318047811A8134811781258119811B831D83718384
|
| 401 |
+
8380837283A18127837983918211839F83AD823A8234832382748385839C83B7
|
| 402 |
+
8658865A8373865786B2838F86AE8395839983758845889C889488A3888F88A5
|
| 403 |
+
88A988A6888A88A0889089928991899483B08A268A328A2883AE83768A1C0000
|
| 404 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 405 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 406 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 407 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 408 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 409 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 410 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 411 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 412 |
+
39
|
| 413 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 414 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 415 |
+
000086568A2B8A2086C28A2986C586BA86B08A218C3A86B38C5B8C588C7C86BB
|
| 416 |
+
8CA68CAE8CAD8D6588528D7E88958D7C8D7F8D7A8DBD889188A18DC08DBB8EAD
|
| 417 |
+
8EAF8ED6889788A488AC888C88938ED9898289D69012900E90258A27901390EE
|
| 418 |
+
8C3990AB90F78C5D9159915491F291F091E591F68DC28DB995878DC1965A8EDE
|
| 419 |
+
8EDD966E8ED78EE08EE19679900B98E198E6900C9EC49ED24E8090F04E81508F
|
| 420 |
+
50975088508990EC90E950815160915A91535E4251D391F491F151D251D60000
|
| 421 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 422 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 423 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 424 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 425 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 426 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 427 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 428 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 429 |
+
3A
|
| 430 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 431 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 432 |
+
0000527391F9527091EB91F791E853A853A653C5559755DE966D966B559655B4
|
| 433 |
+
96BF55859804559B55A0509B555950945586508B50A355AF557A508E509D5068
|
| 434 |
+
559E509255A9570F570E581A5312581F53A4583C5818583E582655AD583A5645
|
| 435 |
+
5822559358FB5963596455815AA85AA35A825A885AA15A855A9855955A99558E
|
| 436 |
+
5A895A815A965A80581E58275A91582857F5584858255ACF581B5833583F5836
|
| 437 |
+
582E58395A875AA0582C5A7959615A865AAB5AAA5AA45A8D5A7E5A785BD50000
|
| 438 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 439 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 440 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 441 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 442 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 443 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 444 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 445 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 446 |
+
3B
|
| 447 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 448 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 449 |
+
00005A7C5AA55AAC5C1E5C5F5C5E5D445D3E5A975D485D1C5AA95D5B5D4D5A8C
|
| 450 |
+
5A9C5D575A935D535D4F5BCD5D3B5D465BD15BCA5E465E475C305E485EC05EBD
|
| 451 |
+
5EBF5D4B5F115D355F3E5F3B5D555F3A5D3A5D525D3D5FA75D5960EA5D396107
|
| 452 |
+
6122610C5D325D3660B360D660D25E4160E360E560E95FAB60C9611160FD60E2
|
| 453 |
+
60CE611E61206121621E611663E263DE63E660F860FC60FE60C163F8611863FE
|
| 454 |
+
63C163BF63F763D1655F6560656163B063CE65D163E863EF667D666B667F0000
|
| 455 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 456 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 457 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 458 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 459 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 460 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 461 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 462 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 463 |
+
3C
|
| 464 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 465 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 466 |
+
000063CA63E066736681666D6669646163DF671E68ED63DC63C463D863D36903
|
| 467 |
+
63C768FE68E5691E690263D763D9690968CA690065646901691868E268CF659D
|
| 468 |
+
692E68C568FF65D2691C68C3667B6B6F66716B6E666A6BBE67016BF46C2D6904
|
| 469 |
+
6DB66E756E1E68EA6E18690F6E4868F76E4F68E46E426E6A6E706DFE68E16907
|
| 470 |
+
6E6D69086E7B6E7E6E5968EF6E5769146E806E5068FD6E296E766E2A6E4C712A
|
| 471 |
+
68CE7135712C7137711D68F468D1713868D47134712B7133712771246B3B0000
|
| 472 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 473 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 474 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 475 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 476 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 477 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 478 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 479 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 480 |
+
3D
|
| 481 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 482 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 483 |
+
0000712D7232728372827287730673247338732A732C732B6DFC732F73287417
|
| 484 |
+
6E496E88741974386E45741F7414743C73F7741C74157418743974F975246E51
|
| 485 |
+
6E3B6E03756E756D7571758E6E6175E56E286E606E716E6B769476B36E3076D9
|
| 486 |
+
6E657748774977436E776E55774277DF6E66786378766E5A785F786679667971
|
| 487 |
+
712E713179767984797579FF7A0771287A0E7A09724B725A7288728972867285
|
| 488 |
+
7AE77AE27B55733073227B437B577B6C7B427B5373267B417335730C7CA70000
|
| 489 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 490 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 491 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 492 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 493 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 494 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 495 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 496 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 497 |
+
3E
|
| 498 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 499 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 500 |
+
00007CA07CA67CA47D74741A7D59742D7D607D577D6C7D7E7D6474207D5A7D5D
|
| 501 |
+
752F756F756C7D767D4D7D7575E67FD37FD675E475D78060804E8145813B7747
|
| 502 |
+
814881428149814081148141774C81EF81F68203786483ED785C83DA841883D2
|
| 503 |
+
8408787084007868785E786284178346841483D38405841F8402841683CD83E6
|
| 504 |
+
7AE6865D86D586E17B447B487B4C7B4E86EE884788467CA27C9E88BB7CA188BF
|
| 505 |
+
88B47D6388B57D56899A8A437D4F7D6D8A5A7D6B7D527D548A358A388A420000
|
| 506 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 507 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 508 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 509 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 510 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 511 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 512 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 513 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 514 |
+
3F
|
| 515 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 516 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 517 |
+
00008A498A5D8A4B8A3D7F667FA27FA07FA18C608C5E8C7F8C7E8C8380D48CB1
|
| 518 |
+
8D878152814F8D888D83814D813A8D868D8B8D828DCA8DD28204823C8DD48DC9
|
| 519 |
+
8EB0833B83CF83F98EF28EE48EF38EEA83E78EFD83FC8F9D902B902A83C89028
|
| 520 |
+
9029902C840183DD903A90309037903B83CB910A83D683F583C991FE922083DE
|
| 521 |
+
920B84069218922283D5921B920883D1920E9213839A83C3959583EE83C483FB
|
| 522 |
+
968C967B967F968183FE968286E286E686D386E386DA96EE96ED86EB96EC0000
|
| 523 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 524 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 525 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 526 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 527 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 528 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 529 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 530 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 531 |
+
40
|
| 532 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 533 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 534 |
+
0000975F976F86D7976D86D188488856885588BA88D798F088B888C088BE9AA9
|
| 535 |
+
88BC88B79AE04EB7890188C950CC50BC899750AA50B989DB50AB50C350CD517E
|
| 536 |
+
527E52798A588A4452E152E052E7538053AB53AA53A953E055EA8C8055D78CBE
|
| 537 |
+
8CB055C157158D84586C8D89585C58505861586A5869585658605866585F5923
|
| 538 |
+
596659688EEF8EF75ACE8EF95AC55AC38EE58EF55AD08EE88EF68EEB8EF18EEC
|
| 539 |
+
8EF45B745B765BDC5BD75BDA5BDB91045C205D6D5D6690F95D645D6E91000000
|
| 540 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 541 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 542 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 543 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 544 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 545 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 546 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 547 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 548 |
+
41
|
| 549 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 550 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 551 |
+
00005D605F425F5A5F6E9164915F6130613A612A614361196131921A613D920F
|
| 552 |
+
920C92006408643264389206643192276419921C6411921992176429641D957B
|
| 553 |
+
958D958C643C96876446644796899683643A640796C8656B96F16570656D9770
|
| 554 |
+
65E4669398A998EB9CE69EF9668F4E844EB6669250BF668E50AE694650CA50B4
|
| 555 |
+
50C850C250B050C150BA693150CB50C9693E50B8697C694352786973527C6955
|
| 556 |
+
55DB55CC6985694D69506947696769366964696155BF697D6B446B406B710000
|
| 557 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 558 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 559 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 560 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 561 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 562 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 563 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 564 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 565 |
+
42
|
| 566 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 567 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 568 |
+
00006B736B9C55C855F255CD6BC155C26BFA6C316C325864584F6EB86EA8586F
|
| 569 |
+
6E916EBB585D6E9A5865585B6EA9586358716EB56E6C6EE85ACB6EDD6EDA6EE6
|
| 570 |
+
6EAC5AB05ABF5AC86ED96EE36EE96EDB5ACA716F5AB65ACD71485A90714A716B
|
| 571 |
+
5BD9714F715771745D635D4A5D6571457151716D5D6872517250724E5E4F7341
|
| 572 |
+
5E4A732E73465EC574275EC674487453743D5FAF745D74566149741E74477443
|
| 573 |
+
74587449612E744C7445743E61297501751E91686223757A75EE760276970000
|
| 574 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 575 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 576 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 577 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 578 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 579 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 580 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 581 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 582 |
+
43
|
| 583 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 584 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 585 |
+
00007698641064126409775D77647753775878827890788A6439787A787D6423
|
| 586 |
+
788B787864306428788D788878927881797E798364256427640B7980641B642E
|
| 587 |
+
64217A0F656F65927A1D66867AA17AA466907AE97AEA66997B627B6B67207B5E
|
| 588 |
+
695F7B79694E69627B6F7B686945696A7CAE6942695769597CB069487D906935
|
| 589 |
+
7D8A69337D8B7D997D9569787D877D787D977D897D986976695869417FA3694C
|
| 590 |
+
693B694B7FDD8057694F8163816A816C692F697B693C815D81756B43815F0000
|
| 591 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 592 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 593 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 594 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 595 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 596 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 597 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 598 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 599 |
+
44
|
| 600 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 601 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 602 |
+
00006B48817D816D6BFB6BFC8241844F84846E9B847F6EC88448842A847B8472
|
| 603 |
+
8464842E845C84536EC6844184C86EC184628480843E848384716EA6844A8455
|
| 604 |
+
84586EC36EDC6ED886FC86FD87156E8D871686FF6EBF6EB36ED0885888CF88E0
|
| 605 |
+
6EA371477154715289E78A6A8A80715D8A6F8A6571788A788A7D8A8871587143
|
| 606 |
+
8A648A7E715F8A678C638C88714D8CCD724F8CC9728C8DED7290728E733C7342
|
| 607 |
+
733B733A73408EB1734974448F048F9E8FA090439046904890459040904C0000
|
| 608 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 609 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 610 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 611 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 612 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 613 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 614 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 615 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 616 |
+
45
|
| 617 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 618 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 619 |
+
000074427446910C9113911574FF916B9167925D9255923569839259922F923C
|
| 620 |
+
928F925C926A9262925F926B926E923B92449241959A7699959976DD7755775F
|
| 621 |
+
968F77529696775A7769776796F496FC776D9755788797797894788F788497EE
|
| 622 |
+
97F57886980B788398F37899788098F798FF98F5798298EC98F17A117A18999A
|
| 623 |
+
7A129AE29B3D9B5D9CE87A1B9CEB9CEF9CEE9E819F1450D050D950DC50D87B69
|
| 624 |
+
50E150EB7B737B7150F450E250DE7B767B637CB251F47CAF7D887D8652ED0000
|
| 625 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 626 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 627 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 628 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 629 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 630 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 631 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 632 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 633 |
+
46
|
| 634 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 635 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 636 |
+
000052EA7D7F53327D7A53AE53B07D8355FB5603560B7D8456077D9255F87F6B
|
| 637 |
+
5628561E7F6C5618561156515605571758928164588C817758785884587358AD
|
| 638 |
+
58975895587758725896588D59108161596C82495AE782405AE4824584F15AEF
|
| 639 |
+
5626847684795AF05D7B84655D83844084865D8B5D8C844D5D785E5284598474
|
| 640 |
+
5ED05ECF85075FB35FB4843A8434847A617B8478616F6181613C614261386133
|
| 641 |
+
844261606169617D6186622C62288452644C84C56457647C8447843664550000
|
| 642 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 643 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 644 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 645 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 646 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 647 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 648 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 649 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 650 |
+
47
|
| 651 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 652 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 653 |
+
000064626471646A6456643B6481846E644F647E646486F7870C86FA86D686F5
|
| 654 |
+
657186F8870E66A5669A669C870D66A688D666A4698F69C569C8699269B288CC
|
| 655 |
+
88D0898569E369C069D669D1699F69A269D289DC89E68A7669E169D5699D8A3F
|
| 656 |
+
8A7769988A846B746BA18A816EF06EF38C3C8C4B6F1B6F0C6F1D6F346F286F17
|
| 657 |
+
8C856F446F426F046F116EFA6F4A7191718E8D93718B718D717F718C717E717C
|
| 658 |
+
71838DEE71888DE98DE372948DE773557353734F7354746C7465746674610000
|
| 659 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 660 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 661 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 662 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 663 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 664 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 665 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 666 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 667 |
+
48
|
| 668 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 669 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 670 |
+
0000746B746874768F0B7460903F74747506760E91107607910F911176B99114
|
| 671 |
+
76B776E2916E7774777777767775923A777877719265777A715B777B78A678AE
|
| 672 |
+
78B8926C924F926078B178AF923679897987923192547A2992507A2A924E7A2D
|
| 673 |
+
7A2C92567A32959F7AEC7AF07B817B9E7B8396917B9296CE7BA37B9F7B9396F5
|
| 674 |
+
7B867CB87CB79772980F980D980E98AC7DC87DB699AF7DD199B07DA87DAB9AAB
|
| 675 |
+
7DB37DCD9CED7DCF7DA49EFD50E67F417F6F7F7150F350DB50EA50DD50E40000
|
| 676 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 677 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 678 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 679 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 680 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 681 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 682 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 683 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 684 |
+
49
|
| 685 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 686 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 687 |
+
000050D38023805B50EF8061805F818152805281818482135330824A824C5615
|
| 688 |
+
560C561284BD8495561C849284C35602849684A584B584B384A384E484D884D5
|
| 689 |
+
589884B784AD84DA84938736587A58875891873D872B87478739587B8745871D
|
| 690 |
+
58FE88FF88EA5AEE88F55AD5890088ED890388E95AF35AE289EA5ADB8A9B8A8E
|
| 691 |
+
8AA25AD98A9C8A948A908AA98AAC5C638A9F5D805D7D8A9D5D7A8C675D775D8A
|
| 692 |
+
8CD08CD68CD48D988D9A8D975D7F5E585E598E0B8E088E018EB48EB35EDC0000
|
| 693 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 694 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 695 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 696 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 697 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 698 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 699 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 700 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 701 |
+
4A
|
| 702 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 703 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 704 |
+
00008FA18FA25ED2905A5F449061905F5FB6612C9125917B9176917C61739289
|
| 705 |
+
92F692B192AD929292819284617A92AE9290929E616A6161615695A295A7622B
|
| 706 |
+
642B644D645B645D96A0969D969F96D0647D96D1646664A6975964829764645C
|
| 707 |
+
644B64539819645098149815981A646B645964656477990665A098F89901669F
|
| 708 |
+
99BE99BC99B799B699C069C999B869CE699669B099C469BC99BF69999ADA9AE4
|
| 709 |
+
9AE99AE89AEA9AE569BF9B2669BD69A49B4069B969CA699A69CF69B369930000
|
| 710 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 711 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 712 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 713 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 714 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 715 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 716 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 717 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 718 |
+
4B
|
| 719 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 720 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 721 |
+
000069AA9EBD699E69D969976990510E69B550F769C650FC510D510151DA51D9
|
| 722 |
+
51DB5286528E52EE533353B16EF15647562D56546F37564B5652563156445656
|
| 723 |
+
5650562B6F18564D5637564F58A258B76F7358B26EEE58AA58B558B06F3C58B4
|
| 724 |
+
58A458A76F0E59265AFE6EFD5B046F395AFC6EFC5B065B0A5AFA5B0D5B005B0E
|
| 725 |
+
7187719071895D9171855D8F5D905D985DA45D9B5DA35D965DE45E5A72957293
|
| 726 |
+
5E5E734D5FB86157615C61A661956188747261A3618F75006164750361590000
|
| 727 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 728 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 729 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 730 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 731 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 732 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 733 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 734 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 735 |
+
4C
|
| 736 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 737 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 738 |
+
00006178761661856187619E7611760A6198619C7781777C622F6480649B648E
|
| 739 |
+
648D649464C678B264A8648378AD64B9648664B464AF649178A064AA64A164A7
|
| 740 |
+
66B666B3798B66BC66AC799466AD6A0E79886A1C6A1A7A2B7A4A6A0B7A2F69EF
|
| 741 |
+
6A0C69F06A227AAC69D87B886A1269FA7B916A2A7B966A107B8C7B9B6A2969F9
|
| 742 |
+
69EA6A2C6A247BA469E96B526B4F6B537CBA7DA76F106F656F757DAA7DC17DC0
|
| 743 |
+
7DC56FD07DCE6F5C6F3D6F717DCC6F916F0B6F796F816F8F7DA66F596F740000
|
| 744 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 745 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 746 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 747 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 748 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 749 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 750 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 751 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 752 |
+
4D
|
| 753 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 754 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 755 |
+
00007DA171AE7F7371A371AD7FE57FDE71AB71A671A2818952F2725772557299
|
| 756 |
+
734B747A8215849784A4748C748484BA84CE74827493747B84AB750984B484C1
|
| 757 |
+
84CD84AA849A84B1778A849D779084BB78C678D378C078D278C778C284AF799F
|
| 758 |
+
799D799E84B67A4184A07A387A3A7A4284DB84B07A3E7AB07BAE7BB38728876B
|
| 759 |
+
7BBF872E871E7BCD87197BB28743872C8741873E8746872087327CC47CCD7CC2
|
| 760 |
+
7CC67CC37CC97CC787427DF887277DED7DE2871A873087117DDC7E027E010000
|
| 761 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 762 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 763 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 764 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 765 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 766 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 767 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 768 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 769 |
+
4E
|
| 770 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 771 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 772 |
+
000088F27DD688FE7DE47DFE88F67E007DFC7DFD88EB7DF57DFF899F7DEB7DE5
|
| 773 |
+
7F787FAE7FE78A998065806A80668068806B819481A18192819681938D968E09
|
| 774 |
+
85018DFF84F88DFD84F58E0385048E068E058DFE8E00851B85038533853484ED
|
| 775 |
+
9123911C853591228505911D911A91249121877D917A91729179877192A5885C
|
| 776 |
+
88E6890F891B92A089A989A589EE8AB1929A8ACC8ACE92978AB792A38AB58AE9
|
| 777 |
+
8AB492958AB38AC18AAF8ACA8AD09286928C92998C8E927E92878CE98CDB0000
|
| 778 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 779 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 780 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 781 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 782 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 783 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 784 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 785 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 786 |
+
4F
|
| 787 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 788 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 789 |
+
0000928B8CEB8DA496A18DA28D9D977D977A977E97838E2A8E28977B97848EB8
|
| 790 |
+
8EB68EB98EB78F228F2B8F278F198FA499078FB3999C9071906A99BB99BA9188
|
| 791 |
+
918C92BF92B892BE92DC92E59B3F9B6092D492D69CF192DA92ED92F392DB5103
|
| 792 |
+
92B992E292EB95AF50F695B295B3510C50FD510A96A396A552F152EF56485642
|
| 793 |
+
970A563597879789978C97EF982A98225640981F563D9919563E99CA99DA563A
|
| 794 |
+
571A58AB99DE99C899E058A39AB69AB558A59AF458FF9B6B9B699B729B630000
|
| 795 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 796 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 797 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 798 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 799 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 800 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 801 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 802 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 803 |
+
50
|
| 804 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 805 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 806 |
+
00005AF69D0D5AF89D019D0C5B019CF85B055B0F9CFE9D029E845D9F9EAB9EAA
|
| 807 |
+
511D51165DA0512B511E511B5290529453145E605E5C56675EDB567B5EE1565F
|
| 808 |
+
5661618B6183617961B161B061A2618958C358CA58BB58C058C459015B1F5B18
|
| 809 |
+
5B115B1561B35B125B1C64705B225B795DA664975DB35DAB5EEA648A5F5B64A3
|
| 810 |
+
649F61B761CE61B961BD61CF61C06199619765B361BB61D061C4623166B764D3
|
| 811 |
+
64C06A006A066A1769E564DC64D164C869E464D566C369EC69E266BF66C50000
|
| 812 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 813 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 814 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 815 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 816 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 817 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 818 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 819 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 820 |
+
51
|
| 821 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 822 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 823 |
+
000069FE66CD66C167066A1467246A636A426A5269E66A436A3369FC6A6C6A57
|
| 824 |
+
6A046A4C6A6E6A0F69F66A266A0769F46A376B516A716A4A6A366BA66A536C00
|
| 825 |
+
6A456A706F416F266A5C6B586B576F926F8D6F896F8C6F626F4F6FBB6F5A6F96
|
| 826 |
+
6FBE6F6C6F826F556FB56FD36F9F6F576FB76FF571B76F0071BB6F6B71D16F67
|
| 827 |
+
71BA6F5371B671CC6F7F6F9571D3749B6F6A6F7B749674A2749D750A750E719A
|
| 828 |
+
7581762C76377636763B71A476A171AA719C779871B37796729A735873520000
|
| 829 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 830 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 831 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 832 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 833 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 834 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 835 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 836 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 837 |
+
52
|
| 838 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 839 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 840 |
+
000078D678EB736078DC735B79A579A998347A537A4574897A4F74867ABD7ABB
|
| 841 |
+
7AF17488747C7BEC7BED7507757E7CD3761E7CE1761D7E197623761A76287E27
|
| 842 |
+
7E26769D769E806E81AF778F778981AD78CD81AA821878CC78D178CE78D4856F
|
| 843 |
+
854C78C48542799A855C8570855F79A2855A854B853F878A7AB4878B87A1878E
|
| 844 |
+
7BBE7BAC8799885E885F892489A78AEA8AFD8AF98AE38AE57DDB7DEA8AEC7DD7
|
| 845 |
+
7DE17E037DFA8CF27DF68CEF7DF08DA67DDF7F767FAC8E3B8E437FED8E320000
|
| 846 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 847 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 848 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 849 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 850 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 851 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 852 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 853 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 854 |
+
53
|
| 855 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 856 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 857 |
+
00008F318F307FE68F2D8F3C8FA78FA5819F819E819591379195918E82169196
|
| 858 |
+
82539345930A824E825192FD9317931C930793319332932C9330930393058527
|
| 859 |
+
95C284FB95B884FA95C1850C84F4852A96AB96B784F784EB97159714851284EA
|
| 860 |
+
970C971784FE9793851D97D2850284FD983698319833983C982E983A84F0983D
|
| 861 |
+
84F998B5992299239920991C991D866299A0876399EF99E899EB877387588754
|
| 862 |
+
99E199E68761875A9AF89AF5876D876A9B839B949B84875D9B8B9B8F877A0000
|
| 863 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 864 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 865 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 866 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 867 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 868 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 869 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 870 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 871 |
+
54
|
| 872 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 873 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 874 |
+
00009B8C875C9B89874F9B8E8775876287679D249D0F89059D139D0A890B8917
|
| 875 |
+
891889199D2A9D1A89119D279D169D2189A49E859EAC9EC69EC59ED79F538AB8
|
| 876 |
+
5128512751DF8AD5533553B38ABE568A567D56898AC358CD58D08AD95B2B5B33
|
| 877 |
+
5B295B355B315B375C365DBE8CDD5DB98DA05DBB8DA161E261DB61DD61DC61DA
|
| 878 |
+
8E2E61D98E1B8E1664DF8E198E2664E18E1464EE8E1865B566D466D58E1A66D0
|
| 879 |
+
66D166CE66D78F208F236A7D6A8A90736AA7906F6A996A826A88912B91290000
|
| 880 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 881 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 882 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 883 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 884 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 885 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 886 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 887 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 888 |
+
55
|
| 889 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 890 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 891 |
+
00006A8691326A986A9D918591866A8F91816AAA91846B5D92D06C0A92C46FD7
|
| 892 |
+
6FD66FE592CF92F192DF6FD96FDA6FEA92DD6FF692EF92C271E392CA71E992CE
|
| 893 |
+
71EB71EF71F371EA92E092DE92E792D192D3737192E174AE92C674B3957C74AC
|
| 894 |
+
95AB95AE75837645764E764476A376A577A677A4978A77A977AF97D097CF981E
|
| 895 |
+
78F078F878F198287A49981B982798B27AC27AF27AF37BFA99167BF67BFC7C18
|
| 896 |
+
7C087C1299D399D47CDB7CDA99D699D899CB7E2C7E4D9AB39AEC7F467FF60000
|
| 897 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 898 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 899 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 900 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 901 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 902 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 903 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 904 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 905 |
+
56
|
| 906 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 907 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 908 |
+
0000802B807481B881C89B679B749B71859285939B75857F85AB85979B6C9CFC
|
| 909 |
+
85AC9CFD9CFF9CF787CE9D0087CD9CFB9D0887C187B187C79ED389409F10893F
|
| 910 |
+
893951178943511151DE533489AB56708B1F8B098B0C566656638C4056728C96
|
| 911 |
+
56778CF68CF758C88E468E4F58BF58BA58C28F3D8F4193669378935D93699374
|
| 912 |
+
937D936E93729373936293489353935F93685DB1937F936B5DB595C45DAE96AF
|
| 913 |
+
96AD96B25DAD5DAF971A971B5E685E665E6F5EE9979B979F5EE85EE55F4B0000
|
| 914 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 915 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 916 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 917 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 918 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 919 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 920 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 921 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 922 |
+
57
|
| 923 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 924 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 925 |
+
00005FBC5FBB619D61A86196984061B4984761C198B761BA61BF61B8618C64D7
|
| 926 |
+
99A264D064CF9A0099F3648964C399F564F364D99ABD9B009B0265A29B349B49
|
| 927 |
+
9B9F66CA9BA39BCD9B999B9D66BA66CC9D396A349D446A496A679D356A686A3E
|
| 928 |
+
9EAF6A6D512F6A5B6A519F8E6A5A569F569B569E5696569456A06A4F5B3B6A6F
|
| 929 |
+
6A695B3A5DC15F4D5F5D61F36A4D6A4E6A466B5564F664E564EA64E765056BC8
|
| 930 |
+
64F96C046C036C066AAB6AED6AB26AB06AB56ABE6AC16AC86FC46AC06ABC0000
|
| 931 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 932 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 933 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 934 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 935 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 936 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 937 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 938 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 939 |
+
58
|
| 940 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 941 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 942 |
+
00006AB16AC46ABF6FA56FAE700870036FFD7010700270136FA271FA720074B9
|
| 943 |
+
74BC6FB2765B7651764F76EB77B871D677B977C177C077BE790B71C77907790A
|
| 944 |
+
790871BC790D7906791579AF729E736973667AF5736C73657C2E736A7C1B749A
|
| 945 |
+
7C1A7C24749274957CE67CE37580762F7E5D7E4F7E667E5B7F477FB476327630
|
| 946 |
+
76BB7FFA802E779D77A181CE779B77A282197795779985CC85B278E985BB85C1
|
| 947 |
+
78DE78E378DB87E987EE87F087D6880E87DA8948894A894E894D89B189B00000
|
| 948 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 949 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 950 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 951 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 952 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 953 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 954 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 955 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 956 |
+
59
|
| 957 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 958 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 959 |
+
000089B37AB78B388B327BE78B2D7BD58B347BDA8B298C747BD47BEA8D037BDC
|
| 960 |
+
7BEB8DA98E587CD27CD48EBF8EC18F4A8FAC7E219089913D913C91A993A07E0E
|
| 961 |
+
93907E159393938B93AD93BB93B87E0D7E14939C95D895D77F7B7F7C7F7A975D
|
| 962 |
+
97A997DA8029806C81B181A6985481B99855984B81B0983F98B981B281B781A7
|
| 963 |
+
81F29938993699408556993B993999A4855385619A089A0C85469A1085419B07
|
| 964 |
+
85449BD285479BC29BBB9BCC9BCB854E856E9D4D9D639D4E85609D509D550000
|
| 965 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 966 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 967 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 968 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 969 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 970 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 971 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 972 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 973 |
+
5A
|
| 974 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 975 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 976 |
+
0000855D9D5E85659E909EB29EB186649ECA9F029F279F26879356AF58E058DC
|
| 977 |
+
87965B39877987875B7C5BF3879087915C6B5DC4650B6508650A8789891E65DC
|
| 978 |
+
8930892D66E166DF6ACE6AD46AE36AD76AE2892C891F89F18AE06AD86AD56AD2
|
| 979 |
+
8AF58ADD701E702C70256FF37204720872158AE874C474C974C774C876A977C6
|
| 980 |
+
77C57918791A79208CF37A667A647A6A8DA78E338E3E8E388E408E457C357C34
|
| 981 |
+
8E3D8E417E6C8E3F7E6E7E718F2E81D481D6821A82628265827685DB85D60000
|
| 982 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 983 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 984 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 985 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 986 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 987 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 988 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 989 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 990 |
+
5B
|
| 991 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 992 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 993 |
+
0000908685E79133913585F4919387FD87D58807918F880F87F89308931F8987
|
| 994 |
+
930F89B589F5933C8B3F8B438B4C93018D0B8E6B8E688E708E758E7792FA8EC3
|
| 995 |
+
92F993E993EA93CB93C593C6932993ED93D3932A93E5930C930B93DB93EB93E0
|
| 996 |
+
93C1931695BC95DD95BE95B995BA95B695BF95B595BD96A996D497B297B497B1
|
| 997 |
+
97B597F2979497F097F89856982F98329924994499279A269A1F9A189A219A17
|
| 998 |
+
99E49B0999E399EA9BC59BDF9AB99BE39AB49BE99BEE9AFA9AF99D669D7A0000
|
| 999 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1000 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1001 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1002 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1003 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1004 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1005 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1006 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1007 |
+
5C
|
| 1008 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1009 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1010 |
+
00009B809D6E9D919D839D769D7E9D6D9B939E959EE39B7A9B959F039F049D25
|
| 1011 |
+
9F179D2051369D1453369D1D5B429D229D105B445B465B7E5DCA5DC85DCC5EF0
|
| 1012 |
+
9ED5658566E566E79F3D512651256AF451246AE9512952F45693568C568D703D
|
| 1013 |
+
56847036567E7216567F7212720F72177211720B5B2D5B2574CD74D074CC74CE
|
| 1014 |
+
74D15B2F75895B7B7A6F7C4B7C445E6C5E6A5FBE61C361B57E7F8B7161E0802F
|
| 1015 |
+
807A807B807C64EF64E964E385FC861086026581658085EE860366D2860D0000
|
| 1016 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1017 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1018 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1019 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1020 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1021 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1022 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1023 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1024 |
+
5D
|
| 1025 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1026 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1027 |
+
000086138608860F881888126A9B6AA18967896589BB8B698B626A838B6E6AA4
|
| 1028 |
+
8B616A7F8B648B4D8C516A8C6A928E838EC66C09941F6FA99404941794089405
|
| 1029 |
+
6FED93F3941E9402941A941B9427941C71E196B571E871F2973371F097349731
|
| 1030 |
+
97B897BA749797FC74AB749098C374AD994D74A59A2F7510751175129AC97584
|
| 1031 |
+
9AC89AC49B2A9B389B5076E99C0A9BFB9C049BFC9BFE77B477B177A89C029BF6
|
| 1032 |
+
9C1B9BF99C159C109BFF9C009C0C78F978FE9D959DA579A87A5C7A5B7A560000
|
| 1033 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1034 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1035 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1036 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1037 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1038 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1039 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1040 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1041 |
+
5E
|
| 1042 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1043 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1044 |
+
00009E989EC17A5A9F5A516456BB7C0558E65B495BF77BFF7BFB5DD07BF45FC2
|
| 1045 |
+
7BF365117C096AFF6AFE6AFD7BFD6B017BF07BF1704B704D704774D376687667
|
| 1046 |
+
7E33984877D179307932792E7E479F9D7AC97AC87E3B7C567C517E3A7F457F7F
|
| 1047 |
+
7E857E897E8E7E84802C826A862B862F862881C586168615861D881A825A825C
|
| 1048 |
+
858389BC8B758B7C85958D118D128F5C91BB85A493F4859E8577942D858985A1
|
| 1049 |
+
96E497379736976797BE97BD97E29868986698C898CA98C798DC8585994F0000
|
| 1050 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1051 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1052 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1053 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1054 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1055 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1056 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1057 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1058 |
+
5F
|
| 1059 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1060 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1061 |
+
000099A99A3C85909A3B9ACE87BE9B149B5387C59C2E87AC9C1F87B587BC87AE
|
| 1062 |
+
87C99DB09DBD87CC87B79DAE9DC49E7B87B487B69E9E87B89F0587DE9F699FA1
|
| 1063 |
+
56C7571D5B4A5DD389525F72620289AD62356527651E651F8B1E8B186B076B06
|
| 1064 |
+
8B058B0B7054721C72207AF88B077C5D7C588B067E927F4E8B1A8C4F8C708827
|
| 1065 |
+
8C718B818B838C948C448D6F8E4E8E4D8E539442944D9454944E8F409443907E
|
| 1066 |
+
9138973C974097C09199919F91A1919D995A9A5193839ADD936493569C380000
|
| 1067 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1068 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1069 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1070 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1071 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1072 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1073 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1074 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1075 |
+
60
|
| 1076 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1077 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1078 |
+
0000937C9C459C3A93769C359350935193609EF1938F9F93529A937993578641
|
| 1079 |
+
5DD7934F65289377937B936170537059936772219359766F793779B57C627C5E
|
| 1080 |
+
7CF596AE96B0863D9720882D89898B8D8B878B908D1A8E99979E979D97D5945F
|
| 1081 |
+
97F1984194569461945B945A945C9465992B9741992A9933986E986C986D9931
|
| 1082 |
+
99AA9A5C9A589ADE9A029C4F9C5199F79C5399F899F699FB9DFC9F3999FC513E
|
| 1083 |
+
9ABE56D29AFD5B4F6B149B487A727A739B9E9B9B9BA68B919BA59BA491BF0000
|
| 1084 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1085 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1086 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1087 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1088 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1089 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1090 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1091 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1092 |
+
61
|
| 1093 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1094 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1095 |
+
00009BA2946C9BAF9D3396E697459D3697C897E4995D9D389B219D459B2C9B57
|
| 1096 |
+
9D3E9D379C5D9C619C659E089E8A9E899E8D9EB09EC89F459EFB9EFF620566EF
|
| 1097 |
+
6B1B6B1D722572247C6D512E8642864956978978898A8B9759708C9B8D1C5C6A
|
| 1098 |
+
8EA25E6D5E6E61D861DF61ED61EE61F161EA9C6C61EB9C6F61E99E0E65049F08
|
| 1099 |
+
9F1D9FA3650364FC5F606B1C66DA66DB66D87CF36AB98B9B8EA791C46ABA947A
|
| 1100 |
+
6AB76AC79A619A639AD79C766C0B9FA5700C7067700172AB864A897D8B9D0000
|
| 1101 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1102 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1103 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1104 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1105 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1106 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1107 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1108 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1109 |
+
62
|
| 1110 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1111 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1112 |
+
00008C538F65947B6FFC98CD98DD72019B309E16720371FD737674B874C096E7
|
| 1113 |
+
9E189EA274B69F7C74C27E9E9484765C9E1C76597C7197CA7657765A76A69EA3
|
| 1114 |
+
76EC9C7B9F97790C7913975079097910791257275C1379AC7A5F7C1C7C297C19
|
| 1115 |
+
7C205FC87C2D7C1D7C267C287C2267657C307E5C52BD7E565B667E5865F96788
|
| 1116 |
+
6CE66CCB7E574FBD5F8D7FB36018604880756B2970A681D07706825E85B485C6
|
| 1117 |
+
5A105CFC5CFE85B385B585BD85C785C485BF70C985CE85C885C585B185B60000
|
| 1118 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1119 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1120 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1121 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1122 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1123 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1124 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1125 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1126 |
+
63
|
| 1127 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1128 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1129 |
+
000085D28624957985B796BA866987E787E687E287DB87EB87EA7B29812887F3
|
| 1130 |
+
8A2E87D487DC87D39AD987D8582B584587D963FA87F487E887DD6E86894B894F
|
| 1131 |
+
894C89468950586789495BDD656E8B238B338B308C878B4750D250DF8B3E8B31
|
| 1132 |
+
8B258B3769BA8B366B9D8B2480598B3D8B3A8C428C758C998C988C978CFE8D04
|
| 1133 |
+
8D028D008E5C6F8A8E608E577BC37BC28E658E678E5B8E5A90F68E5D98238E54
|
| 1134 |
+
8F468F478F488F4B71CD7499913B913E91A891A591A7984291AA93B5938C0000
|
| 1135 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1136 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1137 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1138 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1139 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1140 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1141 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1142 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1143 |
+
64
|
| 1144 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1145 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1146 |
+
000093927F84939B939D938993A7938E8D0E939E9861939593888B73939F9C27
|
| 1147 |
+
938D945877D69B2D93A493A893B493A395D295D395D196B396D796DA5DC296DF
|
| 1148 |
+
96D896DD97239722972597AC97AE97A84F664F684FE7503F97A550A6510F523E
|
| 1149 |
+
53245365539B517F54CB55735571556B55F456225620569256BA569156B05759
|
| 1150 |
+
578A580F581258135847589B5900594D5AD15AD35B675C575C775CD55D755D8E
|
| 1151 |
+
5DA55DB65DBF5E655ECD5EED5F945F9A5FBA6125615062A36360636463B60000
|
| 1152 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1153 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1154 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1155 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1156 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1157 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1158 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1159 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1160 |
+
65
|
| 1161 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1162 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1163 |
+
0000640364B6651A7A255C2166E2670267A467AC68106806685E685A692C6929
|
| 1164 |
+
6A2D6A776A7A6ACA6AE66AF56B0D6B0E6BDC6BDD6BF66C1E6C636DA56E0F6E8A
|
| 1165 |
+
6E846E8B6E7C6F4C6F486F496F9D6F996FF8702E702D705C79CC70BF70EA70E5
|
| 1166 |
+
71117112713F7139713B713D71777175717671717196719371B471DD71DE720E
|
| 1167 |
+
591172187347734873EF7412743B74A4748D74B47673767776BC7819781B783D
|
| 1168 |
+
78537854785878B778D878EE7922794D7986799979A379BC7AA77B377B590000
|
| 1169 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1170 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1171 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1172 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1173 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1174 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1175 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1176 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1177 |
+
66
|
| 1178 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1179 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1180 |
+
00007BD07C2F7C327C427C4E7C687CA97CED7DD07E077DD37E647F40791E8041
|
| 1181 |
+
806380BB6711672582488310836283128421841E84E284DE84E1857385D485F5
|
| 1182 |
+
863786458672874A87A987A587F5883488508887895489848B038C528CD88D0C
|
| 1183 |
+
8D188DB08EBC8ED58FAA909C85E8915C922B9221927392F492F5933F93429386
|
| 1184 |
+
93BE93BC93BD93F193F293EF94229423942494679466959795CE95E7973B974D
|
| 1185 |
+
98E499429B1D9B9889629D4964495E715E8561D3990E8002781E898889B70000
|
| 1186 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1187 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1188 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1189 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1190 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1191 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1192 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1193 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1194 |
+
67
|
| 1195 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1196 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1197 |
+
00005528557255BA55F055EE56B856B956C4805392B08B558B518B428B528B57
|
| 1198 |
+
8C438C778C768C9A8D068D078D098DAC8DAA8DAD8DAB8E6D8E788E738E6A8E6F
|
| 1199 |
+
8E7B8EC28F528F518F4F8F508F538FB49140913F91B091AD93DE93C793CF93C2
|
| 1200 |
+
93DA93D093F993EC93CC93D993A993E693CA93D493EE93E393D593C493CE93C0
|
| 1201 |
+
93D293A593E7957D95DA95DB96E19729972B972C9728972697B397B797B697DD
|
| 1202 |
+
97DE97DF985C9859985D985798BF98BD98BB98BE99489947994399A699A70000
|
| 1203 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1204 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1205 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1206 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1207 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1208 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1209 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1210 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1211 |
+
68
|
| 1212 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1213 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1214 |
+
00009A1A9A159A259A1D9A249A1B9A229A209A279A239A1E9A1C9A149AC29B0B
|
| 1215 |
+
9B0A9B0E9B0C9B379BEA9BEB9BE09BDE9BE49BE69BE29BF09BD49BD79BEC9BDC
|
| 1216 |
+
9BD99BE59BD59BE19BDA9D779D819D8A9D849D889D719D809D789D869D8B9D8C
|
| 1217 |
+
9D7D9D6B9D749D759D709D699D859D739D7B9D829D6F9D799D7F9D879D689E94
|
| 1218 |
+
9E919EC09EFC9F2D9F409F419F4D9F569F579F58533756B256B556B358E35B45
|
| 1219 |
+
5DC65DC75EEE5EEF5FC05FC161F9651765166515651365DF66E866E366E40000
|
| 1220 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1221 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1222 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1223 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1224 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1225 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1226 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1227 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1228 |
+
69
|
| 1229 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1230 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1231 |
+
00006AF36AF06AEA6AE86AF96AF16AEE6AEF703C7035702F7037703470317042
|
| 1232 |
+
7038703F703A7039702A7040703B703370417213721472A8737D737C74BA76AB
|
| 1233 |
+
76AA76BE76ED77CC77CE77CF77CD77F279257923792779287924792979B27A6E
|
| 1234 |
+
7A6C7A6D7AF77C497C487C4A7C477C457CEE7E7B7E7E7E817E807FBA7FFF8079
|
| 1235 |
+
81DB81D982688269862285FF860185FE861B860085F6860486098605860C85FD
|
| 1236 |
+
8819881088118817881388168963896689B989F78B608B6A8B5D8B688B630000
|
| 1237 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1238 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1239 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1240 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1241 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1242 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1243 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1244 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1245 |
+
6A
|
| 1246 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1247 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1248 |
+
00008B658B678B6D8DAE8E868E888E848F598F568F578F558F588F5A908D9143
|
| 1249 |
+
914191B791B591B291B3940B941393FB9420940F941493FE9415941094289419
|
| 1250 |
+
940D93F5940093F79407940E9416941293FA940993F8943C940A93FF93FC940C
|
| 1251 |
+
93F69411940695DE95E095DF972E972F97B997BB97FD97FE986098629863985F
|
| 1252 |
+
98C198C29950994E9959994C994B99539A329A349A319A2C9A2A9A369A299A2E
|
| 1253 |
+
9A389A2D9AC79ACA9AC69B109B129B119C0B9C089BF79C059C129BF89C400000
|
| 1254 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1255 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1256 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1257 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1258 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1259 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1260 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1261 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1262 |
+
6B
|
| 1263 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1264 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1265 |
+
00009C079C0E9C069C179C149C099D9F9D999DA49D9D9D929D989D909D9B9DA0
|
| 1266 |
+
9D949D9C9DAA9D979DA19D9A9DA29DA89D9E9DA39DBF9DA99D969DA69DA79E99
|
| 1267 |
+
9E9B9E9A9EE59EE49EE79EE69F309F2E9F5B9F609F5E9F5D9F599F91513A5139
|
| 1268 |
+
5298529756C356BD56BE5B485B475DCB5DCF5EF161FD651B6B026AFC6B036AF8
|
| 1269 |
+
6B0070437044704A7048704970457046721D721A7219737E7517766A77D0792D
|
| 1270 |
+
7931792F7C547C537CF27E8A7E877E887E8B7E867E8D7F4D7FBB803081DD0000
|
| 1271 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1272 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1273 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1274 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1275 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1276 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1277 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1278 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1279 |
+
6C
|
| 1280 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1281 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1282 |
+
00008618862A8626861F8623861C86198627862E862186208629861E86258829
|
| 1283 |
+
881D881B88208824881C882B884A896D8969896E896B89FA8B798B788B458B7A
|
| 1284 |
+
8B7B8D108D148DAF8E8E8E8C8F5E8F5B8F5D91469144914591B9943F943B9436
|
| 1285 |
+
9429943D94309439942A9437942C9440943195E595E495E39735973A97BF97E1
|
| 1286 |
+
986498C998C698C0995899569A399A3D9A469A449A429A419A3A9A3F9ACD9B15
|
| 1287 |
+
9B179B189B169B3A9B529C2B9C1D9C1C9C2C9C239C289C299C249C219DB70000
|
| 1288 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1289 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1290 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1291 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1292 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1293 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1294 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1295 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1296 |
+
6D
|
| 1297 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1298 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1299 |
+
00009DB69DBC9DC19DC79DCA9DCF9DBE9DC59DC39DBB9DB59DCE9DB99DBA9DAC
|
| 1300 |
+
9DC89DB19DAD9DCC9DB39DCD9DB29E7A9E9C9EEB9EEE9EED9F1B9F189F1A9F31
|
| 1301 |
+
9F4E9F659F649F924EB956C656C556CB59715B4B5B4C5DD55DD15EF265216520
|
| 1302 |
+
652665226B0B6B086B096C0D7055705670577052721E721F72A9737F74D874D5
|
| 1303 |
+
74D974D7766D76AD793579B47A707A717C577C5C7C597C5B7C5A7CF47CF17E91
|
| 1304 |
+
7F4F7F8781DE826B863486358633862C86328636882C88288826882A88250000
|
| 1305 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1306 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1307 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1308 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1309 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1310 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1311 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1312 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1313 |
+
6E
|
| 1314 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1315 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1316 |
+
0000897189BF89BE89FB8B7E8B848B828B868B858B7F8D158E958E948E9A8E92
|
| 1317 |
+
8E908E968E978F608F629147944C9450944A944B944F94479445944894499446
|
| 1318 |
+
973F97E3986A986998CB9954995B9A4E9A539A549A4C9A4F9A489A4A9A499A52
|
| 1319 |
+
9A509AD09B199B2B9B3B9B569B559C469C489C3F9C449C399C339C419C3C9C37
|
| 1320 |
+
9C349C329C3D9C369DDB9DD29DDE9DDA9DCB9DD09DDC9DD19DDF9DE99DD99DD8
|
| 1321 |
+
9DD69DF59DD59DDD9EB69EF09F359F339F329F429F6B9F959FA2513D52990000
|
| 1322 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1323 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1324 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1325 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1326 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1327 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1328 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1329 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1330 |
+
6F
|
| 1331 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1332 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1333 |
+
000058E858E759725B4D5DD8882F5F4F62016203620465296525659666EB6B11
|
| 1334 |
+
6B126B0F6BCA705B705A7222738273817383767077D47C677C667E95826C863A
|
| 1335 |
+
86408639863C8631863B863E88308832882E883389768974897389FE8B8C8B8E
|
| 1336 |
+
8B8B8B888C458D198E988F648F6391BC94629455945D9457945E97C497C59800
|
| 1337 |
+
9A569A599B1E9B1F9B209C529C589C509C4A9C4D9C4B9C559C599C4C9C4E9DFB
|
| 1338 |
+
9DF79DEF9DE39DEB9DF89DE49DF69DE19DEE9DE69DF29DF09DE29DEC9DF40000
|
| 1339 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1340 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1341 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1342 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1343 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1344 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1345 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1346 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1347 |
+
70
|
| 1348 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1349 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1350 |
+
00009DF39DE89DED9EC29ED09EF29EF39F069F1C9F389F379F369F439F4F9F71
|
| 1351 |
+
9F709F6E9F6F56D356CD5B4E5C6D652D66ED66EE6B13705F7061705D70607223
|
| 1352 |
+
74DB74E577D5793879B779B67C6A7E977F89826D8643883888378835884B8B94
|
| 1353 |
+
8B958E9E8E9F8EA08E9D91BE91BD91C2946B9468946996E597469743974797C7
|
| 1354 |
+
97E59A5E9AD59B599C639C679C669C629C5E9C609E029DFE9E079E039E069E05
|
| 1355 |
+
9E009E019E099DFF9DFD9E049EA09F1E9F469F749F759F7656D4652E65B80000
|
| 1356 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1357 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1358 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1359 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1360 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1361 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1362 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1363 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1364 |
+
71
|
| 1365 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1366 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1367 |
+
00006B186B196B176B1A7062722672AA77D877D979397C697C6B7CF67E9A7E98
|
| 1368 |
+
7E9B7E9981E081E18646864786488979897A897C897B89FF8B988B998EA58EA4
|
| 1369 |
+
8EA3946E946D946F9471947397499872995F9C689C6E9C6D9E0B9E0D9E109E0F
|
| 1370 |
+
9E129E119EA19EF59F099F479F789F7B9F7A9F79571E70667C6F883C8DB28EA6
|
| 1371 |
+
91C394749478947694759A609B2E9C749C739C719C759E149E139EF69F0A9FA4
|
| 1372 |
+
706870657CF7866A883E883D883F8B9E8C9C8EA98EC9974B9873987498CC0000
|
| 1373 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1374 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1375 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1376 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1377 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1378 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1379 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1380 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1381 |
+
72
|
| 1382 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1383 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1384 |
+
0000996199AB9A649A669A679B249E159E179F4862076B1E7227864C8EA89482
|
| 1385 |
+
948094819A699A689E19864B8B9F94839C799EB776759A6B9C7A9E1D7069706A
|
| 1386 |
+
72299EA49F7E9F499F988AF68AFC8C6B8C6D8C938CF48E448E318E348E428E39
|
| 1387 |
+
8E358F3B8F2F8F388F338FA88FA69075907490789072907C907A913491929320
|
| 1388 |
+
933692F89333932F932292FC932B9304931A9310932693219315932E931995BB
|
| 1389 |
+
96A796A896AA96D5970E97119716970D9713970F975B975C9766979898300000
|
| 1390 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1391 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1392 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1393 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1394 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1395 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1396 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1397 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1398 |
+
73
|
| 1399 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1400 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1401 |
+
00009838983B9837982D9839982499109928991E991B9921991A99ED99E299F1
|
| 1402 |
+
9AB89ABC9AFB9AED9B289B919D159D239D269D289D129D1B9ED89ED49F8D9F9C
|
| 1403 |
+
512A511F5121513252F5568E5680569056855687568F58D558D358D158CE5B30
|
| 1404 |
+
5B2A5B245B7A5C375C685DBC5DBA5DBD5DB85E6B5F4C5FBD61C961C261C761E6
|
| 1405 |
+
61CB6232623464CE64CA64D864E064F064E664EC64F164E264ED6582658366D9
|
| 1406 |
+
66D66A806A946A846AA26A9C6ADB6AA36A7E6A976A906AA06B5C6BAE6BDA0000
|
| 1407 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1408 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1409 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1410 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1411 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1412 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1413 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1414 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1415 |
+
74
|
| 1416 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1417 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1418 |
+
00006C086FD86FF16FDF6FE06FDB6FE46FEB6FEF6F806FEC6FE16FE96FD56FEE
|
| 1419 |
+
6FF071E771DF71EE71E671E571ED71EC71F471E0723572467370737274A974B0
|
| 1420 |
+
74A674A876467642764C76EA77B377AA77B077AC77A777AD77EF78F778FA78F4
|
| 1421 |
+
78EF790179A779AA7A577ABF7C077C0D7BFE7BF77C0C7BE07CE07CDC7CDE7CE2
|
| 1422 |
+
7CDF7CD97CDD7E2E7E3E7E467E377E327E437E2B7E3D7E317E457E417E347E39
|
| 1423 |
+
7E487E357E3F7E2F7F447FF37FFC807180728070806F807381C681C381BA0000
|
| 1424 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1425 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1426 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1427 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1428 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1429 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1430 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1431 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1432 |
+
75
|
| 1433 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1434 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1435 |
+
000081C281C081BF81BD81C981BE81E88209827185AA8584857E859C85918594
|
| 1436 |
+
85AF859B858785A8858A85A6866787C087D187B387D287C687AB87BB87BA87C8
|
| 1437 |
+
87CB893B893689448938893D89AC8B0E8B178B198B1B8B0A8B208B1D8B048B10
|
| 1438 |
+
8C418C3F8C738CFA8CFD8CFC8CF88CFB8DA88E498E4B8E488E4A8F448F3E8F42
|
| 1439 |
+
8F458F3F907F907D9084908190829080913991A3919E919C934D938293289375
|
| 1440 |
+
934A9365934B9318937E936C935B9370935A935495CA95CB95CC95C895C60000
|
| 1441 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1442 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1443 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1444 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1445 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1446 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1447 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1448 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1449 |
+
76
|
| 1450 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1451 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1452 |
+
000096B196B896D6971C971E97A097D3984698B699359A0199FF9BAE9BAB9BAA
|
| 1453 |
+
9BAD9D3B9D3F9E8B9ECF9EDE9EDC9EDD9EDB9F3E9F4B53E2569556AE58D958D8
|
| 1454 |
+
5B385F5E61E3623364F464F264FE650664FA64FB64F765B766DC67266AB36AAC
|
| 1455 |
+
6AC36ABB6AB86AC26AAE6AAF6B5F6B786BAF7009700B6FFE70066FFA7011700F
|
| 1456 |
+
71FB71FC71FE71F87377737574A774BF751576567658765277BD77BF77BB77BC
|
| 1457 |
+
790E79AE7A617A627A607AC47AC57C2B7C277C2A7C1E7C237C217CE77E540000
|
| 1458 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1459 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1460 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1461 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1462 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1463 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1464 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1465 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1466 |
+
77
|
| 1467 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1468 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1469 |
+
00007E557E5E7E5A7E617E527E597F487FF97FFB8077807681CD81CF820A85CF
|
| 1470 |
+
85A985CD85D085C985B085BA85B987EF87EC87F287E0898689B289F48B288B39
|
| 1471 |
+
8B2C8B2B8C508D058E598E638E668E648E5F8E558EC08F498F4D908790839088
|
| 1472 |
+
91AB91AC91D09394938A939693A293B393AE93AC93B09398939A939795D495D6
|
| 1473 |
+
95D095D596E296DC96D996DB96DE972497A397A697AD97F9984D984F984C984E
|
| 1474 |
+
985398BA993E993F993D992E99A59A0E9AC19B039B069B4F9B4E9B4D9BCA0000
|
| 1475 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1476 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1477 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1478 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1479 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1480 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1481 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1482 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1483 |
+
78
|
| 1484 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1485 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1486 |
+
00009BC99BFD9BC89BC09D519D5D9D609EE09F159F2C513356A556A858DE58DF
|
| 1487 |
+
58E25BF59F905EEC61F261F761F661F56500650F66E066DD6AE56ADD6ADA6AD3
|
| 1488 |
+
701B701F7028701A701D701570187206720D725872A27378737A74BD74CA74E3
|
| 1489 |
+
75877586765F766177C7791979B17A6B7A697C3E7C3F7C387C3D7C377C407E6B
|
| 1490 |
+
7E6D7E797E697E6A7E737F857FB67FB97FB881D885E985DD85EA85D585E485E5
|
| 1491 |
+
85F787FB8805880D87F987FE8960895F8956895E8B418B5C8B588B498B5A0000
|
| 1492 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1493 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1494 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1495 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1496 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1497 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1498 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1499 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1500 |
+
79
|
| 1501 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1502 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1503 |
+
00008B4E8B4F8B468B598D088D0A8E7C8E728E878E768E6C8E7A8E748F548F4E
|
| 1504 |
+
8FAD908A908B91B191AE93E193D193DF93C393C893DC93DD93D693E293CD93D8
|
| 1505 |
+
93E493D793E895DC96B496E3972A9727976197DC97FB985E9858985B98BC9945
|
| 1506 |
+
99499A169A199B0D9BE89BE79BD69BDB9D899D619D729D6A9D6C9E929E979E93
|
| 1507 |
+
9EB452F856B756B656B456BC58E45B405B435B7D5BF65DC961F861FA65186514
|
| 1508 |
+
651966E667276AEC703E703070327210737B74CF766276657926792A792C0000
|
| 1509 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1510 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1511 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1512 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1513 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1514 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1515 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1516 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1517 |
+
7A
|
| 1518 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1519 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1520 |
+
0000792B7AC77AF67C4C7C437C4D7CEF7CF08FAE7E7D7E7C7E827F4C800081DA
|
| 1521 |
+
826685FB85F9861185FA8606860B8607860A88148815896489BA89F88B708B6C
|
| 1522 |
+
8B668B6F8B5F8B6B8D0F8D0D8E898E818E858E8291B491CB9418940393FD95E1
|
| 1523 |
+
973098C49952995199A89A2B9A309A379A359C139C0D9E799EB59EE89F2F9F5F
|
| 1524 |
+
9F639F615137513856C156C056C259145C6C5DCD61FC61FE651D651C659566E9
|
| 1525 |
+
6AFB6B046AFA6BB2704C721B72A774D674D4766977D37C507E8F7E8C7FBC0000
|
| 1526 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1527 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1528 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1529 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1530 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1531 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1532 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1533 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1534 |
+
7B
|
| 1535 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1536 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1537 |
+
00008617862D861A882388228821881F896A896C89BD8B748B778B7D8D138E8A
|
| 1538 |
+
8E8D8E8B8F5F8FAF91BA942E94339435943A94389432942B95E2973897399732
|
| 1539 |
+
97FF9867986599579A459A439A409A3E9ACF9B549B519C2D9C259DAF9DB49DC2
|
| 1540 |
+
9DB89E9D9EEF9F199F5C9F669F67513C513B56C856CA56C95B7F5DD45DD25F4E
|
| 1541 |
+
61FF65246B0A6B6170517058738074E4758A766E766C79B37C607C5F807E807D
|
| 1542 |
+
81DF8972896F89FC8B808D168D178E918E938F619148944494519452973D0000
|
| 1543 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1544 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1545 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1546 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1547 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1548 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1549 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1550 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1551 |
+
7C
|
| 1552 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1553 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1554 |
+
0000973E97C397C1986B99559A559A4D9AD29B1A9C499C319C3E9C3B9DD39DD7
|
| 1555 |
+
9F349F6C9F6A9F9456CC5DD662006523652B652A66EC6B1074DA7ACA7C647C63
|
| 1556 |
+
7C657E937E967E9481E28638863F88318B8A9090908F9463946094649768986F
|
| 1557 |
+
995C9A5A9A5B9A579AD39AD49AD19C549C579C569DE59E9F9EF456D158E9652C
|
| 1558 |
+
705E7671767277D77F507F888836883988628B938B928B9682778D1B91C0946A
|
| 1559 |
+
97429748974497C698709A5F9B229B589C5F9DF99DFA9E7C9E7D9F079F770000
|
| 1560 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1561 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1562 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1563 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1564 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1565 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1566 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1567 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1568 |
+
7D
|
| 1569 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1570 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1571 |
+
00009F725EF36B1670637C6C7C6E883B89C08EA191C1947294709871995E9AD6
|
| 1572 |
+
9B239ECC706477DA8B9A947797C99A629A657E9C8B9C8EAA91C5947D947E947C
|
| 1573 |
+
9C779C789EF78C54947F9E1A72289A6A9B319E1B9E1E7C720000000000000000
|
| 1574 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1575 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1576 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1577 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1578 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1579 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1580 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1581 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1582 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1583 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
| 1584 |
+
0000000000000000000000000000000000000000000000000000000000000000
|
micromamba_root/Library/lib/tcl8.6/encoding/cp1250.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp1250, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
20AC0081201A0083201E2026202020210088203001602039015A0164017D0179
|
| 14 |
+
009020182019201C201D202220132014009821220161203A015B0165017E017A
|
| 15 |
+
00A002C702D8014100A4010400A600A700A800A9015E00AB00AC00AD00AE017B
|
| 16 |
+
00B000B102DB014200B400B500B600B700B80105015F00BB013D02DD013E017C
|
| 17 |
+
015400C100C2010200C40139010600C7010C00C9011800CB011A00CD00CE010E
|
| 18 |
+
01100143014700D300D4015000D600D70158016E00DA017000DC00DD016200DF
|
| 19 |
+
015500E100E2010300E4013A010700E7010D00E9011900EB011B00ED00EE010F
|
| 20 |
+
01110144014800F300F4015100F600F70159016F00FA017100FC00FD016302D9
|
micromamba_root/Library/lib/tcl8.6/encoding/cp1251.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp1251, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
04020403201A0453201E20262020202120AC203004092039040A040C040B040F
|
| 14 |
+
045220182019201C201D202220132014009821220459203A045A045C045B045F
|
| 15 |
+
00A0040E045E040800A4049000A600A7040100A9040400AB00AC00AD00AE0407
|
| 16 |
+
00B000B104060456049100B500B600B704512116045400BB0458040504550457
|
| 17 |
+
0410041104120413041404150416041704180419041A041B041C041D041E041F
|
| 18 |
+
0420042104220423042404250426042704280429042A042B042C042D042E042F
|
| 19 |
+
0430043104320433043404350436043704380439043A043B043C043D043E043F
|
| 20 |
+
0440044104420443044404450446044704480449044A044B044C044D044E044F
|
micromamba_root/Library/lib/tcl8.6/encoding/cp1252.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp1252, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
20AC0081201A0192201E20262020202102C62030016020390152008D017D008F
|
| 14 |
+
009020182019201C201D20222013201402DC21220161203A0153009D017E0178
|
| 15 |
+
00A000A100A200A300A400A500A600A700A800A900AA00AB00AC00AD00AE00AF
|
| 16 |
+
00B000B100B200B300B400B500B600B700B800B900BA00BB00BC00BD00BE00BF
|
| 17 |
+
00C000C100C200C300C400C500C600C700C800C900CA00CB00CC00CD00CE00CF
|
| 18 |
+
00D000D100D200D300D400D500D600D700D800D900DA00DB00DC00DD00DE00DF
|
| 19 |
+
00E000E100E200E300E400E500E600E700E800E900EA00EB00EC00ED00EE00EF
|
| 20 |
+
00F000F100F200F300F400F500F600F700F800F900FA00FB00FC00FD00FE00FF
|
micromamba_root/Library/lib/tcl8.6/encoding/cp1253.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp1253, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
20AC0081201A0192201E20262020202100882030008A2039008C008D008E008F
|
| 14 |
+
009020182019201C201D20222013201400982122009A203A009C009D009E009F
|
| 15 |
+
00A00385038600A300A400A500A600A700A800A9000000AB00AC00AD00AE2015
|
| 16 |
+
00B000B100B200B3038400B500B600B703880389038A00BB038C00BD038E038F
|
| 17 |
+
0390039103920393039403950396039703980399039A039B039C039D039E039F
|
| 18 |
+
03A003A1000003A303A403A503A603A703A803A903AA03AB03AC03AD03AE03AF
|
| 19 |
+
03B003B103B203B303B403B503B603B703B803B903BA03BB03BC03BD03BE03BF
|
| 20 |
+
03C003C103C203C303C403C503C603C703C803C903CA03CB03CC03CD03CE0000
|
micromamba_root/Library/lib/tcl8.6/encoding/cp1254.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp1254, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
20AC0081201A0192201E20262020202102C62030016020390152008D008E008F
|
| 14 |
+
009020182019201C201D20222013201402DC21220161203A0153009D009E0178
|
| 15 |
+
00A000A100A200A300A400A500A600A700A800A900AA00AB00AC00AD00AE00AF
|
| 16 |
+
00B000B100B200B300B400B500B600B700B800B900BA00BB00BC00BD00BE00BF
|
| 17 |
+
00C000C100C200C300C400C500C600C700C800C900CA00CB00CC00CD00CE00CF
|
| 18 |
+
011E00D100D200D300D400D500D600D700D800D900DA00DB00DC0130015E00DF
|
| 19 |
+
00E000E100E200E300E400E500E600E700E800E900EA00EB00EC00ED00EE00EF
|
| 20 |
+
011F00F100F200F300F400F500F600F700F800F900FA00FB00FC0131015F00FF
|
micromamba_root/Library/lib/tcl8.6/encoding/cp1255.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp1255, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
20AC0081201A0192201E20262020202102C62030008A2039008C008D008E008F
|
| 14 |
+
009020182019201C201D20222013201402DC2122009A203A009C009D009E009F
|
| 15 |
+
00A000A100A200A320AA00A500A600A700A800A900D700AB00AC00AD00AE00AF
|
| 16 |
+
00B000B100B200B300B400B500B600B700B800B900F700BB00BC00BD00BE00BF
|
| 17 |
+
05B005B105B205B305B405B505B605B705B805B9000005BB05BC05BD05BE05BF
|
| 18 |
+
05C005C105C205C305F005F105F205F305F40000000000000000000000000000
|
| 19 |
+
05D005D105D205D305D405D505D605D705D805D905DA05DB05DC05DD05DE05DF
|
| 20 |
+
05E005E105E205E305E405E505E605E705E805E905EA00000000200E200F0000
|
micromamba_root/Library/lib/tcl8.6/encoding/cp1256.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp1256, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
20AC067E201A0192201E20262020202102C62030067920390152068606980688
|
| 14 |
+
06AF20182019201C201D20222013201406A921220691203A0153200C200D06BA
|
| 15 |
+
00A0060C00A200A300A400A500A600A700A800A906BE00AB00AC00AD00AE00AF
|
| 16 |
+
00B000B100B200B300B400B500B600B700B800B9061B00BB00BC00BD00BE061F
|
| 17 |
+
06C1062106220623062406250626062706280629062A062B062C062D062E062F
|
| 18 |
+
063006310632063306340635063600D7063706380639063A0640064106420643
|
| 19 |
+
00E0064400E2064506460647064800E700E800E900EA00EB0649064A00EE00EF
|
| 20 |
+
064B064C064D064E00F4064F065000F7065100F9065200FB00FC200E200F06D2
|
micromamba_root/Library/lib/tcl8.6/encoding/cp1257.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp1257, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
20AC0081201A0083201E20262020202100882030008A2039008C00A802C700B8
|
| 14 |
+
009020182019201C201D20222013201400982122009A203A009C00AF02DB009F
|
| 15 |
+
00A0000000A200A300A4000000A600A700D800A9015600AB00AC00AD00AE00C6
|
| 16 |
+
00B000B100B200B300B400B500B600B700F800B9015700BB00BC00BD00BE00E6
|
| 17 |
+
0104012E0100010600C400C501180112010C00C90179011601220136012A013B
|
| 18 |
+
01600143014500D3014C00D500D600D701720141015A016A00DC017B017D00DF
|
| 19 |
+
0105012F0101010700E400E501190113010D00E9017A011701230137012B013C
|
| 20 |
+
01610144014600F3014D00F500F600F701730142015B016B00FC017C017E02D9
|
micromamba_root/Library/lib/tcl8.6/encoding/cp1258.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp1258, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
20AC0081201A0192201E20262020202102C62030008A20390152008D008E008F
|
| 14 |
+
009020182019201C201D20222013201402DC2122009A203A0153009D009E0178
|
| 15 |
+
00A000A100A200A300A400A500A600A700A800A900AA00AB00AC00AD00AE00AF
|
| 16 |
+
00B000B100B200B300B400B500B600B700B800B900BA00BB00BC00BD00BE00BF
|
| 17 |
+
00C000C100C2010200C400C500C600C700C800C900CA00CB030000CD00CE00CF
|
| 18 |
+
011000D1030900D300D401A000D600D700D800D900DA00DB00DC01AF030300DF
|
| 19 |
+
00E000E100E2010300E400E500E600E700E800E900EA00EB030100ED00EE00EF
|
| 20 |
+
011100F1032300F300F401A100F600F700F800F900FA00FB00FC01B020AB00FF
|
micromamba_root/Library/lib/tcl8.6/encoding/cp437.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp437, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
00C700FC00E900E200E400E000E500E700EA00EB00E800EF00EE00EC00C400C5
|
| 14 |
+
00C900E600C600F400F600F200FB00F900FF00D600DC00A200A300A520A70192
|
| 15 |
+
00E100ED00F300FA00F100D100AA00BA00BF231000AC00BD00BC00A100AB00BB
|
| 16 |
+
259125922593250225242561256225562555256325512557255D255C255B2510
|
| 17 |
+
25142534252C251C2500253C255E255F255A25542569256625602550256C2567
|
| 18 |
+
2568256425652559255825522553256B256A2518250C25882584258C25902580
|
| 19 |
+
03B100DF039303C003A303C300B503C403A6039803A903B4221E03C603B52229
|
| 20 |
+
226100B1226522642320232100F7224800B0221900B7221A207F00B225A000A0
|
micromamba_root/Library/lib/tcl8.6/encoding/cp737.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp737, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
039103920393039403950396039703980399039A039B039C039D039E039F03A0
|
| 14 |
+
03A103A303A403A503A603A703A803A903B103B203B303B403B503B603B703B8
|
| 15 |
+
03B903BA03BB03BC03BD03BE03BF03C003C103C303C203C403C503C603C703C8
|
| 16 |
+
259125922593250225242561256225562555256325512557255D255C255B2510
|
| 17 |
+
25142534252C251C2500253C255E255F255A25542569256625602550256C2567
|
| 18 |
+
2568256425652559255825522553256B256A2518250C25882584258C25902580
|
| 19 |
+
03C903AC03AD03AE03CA03AF03CC03CD03CB03CE038603880389038A038C038E
|
| 20 |
+
038F00B12265226403AA03AB00F7224800B0221900B7221A207F00B225A000A0
|
micromamba_root/Library/lib/tcl8.6/encoding/cp775.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp775, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
010600FC00E9010100E4012300E501070142011301560157012B017900C400C5
|
| 14 |
+
00C900E600C6014D00F6012200A2015A015B00D600DC00F800A300D800D700A4
|
| 15 |
+
0100012A00F3017B017C017A201D00A600A900AE00AC00BD00BC014100AB00BB
|
| 16 |
+
259125922593250225240104010C01180116256325512557255D012E01602510
|
| 17 |
+
25142534252C251C2500253C0172016A255A25542569256625602550256C017D
|
| 18 |
+
0105010D01190117012F01610173016B017E2518250C25882584258C25902580
|
| 19 |
+
00D300DF014C014300F500D500B5014401360137013B013C0146011201452019
|
| 20 |
+
00AD00B1201C00BE00B600A700F7201E00B0221900B700B900B300B225A000A0
|
micromamba_root/Library/lib/tcl8.6/encoding/cp850.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp850, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
00C700FC00E900E200E400E000E500E700EA00EB00E800EF00EE00EC00C400C5
|
| 14 |
+
00C900E600C600F400F600F200FB00F900FF00D600DC00F800A300D800D70192
|
| 15 |
+
00E100ED00F300FA00F100D100AA00BA00BF00AE00AC00BD00BC00A100AB00BB
|
| 16 |
+
2591259225932502252400C100C200C000A9256325512557255D00A200A52510
|
| 17 |
+
25142534252C251C2500253C00E300C3255A25542569256625602550256C00A4
|
| 18 |
+
00F000D000CA00CB00C8013100CD00CE00CF2518250C2588258400A600CC2580
|
| 19 |
+
00D300DF00D400D200F500D500B500FE00DE00DA00DB00D900FD00DD00AF00B4
|
| 20 |
+
00AD00B1201700BE00B600A700F700B800B000A800B700B900B300B225A000A0
|
micromamba_root/Library/lib/tcl8.6/encoding/cp852.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp852, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
00C700FC00E900E200E4016F010700E7014200EB0150015100EE017900C40106
|
| 14 |
+
00C90139013A00F400F6013D013E015A015B00D600DC01640165014100D7010D
|
| 15 |
+
00E100ED00F300FA01040105017D017E0118011900AC017A010C015F00AB00BB
|
| 16 |
+
2591259225932502252400C100C2011A015E256325512557255D017B017C2510
|
| 17 |
+
25142534252C251C2500253C01020103255A25542569256625602550256C00A4
|
| 18 |
+
01110110010E00CB010F014700CD00CE011B2518250C258825840162016E2580
|
| 19 |
+
00D300DF00D401430144014801600161015400DA0155017000FD00DD016300B4
|
| 20 |
+
00AD02DD02DB02C702D800A700F700B800B000A802D901710158015925A000A0
|
micromamba_root/Library/lib/tcl8.6/encoding/cp855.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp855, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
0452040204530403045104010454040404550405045604060457040704580408
|
| 14 |
+
04590409045A040A045B040B045C040C045E040E045F040F044E042E044A042A
|
| 15 |
+
0430041004310411044604260434041404350415044404240433041300AB00BB
|
| 16 |
+
259125922593250225240445042504380418256325512557255D043904192510
|
| 17 |
+
25142534252C251C2500253C043A041A255A25542569256625602550256C00A4
|
| 18 |
+
043B041B043C041C043D041D043E041E043F2518250C25882584041F044F2580
|
| 19 |
+
042F044004200441042104420422044304230436041604320412044C042C2116
|
| 20 |
+
00AD044B042B0437041704480428044D042D044904290447042700A725A000A0
|
micromamba_root/Library/lib/tcl8.6/encoding/cp857.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp857, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
00C700FC00E900E200E400E000E500E700EA00EB00E800EF00EE013100C400C5
|
| 14 |
+
00C900E600C600F400F600F200FB00F9013000D600DC00F800A300D8015E015F
|
| 15 |
+
00E100ED00F300FA00F100D1011E011F00BF00AE00AC00BD00BC00A100AB00BB
|
| 16 |
+
2591259225932502252400C100C200C000A9256325512557255D00A200A52510
|
| 17 |
+
25142534252C251C2500253C00E300C3255A25542569256625602550256C00A4
|
| 18 |
+
00BA00AA00CA00CB00C8000000CD00CE00CF2518250C2588258400A600CC2580
|
| 19 |
+
00D300DF00D400D200F500D500B5000000D700DA00DB00D900EC00FF00AF00B4
|
| 20 |
+
00AD00B1000000BE00B600A700F700B800B000A800B700B900B300B225A000A0
|
micromamba_root/Library/lib/tcl8.6/encoding/cp860.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp860, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
00C700FC00E900E200E300E000C100E700EA00CA00E800CD00D400EC00C300C2
|
| 14 |
+
00C900C000C800F400F500F200DA00F900CC00D500DC00A200A300D920A700D3
|
| 15 |
+
00E100ED00F300FA00F100D100AA00BA00BF00D200AC00BD00BC00A100AB00BB
|
| 16 |
+
259125922593250225242561256225562555256325512557255D255C255B2510
|
| 17 |
+
25142534252C251C2500253C255E255F255A25542569256625602550256C2567
|
| 18 |
+
2568256425652559255825522553256B256A2518250C25882584258C25902580
|
| 19 |
+
03B100DF039303C003A303C300B503C403A6039803A903B4221E03C603B52229
|
| 20 |
+
226100B1226522642320232100F7224800B0221900B7221A207F00B225A000A0
|
micromamba_root/Library/lib/tcl8.6/encoding/cp861.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp861, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
00C700FC00E900E200E400E000E500E700EA00EB00E800D000F000DE00C400C5
|
| 14 |
+
00C900E600C600F400F600FE00FB00DD00FD00D600DC00F800A300D820A70192
|
| 15 |
+
00E100ED00F300FA00C100CD00D300DA00BF231000AC00BD00BC00A100AB00BB
|
| 16 |
+
259125922593250225242561256225562555256325512557255D255C255B2510
|
| 17 |
+
25142534252C251C2500253C255E255F255A25542569256625602550256C2567
|
| 18 |
+
2568256425652559255825522553256B256A2518250C25882584258C25902580
|
| 19 |
+
03B100DF039303C003A303C300B503C403A6039803A903B4221E03C603B52229
|
| 20 |
+
226100B1226522642320232100F7224800B0221900B7221A207F00B225A000A0
|
micromamba_root/Library/lib/tcl8.6/encoding/cp862.enc
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Encoding file: cp862, single-byte
|
| 2 |
+
S
|
| 3 |
+
003F 0 1
|
| 4 |
+
00
|
| 5 |
+
0000000100020003000400050006000700080009000A000B000C000D000E000F
|
| 6 |
+
0010001100120013001400150016001700180019001A001B001C001D001E001F
|
| 7 |
+
0020002100220023002400250026002700280029002A002B002C002D002E002F
|
| 8 |
+
0030003100320033003400350036003700380039003A003B003C003D003E003F
|
| 9 |
+
0040004100420043004400450046004700480049004A004B004C004D004E004F
|
| 10 |
+
0050005100520053005400550056005700580059005A005B005C005D005E005F
|
| 11 |
+
0060006100620063006400650066006700680069006A006B006C006D006E006F
|
| 12 |
+
0070007100720073007400750076007700780079007A007B007C007D007E007F
|
| 13 |
+
05D005D105D205D305D405D505D605D705D805D905DA05DB05DC05DD05DE05DF
|
| 14 |
+
05E005E105E205E305E405E505E605E705E805E905EA00A200A300A520A70192
|
| 15 |
+
00E100ED00F300FA00F100D100AA00BA00BF231000AC00BD00BC00A100AB00BB
|
| 16 |
+
259125922593250225242561256225562555256325512557255D255C255B2510
|
| 17 |
+
25142534252C251C2500253C255E255F255A25542569256625602550256C2567
|
| 18 |
+
2568256425652559255825522553256B256A2518250C25882584258C25902580
|
| 19 |
+
03B100DF039303C003A303C300B503C403A6039803A903B4221E03C603B52229
|
| 20 |
+
226100B1226522642320232100F7224800B0221900B7221A207F00B225A000A0
|