text
stringlengths 31
1.04M
|
---|
BEGIN;
-- Plan count should match the number of tests. If it does not then pg_prove will fail the test
SELECT plan(1);
-- Run the tests.
-- Given
TRUNCATE TABLE item;
CALL new_item('foo', 0, 0);
-- When
CALL update_quality();
-- Then
SELECT is( name, 'fixme', 'name did change' ) FROM item;
-- Finish the tests and clean up.
SELECT * FROM finish();
ROLLBACK;
|
package br.com.guiabolso.events.model
import com.google.gson.annotations.SerializedName
data class EventMessage(
@SerializedName("code")
val code: String,
@SerializedName("parameters")
val parameters: Map<String, Any?>
)
|
module.exports = ()->
class Settings
constructor:(app) ->
@mongoose = require('mongoose')
@Promise = require('node-promise').Promise
@GridStore = require('mongodb').GridStore
# init mongo
url = process.env.MONGODB_URI || process.env.MONGOLAB_URI || 'mongodb://localhost/lighter'
@mongoose.connect url
# if process.env.NODE_ENV isnt 'production'
# @mongoose.set('debug', true)
@marked = require('marked')
@marked.setOptions
highlight:(code,lang) ->
hl = require('highlight.js')
hl.tabReplace = ' '
(hl.highlightAuto code).value
marked : @marked
mongoose : @mongoose
url : '/'
author : process.env.AUTHOR || 'Editor'
title : process.env.BLOG_TITLE || 'Lighter Blog'
username : process.env.USER || 'admin'
password : process.env.PASSWORD || 'admin'
feedUrl : process.env.FEED_URL || null
updated : new Date()
engine : 'Lighter Blog Engine'
format: (content) ->
@marked(content)
new Settings()
|
MODULE engouth_I
INTERFACE
!...Generated by Pacific-Sierra Research 77to90 4.3E 06:36:34 12/28/06
!...Modified by Charlotte Froese Fischer
! Gediminas Gaigalas 11/01/17
SUBROUTINE engouth (EAV, E, JTOT, IPAR, ILEV, NN, MODE)
USE vast_kind_param,ONLY: DOUBLE
REAL(DOUBLE), INTENT(IN) :: EAV
REAL(DOUBLE), DIMENSION(NN), INTENT(IN) :: E
INTEGER, DIMENSION(NN), INTENT(IN) :: JTOT
INTEGER, DIMENSION(NN), INTENT(IN) :: IPAR
INTEGER, DIMENSION(NN), INTENT(IN) :: ILEV
INTEGER, INTENT(IN) :: NN
INTEGER, INTENT(IN) :: MODE
END SUBROUTINE
END INTERFACE
END MODULE
|
package typingsSlinky.tstl.mod.default
import scala.scalajs.js
import scala.scalajs.js.`|`
import scala.scalajs.js.annotation.{JSGlobalScope, JSGlobal, JSImport, JSName, JSBracketAccess}
@JSImport("tstl", "Exception")
@js.native
class Exception protected ()
extends typingsSlinky.tstl.tstlModuleMod.Exception {
/**
* Initializer Constructor.
*
* @param message The error messgae.
*/
def this(message: String) = this()
}
|
C_LevelLink = {}
---@param actionID number
---@return boolean isLocked
---[Documentation](https://wow.gamepedia.com/API_C_LevelLink.IsActionLocked)
function C_LevelLink.IsActionLocked(actionID) end
---@param spellID number
---@return boolean isLocked
---[Documentation](https://wow.gamepedia.com/API_C_LevelLink.IsSpellLocked)
function C_LevelLink.IsSpellLocked(spellID) end
|
{-# LANGUAGE OverloadedStrings #-}
import Control.Applicative ((<|>))
import Control.Monad.IO.Class (liftIO)
import Network.HTTP as HTTP
import Data.Text as Text
import qualified Snap.Core as SnapC
import Snap.Core (Snap)
import qualified Snap.Http.Server as SnapS
import qualified Snap.Util.FileServe as SnapF
import Data.Map (Map, fromList)
import Data.Aeson (encode, ToJSON)
main :: IO ()
main = SnapS.httpServe (SnapS.setPort 8080 SnapS.defaultConfig) site
site :: Snap ()
site =
--Snap.ifTop (snapHtml Html.indexHtml) <|>
SnapC.route [
("Home.elm", redirectToElmReactor),
("rest/v1/artists", SnapC.method SnapC.GET getArtistsHandler)
] <|>
SnapC.dir "static" (SnapF.serveDirectory "static")
redirectToElmReactor :: Snap ()
redirectToElmReactor = do
bs <- liftIO $ HTTP.simpleHTTP (HTTP.getRequest "http://127.0.0.1:8000/Home.elm") >>= HTTP.getResponseBody
SnapC.modifyResponse $ SnapC.setContentType "text/html"
SnapC.writeText $ Text.pack bs
getArtistsHandler :: Snap ()
getArtistsHandler = do
SnapC.modifyResponse $ SnapC.setContentType "application/json"
SnapC.writeLBS $ encode (
fromList [("name", "Nero")] :: Map String String,
fromList [("name", "XX")] :: Map String String,
fromList [("name", "Passion Pit")] :: Map String String)
withData :: ToJSON a => a -> Map String a
withData val = fromList [("data", val)]
|
<?xml version="1.0" encoding="utf-8" ?>
<dataset Transactions="1"><dataset_header DisableRI="yes" DatasetObj="1004928896.09" DateFormat="mdy" FullHeader="no" SCMManaged="yes" YearOffset="1950" DatasetCode="RYCSO" NumericFormat="AMERICAN" NumericDecimal="." OriginatingSite="91" NumericSeparator=","/>
<dataset_records><dataset_transaction TransactionNo="1" TransactionType="DATA"><contained_record DB="icfdb" Table="ryc_smartobject" version_date="09/30/2002" version_time="23744" version_user="admin" deletion_flag="no" entity_mnemonic="rycso" key_field_value="1004932271.09" record_version_obj="3000033096.09" version_number_seq="2.09" secondary_key_value="gscdeccsfv.w#CHR(1)#0" import_version_number_seq="2.09"><smartobject_obj>1004932271.09</smartobject_obj>
<object_filename>gscdeccsfv.w</object_filename>
<customization_result_obj>0</customization_result_obj>
<object_type_obj>1003600284</object_type_obj>
<product_module_obj>1004874683.09</product_module_obj>
<layout_obj>1003516362</layout_obj>
<object_description>Dataset Entity Combo SmartDataField</object_description>
<object_path>af/obj2</object_path>
<object_extension></object_extension>
<static_object>yes</static_object>
<generic_object>no</generic_object>
<template_smartobject>no</template_smartobject>
<system_owned>no</system_owned>
<deployment_type>CLN</deployment_type>
<design_only>no</design_only>
<runnable_from_menu>no</runnable_from_menu>
<container_object>no</container_object>
<disabled>no</disabled>
<run_persistent>yes</run_persistent>
<run_when>ANY</run_when>
<shutdown_message_text></shutdown_message_text>
<required_db_list></required_db_list>
<sdo_smartobject_obj>0</sdo_smartobject_obj>
<extends_smartobject_obj>0</extends_smartobject_obj>
<security_smartobject_obj>1004932271.09</security_smartobject_obj>
<object_is_runnable>yes</object_is_runnable>
</contained_record>
</dataset_transaction>
</dataset_records>
</dataset> |
#ifndef ATTACHMENT_H
#define ATTACHMENT_H
#include "ClaimElement.h"
#include <QString>
class Attachment: public ClaimElement
{
Q_OBJECT
Q_PROPERTY(QString Title READ getTitle WRITE setTitle)
Q_PROPERTY(QString Path READ getPath WRITE setPath)
public:
Attachment(int id);
QString getTitle() const;
void setTitle(const QString& title);
QString getPath() const;
void setPath(const QString& path);
private:
QString _title;
QString _filePath;
};
#endif // ATTACHMENT_H
|
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import { registerRelationships } from './saved_objects/relationships';
import { registerScrollForExportRoute, registerScrollForCountRoute } from './saved_objects/scroll';
export function managementApi(server) {
registerRelationships(server);
registerScrollForExportRoute(server);
registerScrollForCountRoute(server);
}
|
(asdf:defsystem #:weir
:description "A System for Making Generative Systems"
:version "4.9.0"
:author "anders hoff/inconvergent"
:licence "MIT"
:in-order-to ((asdf:test-op (asdf:test-op #:weir/tests)))
:pathname "src/"
:serial t
:depends-on (#:alexandria
#:cl-json
#:cl-svg
#:inferior-shell
#:lparallel
#:png
#:split-sequence
#:zpng)
:components ((:file "packages")
(:file "config")
(:file "various")
(:file "fn")
(:file "state")
(:file "hset")
(:file "math/math")
(:file "rnd/rnd")
(:file "vec/base")
(:file "vec/vec")
(:file "vec/checks")
(:file "vec/3vec")
(:file "vec/avec")
(:file "parallel/main")
(:file "math/curvature")
(:file "project/perspective")
(:file "project/ortho")
(:file "draw/cpath")
(:file "draw/jpath")
(:file "math/path")
(:file "math/simplify-path")
(:file "draw/hatch")
(:file "draw/line-remove")
(:file "pigment/pigment")
(:file "pigment/non-alpha")
(:file "pigment/extra")
(:file "rnd/extra")
(:file "rnd/3rnd")
(:file "rnd/walkers")
(:file "graph/main")
(:file "graph/paths")
(:file "graph/edge-set")
(:file "graph/mst-cycle")
(:file "auxiliary/dat")
(:file "auxiliary/obj")
(:file "gridfont/main")
(:file "draw/bzspl")
(:file "draw/lin-path")
(:file "draw/sandpaint")
(:file "draw/sandpaint-extra")
(:file "draw/draw-svg")
(:file "distance/zonemap")
(:file "distance/kdtree")
(:file "weir/weir")
(:file "weir/weir-macro")
(:file "weir/props")
(:file "weir/weir-with-macro")
(:file "weir/vert-utils")
(:file "weir/planar-cycles")
(:file "weir/paths")
(:file "weir/3vert-utils")
(:file "weir/alterations")
(:file "weir/3alterations")
(:file "weir/weir-extra")))
(asdf:defsystem #:weir/tests
:depends-on (#:weir)
:perform (asdf:test-op (o s)
(uiop:symbol-call ':weir-tests
'#:run-tests))
:pathname "test/"
:serial t
:components ((:file "test")
(:file "bzspl")
(:file "curvature")
(:file "graph")
(:file "hset")
(:file "kdtree")
(:file "linear-path")
(:file "math")
(:file "ortho")
(:file "parallel")
(:file "pigment")
(:file "pix-overlap")
(:file "plot-cpath")
(:file "plot-jpath")
(:file "plot-outline-path")
(:file "plot-simplify")
(:file "plot-paths")
(:file "plot")
(:file "rnd")
(:file "sandpaint")
(:file "vec")
(:file "weir")
(:file "weir-loop")
(:file "weir3")))
|
X, Y, TStamp, Pres., EndPts
DataSize: 192
25916 16624 0 21 0
25916 16624 10 28 0
25916 16504 15 36 0
25916 16384 31 40 0
25916 16263 41 41 0
25916 16143 47 38 0
25916 16022 62 38 0
25916 15902 72 41 0
25866 15781 78 48 0
25816 15661 88 53 0
25767 15420 94 50 0
25618 15179 109 43 0
25469 15058 119 40 0
25320 14938 125 43 0
25121 14817 140 48 0
24923 14817 150 52 0
24774 14817 156 53 0
24625 15058 166 57 0
24476 15179 187 64 0
24327 15420 197 61 0
24228 15661 203 60 0
24128 16022 213 75 0
24079 16263 219 84 0
24128 16624 234 89 0
24128 17106 244 70 0
24228 17468 250 67 0
24327 17709 265 72 0
24526 17950 275 58 0
24774 18191 281 56 0
25022 18191 291 60 0
25221 18191 297 65 0
25419 18191 312 69 0
25568 18191 322 75 0
25717 17950 328 74 0
25866 17829 344 67 0
25916 17588 354 66 0
25965 17347 359 72 0
26015 17227 369 82 0
26015 16865 375 83 0
26015 16384 390 69 0
25965 16143 400 64 0
25916 15902 406 64 0
25866 15781 422 67 0
25816 15540 432 69 0
25717 15540 437 70 0
25667 15540 447 69 0
25568 15661 453 67 0
25419 15781 469 65 0
25370 15902 479 65 0
25320 16143 484 69 0
25320 16263 500 71 0
25320 16384 510 73 0
25320 16384 515 74 0
25370 16504 531 75 0
25469 16504 547 71 0
25618 16504 557 69 0
25816 16504 562 75 0
25965 16384 572 88 0
26214 16263 578 73 0
26462 16143 594 67 0
26660 16143 604 68 0
26660 16143 609 73 0
26809 16143 619 76 0
26909 16143 625 77 0
26958 16143 640 76 0
27008 16263 650 71 0
27008 16384 656 70 0
27008 16624 672 72 0
26958 16745 682 78 0
26909 17106 687 63 0
26859 17347 697 59 0
26859 17468 703 57 0
26909 17588 719 56 0
26958 17709 729 56 0
27058 17709 734 52 0
27207 17709 750 54 0
27306 17588 760 57 0
27455 17468 765 59 0
27554 17347 775 67 0
27653 17227 781 56 0
27753 17106 797 67 0
27753 17106 807 74 0
27753 17106 812 78 0
27753 17106 828 81 0
27753 17106 838 87 0
27852 16986 844 84 0
28001 16986 859 77 0
28150 16865 875 74 0
28299 16745 885 66 0
28448 16745 890 65 0
28547 16624 900 67 0
28646 16504 906 73 0
28696 16384 922 74 0
28746 16143 932 74 0
28795 16022 937 70 0
28795 15902 953 67 0
28746 15781 963 65 0
28746 15661 969 64 0
28646 15661 979 65 0
28497 15661 984 63 0
28299 15661 1000 62 0
28199 15781 1010 63 0
28100 16022 1015 66 0
28051 16143 1031 67 0
28001 16384 1041 63 0
28051 16624 1047 64 0
28051 16624 1057 67 0
28150 16745 1062 69 0
28348 16745 1078 70 0
28547 16745 1088 67 0
28646 16745 1094 64 0
28746 16745 1109 64 0
28746 16745 1119 67 0
28795 16624 1125 70 0
28795 16504 1135 73 0
28845 16384 1140 71 0
28845 16143 1156 70 0
28845 16143 1166 68 0
28845 16022 1172 67 0
28845 16022 1182 66 0
28845 16022 1203 65 0
28845 16143 1213 63 0
28895 16263 1219 62 0
28994 16624 1229 61 0
29143 16986 1234 72 0
29242 17588 1250 78 0
29391 18311 1260 78 0
29441 19034 1265 84 0
29490 19757 1281 75 0
29441 20600 1291 78 0
29292 21323 1297 61 0
29043 21925 1307 62 0
28895 22286 1312 73 0
28696 22527 1328 85 0
28497 22648 1338 69 0
28299 22648 1344 61 0
28150 22527 1359 63 0
28100 22286 1369 65 0
28051 21805 1375 62 0
28100 21443 1385 69 0
28249 20841 1390 61 0
28398 20359 1406 75 0
28597 19757 1416 70 0
28845 19154 1422 81 0
29143 18431 1437 64 0
29341 17709 1447 65 0
29590 17106 1453 62 0
29689 16624 1463 66 0
29838 16263 1469 75 0
29887 16022 1484 83 0
29887 16022 1494 91 0
29937 15781 1500 95 0
29937 15661 1515 91 0
29887 15661 1531 88 0
29838 15781 1541 74 0
29838 15902 1547 66 0
29887 16022 1562 63 0
29987 16143 1572 66 0
30185 16263 1578 70 0
30384 16263 1588 73 0
30682 16143 1594 56 0
30880 16022 1609 53 0
31079 15902 1619 57 0
31129 15781 1625 57 0
31129 15540 1640 21 1
25121 11685 1953 24 0
25072 11685 1969 31 0
25072 11685 1979 37 0
24972 11685 1984 41 0
24923 11806 1994 48 0
24923 11926 2000 57 0
24873 12047 2015 61 0
24873 12288 2025 63 0
24873 12408 2031 58 0
24923 12408 2047 53 0
24972 12529 2057 49 0
25072 12529 2062 46 0
25171 12529 2072 44 0
25320 12408 2078 45 0
25370 12288 2094 52 0
25469 12167 2104 58 0
25469 12167 2109 64 0
25469 12167 2125 70 0
25519 12167 2135 73 0
25519 12167 2140 78 0
25519 12167 2150 81 0
25519 12167 2156 78 0
25618 12167 2172 74 0
25667 12288 2182 67 0
25767 12408 2187 68 0
25816 12529 2203 71 0
25965 12769 2219 58 0
|
[<VerifyXunit.UsesVerify>]
module Tests
open Xunit
open VerifyTests
open VerifyXunit
open Newtonsoft.Json
// begin-snippet: NullValueHandling
VerifierSettings.AddExtraSettings(fun settings ->
settings.NullValueHandling <- NullValueHandling.Include)
// end-snippet
// begin-snippet: FsTest
[<Fact>]
let MyTest () =
async {
do! Verifier.Verify(15)
.ToTask() |> Async.AwaitTask
}
// end-snippet
// begin-snippet: WithSettings
[<Fact>]
let WithFluentSetting () =
async {
do! Verifier.Verify(15)
.UseMethodName("customName")
.ToTask() |> Async.AwaitTask
}
// end-snippet
do () |
.pagnation {
text-align: center;
}
.pagnation li {
display: inline;
}
.pagnation li a {
border: 1px solid #7F7F7F;
color: #4D4D4D;
margin: 3px;
padding: 3px 6px;
text-decoration: none;
}
.pagnation li span {
-x-system-font: none;
color: #4D4D4D;
font-size: 12px;
font-size-adjust: none;
margin: 3px;
padding: 3px 6px;
text-decoration: none;
}
.pagnation li a:hover {
background-color: #999;
border: 1px solid #999;
color: #4D4D4D;
}
.pagnation .current a {
background-color: #666;
border: 1px solid #666;
color: #FFF;
font-weight: bold;
margin: 2px;
}
.pagnation .current a:hover {
background-color: #666;
border: 1px solid #666;
color: #FFF;
cursor: text;
font-weight: bold;
margin: 2px;
}
.pagnation .disabled a {
border: 1px solid #BBB;
color: #BBB;
margin: 2px;
}
.pagnation .disabled a:hover {
background: #f9f9f9 none repeat scroll 0 0;
border: 1px solid #BBB;
color: #BBB;
cursor: text;
}
.load-div {
height: 40px;
display: none;
}
.load-div.page-loading {
display: block;
background: 10% center no-repeat url(imgs/dot_loading.gif);
}
|
;; -*- no-byte-compile: t; -*-
;;; app/everywhere/packages.el
(package! emacs-everywhere :pin "02450162adba68a16ae8a0b68f362cc06c54fc04")
|
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 8.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 157, 7]
NotebookDataLength[ 763270, 29978]
NotebookOptionsPosition[ 710475, 28801]
NotebookOutlinePosition[ 756106, 29767]
CellTagsIndexPosition[ 756063, 29764]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell["Read FeynArts File", "Section"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"<<", "/home/u2/jrsmith/Mathematica/FeynArts/FeynArts.m"}]], "Input"],
Cell[BoxData["\<\"\"\>"], "Print"],
Cell[BoxData["\<\"FeynArts 3.2\"\>"], "Print"],
Cell[BoxData["\<\"by Hagen Eck, Sepp Kueblbeck, and Thomas Hahn\"\>"], "Print"],
Cell[BoxData["\<\"last revised 10 Jan 05\"\>"], "Print"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["Examine FeynArts Functions", "Section"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"?", "FeynArts`*"}]], "Input"],
Cell[BoxData[GridBox[{
{
StyleBox["FeynArts`",
FontFamily->"Helvetica",
FontSize->12,
FontWeight->"Bold"]},
{GridBox[{
{
ButtonBox[
StyleBox["ActualOptions", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ActualOptions"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["FreeWFQ", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`FreeWFQ"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["NonCommutative", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`NonCommutative"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Tadpoles", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Tadpoles"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["Adjacencies", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Adjacencies"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["F$AllClasses", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`F$AllClasses"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["NoUnfold", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`NoUnfold"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["TadpolesOnly", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`TadpolesOnly"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["AllBoxCTs", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`AllBoxCTs"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["F$AllGeneric", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`F$AllGeneric"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Numbering", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Numbering"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["TakeGraph", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`TakeGraph"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["AllBoxes", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`AllBoxes"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["F$AllowedFields", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`F$AllowedFields"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Outgoing", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Outgoing"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["TakeInc", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`TakeInc"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["Alph", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Alph"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["F$AllParticles", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`F$AllParticles"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Paint", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Paint"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["TakeIns", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`TakeIns"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["AmplitudeLevel", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`AmplitudeLevel"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["F$Classes", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`F$Classes"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["PaintLevel", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`PaintLevel"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["TheC", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`TheC"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["AnalyticalCoupling", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`AnalyticalCoupling"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["F$Generic", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`F$Generic"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Particles", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Particles"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["TheLabel", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`TheLabel"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["AnalyticalPropagator", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{
"Info3332157888-4093605", "FeynArts`AnalyticalPropagator"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["F$Particles", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`F$Particles"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["PickLevel", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`PickLevel"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["TheMass", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`TheMass"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["AntiParticle", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`AntiParticle"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["G", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`G"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Pluralize", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Pluralize"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Theta", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Theta"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["Appearance", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Appearance"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["GaugeRules", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`GaugeRules"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["PossibleFields", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`PossibleFields"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Three", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Three"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["AutoEdit", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`AutoEdit"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["GaugeXi", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`GaugeXi"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["PreFactor", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`PreFactor"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["ThreeRed", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ThreeRed"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["Bicycle", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Bicycle"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["GenericModel", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`GenericModel"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Process", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Process"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["ToClasses", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ToClasses"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["BoxCTs", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`BoxCTs"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["GhostDash", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`GhostDash"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Propagator", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Propagator"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["ToFA1Conventions", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ToFA1Conventions"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["BoxCTsOnly", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`BoxCTsOnly"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Graph", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Graph"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["PropagatorArrow", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`PropagatorArrow"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["ToGeneric", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ToGeneric"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["Boxes", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Boxes"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["GraphID", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`GraphID"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["PropagatorDenominator", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{
"Info3332157888-4093605", "FeynArts`PropagatorDenominator"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Topology", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Topology"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["BoxesOnly", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`BoxesOnly"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Greek", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Greek"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["PropagatorGraphics", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`PropagatorGraphics"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["TopologyCode", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`TopologyCode"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["CC", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`CC"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Incoming", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Incoming"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["PropagatorLabel", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`PropagatorLabel"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["TopologyList", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`TopologyList"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["Centre", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Centre"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Index", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Index"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["PropagatorType", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`PropagatorType"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["TopologyOrdering", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`TopologyOrdering"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["CheckFieldPoint", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`CheckFieldPoint"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["IndexDelta", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`IndexDelta"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["PSort", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`PSort"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["TopologySort", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`TopologySort"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["Classes", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Classes"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["IndexRange", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`IndexRange"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["PV", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`PV"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["ToTree", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ToTree"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["ColumnsXRows", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ColumnsXRows"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["IndexSum", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`IndexSum"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["P$Generic", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`P$Generic"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["TriangleCTs", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`TriangleCTs"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["Compare", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Compare"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Indices", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Indices"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["P$NonCommuting", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`P$NonCommuting"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["TriangleCTsOnly", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`TriangleCTsOnly"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["Compatibles", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Compatibles"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["InitializeModel", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`InitializeModel"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["P$Topology", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`P$Topology"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Triangles", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Triangles"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["ComposedChar", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ComposedChar"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["InsertFields", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`InsertFields"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["QuantumNumbers", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`QuantumNumbers"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["TrianglesOnly", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`TrianglesOnly"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["ConjugateCoupling", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ConjugateCoupling"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["InsertionLevel", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`InsertionLevel"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["ReferenceOrder", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ReferenceOrder"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Truncated", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Truncated"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["ContainsQ", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ContainsQ"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Insertions", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Insertions"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Reinitialize", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Reinitialize"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["U", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`U"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["CreateCTTopologies", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`CreateCTTopologies"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["InsertOnly", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`InsertOnly"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["RelativeCF", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`RelativeCF"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["UCAlph", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`UCAlph"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["CreateFeynAmp", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`CreateFeynAmp"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Integral", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Integral"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Render", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Render"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["UCGreek", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`UCGreek"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["CreateTopologies", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`CreateTopologies"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Internal", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Internal"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["ResolveLevel", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ResolveLevel"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["V", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`V"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["CreateVFTopologies", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`CreateVFTopologies"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["KI1", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`KI1"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["RestrictCurrentModel", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{
"Info3332157888-4093605", "FeynArts`RestrictCurrentModel"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Vertex", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Vertex"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["CTOrder", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`CTOrder"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["KI2", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`KI2"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Restrictions", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Restrictions"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["VertexFunction", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`VertexFunction"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["Cycles", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Cycles"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["KI3", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`KI3"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["S", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`S"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["VertexGraphics", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`VertexGraphics"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["Diagonal", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Diagonal"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["KI4", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`KI4"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["ScalarDash", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ScalarDash"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Vertices", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Vertices"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["DiagramGraphics", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`DiagramGraphics"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["KinematicIndices", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`KinematicIndices"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["SelfConjugate", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`SelfConjugate"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["ViolatesQ", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ViolatesQ"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["DiagramSelect", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`DiagramSelect"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["KinematicVector", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`KinematicVector"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["SelfEnergies", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`SelfEnergies"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["VS", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`VS"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["Discard", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Discard"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["KIs", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`KIs"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["SelfEnergiesOnly", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`SelfEnergiesOnly"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["VSort", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`VSort"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["Eight", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Eight"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["LastSelections", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`LastSelections"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["SelfEnergyCTs", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`SelfEnergyCTs"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["WFCorrectionCTs", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`WFCorrectionCTs"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["ExcludedQ", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ExcludedQ"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Loop", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Loop"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["SelfEnergyCTsOnly", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`SelfEnergyCTsOnly"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["WFCorrections", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`WFCorrections"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["ExcludeFieldPoints", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ExcludeFieldPoints"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["LoopNumber", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`LoopNumber"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Seq", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Seq"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["$CounterTerms", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`$CounterTerms"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["ExcludeParticles", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ExcludeParticles"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["L$CTOrders", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`L$CTOrders"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Shape", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Shape"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["$ExcludedFPs", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`$ExcludedFPs"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["ExcludeTopologies", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ExcludeTopologies"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Mass", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Mass"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["ShapeData", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`ShapeData"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["$ExcludedParticleFPs", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{
"Info3332157888-4093605", "FeynArts`$ExcludedParticleFPs"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["External", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`External"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["MatrixTrace", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`MatrixTrace"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["SheetHeader", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`SheetHeader"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["$ExcludeTopologies", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`$ExcludeTopologies"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["F", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`F"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["MatrixTraceFactor", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`MatrixTraceFactor"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Simple", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Simple"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["$FermionLines", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`$FermionLines"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["FAPrint", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`FAPrint"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["MixingPartners", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`MixingPartners"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Sine", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Sine"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["$FeynArts", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`$FeynArts"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["FermionChain", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`FermionChain"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Model", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Model"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Spinor", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Spinor"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["$FeynArtsDir", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`$FeynArtsDir"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["FeynAmp", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`FeynAmp"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Mom", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Mom"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["StartingTopologies", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`StartingTopologies"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["$FeynArtsProgramDir", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`$FeynArtsProgramDir"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["FeynAmpDenominator", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`FeynAmpDenominator"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["MomentumConservation", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{
"Info3332157888-4093605", "FeynArts`MomentumConservation"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["StartTop", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`StartTop"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["$GenericModel", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`$GenericModel"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["FeynAmpList", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`FeynAmpList"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["M$ClassesDescription", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{
"Info3332157888-4093605", "FeynArts`M$ClassesDescription"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Statistics", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Statistics"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["$Model", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`$Model"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["FeynArtsGraphics", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`FeynArtsGraphics"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["M$CouplingMatrices", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`M$CouplingMatrices"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["Straight", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Straight"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["$ModelPath", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`$ModelPath"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["Field", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`Field"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["M$FlippingRules", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`M$FlippingRules"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["SumOver", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`SumOver"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["$ShapeDataDir", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`$ShapeDataDir"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["FieldNumbers", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`FieldNumbers"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["M$GenericCouplings", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`M$GenericCouplings"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["SV", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`SV"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["$SVMixing", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`$SVMixing"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["FieldPoint", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`FieldPoint"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["M$GenericPropagators", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{
"Info3332157888-4093605", "FeynArts`M$GenericPropagators"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["SVCompatibles", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`SVCompatibles"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["$Verbose", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`$Verbose"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic]},
{
ButtonBox[
StyleBox["FieldPoints", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`FieldPoints"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["M$LastGenericRules", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`M$LastGenericRules"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["SymmetryFactor", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`SymmetryFactor"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic], ""},
{
ButtonBox[
StyleBox["FindVertex", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`FindVertex"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["M$LastModelRules", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`M$LastModelRules"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["TadpoleCTs", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`TadpoleCTs"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic], ""},
{
ButtonBox[
StyleBox["FourMomentum", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`FourMomentum"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["M$TruncationRules", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`M$TruncationRules"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic],
ButtonBox[
StyleBox["TadpoleCTsOnly", "Hyperlink"],
Appearance->{Automatic, None},
ButtonData:>{"Info3332157888-4093605", "FeynArts`TadpoleCTsOnly"},
ButtonFunction:>(Internal`PutInformation[#, LongForm -> False]& ),
ButtonNote->"FeynArts`",
Evaluator->Automatic], ""}
},
GridBoxItemSize->{
"Columns" -> {{All}}, "ColumnsIndexed" -> {},
"Rows" -> {
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, {1.05}}, "RowsIndexed" -> {}}]}
},
ColumnsEqual->True,
GridBoxSpacings->{"Columns" -> {
Offset[0.27999999999999997`], {
Offset[0.5599999999999999]},
Offset[0.27999999999999997`]}, "ColumnsIndexed" -> {}, "Rows" -> {
Offset[0.2],
Offset[0.8], {
Offset[1.2]},
Offset[0.2]}, "RowsIndexed" -> {}}]], "Print",
CellMargins->{{20, Inherited}, {Inherited, Inherited}},
ShowCellLabel->False,
CellFrameMargins->{{Inherited, Inherited}, {14, 14}},
Background->RGBColor[0.964706, 0.929412, 0.839216],
ButtonBoxOptions->{Active->True},
GridBoxOptions->{
GridBoxAlignment->{
"Columns" -> {{Left}}, "ColumnsIndexed" -> {}, "Rows" -> {{Baseline}},
"RowsIndexed" -> {}}}]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["Drell-Yan Production:", "Section"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"tops", "=",
RowBox[{"CreateTopologies", "[",
RowBox[{"0", ",", "4", ",",
RowBox[{"ExcludeTopologies", "\[Rule]",
RowBox[{"{", "}"}]}]}], "]"}]}], ";"}], "\[IndentingNewLine]"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"ins", "=",
RowBox[{"InsertFields", "[",
RowBox[{"tops", ",",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}], ",",
RowBox[{"-",
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}]}]}], "}"}], "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"F", "[",
RowBox[{"2", ",",
RowBox[{"{", "1", "}"}]}], "]"}], ",",
RowBox[{"-",
RowBox[{"F", "[",
RowBox[{"2", ",",
RowBox[{"{", "1", "}"}]}], "]"}]}]}], "}"}]}], ",",
RowBox[{"Model", "\[Rule]", "SMQCD"}], ",",
RowBox[{"InsertionLevel", "\[Rule]",
RowBox[{"{", "Classes", "}"}]}], ",",
RowBox[{"ExcludeParticles", "->",
RowBox[{"{",
RowBox[{"{",
RowBox[{
RowBox[{"S", "[", "1", "]"}], ",",
RowBox[{"S", "[", "2", "]"}], ",",
RowBox[{"S", "[", "3", "]"}]}], "}"}], "}"}]}]}], "]"}]}], ";"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Paint", "[",
RowBox[{"ins", ",",
RowBox[{"ColumnsXRows", "\[Rule]",
RowBox[{"{",
RowBox[{"2", ",", "1"}], "}"}]}], ",",
RowBox[{"PaintLevel", "\[Rule]",
RowBox[{"{", "Classes", "}"}]}]}], "]"}], ";"}]}]}]], "Input"],
Cell[BoxData["\<\"\"\>"], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"initializing generic model file \"\>",
"\[InvisibleSpace]", \
"\<\"/home/u2/jrsmith/Mathematica/FeynArts-3.2/Models/Lorentz.gen\"\>"}],
SequenceForm[
"initializing generic model file ",
"/home/u2/jrsmith/Mathematica/FeynArts-3.2/Models/Lorentz.gen"],
Editable->False]], "Print"],
Cell[BoxData["\<\"> $SVMixing is OFF\"\>"], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"generic model \"\>", "\[InvisibleSpace]", "\<\"Lorentz\"\>",
"\[InvisibleSpace]", "\<\" initialized\"\>"}],
SequenceForm["generic model ", "Lorentz", " initialized"],
Editable->False]], "Print"],
Cell[BoxData["\<\"\"\>"], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"initializing classes model file \"\>",
"\[InvisibleSpace]", \
"\<\"/home/u2/jrsmith/Mathematica/FeynArts-3.2/Models/SMQCD.mod\"\>"}],
SequenceForm[
"initializing classes model file ",
"/home/u2/jrsmith/Mathematica/FeynArts-3.2/Models/SMQCD.mod"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> \"\>", "\[InvisibleSpace]", "49",
"\[InvisibleSpace]", "\<\" particles (incl. antiparticles) in \"\>",
"\[InvisibleSpace]", "18", "\[InvisibleSpace]", "\<\" classes\"\>"}],
SequenceForm[
"> ", 49, " particles (incl. antiparticles) in ", 18, " classes"],
Editable->False]], "Print"],
Cell[BoxData["\<\"> $CounterTerms are ON\"\>"], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> \"\>", "\[InvisibleSpace]", "93",
"\[InvisibleSpace]", "\<\" vertices\"\>"}],
SequenceForm["> ", 93, " vertices"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> \"\>", "\[InvisibleSpace]", "120",
"\[InvisibleSpace]", "\<\" counter terms of order 1\"\>"}],
SequenceForm["> ", 120, " counter terms of order 1"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> \"\>", "\[InvisibleSpace]", "6",
"\[InvisibleSpace]", "\<\" counter terms of order 2\"\>"}],
SequenceForm["> ", 6, " counter terms of order 2"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"classes model \"\>", "\[InvisibleSpace]", "\<\"SMQCD\"\>",
"\[InvisibleSpace]", "\<\" initialized\"\>"}],
SequenceForm["classes model ", "SMQCD", " initialized"],
Editable->False]], "Print"],
Cell[BoxData["\<\"\"\>"], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"Excluding \"\>", "\[InvisibleSpace]", "0",
"\[InvisibleSpace]", "\<\" Generic, \"\>", "\[InvisibleSpace]", "4",
"\[InvisibleSpace]", "\<\" Classes, and \"\>", "\[InvisibleSpace]", "4",
"\[InvisibleSpace]", "\<\" Particles fields\"\>"}],
SequenceForm[
"Excluding ", 0, " Generic, ", 4, " Classes, and ", 4, " Particles fields"],
Editable->False]], "Print"],
Cell[BoxData["\<\"\"\>"], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"inserting at level(s) \"\>", "\[InvisibleSpace]",
RowBox[{"{", "Classes", "}"}]}],
SequenceForm["inserting at level(s) ", {Classes}],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "1",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 1, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "2",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"2 Classes insertions\"\>"}],
SequenceForm["> Top. ", 2, ": ", "2 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "3",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 3, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "4",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 4, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"in total: \"\>",
"\[InvisibleSpace]", "\<\"2 Classes insertions\"\>"}],
SequenceForm["in total: ", "2 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData["\<\"\"\>"], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"Restoring \"\>", "\[InvisibleSpace]", "0",
"\[InvisibleSpace]", "\<\" Generic, \"\>", "\[InvisibleSpace]", "4",
"\[InvisibleSpace]", "\<\" Classes, and \"\>", "\[InvisibleSpace]", "4",
"\[InvisibleSpace]", "\<\" Particles fields\"\>"}],
SequenceForm[
"Restoring ", 0, " Generic, ", 4, " Classes, and ", 4, " Particles fields"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "1",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"2 diagrams\"\>"}],
SequenceForm["> Top. ", 1, ": ", "2 diagrams"],
Editable->False]], "Print"],
Cell[GraphicsData["PostScript", "\<\
%!
%%Creator: Mathematica
%%AspectRatio: .65
MathPictureStart
/Mabs {
Mgmatrix idtransform
Mtmatrix dtransform
} bind def
/Mabsadd { Mabs
3 -1 roll add
3 1 roll add
exch } bind def
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
-1.38778e-17 0.0227273 -1.40675e-17 0.0227273 [
[ 0 0 0 0 ]
[ 1 .65 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 .65 L
0 .65 L
closepath
clip
newpath
% Start of sub-graphic
p
-1.38778e-17 -1.40675e-17 0.5 0.5 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.04545 .72727 m
.31818 .5 L
s
.20277 .59618 m
.14923 .61713 L
.17251 .64506 L
F
gsave
.16421 .587 -74.125 -16.125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.31818 .5 L
s
.16087 .3689 m
.21441 .38986 L
.19113 .41779 L
F
gsave
.19943 .35973 -61 -16.125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .72727 m
.68182 .5 L
s
.83913 .6311 m
.78559 .61014 L
.80887 .58221 L
F
gsave
.80057 .64027 -74.125 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.375 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(e) show
72.125 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.68182 .5 L
s
.79723 .40382 m
.85077 .38287 L
.82749 .35494 L
F
gsave
.83579 .413 -61 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.375 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(e) show
72.125 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.68182 .5 m
.67727 .50393 L
.67273 .50738 L
.66818 .50991 L
.66363 .51122 L
.65909 .51114 L
.65454 .50968 L
.65 .50703 L
.64545 .50351 L
.64091 .49955 L
.63636 .49564 L
.63182 .49228 L
.62727 .48987 L
.62273 .48871 L
.61818 .48894 L
.61364 .49054 L
.60909 .49331 L
.60455 .4969 L
.6 .50088 L
.59545 .50474 L
.59091 .50802 L
.58636 .51031 L
.58182 .51131 L
.57727 .51092 L
.57273 .50918 L
.56818 .5063 L
.56364 .50264 L
.55909 .49865 L
.55455 .49482 L
.55 .49164 L
.54546 .48948 L
.54091 .48863 L
.53636 .48918 L
.53182 .49106 L
.52727 .49404 L
.52273 .49777 L
.51818 .50176 L
.51364 .50553 L
.50909 .50862 L
.50455 .51064 L
.5 .51135 L
.49545 .51064 L
.49091 .50862 L
.48636 .50553 L
.48182 .50176 L
.47727 .49777 L
.47273 .49404 L
.46818 .49106 L
.46364 .48918 L
.45909 .48863 L
Mistroke
.45454 .48948 L
.45 .49164 L
.44545 .49482 L
.44091 .49865 L
.43636 .50264 L
.43182 .5063 L
.42727 .50918 L
.42273 .51092 L
.41818 .51131 L
.41364 .51031 L
.40909 .50802 L
.40455 .50474 L
.4 .50088 L
.39545 .4969 L
.39091 .49331 L
.38636 .49054 L
.38182 .48894 L
.37727 .48871 L
.37273 .48987 L
.36818 .49228 L
.36364 .49564 L
.35909 .49955 L
.35455 .50351 L
.35 .50703 L
.34546 .50968 L
.34091 .51114 L
.33637 .51122 L
.33182 .50991 L
.32727 .50738 L
.32273 .50393 L
.31818 .5 L
Mfstroke
gsave
.5 .45704 -67.3438 -17.875 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
71.688 13.562 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.31818 .5 Mdot
.68182 .5 Mdot
gsave
.5 .02273 -91.0938 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.25 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T1) show
81.938 14.688 moveto
(C1) show
102.375 14.688 moveto
(N1) show
119.188 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.5 -1.40675e-17 1 0.5 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.04545 .72727 m
.31818 .5 L
s
.20277 .59618 m
.14923 .61713 L
.17251 .64506 L
F
gsave
.16421 .587 -74.125 -16.125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.31818 .5 L
s
.16087 .3689 m
.21441 .38986 L
.19113 .41779 L
F
gsave
.19943 .35973 -61 -16.125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .72727 m
.68182 .5 L
s
.83913 .6311 m
.78559 .61014 L
.80887 .58221 L
F
gsave
.80057 .64027 -74.125 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.375 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(e) show
72.125 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.68182 .5 L
s
.79723 .40382 m
.85077 .38287 L
.82749 .35494 L
F
gsave
.83579 .413 -61 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.375 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(e) show
72.125 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.68182 .5 m
.67727 .50393 L
.67273 .50738 L
.66818 .50991 L
.66363 .51122 L
.65909 .51114 L
.65454 .50968 L
.65 .50703 L
.64545 .50351 L
.64091 .49955 L
.63636 .49564 L
.63182 .49228 L
.62727 .48987 L
.62273 .48871 L
.61818 .48894 L
.61364 .49054 L
.60909 .49331 L
.60455 .4969 L
.6 .50088 L
.59545 .50474 L
.59091 .50802 L
.58636 .51031 L
.58182 .51131 L
.57727 .51092 L
.57273 .50918 L
.56818 .5063 L
.56364 .50264 L
.55909 .49865 L
.55455 .49482 L
.55 .49164 L
.54546 .48948 L
.54091 .48863 L
.53636 .48918 L
.53182 .49106 L
.52727 .49404 L
.52273 .49777 L
.51818 .50176 L
.51364 .50553 L
.50909 .50862 L
.50455 .51064 L
.5 .51135 L
.49545 .51064 L
.49091 .50862 L
.48636 .50553 L
.48182 .50176 L
.47727 .49777 L
.47273 .49404 L
.46818 .49106 L
.46364 .48918 L
.45909 .48863 L
Mistroke
.45454 .48948 L
.45 .49164 L
.44545 .49482 L
.44091 .49865 L
.43636 .50264 L
.43182 .5063 L
.42727 .50918 L
.42273 .51092 L
.41818 .51131 L
.41364 .51031 L
.40909 .50802 L
.40455 .50474 L
.4 .50088 L
.39545 .4969 L
.39091 .49331 L
.38636 .49054 L
.38182 .48894 L
.37727 .48871 L
.37273 .48987 L
.36818 .49228 L
.36364 .49564 L
.35909 .49955 L
.35455 .50351 L
.35 .50703 L
.34546 .50968 L
.34091 .51114 L
.33637 .51122 L
.33182 .50991 L
.32727 .50738 L
.32273 .50393 L
.31818 .5 L
Mfstroke
gsave
.5 .45704 -68 -19.3125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 23.3125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(Z) show
73.000 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.31818 .5 Mdot
.68182 .5 Mdot
gsave
.5 .02273 -91.0938 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.25 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T1) show
81.938 14.688 moveto
(C2) show
102.375 14.688 moveto
(N2) show
119.188 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
0 g
gsave
.29545 .59 -68.4688 -10.9375 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
73.938 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.39773 .59 -68.4688 -10.9375 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
73.938 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.5 .59 -71.0938 -10.9375 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
63.000 15.312 moveto
(\\256) show
79.188 15.312 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.60227 .59 -68.4688 -11.0938 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 22.1875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 15.625 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 15.625 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(e) show
73.938 15.625 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.70455 .59 -68.4688 -11.0938 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 22.1875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 15.625 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 15.625 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(e) show
73.938 15.625 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
% End of Graphics
MathPictureEnd
\
\>"], "Graphics",
ImageSize->{288, 187.188},
ImageMargins->{{43, 0}, {0, 0}},
ImageRegion->{{0, 1}, {0, 1}},
ImageCache->GraphicsData["CompressedBitmap", "\<\
eJztW2lvFEcQXXa96zW+AIO5bWNzmZuAuQwYG8fcyByBKFIOQohAyoEIUgLh
ClcAK5DkU5QP+Q2JlA9RFEX5Zw5T3by3034zHnsNJJKRsIuqV6+qe3qqe2qG
Y+euXrzw6bmrl86f6zhw5dzli5fOf9Ex9PmV56rCjFxuxq/P/y7oyEXyaC73
4of9+S364f/xiuSh6Fc+ymEmpOZIKkVSnbDWRlIhkkrQjaSyFCNpJnwDljys
A8kpNUZSXSSVq0iJLDXVp9QQSTUgK8TJiCsBl56c4ivEZzPgy0N3eJw0E2eJ
OLtIxYxpBnxMs0nw0XooOc16kPECJ6ZpkuMdfXEHpWet6Gvi6yKdnuCD4wwi
H79x1CBIlhe4xPwTmeszMg9lSX32FCc8B1Nfl8rH5TQ42TQLQsqa5lxI5VQ+
DmL/ZNPkmDkPWdOcF5+vRD76ppSwl5dmo/BIT1gtrDGpG0Ux6YYuwMqUgtu4
KMAjGelVhrXjB5rgwBLrKwdWHJ3ASNLrdbB1KeYANyb1OpgaIBUhlSBZ6sE+
SNxIRj5LpIwLE/AVYPU3Z3/0qyE+qsSzRLCFk/ZhKgtnrk6wcB8cDFNqjaQS
7urA8anAtQrccUcb/XwdB8hpeaxsqyln12nU/8n9I3SzM+LqHG29MP0tdC0Z
cS7NigrxF6T5Qtfo4Cztf0JaKHRNDs4T4R+QFgtds4PPEnn+LnRLM+I8rZrp
tuhnMV6iRwSuvQpfNxx3BjKQ5V07OnbDeAxI10TA7lq7X5xblkorkI9gXZER
N9fR8lC0CBIr+rfQrcqIm+doW8VMccWxtD0UuO4qfH34+cLUKigeCNzaKnzd
sHMLkjILKO4L3PoqfN2wK+5V5XgX0uaMuEWOlhd+roB/A2lLRtxiR8tS0SLg
dyD1ZMQtcbSqfMwSjrcFbnsVvj58mzA1C4pbArezCl83bFfRWHUDxxuQ9mTE
dTjaDiiaBPxLA9VU5gNb36Q9l7nQy6CwY1NB1Mz+8SGd7h9dYuasuFsKb6Za
l1dQcFcowZHDbcIMm9UFdf4FFOMyHAuA09G2hs4KxxJKDx1tl+oFxQFYveMK
MN2FdBBku+A4BJ0f40ow3YbpMHQ74TiILFaGjjvg2A/4cWTB2AOY39WOYhUc
OTJe4OEkq0lrHMXq+BjNcR+kU4JiL6zrKyjYMcxj3MGiPi1wpN0N3QZHq7Y4
Ou6AxHzOpHowFEe60YXaJBxZSvcI67tCtwMBVHHyoTYL01aE2i2s76eGUmXY
DSf3BmgZgEM/D4lrlLgtjmJLXBFc2guCIghayUkTL57txrxnaDWyzQLnzg25
bUlTnE+aFTt32P12RFi3IejGVF9/fFABNiC8So4PrewipCeiTjmKxR+odgj4
eqTUI6zqwKhSstNeY6Ral5HFHzG5VJgIFxKPYGcgMdQagWt3tFzE6yCVRWbq
PH4W0gfC6gP0xvMJBrcakh3LGlCuTfeesPrpUIVkJQa8SlhJMSys76R6+KB7
BehtoVsSn0qTTlTh68P3QcGL3C7gJzPiPK1tUbWoGybx9MOe1WlIwSHHBnAo
1dffV/0AsdfWBKlB6MrwsMNFcLu+FUllLKmq+cakyRHUiGtVl2pVtxG3UNV6
CRq7lkEXhngWOvYMX39Wvojvg6IoKJSuVuhUwgqXlU/h8siUB9yz0KkMqolW
egXZ+22cqzZxGnkVpzBNvnGpS0o4eBgoTDi/aqY7a34D4TRy4Td4ogpH2NTL
wvq4TnVJ84hgsaxNURbFNS10EEalkyG0H7fdwfaJgj2aF1A3C3FdM3C3QTbm
VdVYD8VnLP3Osy8176Mps3ATklr3R1I897nQWbf1axlx7mziNpOgo6vaNOro
cUL4qg6T8nUPPm53V61enjB4vhpOAi8WYB/Aum3cQG2KCeeR8LjALRK43gpa
FoJCHP4hpGMCt1DgdoW0rDQLxex9JHSHha/quSrf7cnhFcXHQndI+KqOs/Ld
lhxeUVwUuoPCV/XblW9Pcnj2gD+BpELNFbgUWuo+g3RA4FoEbmsyLeGXIQ0J
3ByB25JMO0fM2RWh2y981Rso5bspObyiuCp0A8JXvVdTvhuTw7MH/BUkFapJ
4FJoCb8OSW0qvcK3MaOv7xryoZm9a1fmXlTQ6O+pTCjXpJPvg6zzboXzZKrV
U3Qjyp1IskPiMHS3oatsfRYAt22ARdvgdjJxT9WuvVuEyb5YOAzOW9B5eBdM
9yAdRBweCn0rtwP+DxBnMK4zihUOvgz+jzALg8j4EUbh4Z3wfwLTIHT8ZGR5
BbuZnsLUL3SdFbnzdGXsz6DrS7X61w7tUKjDDOF7MuL8ixR17vhJ6FS3VeH8
ax91JPlZ6FSLT+H8yyyeIn6B1CN0Hs7TAVcYO2lskt2Hle9X/UvBhXGKcpxi
c5yiHKfwryvVbm6rO+gxKJxqT94TvmrL9g/gynQPOaYfOlTJuS98E19z6wMB
w6v3X+qdBIN2CqvvV7HkP4S0HBIblfxIgO/OPEVLHNSAlZBHrcijfjTgIvOA
UbnRE7RERHwsAvhPLNTuyw8m2KdTN2+70D0WvomvpfUGrihUKEX7JGPq/gMa
7tLfQWK7jU1ETttTgWPJ9bSNcXhwA3XCyjv+mcAxvP/oiJ80fR9J7MDwxjDp
B1i5BPxnTqq3ZvAS1m1gVZ9d/QiPlcLqP8B6SZ+L2T/+Q1/FTcvT8rT8/5Lt
CYj/i4fVNtBZe4d1js8W/snMHgfGPkS1p9iOwtYF6YbDWGvPPoNpg8RvMWyT
qUemJn1d4WhPHfwsu03oukEWWGuQdaC7XhHAHPmKq03o1kC3FFI5HjTQXQsD
pMPXQuKHnhzVg4mR2XFqHqQpIGsdfbGpN2MSmic7TPYop4CMc1YdGa/wEkj8
/wFLhW6CAbpTrVOwhHhHtWOWJ3gTZBgBz4Upt2wGMisX9oqiE9IEKayLEhSx
m44i+vm6a3E1cm7Gv0J+dgc=\
\>"],
ImageRangeCache->{{{0, 431}, {279.75, 0}} -> {-0.0314566, 6.18969, 0.153351, \
0.153351}, {{0.25, 215.5}, {279.75, 64.5}} -> {-1.02566, -1.00011, 0.153312, \
0.153312}, {{215.5, 430.688}, {279.75, 64.5}} -> {-23.0323, -1.0033, \
0.153356, 0.153356}}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"famp", "=",
RowBox[{"CreateFeynAmp", "[", "ins", "]"}]}]], "Input"],
Cell[BoxData["\<\"\"\>"], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"creating amplitudes at level(s) \"\>", "\[InvisibleSpace]",
RowBox[{"{", "Classes", "}"}]}],
SequenceForm["creating amplitudes at level(s) ", {Classes}],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "1",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"2 Classes amplitudes\"\>"}],
SequenceForm["> Top. ", 1, ": ", "2 Classes amplitudes"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"in total: \"\>",
"\[InvisibleSpace]", "\<\"2 Classes amplitudes\"\>"}],
SequenceForm["in total: ", "2 Classes amplitudes"],
Editable->False]], "Print"],
Cell[BoxData[
RowBox[{
RowBox[{"FeynAmpList", "[",
RowBox[{
RowBox[{"Model", "\[Rule]", "SMQCD"}], ",",
RowBox[{"GenericModel", "\[Rule]", "\<\"Lorentz\"\>"}], ",",
RowBox[{"AmplitudeLevel", "\[Rule]",
RowBox[{"{", "Classes", "}"}]}], ",",
RowBox[{"ExcludeParticles", "\[Rule]",
RowBox[{"{",
RowBox[{"{",
RowBox[{
RowBox[{"S", "[", "1", "]"}], ",",
RowBox[{"S", "[", "2", "]"}], ",",
RowBox[{"S", "[", "3", "]"}]}], "}"}], "}"}]}], ",",
RowBox[{"LastSelections", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"ExcludeFieldPoints", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"Restrictions", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"Process", "\[Rule]",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}], ",",
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["p", 1],
Editable->False], ",", "MU"}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"-",
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}]}], ",",
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], ",", "MU"}], "}"}]}], "}"}], "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"F", "[",
RowBox[{"2", ",",
RowBox[{"{", "1", "}"}]}], "]"}], ",",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], ",", "ME"}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"-",
RowBox[{"F", "[",
RowBox[{"2", ",",
RowBox[{"{", "1", "}"}]}], "]"}]}], ",",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False], ",", "ME"}], "}"}]}], "}"}]}]}]}], "]"}], "[",
RowBox[{
RowBox[{"FeynAmp", "[",
RowBox[{
RowBox[{"GraphID", "[",
RowBox[{
RowBox[{"Topology", "\[Equal]", "1"}], ",",
RowBox[{"Generic", "\[Equal]", "1"}], ",",
RowBox[{"Classes", "\[Equal]", "1"}], ",",
RowBox[{"Number", "\[Equal]", "1"}]}], "]"}], ",",
RowBox[{"Integral", "[", "]"}], ",",
RowBox[{
RowBox[{
RowBox[{
OverscriptBox["\<\"v\"\>", "\<\"_\"\>"], "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], ",", "MU"}], "]"}], ".",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-",
FractionBox["2", "3"]}], " ", "\[ImaginaryI]", " ", "EL", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"-\"\>"],
Subscript["-"],
Editable->False]}],
SequenceForm["om",
Subscript["-"]],
Editable->False], ")"}]}]}], "-",
RowBox[{
FractionBox["2", "3"], " ", "\[ImaginaryI]", " ", "EL", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"+\"\>"],
Subscript["+"],
Editable->False]}],
SequenceForm["om",
Subscript["+"]],
Editable->False], ")"}]}]}]}], ")"}], ".",
RowBox[{"\<\"u\"\>", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["p", 1],
Editable->False], ",", "MU"}], "]"}]}], " ",
RowBox[{
RowBox[{
OverscriptBox["\<\"u\"\>", "\<\"_\"\>"], "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], ",", "ME"}], "]"}], ".",
RowBox[{"(",
RowBox[{
RowBox[{"\[ImaginaryI]", " ", "EL", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"-\"\>"],
Subscript["-"],
Editable->False]}],
SequenceForm["om",
Subscript["-"]],
Editable->False], ")"}]}]}], "+",
RowBox[{"\[ImaginaryI]", " ", "EL", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"+\"\>"],
Subscript["+"],
Editable->False]}],
SequenceForm["om",
Subscript["+"]],
Editable->False], ")"}]}]}]}], ")"}], ".",
RowBox[{"\<\"v\"\>", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False], ",", "ME"}], "]"}]}], " ",
RowBox[{"IndexDelta", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False]}], "]"}], " ",
RowBox[{"\<\"g\"\>", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False]}], "]"}], " ",
FractionBox["1",
SuperscriptBox[
RowBox[{"(",
RowBox[{
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], "+",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False]}], ")"}], "2"]], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False], ",", "3", ",", "External"}], "]"}], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",", "3", ",", "External"}], "]"}]}]}], "]"}], ",",
RowBox[{"FeynAmp", "[",
RowBox[{
RowBox[{"GraphID", "[",
RowBox[{
RowBox[{"Topology", "\[Equal]", "1"}], ",",
RowBox[{"Generic", "\[Equal]", "1"}], ",",
RowBox[{"Classes", "\[Equal]", "2"}], ",",
RowBox[{"Number", "\[Equal]", "2"}]}], "]"}], ",",
RowBox[{"Integral", "[", "]"}], ",",
RowBox[{
RowBox[{
RowBox[{
OverscriptBox["\<\"v\"\>", "\<\"_\"\>"], "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], ",", "MU"}], "]"}], ".",
RowBox[{"(",
RowBox[{
FractionBox[
RowBox[{"\[ImaginaryI]", " ", "EL", " ",
RowBox[{"(",
RowBox[{
FractionBox["1", "2"], "-",
FractionBox[
RowBox[{"2", " ", "SW2"}], "3"]}], ")"}], " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"-\"\>"],
Subscript["-"],
Editable->False]}],
SequenceForm["om",
Subscript["-"]],
Editable->False], ")"}]}]}],
RowBox[{"CW", " ", "SW"}]], "-",
FractionBox[
RowBox[{"2", " ", "\[ImaginaryI]", " ", "EL", " ", "SW", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"+\"\>"],
Subscript["+"],
Editable->False]}],
SequenceForm["om",
Subscript["+"]],
Editable->False], ")"}]}]}],
RowBox[{"3", " ", "CW"}]]}], ")"}], ".",
RowBox[{"\<\"u\"\>", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["p", 1],
Editable->False], ",", "MU"}], "]"}]}], " ",
RowBox[{
RowBox[{
OverscriptBox["\<\"u\"\>", "\<\"_\"\>"], "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], ",", "ME"}], "]"}], ".",
RowBox[{"(",
RowBox[{
FractionBox[
RowBox[{"\[ImaginaryI]", " ", "EL", " ",
RowBox[{"(",
RowBox[{
RowBox[{"-",
FractionBox["1", "2"]}], "+", "SW2"}], ")"}], " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"-\"\>"],
Subscript["-"],
Editable->False]}],
SequenceForm["om",
Subscript["-"]],
Editable->False], ")"}]}]}],
RowBox[{"CW", " ", "SW"}]], "+",
FractionBox[
RowBox[{"\[ImaginaryI]", " ", "EL", " ", "SW", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"+\"\>"],
Subscript["+"],
Editable->False]}],
SequenceForm["om",
Subscript["+"]],
Editable->False], ")"}]}]}], "CW"]}], ")"}], ".",
RowBox[{"\<\"v\"\>", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False], ",", "ME"}], "]"}]}], " ",
RowBox[{"IndexDelta", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False]}], "]"}], " ",
RowBox[{"\<\"g\"\>", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False]}], "]"}], " ",
FractionBox["1",
RowBox[{
RowBox[{"-", "MZ2"}], "+",
SuperscriptBox[
RowBox[{"(",
RowBox[{
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], "+",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False]}], ")"}], "2"]}]], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False], ",", "3", ",", "External"}], "]"}], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",", "3", ",", "External"}], "]"}]}]}], "]"}]}],
"]"}]], "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"famp", " ", "//", "Length"}]], "Input"],
Cell[BoxData["2"], "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"strm", "=",
RowBox[{"OpenWrite", "[", "\"\<test.amp\>\"", "]"}]}]], "Input"],
Cell[BoxData[
RowBox[{"OutputStream", "[",
RowBox[{"\<\"test.amp\"\>", ",", "13"}], "]"}]], "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{"Write", "[",
RowBox[{"strm", ",", "famp2"}], "]"}], "\[IndentingNewLine]",
RowBox[{"Close", "[", "strm", "]"}]}], "Input"],
Cell[BoxData["\<\"test.amp\"\>"], "Output"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["Direct Photon Production:", "Section",
CellChangeTimes->{{3.528812998508293*^9, 3.528812999849534*^9}}],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"tops", "=",
RowBox[{"CreateTopologies", "[",
RowBox[{"0", ",", "4"}], "]"}]}], ";"}], "\[IndentingNewLine]"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"ins", "=",
RowBox[{"InsertFields", "[",
RowBox[{"tops", ",",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"V", "[", "5", "]"}], ",",
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}]}], "}"}], "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"V", "[", "1", "]"}], ",",
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}]}], "}"}]}], ",",
RowBox[{"Model", "\[Rule]", "SMQCD"}], ",",
RowBox[{"InsertionLevel", "\[Rule]",
RowBox[{"{", "Classes", "}"}]}]}], "]"}]}], ";"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Paint", "[",
RowBox[{"ins", ",",
RowBox[{"ColumnsXRows", "\[Rule]",
RowBox[{"{",
RowBox[{"2", ",", "1"}], "}"}]}], ",",
RowBox[{"PaintLevel", "\[Rule]",
RowBox[{"{", "Classes", "}"}]}]}], "]"}], ";"}]}]}]], "Input"],
Cell[BoxData["\<\"\"\>"], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"inserting at level(s) \"\>", "\[InvisibleSpace]",
RowBox[{"{", "Classes", "}"}]}],
SequenceForm["inserting at level(s) ", {Classes}],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "1",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 1, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "2",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 Classes insertion\"\>"}],
SequenceForm["> Top. ", 2, ": ", "1 Classes insertion"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "3",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 3, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "4",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 Classes insertion\"\>"}],
SequenceForm["> Top. ", 4, ": ", "1 Classes insertion"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"in total: \"\>",
"\[InvisibleSpace]", "\<\"2 Classes insertions\"\>"}],
SequenceForm["in total: ", "2 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "1",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 diagram\"\>"}],
SequenceForm["> Top. ", 1, ": ", "1 diagram"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "2",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 diagram\"\>"}],
SequenceForm["> Top. ", 2, ": ", "1 diagram"],
Editable->False]], "Print"],
Cell[GraphicsData["PostScript", "\<\
%!
%%Creator: Mathematica
%%AspectRatio: .65
MathPictureStart
/Mabs {
Mgmatrix idtransform
Mtmatrix dtransform
} bind def
/Mabsadd { Mabs
3 -1 roll add
3 1 roll add
exch } bind def
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
-1.38778e-17 0.0227273 -1.40675e-17 0.0227273 [
[ 0 0 0 0 ]
[ 1 .65 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 .65 L
0 .65 L
closepath
clip
newpath
% Start of sub-graphic
p
-1.38778e-17 -1.40675e-17 0.5 0.5 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.31818 .5 m
.31135 .50005 L
.30457 .50126 L
.29808 .50362 L
.29211 .50709 L
.28685 .51156 L
.28247 .51691 L
.27911 .52294 L
.27683 .52943 L
.27568 .53616 L
.27564 .54287 L
.27663 .54932 L
.27854 .55528 L
.28122 .56053 L
.28446 .5649 L
.28805 .56824 L
.29176 .57047 L
.29535 .57154 L
.29858 .57146 L
.30124 .5703 L
.30313 .56816 L
.30409 .56521 L
.30402 .56163 L
.30284 .55766 L
.30053 .55352 L
.29714 .54947 L
.29274 .54574 L
.28746 .54257 L
.28147 .54017 L
.27497 .53869 L
.26819 .53827 L
.26135 .53898 L
.25472 .54086 L
.2485 .54386 L
.24291 .54793 L
.23814 .55293 L
.23434 .55869 L
.23159 .56501 L
.22997 .57167 L
.22946 .57842 L
.23002 .58501 L
.23156 .59121 L
.23394 .59678 L
.23696 .60154 L
.24044 .60534 L
.24413 .60805 L
.2478 .60961 L
.25121 .61001 L
.25413 .6093 L
.25637 .60756 L
Mistroke
.25774 .60493 L
.25812 .60159 L
.25741 .59776 L
.25558 .59366 L
.25264 .58954 L
.24866 .58565 L
.24373 .58222 L
.23802 .57947 L
.23171 .57758 L
.22502 .5767 L
.21818 .57692 L
.21143 .5783 L
.205 .58084 L
.19913 .58447 L
.19399 .58909 L
.18976 .59455 L
.18656 .60066 L
.18446 .60721 L
.18348 .61395 L
.1836 .62063 L
.18474 .62703 L
.18677 .63289 L
.18955 .63802 L
.19286 .64224 L
.19649 .64542 L
.2002 .64747 L
.20374 .64836 L
.2069 .64812 L
.20945 .6468 L
.21121 .64453 L
.21202 .64147 L
.21178 .63781 L
.21043 .6338 L
.20796 .62966 L
.20441 .62564 L
.19986 .62198 L
.19446 .61892 L
.18838 .61665 L
.18182 .61532 L
.17502 .61507 L
.1682 .61596 L
.16161 .61801 L
.15548 .62118 L
.15 .6254 L
.14537 .63053 L
.14172 .63639 L
.13915 .64278 L
.13769 .64947 L
.13735 .65621 L
.13807 .66275 L
Mistroke
.13975 .66887 L
.14223 .67433 L
.14534 .67895 L
.14887 .68259 L
.15257 .68513 L
.15621 .68651 L
.15956 .68674 L
.1624 .68587 L
.16451 .68398 L
.16574 .68123 L
.16596 .67781 L
.16508 .67392 L
.16308 .6698 L
.15998 .6657 L
.15584 .66186 L
.15079 .65852 L
.14497 .65589 L
.13859 .65415 L
.13186 .65343 L
.12502 .65383 L
.1183 .65539 L
.11195 .65809 L
.10617 .66188 L
.10117 .66664 L
.09709 .67221 L
.09405 .67841 L
.09211 .685 L
.0913 .69175 L
.09159 .6984 L
.09287 .70473 L
.09503 .71049 L
.0979 .7155 L
.10128 .71957 L
.10493 .72258 L
.10863 .72446 L
.11214 .72517 L
.11521 .72476 L
.11766 .72328 L
.11928 .72088 L
.11994 .71772 L
.11953 .714 L
.11801 .70995 L
.11537 .70581 L
.11166 .70183 L
.10697 .69825 L
.10146 .6953 L
.09529 .69316 L
.08868 .69199 L
.08186 .69191 L
.07506 .69297 L
Mistroke
.06853 .6952 L
.06248 .69854 L
.05713 .7029 L
.05264 .70815 L
.04915 .71411 L
.04674 .72056 L
.04545 .72727 L
Mfstroke
gsave
.16421 .587 -74.125 -18.375 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 22.375 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
72.125 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.31818 .5 L
s
.20277 .40382 m
.17251 .35494 L
.14923 .38287 L
F
gsave
.19943 .35973 -61 -16.125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.68182 .5 m
.68789 .49982 L
.69364 .50004 L
.69875 .50101 L
.70303 .50299 L
.70636 .5061 L
.70878 .5103 L
.71042 .51544 L
.71153 .52123 L
.71241 .52728 L
.7134 .5332 L
.71483 .53859 L
.71697 .54313 L
.71999 .54662 L
.72396 .54896 L
.72881 .55025 L
.73437 .55069 L
.74037 .5506 L
.74649 .55037 L
.75238 .55041 L
.75773 .5511 L
.7623 .55272 L
.76595 .55545 L
.76867 .5593 L
.77055 .56415 L
.7718 .56976 L
.77272 .57577 L
.77363 .58178 L
.77489 .58739 L
.77676 .59224 L
.77948 .59609 L
.78314 .59881 L
.78771 .60044 L
.79306 .60113 L
.79895 .60117 L
.80506 .60094 L
.81106 .60085 L
.81662 .60129 L
.82148 .60257 L
.82545 .60492 L
.82847 .6084 L
.83061 .61294 L
.83204 .61833 L
.83303 .62425 L
.83391 .63031 L
.83502 .63609 L
.83666 .64123 L
.83908 .64544 L
.84242 .64854 L
.8467 .65052 L
Mistroke
.85181 .65149 L
.85755 .65171 L
.86363 .65153 L
.8697 .65134 L
.87544 .65156 L
.88056 .65254 L
.88483 .65451 L
.88817 .65762 L
.89059 .66182 L
.89224 .66696 L
.89334 .67275 L
.89422 .6788 L
.89521 .68472 L
.89665 .69011 L
.89879 .69465 L
.90181 .69813 L
.90578 .70048 L
.91063 .70176 L
.9162 .7022 L
.9222 .70211 L
.92831 .70188 L
.9342 .70192 L
.93955 .70261 L
.94412 .70423 L
.94778 .70695 L
.95049 .7108 L
.95237 .71566 L
.95363 .72126 L
.95455 .72727 L
Mfstroke
gsave
.80057 .64027 -73.6875 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
71.688 13.562 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.68182 .5 L
s
.83913 .3689 m
.80887 .41779 L
.78559 .38986 L
F
gsave
.83579 .413 -61 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.31818 .5 m
.68182 .5 L
s
.52727 .5 m
.47273 .48182 L
.47273 .51818 L
F
gsave
.5 .45704 -67.5625 -16.125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.31818 .5 Mdot
.68182 .5 Mdot
gsave
.5 .02273 -91.0938 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.25 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T1) show
81.938 14.688 moveto
(C1) show
102.375 14.688 moveto
(N1) show
119.188 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.5 -1.40675e-17 1 0.5 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.5 .68182 m
.49395 .67778 L
.48723 .67489 L
.48007 .67331 L
.47275 .67313 L
.46552 .67438 L
.45868 .677 L
.45245 .68086 L
.44707 .68578 L
.4427 .6915 L
.43947 .69774 L
.43742 .70417 L
.43657 .71049 L
.43684 .71636 L
.43812 .72148 L
.44022 .72561 L
.44292 .72854 L
.44598 .73011 L
.44913 .73027 L
.45209 .72901 L
.4546 .72641 L
.45641 .72262 L
.45732 .71785 L
.45718 .71236 L
.45588 .70644 L
.45338 .70042 L
.44971 .69462 L
.44494 .68937 L
.43921 .68494 L
.43273 .68158 L
.42571 .67947 L
.41842 .67874 L
.41112 .67943 L
.4041 .68153 L
.3976 .68492 L
.39187 .68945 L
.38709 .69489 L
.3834 .70097 L
.38088 .70737 L
.37957 .71377 L
.37941 .71985 L
.38032 .7253 L
.38212 .72984 L
.38462 .73326 L
.38757 .73537 L
.39072 .73609 L
.39378 .73538 L
.39649 .73329 L
.3986 .72994 L
.39989 .72553 L
Mistroke
.40017 .72028 L
.39934 .71449 L
.39731 .70847 L
.39408 .70255 L
.38973 .69705 L
.38436 .69226 L
.37814 .68846 L
.3713 .68584 L
.36409 .68457 L
.35676 .6847 L
.3496 .68626 L
.34287 .68916 L
.33681 .69328 L
.33164 .69839 L
.32751 .70425 L
.32453 .71056 L
.32275 .717 L
.32215 .72325 L
.32265 .72898 L
.32413 .73391 L
.32638 .73779 L
.32919 .74042 L
.33229 .74169 L
.33542 .74154 L
.3383 .73998 L
.34067 .7371 L
.34231 .73308 L
.343 .72812 L
.34261 .72251 L
.34105 .71654 L
.33829 .71055 L
.33437 .70484 L
.32937 .69974 L
.32346 .69553 L
.31684 .69243 L
.30974 .69061 L
.30242 .69019 L
.29516 .6912 L
.28823 .69359 L
.28189 .69725 L
.27635 .70201 L
.27179 .70761 L
.26836 .71378 L
.26611 .72021 L
.26505 .72657 L
.26514 .73254 L
.26626 .73781 L
.26823 .74213 L
.27085 .74527 L
.27387 .74708 L
Mistroke
.27702 .74748 L
.28003 .74647 L
.28263 .74409 L
.28458 .74049 L
.28566 .73587 L
.28571 .73048 L
.28461 .72461 L
.28232 .71859 L
.27884 .71273 L
.27425 .70736 L
.26868 .70277 L
.26231 .69921 L
.25536 .69688 L
.24809 .69591 L
.24078 .69636 L
.23369 .69822 L
.22709 .7014 L
.22121 .70575 L
.21625 .71106 L
.21237 .71704 L
.20965 .72341 L
.20813 .72983 L
.20779 .73599 L
.20852 .74157 L
.21018 .74629 L
.21257 .74991 L
.21547 .75226 L
.2186 .75322 L
.2217 .75275 L
.22449 .75089 L
.22672 .74775 L
.22816 .7435 L
.22863 .73838 L
.22799 .73266 L
.22616 .72666 L
.22314 .7207 L
.21897 .71511 L
.21377 .71018 L
.20768 .70619 L
.20093 .70336 L
.19376 .70184 L
.18643 .70174 L
.17922 .70305 L
.1724 .70573 L
.16621 .70965 L
.16088 .71461 L
.15656 .72037 L
.15338 .72662 L
.15139 .73306 L
.1506 .73936 L
Mistroke
.15092 .7452 L
.15224 .75029 L
.15437 .75437 L
.1571 .75723 L
.16017 .75874 L
.16332 .75883 L
.16626 .7575 L
.16874 .75485 L
.17051 .751 L
.17138 .74619 L
.17118 .74067 L
.16983 .73474 L
.16727 .72873 L
.16354 .72295 L
.15872 .71773 L
.15296 .71335 L
.14644 .71004 L
.1394 .708 L
.1321 .70733 L
.12481 .7081 L
.11781 .71026 L
.11135 .71371 L
.10565 .71829 L
.10092 .72377 L
.09729 .72987 L
.09483 .73627 L
.09358 .74267 L
.09347 .74873 L
.09442 .75414 L
.09626 .75864 L
.09879 .76199 L
.10176 .76404 L
.10491 .76469 L
.10796 .76391 L
.11065 .76176 L
.11273 .75836 L
.11397 .7539 L
.1142 .74862 L
.11331 .74282 L
.11122 .73679 L
.10794 .73089 L
.10353 .72541 L
.09812 .72067 L
.09187 .71692 L
.085 .71436 L
.07777 .71315 L
.07045 .71336 L
.0633 .71498 L
.0566 .71795 L
.05058 .72212 L
Mistroke
.04545 .72727 L
Mfstroke
gsave
.26572 .66193 -67.5625 -18.375 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 22.375 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
72.125 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.5 .31818 L
s
.29986 .29817 m
.2474 .27465 L
.24378 .31083 L
F
gsave
.27974 .25284 -67.5625 -16.125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.5 .31818 m
.50601 .31833 L
.5117 .31883 L
.51679 .32 L
.52107 .32207 L
.52443 .32516 L
.52687 .32926 L
.52852 .33425 L
.52958 .33989 L
.53034 .34587 L
.53113 .35182 L
.53225 .35739 L
.53399 .36227 L
.53656 .36624 L
.54004 .36919 L
.54444 .37113 L
.54962 .3722 L
.55537 .37263 L
.5614 .37276 L
.56738 .37293 L
.57301 .3735 L
.578 .37478 L
.58216 .37698 L
.5854 .38021 L
.58773 .38444 L
.58928 .38953 L
.59028 .39524 L
.59103 .40123 L
.59184 .40715 L
.59304 .41264 L
.59488 .41742 L
.59756 .42126 L
.60117 .42407 L
.60568 .42588 L
.61095 .42684 L
.61676 .42722 L
.6228 .42733 L
.62876 .42753 L
.63431 .42818 L
.6392 .42957 L
.64324 .43191 L
.64635 .43527 L
.64857 .43963 L
.65004 .44482 L
.65099 .45058 L
.65173 .45658 L
.65257 .46247 L
.65384 .46788 L
.65578 .47254 L
.65859 .47625 L
Mistroke
.66232 .47892 L
.66694 .48061 L
.6723 .48148 L
.67816 .48179 L
.68421 .48189 L
.69013 .48214 L
.69561 .48287 L
.70039 .48438 L
.70431 .48684 L
.7073 .49035 L
.70941 .49483 L
.71079 .50011 L
.7117 .50593 L
.71243 .51193 L
.71331 .51777 L
.71466 .5231 L
.71671 .52764 L
.71964 .53121 L
.72349 .53375 L
.72822 .53531 L
.73367 .53609 L
.73957 .53636 L
.74562 .53645 L
.75149 .53675 L
.75689 .53757 L
.76157 .53919 L
.76537 .5418 L
.76823 .54543 L
.77023 .55003 L
.77154 .55541 L
.7724 .56127 L
.77314 .56727 L
.77407 .57306 L
.77549 .5783 L
.77766 .58272 L
.78071 .58615 L
.78469 .58855 L
.78952 .59 L
.79504 .59069 L
.80098 .59091 L
.80703 .59102 L
.81286 .59136 L
.81817 .59227 L
.82274 .59402 L
.82641 .59676 L
.82916 .60053 L
.83105 .60525 L
.83228 .61071 L
.83311 .61661 L
.83386 .6226 L
Mistroke
.83484 .62834 L
.83635 .63348 L
.83862 .63778 L
.8418 .64107 L
.8459 .64334 L
.85084 .64467 L
.85643 .64528 L
.8624 .64546 L
.86844 .64558 L
.87422 .64598 L
.87945 .64699 L
.8839 .64886 L
.88745 .65174 L
.89007 .65565 L
.89187 .66047 L
.89303 .66601 L
.89383 .67194 L
.89458 .67793 L
.89562 .6836 L
.89722 .68864 L
.89961 .69281 L
.90291 .69596 L
.90713 .6981 L
.91217 .69932 L
.91783 .69985 L
.92383 .7 L
.92985 .70013 L
.93557 .7006 L
.94071 .70171 L
.94505 .70371 L
.94847 .70673 L
.95098 .71077 L
.95267 .7157 L
.95377 .72131 L
.95455 .72727 L
Mfstroke
gsave
.81534 .64005 -73.6875 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
71.688 13.562 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.5 .68182 L
s
.74754 .45903 m
.71916 .50903 L
.69484 .482 L
F
gsave
.84375 .41277 -61 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.5 .68182 m
.5 .31818 L
s
.5 .52727 m
.48182 .47273 L
.51818 .47273 L
F
gsave
.46158 .5 -74.125 -10.0625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.5 .68182 Mdot
.5 .31818 Mdot
gsave
.5 .02273 -91.0938 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.25 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T2) show
81.938 14.688 moveto
(C1) show
102.375 14.688 moveto
(N2) show
119.188 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
0 g
gsave
.29545 .59 -68.4688 -12.4688 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 24.9375 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 15.625 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 15.625 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
73.938 15.625 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.39773 .59 -68.4688 -10.9375 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
73.938 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.5 .59 -71.0938 -10.9375 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
63.000 15.312 moveto
(\\256) show
79.188 15.312 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.60227 .59 -68.2188 -12.1562 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 24.3125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 15.312 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
73.438 15.312 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.70455 .59 -68.4688 -10.9375 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
73.938 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
% End of Graphics
MathPictureEnd
\
\>"], "Graphics",
ImageSize->{250.375, 162.688},
ImageMargins->{{43, 0}, {0, 0}},
ImageRegion->{{0, 1}, {0, 1}},
ImageCache->GraphicsData["CompressedBitmap", "\<\
eJztnFlzVUUQxw93TbghGiSEJZAgARFFZJUCygUsFdeyXPBJiWuiUmCM+1Zl
uX4CLV8ty2e/lvroO2Z6hu5zJr+Zc0giWKV5uLfp7un+z9I9PXPO5YnZxbnX
Ls4uzr8yO/3wwuzluflX3p1+6NLCEqu9rijWfVAUxV/ThaOvLJHhQ/4+dB/h
H9eJPuG+Wg7DeqVuclTPUcMg7Tuq7aie8i4pJbz12iKyMgArLW1xNA1pg6OG
HTW0CkhDYGXFkEYc1XFURxv2Qa+neklwNupJewOw11Le6RqYyVEyva6juimY
BmQ0a28A9trKO5WGOVBjNjVJmEJ5u1euRhChNlMjWfODevMdFZys6USruuSp
E2asBXqXoMX6rOVBQ8snmkAfWwVgmsUx8EH2bDkdXynMNlAEc0PVaRIm2bPx
P7ZSmNZnGweCOQpSgkn2zFsmha0NzF6WagqYFtYy6DJd3dRKa6vUOhGFcReU
G/Qk6WhQ7+gaO0b5OupY90ptT2xd02ZClgcpy5GVZdCHVWRJtquUDZ9Aj/ZB
04ugD+mAJ+0NwF5b24bgPOK+Rqq9StYS0SiZ2TfVSqc6E1RLRFZsHzweQ9rs
KKmQxqHhguqNq95m0Lvfm3Wf16to/FP7ZIv7Sy/6w331ISCC/HftQUfnryyK
Ym6ZqB87/A+KmkyRLMpCxvBK+Ct+Bd6oTuUvIO17Y8MgIvVN7lPq5p9A6iH5
wIlEPwNvyn1KgAlGEX4Beh5cKRNPaZdsdX6k1B2K0WL5UzDrYfpkEYm2u09a
4x+CsiQiCWOSDnzzURBt1V5bpHwAelKPjjrWZe2kt+ePFJH6FlWyKHsf9E5p
J/s6YpsVyGPQIji9GUQT6tQW83ugd1ohSc6T2ZddRbLfOWjhu1iqMsjVu0pd
0L601OwjYNZ3orgFRJvAwQLoyaYhe9HDIB3zDjaB6BZw8A7oXVQHD4J0o3cw
nhJFDi6DnuzJdtKMpA+koId1Qh2OnF4CPeppG3j3Ac+PZmkJkNOLSi02dHUv
8Py4+iClOIicvg16Td2fVitbvNNtoERHmrdAj6KOnJ4CXnC/HURR1WpVU6RH
mYbcnwSeH+tiUr66ZZGXL/19Bs0oZ3aAdwJ4fqSLHZGokJBY+vgE2lCaJ3/3
AM8PbbHTfXWq+xa5ktpScvQhkE6WwPc043ZSG55N4V0g9UPgbQ5pyuuljNly
vBOkO72xKfdlpXG0Zd+trmhWace8HXhT3tUu7fpRHbNo8z6kHfq8ob99wJv2
Jme0G4cdFW3jh7W7TV3tVXu7vYO9oHRQlWxrP6Suvmjoag/wgtPbQHSXOrXI
vxv0kvUbYZhJ8nDQDwCGg6BH2xjNANVNtyaHCtfdnQCJ4uqrhu53Ac+vgWI/
iO4A9wdA72vgSe0jgTAJUr8GSg7IlfG+AxN2it0CUj/BiHYfuKLek1Paqan6
8pOJc3UbuKe5F7NRNqMCgCBRxbkR7IW6l1a55QqDSVEjMCkTNsW6McUjowEw
pYY9AJhSjQCOUmlTrDerZbISwB1SJYJkPCswLdESECrUKN1tAnsB0hFQfxp4
dOxpConOuONgL0A6CupPAW8LmGgKyU7zZCUAOQYNnwDe1lUAkduFTg2Q49CQ
TsjbwMQLjoqCW5xKBo5aiB51JwC5RxlR9NlNoZjdASbOO4oi19DIfjBSg8Ey
wLQ23KqjuEt5O8HE846KYnNYO75bKRrI4F4CfaAOzH2/yku6j+LQrq1nlKpz
H4nE1aP1TqOnx23tM83o9jSGm7S1XU0L5GEYjCGd2GvC5cuhTnl5q1YGmo0c
JelWdYQ76ih5CUEzQcAtn1Ah1dRy6ITs0VHIUncoF32cAofnlvqDcngcIxcd
Q7BMqMJ6chW4dgKPTrcBl4SDSOSsaol0DSHFp3P3rx7wjpQgmdlkHboaSFQ4
W4swNhSmUglIfqIdtal7uqGR0JWwP1Byb9uNUHYz6NdaNb4TqOyOIo+Ktlcq
Ifen8Y2BeoeRPqn9fa8hvms8IRA+uvvuhs8oU0p0PusIUacji9V0E2sFgxP2
86BPJ0O6171GaHS27WdGiKBZpUKnBLrxpvgOICkdEEh7GH0epM+5T6k66PqE
VhGttjKkKGna22avptzTcaXB6ZLCMgBJ7irRKzfS+GWwY+vbUhzd7VAaoBwa
7gZoA6ZnlIkkRkhfzOKjvEM7YbgcIROUpq66vAD656GPZJdifcp9yrz5Mi3c
39EWyVE3C/rPqtFoMRAqiiC6g5haGT6Zwb6m+ShWCBAdu+nqKFxN023fkDqY
d5TMyONKWfYg93a5Tvdawem0mhgBpXngndMW+fii7S4DxI4pLXVAT27OqZ4l
eHJPj/zpgi24t9MIVZYioMdYjzREQ5mCrqXCIw8qphjXch49F24Kk97goMc8
ASal8VwI0dPHptD6wDv874BGhT9dWE2modkWWkp07iuPK58AusCTayPJYhNp
NBbYEoGSgM+qq3zSo2V6r9oLj7DtLbTvVXRGXTXI9a1qMyw5Slec8UYYTFMB
LPZwD+SFQ+9BBP9U+XQypgjORYXzEEjDCxdUyuRq729BX1L9cI0jqkmiNyEb
lPQvpcalrVZ6KwAyBD1eol9Xe5RVn1G/dv3mwVxdJLoUCLHY3acU1fx1iIU1
rxSVoE9Xh7gNQRK9aCto9qty+kmK3/Yl7BbVhF3VymtE/dTkUuKz3CFAZDrs
0RxNQXgtieqFRDFt71ZZ1XBakdJk2cu8lsoT6+WYKkyqSV8bYU2RC+gFNTWt
pvZXcUYHqBid+SqaIKaadjiNPXdN8I4apQOvveBB68LeeyavPe5Fn9m5Tds6
bu8+hO5SwZUzZd2lI8OYdpe2t5hX1E5k7vYhMTzNxoEO4JkXahNjnh8Mu2Kx
1B9VLVSsxbxm47BSWSZIMmNE9a8dwfLDQqc9shcnzUxgr24I1n54vlOls9CJ
xGJaQVyvAL9tO8eVOhijPrO2PnM9o8dnVq3ff6MxGpTHri8U4drV4dr6FOMX
0sYpHE/UDdBb2eYzsQ/by0+qifdBGl6k+sZ9bXCM35QKInFwA36e/T/9P/1v
piUg5cQib3tLNP3oRXKMkpdF5mKRMOQnK284SuLyh5LIftXXqbYvK9m1Z0ct
lZUWVUmuVeyn6MI7q+q7QTrnTbwNIjlWytl8+dGU7h+mMvrBzZsZlQkdqt0K
wQ5aUyqdKw36qDaUkbFfIM6oiR1VE5HeXGmYu1XRhJqwLWSP8iarGCO9stlo
9iaqPKH2KrVd9XaAXjD7hirZL1LJrFx7jeu6oOJgssaLMNbXe9nsKHtVKvma
yepc7dWOb6u6slP+GjgQih5kRj8SbimQ1Tm1RUUPdP8hpzNV6fIrO7t0tbd+
2GXTVW5hLcai/4GjzoFlym62TzRALU1n7CDKJZHSa+mGtfmsuSnKwGJynZcL
fYP3wGLd31pJfH4=\
\>"],
ImageRangeCache->{{{0, 374.562}, {243, 0}} -> {-0.0423757, -0.000143001, \
0.176545, 0.176545}, {{0.3125, 187.25}, {243, 56.0625}} -> {-1.03689, \
-1.00011, 0.176532, 0.176532}, {{187.25, 374.188}, {243, 56.0625}} -> \
{-23.0371, -1.00011, 0.176532, 0.176532}}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"famp", "=",
RowBox[{"CreateFeynAmp", "[", "ins", "]"}]}]], "Input"],
Cell[BoxData["\<\"\"\>"], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"creating amplitudes at level(s) \"\>", "\[InvisibleSpace]",
RowBox[{"{", "Classes", "}"}]}],
SequenceForm["creating amplitudes at level(s) ", {Classes}],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "1",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 Classes amplitude\"\>"}],
SequenceForm["> Top. ", 1, ": ", "1 Classes amplitude"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "2",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 Classes amplitude\"\>"}],
SequenceForm["> Top. ", 2, ": ", "1 Classes amplitude"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"in total: \"\>",
"\[InvisibleSpace]", "\<\"2 Classes amplitudes\"\>"}],
SequenceForm["in total: ", "2 Classes amplitudes"],
Editable->False]], "Print"],
Cell[BoxData[
RowBox[{
RowBox[{"FeynAmpList", "[",
RowBox[{
RowBox[{"Model", "\[Rule]", "SMQCD"}], ",",
RowBox[{"GenericModel", "\[Rule]", "\<\"Lorentz\"\>"}], ",",
RowBox[{"AmplitudeLevel", "\[Rule]",
RowBox[{"{", "Classes", "}"}]}], ",",
RowBox[{"ExcludeParticles", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"LastSelections", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"ExcludeFieldPoints", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"Restrictions", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"Process", "\[Rule]",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"V", "[", "5", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["p", 1],
Editable->False], ",", "0"}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}], ",",
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], ",", "MU"}], "}"}]}], "}"}], "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"V", "[", "1", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], ",", "0"}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}], ",",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False], ",", "MU"}], "}"}]}], "}"}]}]}]}], "]"}], "[",
RowBox[{
RowBox[{"FeynAmp", "[",
RowBox[{
RowBox[{"GraphID", "[",
RowBox[{
RowBox[{"Topology", "\[Equal]", "1"}], ",",
RowBox[{"Generic", "\[Equal]", "1"}], ",",
RowBox[{"Classes", "\[Equal]", "1"}], ",",
RowBox[{"Number", "\[Equal]", "1"}]}], "]"}], ",",
RowBox[{"Integral", "[", "]"}], ",",
RowBox[{
RowBox[{
RowBox[{
OverscriptBox["\<\"u\"\>", "\<\"_\"\>"], "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False], ",", "MU"}], "]"}], ".",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-",
FractionBox["2", "3"]}], " ", "\[ImaginaryI]", " ", "EL", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"-\"\>"],
Subscript["-"],
Editable->False]}],
SequenceForm["om",
Subscript["-"]],
Editable->False], ")"}]}]}], "-",
RowBox[{
FractionBox["2", "3"], " ", "\[ImaginaryI]", " ", "EL", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"+\"\>"],
Subscript["+"],
Editable->False]}],
SequenceForm["om",
Subscript["+"]],
Editable->False], ")"}]}]}]}], ")"}], ".",
RowBox[{"(",
RowBox[{"MU", "+",
RowBox[{"\<\"gs\"\>", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], "+",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False]}], "]"}]}], ")"}], ".",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "GS", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"-\"\>"],
Subscript["-"],
Editable->False]}],
SequenceForm["om",
Subscript["-"]],
Editable->False], ")"}]}], " ",
RowBox[{"SUNT", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False]}], "]"}]}], "-",
RowBox[{"\[ImaginaryI]", " ", "GS", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"+\"\>"],
Subscript["+"],
Editable->False]}],
SequenceForm["om",
Subscript["+"]],
Editable->False], ")"}]}], " ",
RowBox[{"SUNT", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False]}], "]"}]}]}], ")"}], ".",
RowBox[{"\<\"u\"\>", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], ",", "MU"}], "]"}]}], " ",
RowBox[{"\<\"ep\"\>", "[",
RowBox[{
RowBox[{"V", "[", "5", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["p", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False]}], "]"}], " ",
FractionBox["1",
RowBox[{
RowBox[{"-", "MU2"}], "+",
SuperscriptBox[
RowBox[{"(",
RowBox[{
RowBox[{"-",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], ")"}]}], "-",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False]}], ")"}], "2"]}]], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False], ",", "3", ",", "External"}], "]"}], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",", "3", ",", "External"}], "]"}], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",", "8", ",", "External"}], "]"}], " ",
RowBox[{
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"ep\"\>", "\[InvisibleSpace]",
InterpretationBox[
SuperscriptBox["\[Null]", "\<\"*\"\>"],
Superscript["*"],
Editable->False]}],
SequenceForm[PolarizationVector,
Superscript["*"]],
Editable->False], ")"}], "[",
RowBox[{
RowBox[{"V", "[", "1", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False]}], "]"}]}]}], "]"}], ",",
RowBox[{"FeynAmp", "[",
RowBox[{
RowBox[{"GraphID", "[",
RowBox[{
RowBox[{"Topology", "\[Equal]", "2"}], ",",
RowBox[{"Generic", "\[Equal]", "1"}], ",",
RowBox[{"Classes", "\[Equal]", "1"}], ",",
RowBox[{"Number", "\[Equal]", "2"}]}], "]"}], ",",
RowBox[{"Integral", "[", "]"}], ",",
RowBox[{
RowBox[{
RowBox[{
OverscriptBox["\<\"u\"\>", "\<\"_\"\>"], "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False], ",", "MU"}], "]"}], ".",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "GS", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"-\"\>"],
Subscript["-"],
Editable->False]}],
SequenceForm["om",
Subscript["-"]],
Editable->False], ")"}]}], " ",
RowBox[{"SUNT", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False]}], "]"}]}], "-",
RowBox[{"\[ImaginaryI]", " ", "GS", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"+\"\>"],
Subscript["+"],
Editable->False]}],
SequenceForm["om",
Subscript["+"]],
Editable->False], ")"}]}], " ",
RowBox[{"SUNT", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False]}], "]"}]}]}], ")"}], ".",
RowBox[{"(",
RowBox[{"MU", "+",
RowBox[{"\<\"gs\"\>", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], "-",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False]}], "]"}]}], ")"}], ".",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-",
FractionBox["2", "3"]}], " ", "\[ImaginaryI]", " ", "EL", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"-\"\>"],
Subscript["-"],
Editable->False]}],
SequenceForm["om",
Subscript["-"]],
Editable->False], ")"}]}]}], "-",
RowBox[{
FractionBox["2", "3"], " ", "\[ImaginaryI]", " ", "EL", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"+\"\>"],
Subscript["+"],
Editable->False]}],
SequenceForm["om",
Subscript["+"]],
Editable->False], ")"}]}]}]}], ")"}], ".",
RowBox[{"\<\"u\"\>", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], ",", "MU"}], "]"}]}], " ",
RowBox[{"\<\"ep\"\>", "[",
RowBox[{
RowBox[{"V", "[", "5", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["p", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False]}], "]"}], " ",
FractionBox["1",
RowBox[{
RowBox[{"-", "MU2"}], "+",
SuperscriptBox[
RowBox[{"(",
RowBox[{
RowBox[{"-",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], ")"}]}], "+",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False]}], ")"}], "2"]}]], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False], ",", "3", ",", "External"}], "]"}], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",", "3", ",", "External"}], "]"}], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",", "8", ",", "External"}], "]"}], " ",
RowBox[{
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"ep\"\>", "\[InvisibleSpace]",
InterpretationBox[
SuperscriptBox["\[Null]", "\<\"*\"\>"],
Superscript["*"],
Editable->False]}],
SequenceForm[PolarizationVector,
Superscript["*"]],
Editable->False], ")"}], "[",
RowBox[{
RowBox[{"V", "[", "1", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False]}], "]"}]}]}], "]"}]}], "]"}]], "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"famp", " ", "//", "Length"}]], "Input"],
Cell[BoxData["2"], "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"strm", "=",
RowBox[{"OpenWrite", "[", "\"\<test.amp\>\"", "]"}]}]], "Input"],
Cell[BoxData[
RowBox[{"OutputStream", "[",
RowBox[{"\<\"test.amp\"\>", ",", "14"}], "]"}]], "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{"Write", "[",
RowBox[{"strm", ",", "famp"}], "]"}], "\[IndentingNewLine]",
RowBox[{"Close", "[", "strm", "]"}]}], "Input"],
Cell[BoxData["\<\"test.amp\"\>"], "Output"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["q qbar -> w \[Gamma]", "Section"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"tops", "=",
RowBox[{"CreateTopologies", "[",
RowBox[{"0", ",", "4"}], "]"}]}], ";"}], "\[IndentingNewLine]"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"ins", "=",
RowBox[{"InsertFields", "[",
RowBox[{"tops", ",",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}], ",",
RowBox[{"-",
RowBox[{"F", "[",
RowBox[{"4", ",",
RowBox[{"{", "1", "}"}]}], "]"}]}]}], "}"}], "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"V", "[", "5", "]"}], ",",
RowBox[{"-",
RowBox[{"V", "[", "3", "]"}]}]}], "}"}]}], ",",
RowBox[{"Model", "\[Rule]", "SMQCD"}], ",",
RowBox[{"InsertionLevel", "\[Rule]",
RowBox[{"{", "Classes", "}"}]}]}], "]"}]}], ";"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Paint", "[",
RowBox[{"ins", ",",
RowBox[{"ColumnsXRows", "\[Rule]",
RowBox[{"{",
RowBox[{"2", ",", "1"}], "}"}]}], ",",
RowBox[{"PaintLevel", "\[Rule]",
RowBox[{"{", "Classes", "}"}]}]}], "]"}], ";"}]}]}]], "Input"],
Cell[BoxData["\<\"\"\>"], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"inserting at level(s) \"\>", "\[InvisibleSpace]",
RowBox[{"{", "Classes", "}"}]}],
SequenceForm["inserting at level(s) ", {Classes}],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "1",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 1, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "2",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 2, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "3",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 Classes insertion\"\>"}],
SequenceForm["> Top. ", 3, ": ", "1 Classes insertion"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "4",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 Classes insertion\"\>"}],
SequenceForm["> Top. ", 4, ": ", "1 Classes insertion"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"in total: \"\>",
"\[InvisibleSpace]", "\<\"2 Classes insertions\"\>"}],
SequenceForm["in total: ", "2 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "1",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 diagram\"\>"}],
SequenceForm["> Top. ", 1, ": ", "1 diagram"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "2",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 diagram\"\>"}],
SequenceForm["> Top. ", 2, ": ", "1 diagram"],
Editable->False]], "Print"],
Cell[GraphicsData["PostScript", "\<\
%!
%%Creator: Mathematica
%%AspectRatio: .65
MathPictureStart
/Mabs {
Mgmatrix idtransform
Mtmatrix dtransform
} bind def
/Mabsadd { Mabs
3 -1 roll add
3 1 roll add
exch } bind def
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
-1.38778e-17 0.0227273 -1.40675e-17 0.0227273 [
[ 0 0 0 0 ]
[ 1 .65 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 .65 L
0 .65 L
closepath
clip
newpath
% Start of sub-graphic
p
-1.38778e-17 -1.40675e-17 0.5 0.5 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.04545 .72727 m
.5 .68182 L
s
.29986 .70183 m
.24378 .68917 L
.2474 .72535 L
F
gsave
.26572 .66193 -67.5625 -16.125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.5 .31818 L
s
.24559 .29274 m
.30167 .28008 L
.29806 .31626 L
F
gsave
.27974 .25284 -67.5625 -19.3125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 23.3125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
72.125 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.5 .68182 m
.50513 .68698 L
.51114 .69114 L
.51785 .69411 L
.52499 .69573 L
.53232 .69594 L
.53955 .69473 L
.54641 .69217 L
.55266 .68842 L
.55808 .68368 L
.56249 .6782 L
.56577 .6723 L
.56785 .66628 L
.56875 .66047 L
.56851 .65519 L
.56727 .65073 L
.5652 .64733 L
.56251 .64518 L
.55946 .6444 L
.55631 .64505 L
.55334 .6471 L
.55081 .65045 L
.54897 .65495 L
.54802 .66036 L
.54812 .66642 L
.54938 .67282 L
.55183 .67922 L
.55547 .68532 L
.5602 .6908 L
.56589 .69538 L
.57235 .69883 L
.57936 .70099 L
.58665 .70176 L
.59395 .70109 L
.60099 .69905 L
.6075 .69575 L
.61327 .69136 L
.61809 .68614 L
.62182 .68036 L
.62437 .67435 L
.62573 .66842 L
.62592 .6629 L
.62506 .65809 L
.62329 .65425 L
.62081 .65159 L
.61787 .65026 L
.61472 .65035 L
.61165 .65186 L
.60892 .65473 L
.60678 .6588 L
Mistroke
.60546 .66389 L
.60514 .66973 L
.60594 .67603 L
.60792 .68247 L
.6111 .68872 L
.61542 .69448 L
.62076 .69944 L
.62695 .70336 L
.63377 .70604 L
.64098 .70736 L
.64831 .70725 L
.65548 .70573 L
.66223 .7029 L
.66831 .69891 L
.67352 .69399 L
.67769 .68839 L
.68071 .68243 L
.68253 .67643 L
.68317 .67071 L
.68271 .66559 L
.68126 .66134 L
.67904 .6582 L
.67624 .65634 L
.67315 .65587 L
.67001 .65683 L
.66712 .65918 L
.66472 .6628 L
.66306 .66752 L
.66233 .6731 L
.66268 .67926 L
.6642 .68568 L
.66691 .69205 L
.6708 .69803 L
.67575 .70334 L
.68163 .70769 L
.68824 .71087 L
.69532 .71273 L
.70264 .71318 L
.70991 .71221 L
.71685 .70988 L
.72322 .70632 L
.72879 .70173 L
.73338 .69636 L
.73686 .6905 L
.73915 .68448 L
.74025 .67861 L
.7402 .67322 L
.73912 .6686 L
.73718 .665 L
.73458 .66263 L
Mistroke
.73157 .66161 L
.72841 .66201 L
.72539 .66382 L
.72277 .66697 L
.7208 .67128 L
.71969 .67655 L
.7196 .68252 L
.72065 .68888 L
.7229 .69531 L
.72634 .70148 L
.73089 .70708 L
.73643 .71184 L
.74278 .7155 L
.74971 .71789 L
.75697 .7189 L
.76428 .71848 L
.77139 .71666 L
.77801 .71356 L
.78392 .70935 L
.78891 .70425 L
.79283 .69855 L
.79559 .69255 L
.79716 .68658 L
.79754 .68097 L
.79685 .67601 L
.79522 .67199 L
.79285 .66912 L
.78997 .66755 L
.78684 .6674 L
.78373 .66867 L
.78093 .67131 L
.77867 .67519 L
.7772 .68011 L
.7767 .68585 L
.77729 .69209 L
.77907 .69853 L
.78205 .70484 L
.78618 .7107 L
.79136 .71581 L
.79741 .71993 L
.80414 .72283 L
.8113 .72439 L
.81863 .72453 L
.82585 .72325 L
.83269 .72063 L
.8389 .71683 L
.84427 .71204 L
.84863 .70654 L
.85185 .70062 L
.85388 .6946 L
Mistroke
.85472 .68881 L
.85443 .68357 L
.85315 .67915 L
.85104 .6758 L
.84833 .67371 L
.84526 .673 L
.84212 .67372 L
.83916 .67583 L
.83666 .67925 L
.83486 .68379 L
.83396 .68924 L
.83412 .69532 L
.83543 .70172 L
.83794 .70812 L
.84163 .7142 L
.84641 .71964 L
.85215 .72417 L
.85864 .72756 L
.86567 .72966 L
.87296 .73035 L
.88025 .72962 L
.88727 .72752 L
.89376 .72415 L
.89948 .71972 L
.90425 .71447 L
.90793 .70867 L
.91042 .70265 L
.91172 .69674 L
.91187 .69124 L
.91095 .68647 L
.90914 .68268 L
.90664 .68008 L
.90368 .67882 L
.90053 .67898 L
.89747 .68056 L
.89476 .68348 L
.89266 .68761 L
.89139 .69273 L
.89111 .6986 L
.89197 .70492 L
.89401 .71136 L
.89725 .71759 L
.90162 .72332 L
.907 .72823 L
.91322 .73209 L
.92007 .73471 L
.92729 .73596 L
.93462 .73579 L
.94178 .7342 L
.9485 .73131 L
Mistroke
.95455 .72727 L
Mfstroke
gsave
.72026 .74716 -67.5625 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 22.375 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
72.125 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.5 .31818 m
.50416 .3139 L
.50837 .31007 L
.51267 .3071 L
.51708 .30527 L
.52161 .30476 L
.52629 .30556 L
.53107 .30754 L
.53595 .3104 L
.54087 .31375 L
.5458 .31714 L
.55069 .32011 L
.5555 .32227 L
.56019 .3233 L
.56476 .32303 L
.56919 .32143 L
.5735 .31864 L
.57772 .31495 L
.58189 .31072 L
.58605 .30642 L
.59025 .30249 L
.59453 .29935 L
.59891 .29731 L
.60343 .29657 L
.60808 .29714 L
.61285 .29892 L
.61771 .30162 L
.62262 .30488 L
.62755 .30825 L
.63244 .31126 L
.63726 .31351 L
.64197 .31468 L
.64655 .31457 L
.651 .31315 L
.65533 .31056 L
.65957 .30709 L
.66377 .30314 L
.66797 .2992 L
.67221 .29578 L
.67656 .29332 L
.68103 .29214 L
.68564 .2923 L
.69035 .29354 L
.69512 .29529 L
.69986 .29678 L
.70452 .2975 L
.70911 .29744 L
.71365 .29697 L
.71819 .29643 L
.72273 .29594 L
Mistroke
.72728 .29548 L
.73182 .29503 L
.73637 .29461 L
.74092 .29425 L
.74547 .2938 L
.74998 .29295 L
.7544 .29132 L
.75876 .28892 L
.76308 .28627 L
.76746 .28411 L
.77194 .28305 L
.77656 .28332 L
.7813 .28487 L
.78615 .28738 L
.79104 .29041 L
.79594 .29345 L
.80078 .29602 L
.80554 .2977 L
.81019 .29821 L
.8147 .29741 L
.81908 .29533 L
.82335 .29217 L
.82755 .28825 L
.83172 .28397 L
.83589 .27981 L
.84012 .27619 L
.84444 .27351 L
.84888 .27202 L
.85346 .27186 L
.85816 .27299 L
.86298 .27522 L
.86787 .27824 L
.8728 .28163 L
.87772 .28495 L
.88259 .28773 L
.88737 .28961 L
.89203 .2903 L
.89656 .28966 L
.90096 .28772 L
.90524 .28466 L
.90944 .28077 L
.9136 .27647 L
.91777 .27221 L
.92198 .26845 L
.92628 .26556 L
.9307 .26385 L
.93525 .26345 L
.93993 .26437 L
.94473 .26644 L
.94962 .26936 L
Mistroke
.95455 .27273 L
Mfstroke
.70014 .29817 m
.75622 .31083 L
.7526 .27465 L
F
gsave
.73428 .33807 -70.75 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 23.3125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(W) show
78.500 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.5 .68182 m
.5 .31818 L
s
.5 .47273 m
.48182 .52727 L
.51818 .52727 L
F
gsave
.45704 .5 -74.125 -10.0625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.5 .68182 Mdot
.5 .31818 Mdot
gsave
.5 .02273 -91.0938 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.25 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T1) show
81.938 14.688 moveto
(C1) show
102.375 14.688 moveto
(N1) show
119.188 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.5 -1.40675e-17 1 0.5 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.04545 .72727 m
.5 .68182 L
s
.29986 .70183 m
.24378 .68917 L
.2474 .72535 L
F
gsave
.26572 .66193 -67.5625 -16.125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.5 .31818 L
s
.24559 .29274 m
.30167 .28008 L
.29806 .31626 L
F
gsave
.27974 .25284 -67.5625 -19.3125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 23.3125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
72.125 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.5 .31818 m
.5011 .3251 L
.50337 .33178 L
.50679 .33799 L
.51125 .34349 L
.51664 .34811 L
.52276 .35167 L
.52941 .3541 L
.53635 .35534 L
.54332 .35539 L
.55008 .35433 L
.55638 .35226 L
.562 .34937 L
.56675 .34584 L
.57047 .34191 L
.57308 .33783 L
.57452 .33387 L
.5748 .33027 L
.57398 .32727 L
.57217 .32509 L
.56953 .32388 L
.56627 .32378 L
.56261 .32485 L
.55879 .32712 L
.55507 .33054 L
.55171 .33502 L
.54892 .34041 L
.54693 .34654 L
.54589 .35317 L
.54593 .36007 L
.54713 .36697 L
.5495 .37363 L
.553 .37978 L
.55754 .38522 L
.563 .38976 L
.56917 .39324 L
.57585 .39557 L
.58281 .3967 L
.58977 .39667 L
.5965 .39552 L
.60276 .39338 L
.60831 .39042 L
.61298 .38685 L
.61662 .3829 L
.61913 .37882 L
.62047 .37488 L
.62066 .37132 L
.61975 .36839 L
.61787 .36627 L
.61518 .36515 L
Mistroke
.61187 .36514 L
.60819 .36631 L
.60437 .36867 L
.60067 .37218 L
.59735 .37674 L
.59462 .3822 L
.5927 .38838 L
.59174 .39504 L
.59188 .40195 L
.59317 .40884 L
.59563 .41547 L
.59922 .42157 L
.60385 .42695 L
.60936 .4314 L
.61559 .43479 L
.6223 .43702 L
.62926 .43806 L
.63622 .43793 L
.64292 .4367 L
.64913 .43449 L
.65461 .43147 L
.6592 .42786 L
.66276 .42389 L
.66518 .41981 L
.66642 .41589 L
.66652 .41238 L
.66553 .4095 L
.66357 .40746 L
.66082 .40643 L
.65748 .40651 L
.65377 .40778 L
.64996 .41023 L
.64628 .41383 L
.64299 .41847 L
.64033 .424 L
.63848 .43022 L
.63761 .43691 L
.63783 .44383 L
.63922 .45071 L
.64177 .4573 L
.64545 .46336 L
.65016 .46866 L
.65574 .47303 L
.66201 .47633 L
.66875 .47847 L
.67573 .47941 L
.68267 .47919 L
.68934 .47787 L
.69549 .47558 L
.70092 .47251 L
Mistroke
.70543 .46886 L
.70889 .46487 L
.71121 .4608 L
.71237 .4569 L
.71237 .45343 L
.7113 .45061 L
.70927 .44865 L
.70647 .4477 L
.70308 .44788 L
.69936 .44924 L
.69555 .4518 L
.69189 .45548 L
.68865 .4602 L
.68604 .46579 L
.68426 .47206 L
.68348 .47878 L
.6838 .4857 L
.68528 .49257 L
.68793 .49913 L
.69169 .50513 L
.69647 .51036 L
.70212 .51465 L
.70844 .51786 L
.71521 .5199 L
.72219 .52075 L
.72912 .52043 L
.73576 .51903 L
.74186 .51667 L
.74721 .51355 L
.75165 .50986 L
.75502 .50586 L
.75725 .50179 L
.75831 .49791 L
.75822 .49449 L
.75707 .49173 L
.75497 .48985 L
.75211 .48899 L
.74869 .48926 L
.74495 .49072 L
.74114 .49336 L
.73751 .49714 L
.73431 .50193 L
.73176 .50759 L
.73006 .5139 L
.72936 .52065 L
.72977 .52757 L
.73135 .53443 L
.73409 .54095 L
.73794 .54689 L
.7428 .55206 L
Mistroke
.74851 .55626 L
.75487 .55938 L
.76167 .56132 L
.76866 .56208 L
.77557 .56167 L
.78218 .56018 L
.78822 .55776 L
.79351 .55457 L
.79786 .55085 L
.80114 .54683 L
.80328 .54277 L
.80424 .53893 L
.80407 .53554 L
.80283 .53285 L
.80067 .53104 L
.79775 .53027 L
.7943 .53064 L
.79054 .5322 L
.78674 .53494 L
.78313 .5388 L
.77998 .54367 L
.77749 .54938 L
.77587 .55574 L
.77526 .56251 L
.77576 .56944 L
.77743 .57628 L
.78027 .58276 L
.7842 .58865 L
.78914 .59374 L
.79491 .59786 L
.80131 .60089 L
.80814 .60274 L
.81513 .60339 L
.82203 .60289 L
.82859 .60132 L
.83459 .59883 L
.8398 .5956 L
.84407 .59184 L
.84726 .58781 L
.8493 .58375 L
.85017 .57994 L
.84991 .5766 L
.84859 .57397 L
.84636 .57225 L
.84339 .57156 L
.8399 .57202 L
.83614 .57368 L
.83234 .57651 L
.82876 .58046 L
.82565 .58541 L
Mistroke
.82323 .59118 L
.82168 .59758 L
.82116 .60437 L
.82176 .61131 L
.82352 .61812 L
.82645 .62456 L
.83047 .6304 L
.83548 .63542 L
.84131 .63945 L
.84776 .64238 L
.85461 .64414 L
.8616 .6447 L
.86848 .6441 L
.87501 .64246 L
.88095 .6399 L
.88609 .63661 L
.89028 .63282 L
.89338 .62878 L
.89532 .62473 L
.8961 .62095 L
.89574 .61766 L
.89435 .6151 L
.89205 .61345 L
.88903 .61286 L
.88551 .61342 L
.88173 .61517 L
.87794 .61809 L
.8744 .62213 L
.87134 .62715 L
.86898 .63298 L
.86751 .63942 L
.86707 .64623 L
.86776 .65317 L
.86963 .65996 L
.87264 .66636 L
.87675 .67214 L
.88183 .67708 L
.88772 .68103 L
.89421 .68387 L
.90108 .68553 L
.90807 .68599 L
.91493 .68531 L
.92142 .68358 L
.9273 .68095 L
.93238 .67762 L
.93648 .6738 L
.93949 .66975 L
.94134 .66571 L
.94202 .66196 L
.94158 .65872 L
Mistroke
.9401 .65623 L
.93774 .65466 L
.93467 .65416 L
.93112 .65481 L
.92733 .65666 L
.92355 .65968 L
.92004 .6638 L
.91703 .66889 L
.91473 .67478 L
.91334 .68126 L
.913 .68809 L
.91378 .69502 L
.91574 .7018 L
.91885 .70815 L
.92304 .71387 L
.92819 .71874 L
.93414 .7226 L
.94067 .72535 L
.94755 .7269 L
.95455 .72727 L
Mfstroke
gsave
.81534 .64005 -74.125 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 22.375 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
72.125 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.5 .68182 m
.50078 .67586 L
.50187 .67025 L
.50357 .66531 L
.50608 .66128 L
.5095 .65826 L
.51384 .65626 L
.51898 .65514 L
.5247 .65468 L
.53072 .65455 L
.53671 .65439 L
.54237 .65386 L
.54741 .65264 L
.55163 .65051 L
.55493 .64735 L
.55732 .64318 L
.55892 .63814 L
.55996 .63247 L
.56072 .62649 L
.56152 .62055 L
.56268 .61502 L
.56448 .6102 L
.5671 .60629 L
.57065 .60341 L
.57511 .60154 L
.58033 .60053 L
.58611 .60012 L
.59214 .60001 L
.59811 .59982 L
.6037 .5992 L
.60863 .59787 L
.61273 .5956 L
.6159 .5923 L
.61818 .58801 L
.6197 .58287 L
.62068 .57714 L
.62143 .57116 L
.62228 .56527 L
.62352 .55983 L
.62543 .55512 L
.62818 .55136 L
.63186 .54863 L
.63643 .54688 L
.64173 .54595 L
.64754 .54559 L
.65355 .54544 L
.65944 .54517 L
.6649 .54441 L
.66967 .54289 L
.67358 .54042 L
Mistroke
.67659 .53693 L
.67874 .53249 L
.68021 .52731 L
.68127 .52167 L
.68226 .51595 L
.68354 .51055 L
.68544 .50584 L
.6882 .50208 L
.69189 .49936 L
.69636 .4975 L
.70121 .49607 L
.70593 .49449 L
.71014 .49234 L
.71382 .48961 L
.71721 .48656 L
.72055 .48344 L
.72392 .48037 L
.72731 .47731 L
.7307 .47426 L
.73412 .47123 L
.73757 .46824 L
.74096 .46519 L
.74406 .46182 L
.74664 .45786 L
.7487 .45333 L
.75063 .44866 L
.75295 .4444 L
.75604 .44102 L
.76007 .43867 L
.76496 .43728 L
.77046 .43657 L
.77625 .43618 L
.78197 .43572 L
.78728 .4348 L
.79192 .43313 L
.7957 .43051 L
.79857 .42687 L
.80058 .42229 L
.80191 .41694 L
.80281 .41112 L
.80358 .40515 L
.80455 .39942 L
.80603 .39424 L
.80825 .38988 L
.81136 .38651 L
.81539 .38416 L
.82026 .38276 L
.8258 .38209 L
.83175 .38187 L
.83778 .38176 L
Mistroke
.84358 .38138 L
.84885 .38041 L
.85336 .37859 L
.85697 .37578 L
.85965 .37195 L
.8615 .36718 L
.8627 .36169 L
.86351 .35577 L
.86426 .34979 L
.86527 .34408 L
.86683 .33899 L
.86916 .33476 L
.87239 .33153 L
.87655 .32933 L
.88154 .32805 L
.88716 .32748 L
.89315 .3273 L
.89917 .32718 L
.90492 .32674 L
.91011 .32568 L
.9145 .32374 L
.91799 .32079 L
.92055 .31681 L
.92229 .31193 L
.92342 .30636 L
.9242 .30041 L
.92497 .29444 L
.92603 .2888 L
.92767 .28381 L
.93012 .2797 L
.93348 .27661 L
.93776 .27455 L
.94285 .27338 L
.94854 .27287 L
.95455 .27273 L
Mfstroke
.707 .49552 m
.75971 .47254 L
.73538 .44551 L
F
gsave
.84375 .41277 -61 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 23.3125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(W) show
78.500 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.5 .68182 m
.5 .31818 L
s
.5 .47273 m
.48182 .52727 L
.51818 .52727 L
F
gsave
.46158 .5 -74.125 -11.6562 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 23.3125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
72.125 16.750 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.5 .68182 Mdot
.5 .31818 Mdot
gsave
.5 .02273 -91.0938 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.25 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T2) show
81.938 14.688 moveto
(C1) show
102.375 14.688 moveto
(N2) show
119.188 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
0 g
gsave
.29545 .59 -68.4688 -10.9375 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
73.938 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.39773 .59 -68.4688 -12.8438 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 25.6875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 19.125 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 19.125 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
73.938 19.125 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.5 .59 -71.0938 -10.9375 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
63.000 15.312 moveto
(\\256) show
79.188 15.312 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.60227 .59 -68.4688 -12.4688 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 24.9375 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 15.625 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 15.625 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
73.938 15.625 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.70455 .59 -72.3125 -12.8438 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 25.6875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 19.125 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 19.125 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(W) show
81.625 19.125 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
% End of Graphics
MathPictureEnd
\
\>"], "Graphics",
ImageSize->{250.375, 162.688},
ImageMargins->{{43, 0}, {0, 0}},
ImageRegion->{{0, 1}, {0, 1}},
ImageCache->GraphicsData["CompressedBitmap", "\<\
eJztW1tzVEUQXvacvSSbhIRcNiFAAiQgKCAXuXhB1BJQCkWrLLUQyoBoEC0U
UCwfrEIE0bLEy4Plm2LhiyiWL+of8FdYvmP56Htk+px0n+n9Zvacs8nyIKnK
nt6eme5vemb69PTM7p86M33s9akzx49Oje85NfXG9PGjp8d3nzx1kxUsKBQW
nC0UCv+OFww9c5OMP+jvHfMRf2kTvd08igZDJ1MLDVU2VAcorRgqMFSZeSeZ
Il4nt1BSakBKkVtscUPqNlSHoaotQKoCKbkhdRkqNFTIDSugXpnrOcGJ1Z3y
akBekXn3N4HptJLUKxmq5IIpQHq88mpAXsC8+9wwayxMhsYJk6hI7szsCkKo
RVSXV3ytufiQC+5t0omiPeVRJ0RYEdQ7CVp0eiXXUkrengZ6XwuA0Sj2AR1I
nkynrXlhBoBCMLttpU6YSJ7Y/568MKXPYgcEsweUIphInmjzuLC5gVn2UmkB
o4nVAJ2Gq+SaaQGXSifUMi6Byil64lRUa64oY8eQv1YdK8007YnMa/QyQZJr
LslKSgP0Di4SJ1tiSsxH0NV7UOop6FU2uFNeDcgLuG28ODebR5fdK2csoawk
Yl9lKaE9EiiWUFLkPbhVQxoyFEVIg6DhKa43yPWGQL1dkVjzmTcI3MQYZbL+
Anjnoup3s5XVpP/ZVRA33GAPKA3edcBLVlcT9jrgxdXXc5H46J8A7/9XPaMh
Mw4TTYfazOz41xJFGSfWDmb8fiuLzOfs0viRe/tHxKgy/C+IQTaZif8Sppc3
Wy+3uApaVCKx5JRoy3GRG6pF1AFaL+ZmXzHQzqhR3TzIQZ1gieLQO4EwFTSp
0kmW9ykorUVKxxlPB/f6AFOqQyr2UxLF/Uq9jUD8W6BtV6RmrXn0mJLdbJ2Q
uyFvhNA7kg+wFI8qWgTkrTergbCrU19q3AOq9xS3fdOtgJZSmdGSEYZYRMKy
MhpAs9PaVRb/olfRfjfCLVyph23cxcJSTOYS4AUufcQ64lW5D7TtjkBsZWPU
uZNFboh2D7Lu3/a29Sh93jyq9tRD/fue6z3O9RZGIg6yHvHaPzBPAqad3LA3
avgCW+pXpqh6IUzqNvQ286wYalHEOQQw/mYbplCypMSS4pDHbllPI7QCoM2W
5RGa4BXYv2HM21oTz98C1YV45iPxw1nFz8RTcUfrwpCr355N7ArzKVEpUR+l
VEWzh4x0Vzaly7lhdqXR7MLDfyeoP5IaBlGXnCqRv8OTfC1To60rrwJe6LHB
hCHIAyxtolw2jCWvctkKNa6ICdBohVsvhRgBeKUkcndhssD8fwgEyZ6vsf4k
qL+yDZgkM7U6BwIVLaEcBFLa4zIOXI15IYlTDJpDWgh4suVV0U5GXGM2miKg
qPRiFlyNr9GR9qHqBbxS/InWNzLYRBNoKF0X2DwErQ/w9Jsx/iMZrUFzrGY/
xEWAVwQQHWM66Ua3jDE5zxUks3UBCOg3n+SIKQdEo3nHPOqruzCQKJV9Iqqz
CRqJotXZUlr1EtPK+pftSB4goS0sE5DGKYEmcyHeGqhXc4cb4lJgWqE+AC3Q
QvGFtUWGMTyX0GjHqrI5ad8dvvhHwVVxhgfud+YT5SARKrSefYGRbPNkLWR4
41fdsK+wPMmvIcSLWXyorBfrIDTiMnJCfIxNLcOKkgpXuFSvRLveEjZcyFSd
2/pDlhjSXu6Y6g7C9S23VlcYUIyCXk/EEmP7I5gY4R4uCnkM5YBITIVuVSwH
QNQxGRUO2ECcYUIlAUlcn4xP4IIkxzkaUmR5MPPiwtzQ1K2JtNCaJgrkzeWP
W5oBIuloRkkKb1wJw+5jAAyoL1rxAJP8JwImySo9wQuzU6HRc8j4pYgeyk2g
lW1o4h0k0bjMM3Q6LWaUi8udU3zK6Wp8wDeUbO+FohuPelJQ4Tle49KKSylK
YQzZqlRM41GPvOVV7oH/JT6WEpwkdWTJouChlA3mNS84ZDmU+PAFSW2ES6FH
2VXqAzk5lzBkUaGdGvL0s9I8+x6/ykHAU6668eWyOq+2AVenkf8gnmeDhRKo
SIGOdo3sta2LXQx44vQ9ubpWFMC0i/m2pHV9o4Dnm/oZVfYD3hLA821EYpV0
Jq5cJEoSfpyynhNawn9jG8TDTFcAUDiMtH2UpTLKh4wxNHRgVZQ3V2Gdeagg
GGm5lLIerWnaz1EaiDzmeEKVCm6dqlLUQ+4DnUo0qJcl4lfvr4eORNe56slm
oD1A1gOeI/F5i1H51k4boW0APF9Odp6goQhoI+AFHmiD7YO2CfB0Ljb2XUPZ
UEkY914L+OhyB/mg4RzqGzshqE5nEmTz0HltPRs+36rRKg1PTvWOpwZeSJ4s
ojMLyfV2zR36pmU6tmErU8FhFwRCsMZQtIVDh2i+XEB8YUruZbTUh0Yv7HDO
0onzrHkN6CI66PKhiLsj91McsOall66peZbR0PZB8g/OLvqSv124i7Zy35DP
h0n8k/c1xrqJeWjhOQ4x4ntLz5lHBzL3DM+KtPOvtfH3lJGmaUZK1zhUHC4/
RXC8UqI1XHjCPOhaV8D2E2OrLBuafPM+7Q8DhLSK0cFHP5snvgtGURPBplBf
3FeZbRPYllPZq7nqc6YmO12oxYepVN6Qwmq+9SRMUGEDkrAxu7soCklMnpRZ
MGeSOt8S2Qlw77b1BGm6Lj9uDNlmMuYBcCooGtLTIm0PdzKEA6xOrOXBTvcn
+k3Jw1xdsEtSPdca3czCn+bmIggdCcf+cZiHQn5E8yTbVg4+1CkEmkJK6Rog
+Zls4HrY1pLqO8jgnFduE6fCdukyIO9ZAAkd+MZvUEmxX+JeoSvYfiDisd4F
6kdYcnxW/I2tKnD1/jIQFicfr7GIL7lIllxciaQ8aqsIdTktWeSrk5X2sjrx
Pcny+BcKdDmAXMI/EeN986BJ83eCofx4XHSOgcr6uxEVfaIZFwCeuOi8qz83
EgiUPZJFypQ3moI7B0bpFhR5wHu63MxaHkMnB/42fZtuhf7LPGgafh4x/jQP
+h3K5YhBfJqI5NDoNzDi9eWwfjqq/hkLbDzUftB8l30uUYNMNYgiAN3cUJwA
VR9gXHLQ/UrU8AQz5L0rF57kBtE+LvUIo9RGB+7QMAuQW1SPAOUe8dNs1DpX
l+TuSqZGPTD6uZbyJeKQGhu9nNCv7IKQTDA1woj7PeLLKVUr6yHVkmmpM0QB
O2cgqrYaBWIVU0N2i9AGgX7pLfF0RqW0OAZ5BqnT9EVMqfBS8Y7lUDpk96pz
LpWiVbOKqYEsSou2+mZK1TyXMR10KZXdRdFWLzyPUloq3fYcRr6zzxarNmHC
e8mtik5tHX5X1m59fpSPsknFQOK6RuwWoa0U/cSznEapKJjghiOsQC7k9NrT
rYhtJK7yaBqVuwzVA8SXcwh7yFAO355K/NfMQG+fXlt5aMNoEHGIKbnaJt7h
SK7q1Ks2hTSFBf8BoPkb7Q==\
\>"],
ImageRangeCache->{{{0, 374.562}, {243, 0}} -> {-0.0423757, -0.000143001, \
0.176545, 0.176545}, {{0.3125, 187.25}, {243, 56.0625}} -> {-1.03689, \
-1.00011, 0.176532, 0.176532}, {{187.25, 374.188}, {243, 56.0625}} -> \
{-23.0371, -1.00011, 0.176532, 0.176532}}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"famp", "=",
RowBox[{"CreateFeynAmp", "[", "ins", "]"}]}]], "Input"],
Cell[BoxData["\<\"\"\>"], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"creating amplitudes at level(s) \"\>", "\[InvisibleSpace]",
RowBox[{"{", "Classes", "}"}]}],
SequenceForm["creating amplitudes at level(s) ", {Classes}],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "1",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 Classes amplitude\"\>"}],
SequenceForm["> Top. ", 1, ": ", "1 Classes amplitude"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "2",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 Classes amplitude\"\>"}],
SequenceForm["> Top. ", 2, ": ", "1 Classes amplitude"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"in total: \"\>",
"\[InvisibleSpace]", "\<\"2 Classes amplitudes\"\>"}],
SequenceForm["in total: ", "2 Classes amplitudes"],
Editable->False]], "Print"],
Cell[BoxData[
RowBox[{
RowBox[{"FeynAmpList", "[",
RowBox[{
RowBox[{"Model", "\[Rule]", "SMQCD"}], ",",
RowBox[{"GenericModel", "\[Rule]", "\<\"Lorentz\"\>"}], ",",
RowBox[{"AmplitudeLevel", "\[Rule]",
RowBox[{"{", "Classes", "}"}]}], ",",
RowBox[{"ExcludeParticles", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"LastSelections", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"ExcludeFieldPoints", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"Restrictions", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"Process", "\[Rule]",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}], ",",
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["p", 1],
Editable->False], ",", "MU"}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"-",
RowBox[{"F", "[",
RowBox[{"4", ",",
RowBox[{"{", "1", "}"}]}], "]"}]}], ",",
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], ",", "MD"}], "}"}]}], "}"}], "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"V", "[", "5", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], ",", "0"}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"-",
RowBox[{"V", "[", "3", "]"}]}], ",",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False], ",", "MW"}], "}"}]}], "}"}]}]}]}], "]"}], "[",
RowBox[{
RowBox[{"FeynAmp", "[",
RowBox[{
RowBox[{"GraphID", "[",
RowBox[{
RowBox[{"Topology", "\[Equal]", "1"}], ",",
RowBox[{"Generic", "\[Equal]", "1"}], ",",
RowBox[{"Classes", "\[Equal]", "1"}], ",",
RowBox[{"Number", "\[Equal]", "1"}]}], "]"}], ",",
RowBox[{"Integral", "[", "]"}], ",",
RowBox[{
RowBox[{
RowBox[{
OverscriptBox["\<\"v\"\>", "\<\"_\"\>"], "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], ",", "MD"}], "]"}], ".",
FractionBox[
RowBox[{"\[ImaginaryI]", " ", "EL", " ",
RowBox[{"CKMC", "[",
RowBox[{"1", ",", "1"}], "]"}], " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"-\"\>"],
Subscript["-"],
Editable->False]}],
SequenceForm["om",
Subscript["-"]],
Editable->False], ")"}]}]}],
RowBox[{
SqrtBox["2"], " ", "SW"}]], ".",
RowBox[{"(",
RowBox[{"MU", "+",
RowBox[{"\<\"gs\"\>", "[",
RowBox[{
RowBox[{"-",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], ")"}]}], "+",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False]}], "]"}]}], ")"}], ".",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "GS", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"-\"\>"],
Subscript["-"],
Editable->False]}],
SequenceForm["om",
Subscript["-"]],
Editable->False], ")"}]}], " ",
RowBox[{"SUNT", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False]}], "]"}]}], "-",
RowBox[{"\[ImaginaryI]", " ", "GS", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"+\"\>"],
Subscript["+"],
Editable->False]}],
SequenceForm["om",
Subscript["+"]],
Editable->False], ")"}]}], " ",
RowBox[{"SUNT", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False]}], "]"}]}]}], ")"}], ".",
RowBox[{"\<\"u\"\>", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["p", 1],
Editable->False], ",", "MU"}], "]"}]}], " ",
FractionBox["1",
RowBox[{
RowBox[{"-", "MU2"}], "+",
SuperscriptBox[
RowBox[{"(",
RowBox[{
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], "-",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False]}], ")"}], "2"]}]], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False], ",", "3", ",", "External"}], "]"}], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",", "3", ",", "External"}], "]"}], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",", "8", ",", "External"}], "]"}], " ",
RowBox[{
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"ep\"\>", "\[InvisibleSpace]",
InterpretationBox[
SuperscriptBox["\[Null]", "\<\"*\"\>"],
Superscript["*"],
Editable->False]}],
SequenceForm[PolarizationVector,
Superscript["*"]],
Editable->False], ")"}], "[",
RowBox[{
RowBox[{"V", "[", "3", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False]}], "]"}], " ",
RowBox[{
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"ep\"\>", "\[InvisibleSpace]",
InterpretationBox[
SuperscriptBox["\[Null]", "\<\"*\"\>"],
Superscript["*"],
Editable->False]}],
SequenceForm[PolarizationVector,
Superscript["*"]],
Editable->False], ")"}], "[",
RowBox[{
RowBox[{"V", "[", "5", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False]}], "]"}]}]}], "]"}], ",",
RowBox[{"FeynAmp", "[",
RowBox[{
RowBox[{"GraphID", "[",
RowBox[{
RowBox[{"Topology", "\[Equal]", "2"}], ",",
RowBox[{"Generic", "\[Equal]", "1"}], ",",
RowBox[{"Classes", "\[Equal]", "1"}], ",",
RowBox[{"Number", "\[Equal]", "2"}]}], "]"}], ",",
RowBox[{"Integral", "[", "]"}], ",",
RowBox[{
RowBox[{
RowBox[{
OverscriptBox["\<\"v\"\>", "\<\"_\"\>"], "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], ",", "MD"}], "]"}], ".",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "GS", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"-\"\>"],
Subscript["-"],
Editable->False]}],
SequenceForm["om",
Subscript["-"]],
Editable->False], ")"}]}], " ",
RowBox[{"SUNT", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False]}], "]"}]}], "-",
RowBox[{"\[ImaginaryI]", " ", "GS", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"+\"\>"],
Subscript["+"],
Editable->False]}],
SequenceForm["om",
Subscript["+"]],
Editable->False], ")"}]}], " ",
RowBox[{"SUNT", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False]}], "]"}]}]}], ")"}], ".",
RowBox[{"(",
RowBox[{"MD", "+",
RowBox[{"\<\"gs\"\>", "[",
RowBox[{
RowBox[{"-",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], ")"}]}], "+",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False]}], "]"}]}], ")"}], ".",
FractionBox[
RowBox[{"\[ImaginaryI]", " ", "EL", " ",
RowBox[{"CKMC", "[",
RowBox[{"1", ",", "1"}], "]"}], " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"-\"\>"],
Subscript["-"],
Editable->False]}],
SequenceForm["om",
Subscript["-"]],
Editable->False], ")"}]}]}],
RowBox[{
SqrtBox["2"], " ", "SW"}]], ".",
RowBox[{"\<\"u\"\>", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["p", 1],
Editable->False], ",", "MU"}], "]"}]}], " ",
FractionBox["1",
RowBox[{
RowBox[{"-", "MD2"}], "+",
SuperscriptBox[
RowBox[{"(",
RowBox[{
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], "-",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False]}], ")"}], "2"]}]], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False], ",", "3", ",", "External"}], "]"}], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",", "3", ",", "External"}], "]"}], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",", "8", ",", "External"}], "]"}], " ",
RowBox[{
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"ep\"\>", "\[InvisibleSpace]",
InterpretationBox[
SuperscriptBox["\[Null]", "\<\"*\"\>"],
Superscript["*"],
Editable->False]}],
SequenceForm[PolarizationVector,
Superscript["*"]],
Editable->False], ")"}], "[",
RowBox[{
RowBox[{"V", "[", "3", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False]}], "]"}], " ",
RowBox[{
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"ep\"\>", "\[InvisibleSpace]",
InterpretationBox[
SuperscriptBox["\[Null]", "\<\"*\"\>"],
Superscript["*"],
Editable->False]}],
SequenceForm[PolarizationVector,
Superscript["*"]],
Editable->False], ")"}], "[",
RowBox[{
RowBox[{"V", "[", "5", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False]}], "]"}]}]}], "]"}]}], "]"}]], "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"famp", " ", "//", "Length"}]], "Input"],
Cell[BoxData["2"], "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"strm", "=",
RowBox[{"OpenWrite", "[", "\"\<test.amp\>\"", "]"}]}]], "Input"],
Cell[BoxData[
RowBox[{"OutputStream", "[",
RowBox[{"\<\"test.amp\"\>", ",", "15"}], "]"}]], "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{"Write", "[",
RowBox[{"strm", ",", "famp"}], "]"}], "\[IndentingNewLine]",
RowBox[{"Close", "[", "strm", "]"}]}], "Input"],
Cell[BoxData["\<\"test.amp\"\>"], "Output"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["q g -> w q", "Section"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"tops", "=",
RowBox[{"CreateTopologies", "[",
RowBox[{"0", ",", "4"}], "]"}]}], ";"}], "\[IndentingNewLine]"}],
"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"ins", "=",
RowBox[{"InsertFields", "[",
RowBox[{"tops", ",",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}], ",",
RowBox[{"V", "[", "5", "]"}]}], "}"}], "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}], ",",
RowBox[{"+",
RowBox[{"V", "[", "1", "]"}]}]}], "}"}]}], ",",
RowBox[{"Model", "\[Rule]", "SMQCD"}], ",",
RowBox[{"InsertionLevel", "\[Rule]",
RowBox[{"{", "Classes", "}"}]}]}], "]"}]}], ";"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Paint", "[",
RowBox[{"ins", ",",
RowBox[{"ColumnsXRows", "\[Rule]",
RowBox[{"{",
RowBox[{"2", ",", "1"}], "}"}]}], ",",
RowBox[{"PaintLevel", "\[Rule]",
RowBox[{"{", "Classes", "}"}]}]}], "]"}], ";"}]}]}]], "Input"],
Cell[BoxData["\<\"\"\>"], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"inserting at level(s) \"\>", "\[InvisibleSpace]",
RowBox[{"{", "Classes", "}"}]}],
SequenceForm["inserting at level(s) ", {Classes}],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "1",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 1, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "2",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 Classes insertion\"\>"}],
SequenceForm["> Top. ", 2, ": ", "1 Classes insertion"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "3",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 3, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "4",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 Classes insertion\"\>"}],
SequenceForm["> Top. ", 4, ": ", "1 Classes insertion"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"in total: \"\>",
"\[InvisibleSpace]", "\<\"2 Classes insertions\"\>"}],
SequenceForm["in total: ", "2 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "1",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 diagram\"\>"}],
SequenceForm["> Top. ", 1, ": ", "1 diagram"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "2",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 diagram\"\>"}],
SequenceForm["> Top. ", 2, ": ", "1 diagram"],
Editable->False]], "Print"],
Cell[GraphicsData["PostScript", "\<\
%!
%%Creator: Mathematica
%%AspectRatio: .65
MathPictureStart
/Mabs {
Mgmatrix idtransform
Mtmatrix dtransform
} bind def
/Mabsadd { Mabs
3 -1 roll add
3 1 roll add
exch } bind def
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
-1.38778e-17 0.0227273 -1.40675e-17 0.0227273 [
[ 0 0 0 0 ]
[ 1 .65 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 .65 L
0 .65 L
closepath
clip
newpath
% Start of sub-graphic
p
-1.38778e-17 -1.40675e-17 0.5 0.5 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.04545 .72727 m
.31818 .5 L
s
.20277 .59618 m
.14923 .61713 L
.17251 .64506 L
F
gsave
.16421 .587 -74.125 -16.125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.31818 .5 m
.3169 .49329 L
.31449 .48684 L
.311 .48088 L
.30651 .47563 L
.30116 .47127 L
.29511 .46793 L
.28858 .4657 L
.28178 .46464 L
.27495 .46472 L
.26834 .46589 L
.26218 .46802 L
.25666 .47098 L
.25198 .47456 L
.24827 .47853 L
.24562 .48267 L
.2441 .48672 L
.2437 .49045 L
.24436 .49361 L
.24598 .49601 L
.24842 .49748 L
.2515 .4979 L
.255 .49718 L
.2587 .49531 L
.26236 .49229 L
.26573 .48822 L
.2686 .48322 L
.27076 .47746 L
.27205 .47113 L
.27233 .46447 L
.27152 .45772 L
.26959 .45113 L
.26655 .44494 L
.26247 .43937 L
.25746 .43461 L
.25169 .43082 L
.24533 .42811 L
.23862 .42656 L
.23178 .42616 L
.22505 .42687 L
.21867 .42862 L
.21285 .43125 L
.20779 .43459 L
.20366 .43842 L
.20055 .44252 L
.19855 .44664 L
.19768 .45053 L
.1979 .45396 L
.19913 .45671 L
.20124 .45859 L
Mistroke
.20407 .45947 L
.20742 .45924 L
.21107 .45785 L
.21477 .45532 L
.21829 .45168 L
.2214 .44706 L
.22389 .44159 L
.22556 .43548 L
.22628 .42893 L
.22594 .42219 L
.22449 .41551 L
.22191 .40912 L
.21826 .40325 L
.21363 .39813 L
.20816 .39391 L
.20203 .39074 L
.19544 .38869 L
.18862 .3878 L
.18181 .38805 L
.17526 .38937 L
.16917 .39165 L
.16378 .39471 L
.15923 .39836 L
.15568 .40238 L
.1532 .40652 L
.15185 .41054 L
.15161 .41419 L
.15243 .41725 L
.15418 .41952 L
.15674 .42084 L
.15989 .42109 L
.16344 .4202 L
.16715 .41814 L
.17078 .41497 L
.17409 .41074 L
.17686 .40562 L
.1789 .39975 L
.18004 .39336 L
.18016 .38667 L
.17918 .37993 L
.17708 .37339 L
.17387 .36728 L
.16964 .36181 L
.16451 .35719 L
.15863 .35356 L
.15221 .35103 L
.14546 .34965 L
.13862 .34942 L
.13193 .3503 L
.12562 .35219 L
Mistroke
.11991 .35494 L
.11498 .35837 L
.11099 .36227 L
.10805 .36639 L
.10623 .37049 L
.10552 .37432 L
.1059 .37766 L
.10727 .38029 L
.10951 .38203 L
.11243 .38274 L
.11584 .38234 L
.11951 .38077 L
.1232 .37806 L
.12667 .37427 L
.1297 .36951 L
.13207 .36393 L
.13361 .35774 L
.13418 .35115 L
.13367 .3444 L
.13204 .33774 L
.1293 .33142 L
.12549 .32566 L
.12072 .32066 L
.11514 .31659 L
.10892 .31358 L
.10228 .31171 L
.09545 .311 L
.08867 .31142 L
.08217 .3129 L
.07618 .3153 L
.0709 .31847 L
.0665 .32219 L
.0631 .32625 L
.0608 .33038 L
.05962 .33436 L
.05954 .33794 L
.06051 .34089 L
.0624 .34303 L
.06505 .34419 L
.06828 .34427 L
.07187 .3432 L
.07558 .34097 L
.07918 .33763 L
.08242 .33326 L
.08509 .32801 L
.08701 .32205 L
.088 .3156 L
.08795 .30888 L
.0868 .30216 L
.08453 .29566 L
Mistroke
.08116 .28964 L
.07679 .28429 L
.07153 .27981 L
.06555 .27634 L
.05907 .27398 L
.05229 .27278 L
.04545 .27273 L
Mfstroke
gsave
.19943 .35973 -61 -18.375 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 22.375 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
72.125 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .72727 m
.68182 .5 L
s
.83913 .6311 m
.78559 .61014 L
.80887 .58221 L
F
gsave
.80057 .64027 -74.125 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.68182 .5 m
.68274 .49399 L
.68399 .48838 L
.68587 .48353 L
.68859 .47968 L
.69224 .47696 L
.69681 .47534 L
.70217 .47465 L
.70805 .47461 L
.71417 .47483 L
.72017 .47493 L
.72573 .47449 L
.73058 .47321 L
.73455 .47086 L
.73758 .46738 L
.73972 .46284 L
.74115 .45745 L
.74214 .45153 L
.74302 .44547 L
.74413 .43969 L
.74577 .43455 L
.74819 .43034 L
.75153 .42724 L
.75581 .42526 L
.76092 .42429 L
.76666 .42407 L
.77274 .42425 L
.77881 .42444 L
.78455 .42422 L
.78967 .42324 L
.79395 .42127 L
.79728 .41816 L
.7997 .41396 L
.80135 .40882 L
.80245 .40303 L
.80333 .39698 L
.80432 .39106 L
.80575 .38567 L
.80789 .38113 L
.81092 .37765 L
.81489 .3753 L
.81974 .37402 L
.8253 .37358 L
.8313 .37367 L
.83742 .3739 L
.8433 .37385 L
.84866 .37316 L
.85323 .37154 L
.85688 .36882 L
.8596 .36497 L
Mistroke
.86148 .36011 L
.86273 .35451 L
.86365 .3485 L
.86456 .34249 L
.86581 .33688 L
.86769 .33203 L
.87041 .32818 L
.87406 .32545 L
.87864 .32383 L
.88399 .32314 L
.88988 .3231 L
.89599 .32332 L
.90199 .32341 L
.90755 .32298 L
.9124 .32169 L
.91637 .31934 L
.9194 .31586 L
.92154 .31132 L
.92297 .30593 L
.92396 .30001 L
.92484 .29395 L
.92594 .28817 L
.92758 .28303 L
.93 .27882 L
.93334 .27572 L
.93761 .27374 L
.94273 .27277 L
.94847 .27255 L
.95455 .27273 L
Mfstroke
gsave
.83579 .413 -61 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
71.688 13.562 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.31818 .5 m
.68182 .5 L
s
.52727 .5 m
.47273 .48182 L
.47273 .51818 L
F
gsave
.5 .45704 -67.5625 -16.125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.31818 .5 Mdot
.68182 .5 Mdot
gsave
.5 .02273 -91.0938 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.25 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T1) show
81.938 14.688 moveto
(C1) show
102.375 14.688 moveto
(N1) show
119.188 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.5 -1.40675e-17 1 0.5 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.04545 .72727 m
.5 .68182 L
s
.29986 .70183 m
.24378 .68917 L
.2474 .72535 L
F
gsave
.26572 .66193 -67.5625 -16.125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.5 .31818 m
.49487 .31302 L
.48886 .30886 L
.48215 .30589 L
.47501 .30427 L
.46768 .30406 L
.46045 .30527 L
.45359 .30783 L
.44734 .31158 L
.44192 .31632 L
.43751 .3218 L
.43423 .3277 L
.43215 .33372 L
.43125 .33953 L
.43149 .34481 L
.43273 .34927 L
.4348 .35267 L
.43749 .35482 L
.44054 .3556 L
.44369 .35495 L
.44666 .3529 L
.44919 .34955 L
.45103 .34505 L
.45198 .33964 L
.45188 .33358 L
.45062 .32718 L
.44817 .32078 L
.44453 .31468 L
.4398 .3092 L
.43411 .30462 L
.42765 .30117 L
.42064 .29901 L
.41335 .29824 L
.40605 .29891 L
.39901 .30095 L
.3925 .30425 L
.38673 .30864 L
.38191 .31386 L
.37818 .31964 L
.37563 .32565 L
.37427 .33158 L
.37408 .3371 L
.37494 .34191 L
.37671 .34575 L
.37919 .34841 L
.38213 .34974 L
.38528 .34965 L
.38835 .34814 L
.39108 .34527 L
.39322 .3412 L
Mistroke
.39454 .33611 L
.39486 .33027 L
.39406 .32397 L
.39208 .31753 L
.3889 .31128 L
.38458 .30552 L
.37924 .30056 L
.37305 .29664 L
.36623 .29396 L
.35902 .29264 L
.35169 .29275 L
.34452 .29427 L
.33777 .2971 L
.33169 .30109 L
.32648 .30601 L
.32231 .31161 L
.31929 .31757 L
.31747 .32357 L
.31683 .32929 L
.31729 .33441 L
.31874 .33866 L
.32096 .3418 L
.32376 .34366 L
.32685 .34413 L
.32999 .34317 L
.33288 .34082 L
.33528 .3372 L
.33694 .33248 L
.33767 .3269 L
.33732 .32074 L
.3358 .31432 L
.33309 .30795 L
.3292 .30197 L
.32425 .29666 L
.31837 .29231 L
.31176 .28913 L
.30468 .28727 L
.29736 .28682 L
.29009 .28779 L
.28315 .29012 L
.27678 .29368 L
.27121 .29827 L
.26662 .30364 L
.26314 .3095 L
.26085 .31552 L
.25975 .32139 L
.2598 .32678 L
.26088 .3314 L
.26282 .335 L
.26542 .33737 L
Mistroke
.26843 .33839 L
.27159 .33799 L
.27461 .33618 L
.27723 .33303 L
.2792 .32872 L
.28031 .32345 L
.2804 .31748 L
.27935 .31112 L
.2771 .30469 L
.27366 .29852 L
.26911 .29292 L
.26357 .28816 L
.25722 .2845 L
.25029 .28211 L
.24303 .2811 L
.23572 .28152 L
.22861 .28334 L
.22199 .28644 L
.21608 .29065 L
.21109 .29575 L
.20717 .30145 L
.20441 .30745 L
.20284 .31342 L
.20246 .31903 L
.20315 .32399 L
.20478 .32801 L
.20715 .33088 L
.21003 .33245 L
.21316 .3326 L
.21627 .33133 L
.21907 .32869 L
.22133 .32481 L
.2228 .31989 L
.2233 .31415 L
.22271 .30791 L
.22093 .30147 L
.21795 .29516 L
.21382 .2893 L
.20864 .28419 L
.20259 .28007 L
.19586 .27717 L
.1887 .27561 L
.18137 .27547 L
.17415 .27675 L
.16731 .27937 L
.1611 .28317 L
.15573 .28796 L
.15137 .29346 L
.14815 .29938 L
.14612 .3054 L
Mistroke
.14528 .31119 L
.14557 .31643 L
.14685 .32085 L
.14896 .3242 L
.15167 .32629 L
.15474 .327 L
.15788 .32628 L
.16084 .32417 L
.16334 .32075 L
.16514 .31621 L
.16604 .31076 L
.16588 .30468 L
.16457 .29828 L
.16206 .29188 L
.15837 .2858 L
.15359 .28036 L
.14785 .27583 L
.14136 .27244 L
.13433 .27034 L
.12704 .26965 L
.11975 .27038 L
.11273 .27248 L
.10624 .27585 L
.10052 .28028 L
.09575 .28553 L
.09207 .29133 L
.08958 .29735 L
.08828 .30326 L
.08813 .30876 L
.08905 .31353 L
.09086 .31732 L
.09336 .31992 L
.09632 .32118 L
.09947 .32102 L
.10253 .31944 L
.10524 .31652 L
.10734 .31239 L
.10861 .30727 L
.10889 .3014 L
.10803 .29508 L
.10599 .28864 L
.10275 .28241 L
.09838 .27668 L
.093 .27177 L
.08678 .26791 L
.07993 .26529 L
.07271 .26404 L
.06538 .26421 L
.05822 .2658 L
.0515 .26869 L
Mistroke
.04545 .27273 L
Mfstroke
gsave
.27974 .25284 -67.5625 -18.375 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 22.375 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
72.125 13.812 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .72727 m
.5 .31818 L
s
.74754 .54097 m
.69484 .518 L
.71916 .49097 L
F
gsave
.81534 .64005 -74.125 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.5 .68182 m
.50078 .67586 L
.50187 .67025 L
.50357 .66531 L
.50608 .66128 L
.5095 .65826 L
.51384 .65626 L
.51897 .65514 L
.52469 .65468 L
.53072 .65455 L
.53672 .6544 L
.54237 .65386 L
.54741 .65264 L
.55163 .65051 L
.55493 .64735 L
.55732 .64319 L
.55893 .63814 L
.55996 .63247 L
.56072 .62649 L
.56152 .62055 L
.56268 .61502 L
.56447 .61019 L
.5671 .60628 L
.57065 .60341 L
.5751 .60153 L
.58033 .60052 L
.58611 .60012 L
.59214 .60001 L
.59812 .59982 L
.60371 .59921 L
.60865 .59788 L
.61275 .59562 L
.61592 .59232 L
.6182 .58803 L
.61971 .58288 L
.62069 .57715 L
.62143 .57115 L
.62226 .56525 L
.62349 .5598 L
.62539 .55508 L
.62813 .55131 L
.6318 .54857 L
.63637 .54682 L
.64169 .5459 L
.64752 .54556 L
.65357 .54546 L
.6595 .54524 L
.66502 .54455 L
.66986 .5431 L
.67384 .5407 L
Mistroke
.67689 .53727 L
.67905 .53285 L
.68048 .52761 L
.68141 .52182 L
.68214 .51581 L
.68301 .50995 L
.68431 .50458 L
.68631 .49998 L
.68918 .49634 L
.69297 .49374 L
.69765 .49211 L
.70305 .49129 L
.70893 .491 L
.71498 .4909 L
.72088 .49064 L
.72632 .48986 L
.73105 .48829 L
.73491 .48576 L
.73784 .48219 L
.73989 .47765 L
.74123 .47232 L
.74212 .46648 L
.74285 .46047 L
.74376 .45466 L
.74514 .44937 L
.74725 .44489 L
.75024 .44139 L
.75415 .43892 L
.75894 .43742 L
.76442 .43668 L
.77034 .43644 L
.77639 .43634 L
.78224 .43602 L
.7876 .43515 L
.79222 .43347 L
.79596 .43079 L
.79876 .42709 L
.80071 .42243 L
.80197 .41701 L
.80282 .41113 L
.80356 .40513 L
.80451 .39936 L
.80598 .39417 L
.80819 .38982 L
.8113 .38645 L
.81534 .38412 L
.82023 .38273 L
.82579 .38208 L
.83174 .38187 L
.83779 .38176 L
Mistroke
.84359 .38139 L
.84886 .38043 L
.85337 .37861 L
.85698 .3758 L
.85967 .37196 L
.86151 .36719 L
.8627 .36169 L
.86351 .35577 L
.86426 .34978 L
.86526 .34408 L
.86682 .33898 L
.86915 .33475 L
.87239 .33153 L
.87655 .32933 L
.88154 .32805 L
.88716 .32747 L
.89315 .3273 L
.89918 .32718 L
.90493 .32674 L
.91011 .32568 L
.9145 .32374 L
.91799 .32079 L
.92055 .31682 L
.9223 .31193 L
.92342 .30636 L
.9242 .30041 L
.92496 .29444 L
.92603 .2888 L
.92767 .28381 L
.93012 .2797 L
.93348 .27661 L
.93776 .27454 L
.94284 .27337 L
.94853 .27287 L
.95455 .27273 L
Mfstroke
gsave
.84375 .41277 -61 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
71.688 13.562 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.5 .68182 m
.5 .31818 L
s
.5 .47273 m
.48182 .52727 L
.51818 .52727 L
F
gsave
.46158 .5 -74.125 -10.0625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 20.125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
72.125 13.562 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 16.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.5 .68182 Mdot
.5 .31818 Mdot
gsave
.5 .02273 -91.0938 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.25 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T2) show
81.938 14.688 moveto
(C1) show
102.375 14.688 moveto
(N2) show
119.188 14.688 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 13.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
0 g
gsave
.29545 .59 -68.4688 -10.9375 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
73.938 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.39773 .59 -68.4688 -12.4688 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 24.9375 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 15.625 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 15.625 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
73.938 15.625 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.5 .59 -71.0938 -10.9375 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
63.000 15.312 moveto
(\\256) show
79.188 15.312 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.60227 .59 -68.4688 -10.9375 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 21.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
73.938 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.70455 .59 -68.2188 -12.1562 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 24.3125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 15.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 15.312 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
73.438 15.312 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 19.750 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
% End of Graphics
MathPictureEnd
\
\>"], "Graphics",
ImageSize->{288, 187.188},
ImageMargins->{{43, 0}, {0, 0}},
ImageRegion->{{0, 1}, {0, 1}},
ImageCache->GraphicsData["CompressedBitmap", "\<\
eJztXFuTFEUWLrq6e7qnmeE+zMjM9AwiO1wUQUZd9qKAgrCKG14Adw0C8Abh
HYlw2V0EcVGEwAvu6roRovvgrkb4oH/A8MVf4t8woiVP1pyvKuvL6ix6uDxA
xHSdzjx5zpcnM0+ePFnNQweOHnrmxQNHDz91YGL7kQOvHDr81GsT214+cqko
nhNFc7699Dc8ERm6E0UzH/LvO/ORfLlK9DbzqBgM/UrNM1TdUE1S22eo2FB1
LTunlJT1G6pFpLSIlIq22OKHNGCopqEaPUBqEimXDWmuoaqGqmrDPsJXVz4v
OKHmF8prEXkVLdvZBabXSuCrGarmgwkg8wrltYi8WMt2+GG2VBiGxgtTKCu3
M7OCGGqIGigU3+ouvqoVD3TpRCU75VknIKxC+M6VltwKlLwtBPqCHgBjFJtE
XjFMTKf7LhdmTCgGc4DMEAaTyUPHtl4uTPQZdmAwB7O28cJk8qCtwIXNDsw6
ocoDZhMrB13E1nz+ItZadMJZxjXCHNATr6JWd0UlO8b8tdOxWqdrT2B/bCaN
Qsktn2RHSg56U6vmKlVTqq6UQHf2QfA50BtZyUxei8iLtW2yODebx9xsr7yx
hLPlQuzbKqWatReLJRwp2AfvcyENGUoipCWk4XuEb4jw7bJizee1CCBztCz4
PoPs01SphA0tU/qJW+pM2HT9oPYXRv44VT9CSxeqySu0XiKtBlm0aaZ5qlpG
sOoKYXFQur4bdDj35nVZ361/3ewTZORuI0Xm2E8q90dbAF+/0lAy8y4ouEVK
STciwdlJ/RNR36iMlhUKVzZpqJYuyIqWRbGKivIeV2B8plIGLNs8p6H5Np41
tFDnCd+k1vaTnuTdqpj1QyJo0PLPJ1WjChiT9hzhW561F6aRwxerPeBRY/Wo
HNcCUrWyEM0ktwcmBihnD4/J/JTaU0SNHbxoIakaV4NjHjOkE1pbIbV9TlkU
pfdAtkWJaWVneL0cYBlotjq9qKOau3KEv8Ft33SKE/FOPiHPgBmCnfb5cl1b
piLgmM6q3uUFfXHtb76xcarzPntMgcnX1C4hnkE3K0rt9Xd4Eam6SRXAU58l
fJOz0PVagYzCqZCd1f1ENJYmO3pLpLXHbxjxGjKhESNB4rUwB1ZpiTnEjOVk
qGRn2U1EWoeeStAwvfBPS5TCqnxXqV95ezsLVimcQK78jClTU8M8gBynhgLT
DHYFlm22kJjoTVUkmxIOPnSAyxth9lZidhZJmcydx7Uv1n0mwUmo38uW4XgP
E51QapOhqnCO18YcXeWLWXYptThtFt6MObD5PlM4fHJ0jsOMcoUXm3T3D4p2
2ex1/A3C96hTFl0FE7BYeQbjDiIrY4Kce4YrhmvApsv6/Bgp82yUzIt075rP
vT/QpXOpYwkZTSd+Yj3br6rcYC8BWDS0DDuyTdtI7ahtKg+JeGWfYyEsA/uC
dqosKpxe7vejQgjmbFAxaSO7kHNYOE74jinmFqllzniLH+FIQbfZvv4RKXuH
lLE1utkPY7gABhN1IRAGCx3u9cNYSqpCd7wPSNkZUsbOw78nZWMW0lAgJNZT
sYgsBXZ8Y7P6d34gNwX25bT5lMnL5go85W9J7bhVJcPgjaBOkzI2H5Ax32Ao
OSnY4N6GaDLb2IGe4cbV0HpSa6PiaIV5iL+DzzoZqAB5t3WkdsoqQH7FuSoR
7k3aK9T+JlA9Tge3ktpVVr2b3+p45iJy6ncbqo84403K8i8igOV6VveOiy3b
aTWfGLKqhnT4/knKWJphlR/mRCBMtpQ3qr2QCgmFyZIDU1caJs5moTAXkzJ2
3EwPetW3DTIgvyZ8bPYtIWUr/UBuNw+pYUqlVnzPv4mIIeW7hdTaKW8dQkwW
ERQ4Stcp9QURu1Rrb1ZqrZW7lqnqdPgZ/1ai+TbCxzAMa4sJp20CJTwWWNsD
DFwUCaA+NWgUrSHsxc6uF3ssI2VsQUxbcMwZhqSOzbc1gTBlGUhIzXbcUVKG
w8+wth0pB5g5ldUEMNulRKkUsWuEMVLG9pkRlWIjnmQi5FLSzOuUQiq1LGgd
J2XsVgaTNznArSVMDObB0pDapIxdWuUgSQAg7m9faaXwDEGq7pJH7riJ9flk
oRSGAHdrgyEI7pRHuOf6oxpntBAGwj7EtMtc5dOkYWgQtIuUYW84YignrmSB
OVqwSYezcEnAuLVsG0oqp7RshYp91VAs1mRY0Qy5KQxCgnBjGYSiWZZuXXFJ
GczyiuJHrIl3Q9xYx0Cvq9DuuKJ08k7a4MjDgDjRpAMEZwvmnXLjGKv6PT5V
zkur0sKGVbk1W1GGtqttc+kuOi/fYtawka2FKC0e4PJK+Sjfqwraao4pLYNP
YFvmMwFAcsnPviwMJje5MLlHmVgi60EuvqJD5QB7jpQ1s9bN5R0ufRsjzZKb
C5ZPYbensuIHLg+D9Lyu4zWQUj+klobDZJv6n0jZ+wSIjERDR505dNFmDzg2
cGOOEA5un1JMn9e5s2AtTmlerAVwcNio9iv1Xg9KcW9+d0qp48yw2RxU6nyg
UmZjlhCfdtVD7Ahhf5qU/ZeUCXQZbBadbvQrHSbsz5Ky4uMYS/Pd4VfKMqaH
SNnnPqWs907ZBr96XFa/oBRTxWBiNRQoQNlLSl0MVAAHtd6vYJFS2Dw+C1QA
X327XwFLUh0hZf8JVNpWyev8StnUPUrKPg1UmksSMKXIYf5FKaaApdSZp1nj
V4Vs7V+VYlshy0sz9Sw0SLI/SG/8XSnrXmf8uvljOV2miKWZkjwWS3jInVnV
pwCWYVnPJGe9SplOGkp2TDmJORskOyeL25WdjB1tk6y7PGJVIOx/VsrZApkW
3EkggZfIvkWBnjCUxB1PqD5sckwsu1+ZVgU28rXzTmzyllJPKBM2tFAFd2pb
O9J25Qju09qXvcpUnKZgCu7SFnbOpoLvM2qOPT0oYFna5NpmuZrorBpmdw+q
WGZ6ItUrUYVY5bFAVexWjN12ta0q+DYcexCVPdqDUnabl1yxtVUYO+NB/SM9
qC+41WTRMMuPPxyo3nvPKy0SpSwDyHa9XYFK8R7EVuVLLpIR9F5UKkRsFCVn
/u3KkpwGEdGKo3CcJzzxQz4tQk2TtnhVK0l4jmRVMTeKuOuUSrzDx4y0cJIM
ZoGfyHG8KosE3lAt60kLljK32yAV9pYig6dl4I5nlTot2H2RLaNb8D/ICLED
w9/MZyOrFC2Y5OQFNUyGd0hDTCRJmPWTAav5lDIb2tvFVBx7hjTEenhWlbaI
UYtPM8nxGvPpXdIQYb28LlTVKd6vZpP+bfANQypqpnEsU8r82VYdv1jVs7Ml
A4JBsgho/v8sadgmfPL6j/xibD9pgaFJvw3rPTFjt5Ldc6GhDhI+DEPyJjbe
oGCnf+SF1qmxkPZ4mrTA6Sr5gQhy4yyngXzZClWAnxmx9A8zZfIzIJbfZkpZ
WL9U1eNXNYd9hqZBDI1lfiBlC7R/35Nau2Xb79fDDwRv0DfoG/R1QX9lHuJ5
JQhBLBhF/zMP2UyOuVVfmsegKZD8i3ibU6kq/Ci7mm2fMEl+A/81iLQfV6qh
DR8kfJOuMMnLyLk3nyxZrc12FnBhx3jT1hzT/i0nCJCGaCsfyyqdSAmT7uB+
c6IAzVTWJE5LXEGdTIkX9j5lB65VWjtG+AqENbIoalkUsOsoaXGzUie6iHXG
W6KyJZ2ZWIWJTb2NTsWOKRN+OClihzoz0RYTa5Nt2eD4eBctQuFHmatVsxc8
zv7sBFBSVbH5oQoZxXAFbNo0skrZJRnSDBV1KeFKnYl/dZQ6i5m1yF9wxroa
kBkOn+VT2pCpxHKrByuAv5WGOwifo0rEHvOLFfZBn7AvbcP/m4fHi/1sv3+t
oOA/kyppcR1thT46mvML8t4n8A==\
\>"],
ImageRangeCache->{{{0, 431}, {279.75, 0}} -> {-0.0314566, 6.18969, 0.153351, \
0.153351}, {{0.25, 215.5}, {279.75, 64.5}} -> {-1.02566, -1.00011, 0.153312, \
0.153312}, {{215.5, 430.688}, {279.75, 64.5}} -> {-23.0323, -1.0033, \
0.153356, 0.153356}}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"famp", "=",
RowBox[{"CreateFeynAmp", "[", "ins", "]"}]}]], "Input"],
Cell[BoxData["\<\"\"\>"], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"creating amplitudes at level(s) \"\>", "\[InvisibleSpace]",
RowBox[{"{", "Classes", "}"}]}],
SequenceForm["creating amplitudes at level(s) ", {Classes}],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "1",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 Classes amplitude\"\>"}],
SequenceForm["> Top. ", 1, ": ", "1 Classes amplitude"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "2",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"1 Classes amplitude\"\>"}],
SequenceForm["> Top. ", 2, ": ", "1 Classes amplitude"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"in total: \"\>",
"\[InvisibleSpace]", "\<\"2 Classes amplitudes\"\>"}],
SequenceForm["in total: ", "2 Classes amplitudes"],
Editable->False]], "Print"],
Cell[BoxData[
RowBox[{
RowBox[{"FeynAmpList", "[",
RowBox[{
RowBox[{"Model", "\[Rule]", "SMQCD"}], ",",
RowBox[{"GenericModel", "\[Rule]", "\<\"Lorentz\"\>"}], ",",
RowBox[{"AmplitudeLevel", "\[Rule]",
RowBox[{"{", "Classes", "}"}]}], ",",
RowBox[{"ExcludeParticles", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"LastSelections", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"ExcludeFieldPoints", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"Restrictions", "\[Rule]",
RowBox[{"{", "}"}]}], ",",
RowBox[{"Process", "\[Rule]",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}], ",",
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["p", 1],
Editable->False], ",", "MU"}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"V", "[", "5", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], ",", "0"}], "}"}]}], "}"}], "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}], ",",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], ",", "MU"}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"V", "[", "1", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False], ",", "0"}], "}"}]}], "}"}]}]}]}], "]"}], "[",
RowBox[{
RowBox[{"FeynAmp", "[",
RowBox[{
RowBox[{"GraphID", "[",
RowBox[{
RowBox[{"Topology", "\[Equal]", "1"}], ",",
RowBox[{"Generic", "\[Equal]", "1"}], ",",
RowBox[{"Classes", "\[Equal]", "1"}], ",",
RowBox[{"Number", "\[Equal]", "1"}]}], "]"}], ",",
RowBox[{"Integral", "[", "]"}], ",",
RowBox[{
RowBox[{
RowBox[{
OverscriptBox["\<\"u\"\>", "\<\"_\"\>"], "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], ",", "MU"}], "]"}], ".",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-",
FractionBox["2", "3"]}], " ", "\[ImaginaryI]", " ", "EL", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"-\"\>"],
Subscript["-"],
Editable->False]}],
SequenceForm["om",
Subscript["-"]],
Editable->False], ")"}]}]}], "-",
RowBox[{
FractionBox["2", "3"], " ", "\[ImaginaryI]", " ", "EL", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"+\"\>"],
Subscript["+"],
Editable->False]}],
SequenceForm["om",
Subscript["+"]],
Editable->False], ")"}]}]}]}], ")"}], ".",
RowBox[{"(",
RowBox[{"MU", "+",
RowBox[{"\<\"gs\"\>", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], "+",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False]}], "]"}]}], ")"}], ".",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "GS", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"-\"\>"],
Subscript["-"],
Editable->False]}],
SequenceForm["om",
Subscript["-"]],
Editable->False], ")"}]}], " ",
RowBox[{"SUNT", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False]}], "]"}]}], "-",
RowBox[{"\[ImaginaryI]", " ", "GS", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"+\"\>"],
Subscript["+"],
Editable->False]}],
SequenceForm["om",
Subscript["+"]],
Editable->False], ")"}]}], " ",
RowBox[{"SUNT", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False]}], "]"}]}]}], ")"}], ".",
RowBox[{"\<\"u\"\>", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["p", 1],
Editable->False], ",", "MU"}], "]"}]}], " ",
RowBox[{"\<\"ep\"\>", "[",
RowBox[{
RowBox[{"V", "[", "5", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False]}], "]"}], " ",
FractionBox["1",
RowBox[{
RowBox[{"-", "MU2"}], "+",
SuperscriptBox[
RowBox[{"(",
RowBox[{
RowBox[{"-",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], ")"}]}], "-",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False]}], ")"}], "2"]}]], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False], ",", "3", ",", "External"}], "]"}], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",", "3", ",", "External"}], "]"}], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",", "8", ",", "External"}], "]"}], " ",
RowBox[{
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"ep\"\>", "\[InvisibleSpace]",
InterpretationBox[
SuperscriptBox["\[Null]", "\<\"*\"\>"],
Superscript["*"],
Editable->False]}],
SequenceForm[PolarizationVector,
Superscript["*"]],
Editable->False], ")"}], "[",
RowBox[{
RowBox[{"V", "[", "1", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False]}], "]"}]}]}], "]"}], ",",
RowBox[{"FeynAmp", "[",
RowBox[{
RowBox[{"GraphID", "[",
RowBox[{
RowBox[{"Topology", "\[Equal]", "2"}], ",",
RowBox[{"Generic", "\[Equal]", "1"}], ",",
RowBox[{"Classes", "\[Equal]", "1"}], ",",
RowBox[{"Number", "\[Equal]", "2"}]}], "]"}], ",",
RowBox[{"Integral", "[", "]"}], ",",
RowBox[{
RowBox[{
RowBox[{
OverscriptBox["\<\"u\"\>", "\<\"_\"\>"], "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False], ",", "MU"}], "]"}], ".",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-", "\[ImaginaryI]"}], " ", "GS", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"-\"\>"],
Subscript["-"],
Editable->False]}],
SequenceForm["om",
Subscript["-"]],
Editable->False], ")"}]}], " ",
RowBox[{"SUNT", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False]}], "]"}]}], "-",
RowBox[{"\[ImaginaryI]", " ", "GS", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"+\"\>"],
Subscript["+"],
Editable->False]}],
SequenceForm["om",
Subscript["+"]],
Editable->False], ")"}]}], " ",
RowBox[{"SUNT", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False]}], "]"}]}]}], ")"}], ".",
RowBox[{"(",
RowBox[{"MU", "+",
RowBox[{"\<\"gs\"\>", "[",
RowBox[{
RowBox[{"-",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], ")"}]}], "+",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False]}], "]"}]}], ")"}], ".",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"-",
FractionBox["2", "3"]}], " ", "\[ImaginaryI]", " ", "EL", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"-\"\>"],
Subscript["-"],
Editable->False]}],
SequenceForm["om",
Subscript["-"]],
Editable->False], ")"}]}]}], "-",
RowBox[{
FractionBox["2", "3"], " ", "\[ImaginaryI]", " ", "EL", " ",
RowBox[{
RowBox[{"\<\"ga\"\>", "[",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False], "]"}], ".",
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"om\"\>", "\[InvisibleSpace]",
InterpretationBox[
SubscriptBox["\[Null]", "\<\"+\"\>"],
Subscript["+"],
Editable->False]}],
SequenceForm["om",
Subscript["+"]],
Editable->False], ")"}]}]}]}], ")"}], ".",
RowBox[{"\<\"u\"\>", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["p", 1],
Editable->False], ",", "MU"}], "]"}]}], " ",
RowBox[{"\<\"ep\"\>", "[",
RowBox[{
RowBox[{"V", "[", "5", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Lor", 1],
Editable->False]}], "]"}], " ",
FractionBox["1",
RowBox[{
RowBox[{"-", "MU2"}], "+",
SuperscriptBox[
RowBox[{"(",
RowBox[{
InterpretationBox[
RowBox[{"\<\"p\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["p", 2],
Editable->False], "-",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["k", 1],
Editable->False]}], ")"}], "2"]}]], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Col", 1],
Editable->False], ",", "3", ",", "External"}], "]"}], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Col\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Col", 2],
Editable->False], ",", "3", ",", "External"}], "]"}], " ",
RowBox[{"SumOver", "[",
RowBox[{
InterpretationBox[
RowBox[{"\<\"Glu\"\>", "\[InvisibleSpace]", "1"}],
SequenceForm["Glu", 1],
Editable->False], ",", "8", ",", "External"}], "]"}], " ",
RowBox[{
RowBox[{"(",
InterpretationBox[
RowBox[{"\<\"ep\"\>", "\[InvisibleSpace]",
InterpretationBox[
SuperscriptBox["\[Null]", "\<\"*\"\>"],
Superscript["*"],
Editable->False]}],
SequenceForm[PolarizationVector,
Superscript["*"]],
Editable->False], ")"}], "[",
RowBox[{
RowBox[{"V", "[", "1", "]"}], ",",
InterpretationBox[
RowBox[{"\<\"k\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["k", 2],
Editable->False], ",",
InterpretationBox[
RowBox[{"\<\"Lor\"\>", "\[InvisibleSpace]", "2"}],
SequenceForm["Lor", 2],
Editable->False]}], "]"}]}]}], "]"}]}], "]"}]], "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"famp", " ", "//", "Length"}]], "Input"],
Cell[BoxData["2"], "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"strm", "=",
RowBox[{"OpenWrite", "[", "\"\<test.amp\>\"", "]"}]}]], "Input"],
Cell[BoxData[
RowBox[{"OutputStream", "[",
RowBox[{"\<\"test.amp\"\>", ",", "16"}], "]"}]], "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{"Write", "[",
RowBox[{"strm", ",", "famp"}], "]"}], "\[IndentingNewLine]",
RowBox[{"Close", "[", "strm", "]"}]}], "Input"],
Cell[BoxData["\<\"test.amp\"\>"], "Output"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["Direct Photon Production: 1 Loops (19 diagrams)", "Section"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"tops", "=",
RowBox[{"CreateTopologies", "[",
RowBox[{"1", ",", "4", ",",
RowBox[{"ExcludeTopologies", "\[Rule]",
RowBox[{"{", "Internal", "}"}]}]}], "]"}]}], ";"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"ins", "=",
RowBox[{"InsertFields", "[",
RowBox[{"tops", ",",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"V", "[", "5", "]"}], ",",
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}]}], "}"}], "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"V", "[", "1", "]"}], ",",
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}]}], "}"}]}], ",",
RowBox[{"Model", "\[Rule]", "SMQCD"}], ",",
RowBox[{"InsertionLevel", "\[Rule]",
RowBox[{"{", "Classes", "}"}]}]}], "]"}]}], ";"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Paint", "[",
RowBox[{"ins", ",",
RowBox[{"ColumnsXRows", "\[Rule]", "5"}], ",",
RowBox[{"PaintLevel", "\[Rule]",
RowBox[{"{", "Classes", "}"}]}], ",",
RowBox[{"AutoEdit", "\[Rule]", "False"}]}], "]"}], ";"}]}]}]], "Input"],
Cell[BoxData["\<\"\"\>"], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"inserting at level(s) \"\>", "\[InvisibleSpace]",
RowBox[{"{", "Classes", "}"}]}],
SequenceForm["inserting at level(s) ", {Classes}],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "1",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 1, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "2",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 2, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "3",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 3, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "4",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 4, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "5",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 5, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "6",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 6, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "7",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"7 Classes insertions\"\>"}],
SequenceForm["> Top. ", 7, ": ", "7 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "8",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"5 Classes insertions\"\>"}],
SequenceForm["> Top. ", 8, ": ", "5 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "9",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"7 Classes insertions\"\>"}],
SequenceForm["> Top. ", 9, ": ", "7 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "10",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 10, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "11",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 11, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "12",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"0 Classes insertions\"\>"}],
SequenceForm["> Top. ", 12, ": ", "0 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"in total: \"\>",
"\[InvisibleSpace]", "\<\"19 Classes insertions\"\>"}],
SequenceForm["in total: ", "19 Classes insertions"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "1",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"7 diagrams\"\>"}],
SequenceForm["> Top. ", 1, ": ", "7 diagrams"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "2",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"5 diagrams\"\>"}],
SequenceForm["> Top. ", 2, ": ", "5 diagrams"],
Editable->False]], "Print"],
Cell[BoxData[
InterpretationBox[
RowBox[{"\<\"> Top. \"\>", "\[InvisibleSpace]", "3",
"\[InvisibleSpace]", "\<\": \"\>",
"\[InvisibleSpace]", "\<\"7 diagrams\"\>"}],
SequenceForm["> Top. ", 3, ": ", "7 diagrams"],
Editable->False]], "Print"],
Cell[GraphicsData["PostScript", "\<\
%!
%%Creator: Mathematica
%%AspectRatio: 1.06
MathPictureStart
/Mabs {
Mgmatrix idtransform
Mtmatrix dtransform
} bind def
/Mabsadd { Mabs
3 -1 roll add
3 1 roll add
exch } bind def
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
2.42861e-17 0.00909091 -2.29309e-17 0.00909091 [
[ 0 0 0 0 ]
[ 1 1.06 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1.06 L
0 1.06 L
closepath
clip
newpath
% Start of sub-graphic
p
2.42861e-17 0.8 0.2 1 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.34091 .65909 m
.33504 .65619 L
.32873 .65424 L
.32216 .65334 L
.31553 .65354 L
.30902 .65485 L
.30283 .65723 L
.29713 .66062 L
.29207 .66488 L
.28778 .66986 L
.28436 .67537 L
.28187 .68121 L
.28032 .68715 L
.27971 .69297 L
.27998 .69844 L
.28104 .70336 L
.28276 .70755 L
.28499 .71085 L
.28756 .71314 L
.29029 .71435 L
.29298 .71445 L
.29544 .71345 L
.29749 .71141 L
.29896 .70843 L
.29972 .70466 L
.29964 .70027 L
.29867 .69545 L
.29675 .69043 L
.29388 .68543 L
.29011 .68067 L
.2855 .67637 L
.28017 .67272 L
.27425 .6699 L
.26791 .66803 L
.26134 .66722 L
.25471 .66751 L
.24822 .66891 L
.24206 .67138 L
.23641 .67484 L
.23141 .67917 L
.22719 .6842 L
.22384 .68975 L
.22143 .6956 L
.21996 .70154 L
.21943 .70734 L
.21977 .71278 L
.22089 .71764 L
.22265 .72176 L
.22492 .72498 L
.22751 .72719 L
Mistroke
.23024 .72831 L
.23292 .72832 L
.23535 .72723 L
.23736 .7251 L
.23878 .72206 L
.23947 .71822 L
.23932 .71379 L
.23827 .70895 L
.23627 .70392 L
.23333 .69893 L
.22948 .6942 L
.22481 .68995 L
.21943 .68636 L
.21347 .68361 L
.2071 .68183 L
.20051 .68111 L
.19389 .68149 L
.18742 .68298 L
.1813 .68554 L
.17569 .68908 L
.17075 .69347 L
.1666 .69855 L
.16333 .70413 L
.161 .71 L
.15961 .71594 L
.15915 .72172 L
.15956 .72711 L
.16073 .73192 L
.16255 .73598 L
.16485 .73911 L
.16746 .74123 L
.1702 .74226 L
.17286 .74218 L
.17526 .741 L
.17723 .73879 L
.17859 .73568 L
.17922 .73179 L
.179 .72731 L
.17787 .72245 L
.17579 .71741 L
.17277 .71243 L
.16885 .70774 L
.16412 .70353 L
.15868 .70001 L
.15268 .69734 L
.14629 .69564 L
.13969 .69501 L
.13307 .69548 L
.12663 .69706 L
.12054 .69971 L
Mistroke
.11499 .70332 L
.11011 .70778 L
.10603 .71291 L
.10283 .71852 L
.10057 .72441 L
.09927 .73034 L
.09888 .73609 L
.09936 .74145 L
.10059 .7462 L
.10245 .75018 L
.10479 .75324 L
.10741 .75527 L
.11015 .75621 L
.1128 .75603 L
.11517 .75477 L
.11709 .75248 L
.1184 .7493 L
.11896 .74535 L
.11867 .74083 L
.11746 .73595 L
.11531 .73091 L
.11221 .72595 L
.10822 .72128 L
.10342 .71713 L
.09793 .71367 L
.09189 .71107 L
.08548 .70946 L
.07887 .70892 L
.07226 .70949 L
.06584 .71116 L
.05979 .71389 L
.05428 .71758 L
.04946 .72209 L
.04545 .72727 L
Mfstroke
gsave
.21618 .76534 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .34091 L
s
.21976 .31295 m
.1707 .28297 L
.16252 .3184 L
F
gsave
.20902 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .65909 m
.6644 .6565 L
.66962 .65431 L
.67467 .65288 L
.67948 .65247 L
.68402 .65324 L
.68828 .65522 L
.69228 .65831 L
.69607 .66229 L
.69974 .66682 L
.70337 .67152 L
.70705 .676 L
.71088 .67986 L
.71491 .68281 L
.71921 .68462 L
.72378 .68522 L
.72863 .68465 L
.73371 .68308 L
.73895 .68082 L
.74427 .6782 L
.74957 .67565 L
.75477 .67354 L
.75979 .67224 L
.76456 .67199 L
.76906 .67294 L
.77327 .67509 L
.77724 .67832 L
.78102 .6824 L
.78468 .68698 L
.78831 .69167 L
.792 .69608 L
.79585 .69983 L
.79992 .70262 L
.80426 .70427 L
.80888 .70469 L
.81376 .70396 L
.81886 .70228 L
.82412 .69994 L
.82944 .69731 L
.83474 .69479 L
.83991 .69278 L
.8449 .69162 L
.84963 .69153 L
.85409 .69265 L
.85827 .69497 L
.86221 .69834 L
.86596 .70251 L
.86961 .70713 L
.87325 .71181 L
.87696 .71614 L
Mistroke
.88084 .71977 L
.88494 .72241 L
.88932 .72388 L
.89398 .72413 L
.89889 .72325 L
.90402 .72145 L
.90929 .71904 L
.91462 .71641 L
.9199 .71394 L
.92506 .71203 L
.93001 .71101 L
.9347 .71109 L
.93912 .71238 L
.94326 .71486 L
.94717 .71836 L
.9509 .72262 L
.95455 .72727 L
Mfstroke
gsave
.79098 .73434 -64.625 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .34091 L
s
.83339 .30069 m
.78433 .33067 L
.77616 .29523 L
F
gsave
.79098 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .65909 m
.34091 .34091 L
s
.34091 .52727 m
.32273 .47273 L
.35909 .47273 L
F
gsave
.29795 .5 -68.4375 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .65909 m
.65909 .65909 L
s
.52727 .65909 m
.47273 .64091 L
.47273 .67727 L
F
gsave
.5 .70205 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
[ .03 .03 ] 0 setdash
.34091 .34091 m
.65909 .34091 L
s
gsave
.5 .30931 -65.2188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(H) show
67.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
[ ] 0 setdash
.65909 .65909 m
.65909 .34091 L
s
.65909 .47273 m
.64091 .52727 L
.67727 .52727 L
F
gsave
.70205 .5 -61 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.34091 .65909 Mdot
.34091 .34091 Mdot
.65909 .65909 Mdot
.65909 .34091 Mdot
gsave
.5 .02273 -73.4062 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T1) show
70.000 11.250 moveto
(C1) show
77.562 11.250 moveto
(N1) show
83.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.2 0.8 0.4 1 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.34091 .65909 m
.33504 .65619 L
.32873 .65424 L
.32216 .65334 L
.31553 .65354 L
.30902 .65485 L
.30283 .65723 L
.29713 .66062 L
.29207 .66488 L
.28778 .66986 L
.28436 .67537 L
.28187 .68121 L
.28032 .68715 L
.27971 .69297 L
.27998 .69844 L
.28104 .70336 L
.28276 .70755 L
.28499 .71085 L
.28756 .71314 L
.29029 .71435 L
.29298 .71445 L
.29544 .71345 L
.29749 .71141 L
.29896 .70843 L
.29972 .70466 L
.29964 .70027 L
.29867 .69545 L
.29675 .69043 L
.29388 .68543 L
.29011 .68067 L
.2855 .67637 L
.28017 .67272 L
.27425 .6699 L
.26791 .66803 L
.26134 .66722 L
.25471 .66751 L
.24822 .66891 L
.24206 .67138 L
.23641 .67484 L
.23141 .67917 L
.22719 .6842 L
.22384 .68975 L
.22143 .6956 L
.21996 .70154 L
.21943 .70734 L
.21977 .71278 L
.22089 .71764 L
.22265 .72176 L
.22492 .72498 L
.22751 .72719 L
Mistroke
.23024 .72831 L
.23292 .72832 L
.23535 .72723 L
.23736 .7251 L
.23878 .72206 L
.23947 .71822 L
.23932 .71379 L
.23827 .70895 L
.23627 .70392 L
.23333 .69893 L
.22948 .6942 L
.22481 .68995 L
.21943 .68636 L
.21347 .68361 L
.2071 .68183 L
.20051 .68111 L
.19389 .68149 L
.18742 .68298 L
.1813 .68554 L
.17569 .68908 L
.17075 .69347 L
.1666 .69855 L
.16333 .70413 L
.161 .71 L
.15961 .71594 L
.15915 .72172 L
.15956 .72711 L
.16073 .73192 L
.16255 .73598 L
.16485 .73911 L
.16746 .74123 L
.1702 .74226 L
.17286 .74218 L
.17526 .741 L
.17723 .73879 L
.17859 .73568 L
.17922 .73179 L
.179 .72731 L
.17787 .72245 L
.17579 .71741 L
.17277 .71243 L
.16885 .70774 L
.16412 .70353 L
.15868 .70001 L
.15268 .69734 L
.14629 .69564 L
.13969 .69501 L
.13307 .69548 L
.12663 .69706 L
.12054 .69971 L
Mistroke
.11499 .70332 L
.11011 .70778 L
.10603 .71291 L
.10283 .71852 L
.10057 .72441 L
.09927 .73034 L
.09888 .73609 L
.09936 .74145 L
.10059 .7462 L
.10245 .75018 L
.10479 .75324 L
.10741 .75527 L
.11015 .75621 L
.1128 .75603 L
.11517 .75477 L
.11709 .75248 L
.1184 .7493 L
.11896 .74535 L
.11867 .74083 L
.11746 .73595 L
.11531 .73091 L
.11221 .72595 L
.10822 .72128 L
.10342 .71713 L
.09793 .71367 L
.09189 .71107 L
.08548 .70946 L
.07887 .70892 L
.07226 .70949 L
.06584 .71116 L
.05979 .71389 L
.05428 .71758 L
.04946 .72209 L
.04545 .72727 L
Mfstroke
gsave
.21618 .76534 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .34091 L
s
.21976 .31295 m
.1707 .28297 L
.16252 .3184 L
F
gsave
.20902 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .65909 m
.6644 .6565 L
.66962 .65431 L
.67467 .65288 L
.67948 .65247 L
.68402 .65324 L
.68828 .65522 L
.69228 .65831 L
.69607 .66229 L
.69974 .66682 L
.70337 .67152 L
.70705 .676 L
.71088 .67986 L
.71491 .68281 L
.71921 .68462 L
.72378 .68522 L
.72863 .68465 L
.73371 .68308 L
.73895 .68082 L
.74427 .6782 L
.74957 .67565 L
.75477 .67354 L
.75979 .67224 L
.76456 .67199 L
.76906 .67294 L
.77327 .67509 L
.77724 .67832 L
.78102 .6824 L
.78468 .68698 L
.78831 .69167 L
.792 .69608 L
.79585 .69983 L
.79992 .70262 L
.80426 .70427 L
.80888 .70469 L
.81376 .70396 L
.81886 .70228 L
.82412 .69994 L
.82944 .69731 L
.83474 .69479 L
.83991 .69278 L
.8449 .69162 L
.84963 .69153 L
.85409 .69265 L
.85827 .69497 L
.86221 .69834 L
.86596 .70251 L
.86961 .70713 L
.87325 .71181 L
.87696 .71614 L
Mistroke
.88084 .71977 L
.88494 .72241 L
.88932 .72388 L
.89398 .72413 L
.89889 .72325 L
.90402 .72145 L
.90929 .71904 L
.91462 .71641 L
.9199 .71394 L
.92506 .71203 L
.93001 .71101 L
.9347 .71109 L
.93912 .71238 L
.94326 .71486 L
.94717 .71836 L
.9509 .72262 L
.95455 .72727 L
Mfstroke
gsave
.79098 .73434 -64.625 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .34091 L
s
.83339 .30069 m
.78433 .33067 L
.77616 .29523 L
F
gsave
.79098 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .65909 m
.34091 .34091 L
s
.34091 .52727 m
.32273 .47273 L
.35909 .47273 L
F
gsave
.29795 .5 -68.4375 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .65909 m
.65909 .65909 L
s
.52727 .65909 m
.47273 .64091 L
.47273 .67727 L
F
gsave
.5 .70205 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
[ .03 .03 ] 0 setdash
.34091 .34091 m
.65909 .34091 L
s
gsave
.5 .30931 -67.3438 -13.875 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(G) show
67.812 8.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(0) show
1.000 setlinewidth
grestore
[ ] 0 setdash
.65909 .65909 m
.65909 .34091 L
s
.65909 .47273 m
.64091 .52727 L
.67727 .52727 L
F
gsave
.70205 .5 -61 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.34091 .65909 Mdot
.34091 .34091 Mdot
.65909 .65909 Mdot
.65909 .34091 Mdot
gsave
.5 .02273 -73.4062 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T1) show
70.000 11.250 moveto
(C2) show
77.562 11.250 moveto
(N2) show
83.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.4 0.8 0.6 1 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.34091 .65909 m
.33504 .65619 L
.32873 .65424 L
.32216 .65334 L
.31553 .65354 L
.30902 .65485 L
.30283 .65723 L
.29713 .66062 L
.29207 .66488 L
.28778 .66986 L
.28436 .67537 L
.28187 .68121 L
.28032 .68715 L
.27971 .69297 L
.27998 .69844 L
.28104 .70336 L
.28276 .70755 L
.28499 .71085 L
.28756 .71314 L
.29029 .71435 L
.29298 .71445 L
.29544 .71345 L
.29749 .71141 L
.29896 .70843 L
.29972 .70466 L
.29964 .70027 L
.29867 .69545 L
.29675 .69043 L
.29388 .68543 L
.29011 .68067 L
.2855 .67637 L
.28017 .67272 L
.27425 .6699 L
.26791 .66803 L
.26134 .66722 L
.25471 .66751 L
.24822 .66891 L
.24206 .67138 L
.23641 .67484 L
.23141 .67917 L
.22719 .6842 L
.22384 .68975 L
.22143 .6956 L
.21996 .70154 L
.21943 .70734 L
.21977 .71278 L
.22089 .71764 L
.22265 .72176 L
.22492 .72498 L
.22751 .72719 L
Mistroke
.23024 .72831 L
.23292 .72832 L
.23535 .72723 L
.23736 .7251 L
.23878 .72206 L
.23947 .71822 L
.23932 .71379 L
.23827 .70895 L
.23627 .70392 L
.23333 .69893 L
.22948 .6942 L
.22481 .68995 L
.21943 .68636 L
.21347 .68361 L
.2071 .68183 L
.20051 .68111 L
.19389 .68149 L
.18742 .68298 L
.1813 .68554 L
.17569 .68908 L
.17075 .69347 L
.1666 .69855 L
.16333 .70413 L
.161 .71 L
.15961 .71594 L
.15915 .72172 L
.15956 .72711 L
.16073 .73192 L
.16255 .73598 L
.16485 .73911 L
.16746 .74123 L
.1702 .74226 L
.17286 .74218 L
.17526 .741 L
.17723 .73879 L
.17859 .73568 L
.17922 .73179 L
.179 .72731 L
.17787 .72245 L
.17579 .71741 L
.17277 .71243 L
.16885 .70774 L
.16412 .70353 L
.15868 .70001 L
.15268 .69734 L
.14629 .69564 L
.13969 .69501 L
.13307 .69548 L
.12663 .69706 L
.12054 .69971 L
Mistroke
.11499 .70332 L
.11011 .70778 L
.10603 .71291 L
.10283 .71852 L
.10057 .72441 L
.09927 .73034 L
.09888 .73609 L
.09936 .74145 L
.10059 .7462 L
.10245 .75018 L
.10479 .75324 L
.10741 .75527 L
.11015 .75621 L
.1128 .75603 L
.11517 .75477 L
.11709 .75248 L
.1184 .7493 L
.11896 .74535 L
.11867 .74083 L
.11746 .73595 L
.11531 .73091 L
.11221 .72595 L
.10822 .72128 L
.10342 .71713 L
.09793 .71367 L
.09189 .71107 L
.08548 .70946 L
.07887 .70892 L
.07226 .70949 L
.06584 .71116 L
.05979 .71389 L
.05428 .71758 L
.04946 .72209 L
.04545 .72727 L
Mfstroke
gsave
.21618 .76534 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .34091 L
s
.21976 .31295 m
.1707 .28297 L
.16252 .3184 L
F
gsave
.20902 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .65909 m
.6644 .6565 L
.66962 .65431 L
.67467 .65288 L
.67948 .65247 L
.68402 .65324 L
.68828 .65522 L
.69228 .65831 L
.69607 .66229 L
.69974 .66682 L
.70337 .67152 L
.70705 .676 L
.71088 .67986 L
.71491 .68281 L
.71921 .68462 L
.72378 .68522 L
.72863 .68465 L
.73371 .68308 L
.73895 .68082 L
.74427 .6782 L
.74957 .67565 L
.75477 .67354 L
.75979 .67224 L
.76456 .67199 L
.76906 .67294 L
.77327 .67509 L
.77724 .67832 L
.78102 .6824 L
.78468 .68698 L
.78831 .69167 L
.792 .69608 L
.79585 .69983 L
.79992 .70262 L
.80426 .70427 L
.80888 .70469 L
.81376 .70396 L
.81886 .70228 L
.82412 .69994 L
.82944 .69731 L
.83474 .69479 L
.83991 .69278 L
.8449 .69162 L
.84963 .69153 L
.85409 .69265 L
.85827 .69497 L
.86221 .69834 L
.86596 .70251 L
.86961 .70713 L
.87325 .71181 L
.87696 .71614 L
Mistroke
.88084 .71977 L
.88494 .72241 L
.88932 .72388 L
.89398 .72413 L
.89889 .72325 L
.90402 .72145 L
.90929 .71904 L
.91462 .71641 L
.9199 .71394 L
.92506 .71203 L
.93001 .71101 L
.9347 .71109 L
.93912 .71238 L
.94326 .71486 L
.94717 .71836 L
.9509 .72262 L
.95455 .72727 L
Mfstroke
gsave
.79098 .73434 -64.625 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .34091 L
s
.83339 .30069 m
.78433 .33067 L
.77616 .29523 L
F
gsave
.79098 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .65909 m
.34091 .34091 L
s
.34091 .52727 m
.32273 .47273 L
.35909 .47273 L
F
gsave
.29795 .5 -70.625 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
.34091 .65909 m
.65909 .65909 L
s
.52727 .65909 m
.47273 .64091 L
.47273 .67727 L
F
gsave
.5 .70205 -65.8125 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
[ .03 .03 ] 0 setdash
.34091 .34091 m
.65909 .34091 L
s
.47273 .34091 m
.52727 .32273 L
.52727 .35909 L
F
gsave
.5 .29795 -65.4062 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(G) show
67.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
[ ] 0 setdash
.65909 .65909 m
.65909 .34091 L
s
.65909 .47273 m
.64091 .52727 L
.67727 .52727 L
F
gsave
.70205 .5 -61 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
.04 w
.34091 .65909 Mdot
.34091 .34091 Mdot
.65909 .65909 Mdot
.65909 .34091 Mdot
gsave
.5 .02273 -73.4062 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T1) show
70.000 11.250 moveto
(C3) show
77.562 11.250 moveto
(N3) show
83.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.6 0.8 0.8 1 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.34091 .65909 m
.33504 .65619 L
.32873 .65424 L
.32216 .65334 L
.31553 .65354 L
.30902 .65485 L
.30283 .65723 L
.29713 .66062 L
.29207 .66488 L
.28778 .66986 L
.28436 .67537 L
.28187 .68121 L
.28032 .68715 L
.27971 .69297 L
.27998 .69844 L
.28104 .70336 L
.28276 .70755 L
.28499 .71085 L
.28756 .71314 L
.29029 .71435 L
.29298 .71445 L
.29544 .71345 L
.29749 .71141 L
.29896 .70843 L
.29972 .70466 L
.29964 .70027 L
.29867 .69545 L
.29675 .69043 L
.29388 .68543 L
.29011 .68067 L
.2855 .67637 L
.28017 .67272 L
.27425 .6699 L
.26791 .66803 L
.26134 .66722 L
.25471 .66751 L
.24822 .66891 L
.24206 .67138 L
.23641 .67484 L
.23141 .67917 L
.22719 .6842 L
.22384 .68975 L
.22143 .6956 L
.21996 .70154 L
.21943 .70734 L
.21977 .71278 L
.22089 .71764 L
.22265 .72176 L
.22492 .72498 L
.22751 .72719 L
Mistroke
.23024 .72831 L
.23292 .72832 L
.23535 .72723 L
.23736 .7251 L
.23878 .72206 L
.23947 .71822 L
.23932 .71379 L
.23827 .70895 L
.23627 .70392 L
.23333 .69893 L
.22948 .6942 L
.22481 .68995 L
.21943 .68636 L
.21347 .68361 L
.2071 .68183 L
.20051 .68111 L
.19389 .68149 L
.18742 .68298 L
.1813 .68554 L
.17569 .68908 L
.17075 .69347 L
.1666 .69855 L
.16333 .70413 L
.161 .71 L
.15961 .71594 L
.15915 .72172 L
.15956 .72711 L
.16073 .73192 L
.16255 .73598 L
.16485 .73911 L
.16746 .74123 L
.1702 .74226 L
.17286 .74218 L
.17526 .741 L
.17723 .73879 L
.17859 .73568 L
.17922 .73179 L
.179 .72731 L
.17787 .72245 L
.17579 .71741 L
.17277 .71243 L
.16885 .70774 L
.16412 .70353 L
.15868 .70001 L
.15268 .69734 L
.14629 .69564 L
.13969 .69501 L
.13307 .69548 L
.12663 .69706 L
.12054 .69971 L
Mistroke
.11499 .70332 L
.11011 .70778 L
.10603 .71291 L
.10283 .71852 L
.10057 .72441 L
.09927 .73034 L
.09888 .73609 L
.09936 .74145 L
.10059 .7462 L
.10245 .75018 L
.10479 .75324 L
.10741 .75527 L
.11015 .75621 L
.1128 .75603 L
.11517 .75477 L
.11709 .75248 L
.1184 .7493 L
.11896 .74535 L
.11867 .74083 L
.11746 .73595 L
.11531 .73091 L
.11221 .72595 L
.10822 .72128 L
.10342 .71713 L
.09793 .71367 L
.09189 .71107 L
.08548 .70946 L
.07887 .70892 L
.07226 .70949 L
.06584 .71116 L
.05979 .71389 L
.05428 .71758 L
.04946 .72209 L
.04545 .72727 L
Mfstroke
gsave
.21618 .76534 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .34091 L
s
.21976 .31295 m
.1707 .28297 L
.16252 .3184 L
F
gsave
.20902 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .65909 m
.6644 .6565 L
.66962 .65431 L
.67467 .65288 L
.67948 .65247 L
.68402 .65324 L
.68828 .65522 L
.69228 .65831 L
.69607 .66229 L
.69974 .66682 L
.70337 .67152 L
.70705 .676 L
.71088 .67986 L
.71491 .68281 L
.71921 .68462 L
.72378 .68522 L
.72863 .68465 L
.73371 .68308 L
.73895 .68082 L
.74427 .6782 L
.74957 .67565 L
.75477 .67354 L
.75979 .67224 L
.76456 .67199 L
.76906 .67294 L
.77327 .67509 L
.77724 .67832 L
.78102 .6824 L
.78468 .68698 L
.78831 .69167 L
.792 .69608 L
.79585 .69983 L
.79992 .70262 L
.80426 .70427 L
.80888 .70469 L
.81376 .70396 L
.81886 .70228 L
.82412 .69994 L
.82944 .69731 L
.83474 .69479 L
.83991 .69278 L
.8449 .69162 L
.84963 .69153 L
.85409 .69265 L
.85827 .69497 L
.86221 .69834 L
.86596 .70251 L
.86961 .70713 L
.87325 .71181 L
.87696 .71614 L
Mistroke
.88084 .71977 L
.88494 .72241 L
.88932 .72388 L
.89398 .72413 L
.89889 .72325 L
.90402 .72145 L
.90929 .71904 L
.91462 .71641 L
.9199 .71394 L
.92506 .71203 L
.93001 .71101 L
.9347 .71109 L
.93912 .71238 L
.94326 .71486 L
.94717 .71836 L
.9509 .72262 L
.95455 .72727 L
Mfstroke
gsave
.79098 .73434 -64.625 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .34091 L
s
.83339 .30069 m
.78433 .33067 L
.77616 .29523 L
F
gsave
.79098 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .65909 m
.34091 .34091 L
s
.34091 .52727 m
.32273 .47273 L
.35909 .47273 L
F
gsave
.29795 .5 -68.4375 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .65909 m
.65909 .65909 L
s
.52727 .65909 m
.47273 .64091 L
.47273 .67727 L
F
gsave
.5 .70205 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .34091 m
.65454 .34537 L
.65 .34912 L
.64545 .35155 L
.64091 .35226 L
.63636 .35114 L
.63182 .34838 L
.62727 .34442 L
.62273 .33988 L
.61818 .33552 L
.61364 .33202 L
.60909 .32995 L
.60455 .32964 L
.6 .33115 L
.59546 .33422 L
.59091 .33837 L
.58636 .34293 L
.58182 .34716 L
.57727 .35038 L
.57273 .35208 L
.56818 .35198 L
.56364 .35009 L
.55909 .34673 L
.55455 .34242 L
.55 .33787 L
.54545 .33381 L
.54091 .33089 L
.53636 .32958 L
.53182 .33009 L
.52727 .33234 L
.52273 .33596 L
.51818 .34039 L
.51364 .34489 L
.50909 .34875 L
.50455 .35134 L
.5 .35226 L
.49545 .35134 L
.49091 .34875 L
.48636 .34489 L
.48182 .34039 L
.47727 .33596 L
.47273 .33234 L
.46818 .33009 L
.46364 .32958 L
.45909 .33089 L
.45455 .33381 L
.45 .33787 L
.44545 .34242 L
.44091 .34673 L
.43636 .35009 L
Mistroke
.43182 .35198 L
.42727 .35208 L
.42273 .35038 L
.41818 .34716 L
.41364 .34293 L
.40909 .33837 L
.40454 .33422 L
.4 .33115 L
.39545 .32964 L
.39091 .32995 L
.38636 .33202 L
.38182 .33552 L
.37727 .33988 L
.37273 .34442 L
.36818 .34838 L
.36364 .35114 L
.35909 .35226 L
.35455 .35155 L
.35 .34912 L
.34546 .34537 L
.34091 .34091 L
Mfstroke
gsave
.5 .29795 -64.625 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .65909 m
.65909 .34091 L
s
.65909 .47273 m
.64091 .52727 L
.67727 .52727 L
F
gsave
.70205 .5 -61 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.34091 .65909 Mdot
.34091 .34091 Mdot
.65909 .65909 Mdot
.65909 .34091 Mdot
gsave
.5 .02273 -73.4062 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T1) show
70.000 11.250 moveto
(C1) show
77.562 11.250 moveto
(N4) show
83.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.8 0.8 1 1 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.34091 .65909 m
.33504 .65619 L
.32873 .65424 L
.32216 .65334 L
.31553 .65354 L
.30902 .65485 L
.30283 .65723 L
.29713 .66062 L
.29207 .66488 L
.28778 .66986 L
.28436 .67537 L
.28187 .68121 L
.28032 .68715 L
.27971 .69297 L
.27998 .69844 L
.28104 .70336 L
.28276 .70755 L
.28499 .71085 L
.28756 .71314 L
.29029 .71435 L
.29298 .71445 L
.29544 .71345 L
.29749 .71141 L
.29896 .70843 L
.29972 .70466 L
.29964 .70027 L
.29867 .69545 L
.29675 .69043 L
.29388 .68543 L
.29011 .68067 L
.2855 .67637 L
.28017 .67272 L
.27425 .6699 L
.26791 .66803 L
.26134 .66722 L
.25471 .66751 L
.24822 .66891 L
.24206 .67138 L
.23641 .67484 L
.23141 .67917 L
.22719 .6842 L
.22384 .68975 L
.22143 .6956 L
.21996 .70154 L
.21943 .70734 L
.21977 .71278 L
.22089 .71764 L
.22265 .72176 L
.22492 .72498 L
.22751 .72719 L
Mistroke
.23024 .72831 L
.23292 .72832 L
.23535 .72723 L
.23736 .7251 L
.23878 .72206 L
.23947 .71822 L
.23932 .71379 L
.23827 .70895 L
.23627 .70392 L
.23333 .69893 L
.22948 .6942 L
.22481 .68995 L
.21943 .68636 L
.21347 .68361 L
.2071 .68183 L
.20051 .68111 L
.19389 .68149 L
.18742 .68298 L
.1813 .68554 L
.17569 .68908 L
.17075 .69347 L
.1666 .69855 L
.16333 .70413 L
.161 .71 L
.15961 .71594 L
.15915 .72172 L
.15956 .72711 L
.16073 .73192 L
.16255 .73598 L
.16485 .73911 L
.16746 .74123 L
.1702 .74226 L
.17286 .74218 L
.17526 .741 L
.17723 .73879 L
.17859 .73568 L
.17922 .73179 L
.179 .72731 L
.17787 .72245 L
.17579 .71741 L
.17277 .71243 L
.16885 .70774 L
.16412 .70353 L
.15868 .70001 L
.15268 .69734 L
.14629 .69564 L
.13969 .69501 L
.13307 .69548 L
.12663 .69706 L
.12054 .69971 L
Mistroke
.11499 .70332 L
.11011 .70778 L
.10603 .71291 L
.10283 .71852 L
.10057 .72441 L
.09927 .73034 L
.09888 .73609 L
.09936 .74145 L
.10059 .7462 L
.10245 .75018 L
.10479 .75324 L
.10741 .75527 L
.11015 .75621 L
.1128 .75603 L
.11517 .75477 L
.11709 .75248 L
.1184 .7493 L
.11896 .74535 L
.11867 .74083 L
.11746 .73595 L
.11531 .73091 L
.11221 .72595 L
.10822 .72128 L
.10342 .71713 L
.09793 .71367 L
.09189 .71107 L
.08548 .70946 L
.07887 .70892 L
.07226 .70949 L
.06584 .71116 L
.05979 .71389 L
.05428 .71758 L
.04946 .72209 L
.04545 .72727 L
Mfstroke
gsave
.21618 .76534 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .34091 L
s
.21976 .31295 m
.1707 .28297 L
.16252 .3184 L
F
gsave
.20902 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .65909 m
.6644 .6565 L
.66962 .65431 L
.67467 .65288 L
.67948 .65247 L
.68402 .65324 L
.68828 .65522 L
.69228 .65831 L
.69607 .66229 L
.69974 .66682 L
.70337 .67152 L
.70705 .676 L
.71088 .67986 L
.71491 .68281 L
.71921 .68462 L
.72378 .68522 L
.72863 .68465 L
.73371 .68308 L
.73895 .68082 L
.74427 .6782 L
.74957 .67565 L
.75477 .67354 L
.75979 .67224 L
.76456 .67199 L
.76906 .67294 L
.77327 .67509 L
.77724 .67832 L
.78102 .6824 L
.78468 .68698 L
.78831 .69167 L
.792 .69608 L
.79585 .69983 L
.79992 .70262 L
.80426 .70427 L
.80888 .70469 L
.81376 .70396 L
.81886 .70228 L
.82412 .69994 L
.82944 .69731 L
.83474 .69479 L
.83991 .69278 L
.8449 .69162 L
.84963 .69153 L
.85409 .69265 L
.85827 .69497 L
.86221 .69834 L
.86596 .70251 L
.86961 .70713 L
.87325 .71181 L
.87696 .71614 L
Mistroke
.88084 .71977 L
.88494 .72241 L
.88932 .72388 L
.89398 .72413 L
.89889 .72325 L
.90402 .72145 L
.90929 .71904 L
.91462 .71641 L
.9199 .71394 L
.92506 .71203 L
.93001 .71101 L
.9347 .71109 L
.93912 .71238 L
.94326 .71486 L
.94717 .71836 L
.9509 .72262 L
.95455 .72727 L
Mfstroke
gsave
.79098 .73434 -64.625 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .34091 L
s
.83339 .30069 m
.78433 .33067 L
.77616 .29523 L
F
gsave
.79098 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .65909 m
.34091 .34091 L
s
.34091 .52727 m
.32273 .47273 L
.35909 .47273 L
F
gsave
.29795 .5 -68.4375 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .65909 m
.65909 .65909 L
s
.52727 .65909 m
.47273 .64091 L
.47273 .67727 L
F
gsave
.5 .70205 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .34091 m
.65454 .34537 L
.65 .34912 L
.64545 .35155 L
.64091 .35226 L
.63636 .35114 L
.63182 .34838 L
.62727 .34442 L
.62273 .33988 L
.61818 .33552 L
.61364 .33202 L
.60909 .32995 L
.60455 .32964 L
.6 .33115 L
.59546 .33422 L
.59091 .33837 L
.58636 .34293 L
.58182 .34716 L
.57727 .35038 L
.57273 .35208 L
.56818 .35198 L
.56364 .35009 L
.55909 .34673 L
.55455 .34242 L
.55 .33787 L
.54545 .33381 L
.54091 .33089 L
.53636 .32958 L
.53182 .33009 L
.52727 .33234 L
.52273 .33596 L
.51818 .34039 L
.51364 .34489 L
.50909 .34875 L
.50455 .35134 L
.5 .35226 L
.49545 .35134 L
.49091 .34875 L
.48636 .34489 L
.48182 .34039 L
.47727 .33596 L
.47273 .33234 L
.46818 .33009 L
.46364 .32958 L
.45909 .33089 L
.45455 .33381 L
.45 .33787 L
.44545 .34242 L
.44091 .34673 L
.43636 .35009 L
Mistroke
.43182 .35198 L
.42727 .35208 L
.42273 .35038 L
.41818 .34716 L
.41364 .34293 L
.40909 .33837 L
.40454 .33422 L
.4 .33115 L
.39545 .32964 L
.39091 .32995 L
.38636 .33202 L
.38182 .33552 L
.37727 .33988 L
.37273 .34442 L
.36818 .34838 L
.36364 .35114 L
.35909 .35226 L
.35455 .35155 L
.35 .34912 L
.34546 .34537 L
.34091 .34091 L
Mfstroke
gsave
.5 .29795 -64.875 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(Z) show
66.750 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .65909 m
.65909 .34091 L
s
.65909 .47273 m
.64091 .52727 L
.67727 .52727 L
F
gsave
.70205 .5 -61 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.34091 .65909 Mdot
.34091 .34091 Mdot
.65909 .65909 Mdot
.65909 .34091 Mdot
gsave
.5 .02273 -73.4062 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T1) show
70.000 11.250 moveto
(C2) show
77.562 11.250 moveto
(N5) show
83.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
2.42861e-17 0.6 0.2 0.8 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.34091 .65909 m
.33504 .65619 L
.32873 .65424 L
.32216 .65334 L
.31553 .65354 L
.30902 .65485 L
.30283 .65723 L
.29713 .66062 L
.29207 .66488 L
.28778 .66986 L
.28436 .67537 L
.28187 .68121 L
.28032 .68715 L
.27971 .69297 L
.27998 .69844 L
.28104 .70336 L
.28276 .70755 L
.28499 .71085 L
.28756 .71314 L
.29029 .71435 L
.29298 .71445 L
.29544 .71345 L
.29749 .71141 L
.29896 .70843 L
.29972 .70466 L
.29964 .70027 L
.29867 .69545 L
.29675 .69043 L
.29388 .68543 L
.29011 .68067 L
.2855 .67637 L
.28017 .67272 L
.27425 .6699 L
.26791 .66803 L
.26134 .66722 L
.25471 .66751 L
.24822 .66891 L
.24206 .67138 L
.23641 .67484 L
.23141 .67917 L
.22719 .6842 L
.22384 .68975 L
.22143 .6956 L
.21996 .70154 L
.21943 .70734 L
.21977 .71278 L
.22089 .71764 L
.22265 .72176 L
.22492 .72498 L
.22751 .72719 L
Mistroke
.23024 .72831 L
.23292 .72832 L
.23535 .72723 L
.23736 .7251 L
.23878 .72206 L
.23947 .71822 L
.23932 .71379 L
.23827 .70895 L
.23627 .70392 L
.23333 .69893 L
.22948 .6942 L
.22481 .68995 L
.21943 .68636 L
.21347 .68361 L
.2071 .68183 L
.20051 .68111 L
.19389 .68149 L
.18742 .68298 L
.1813 .68554 L
.17569 .68908 L
.17075 .69347 L
.1666 .69855 L
.16333 .70413 L
.161 .71 L
.15961 .71594 L
.15915 .72172 L
.15956 .72711 L
.16073 .73192 L
.16255 .73598 L
.16485 .73911 L
.16746 .74123 L
.1702 .74226 L
.17286 .74218 L
.17526 .741 L
.17723 .73879 L
.17859 .73568 L
.17922 .73179 L
.179 .72731 L
.17787 .72245 L
.17579 .71741 L
.17277 .71243 L
.16885 .70774 L
.16412 .70353 L
.15868 .70001 L
.15268 .69734 L
.14629 .69564 L
.13969 .69501 L
.13307 .69548 L
.12663 .69706 L
.12054 .69971 L
Mistroke
.11499 .70332 L
.11011 .70778 L
.10603 .71291 L
.10283 .71852 L
.10057 .72441 L
.09927 .73034 L
.09888 .73609 L
.09936 .74145 L
.10059 .7462 L
.10245 .75018 L
.10479 .75324 L
.10741 .75527 L
.11015 .75621 L
.1128 .75603 L
.11517 .75477 L
.11709 .75248 L
.1184 .7493 L
.11896 .74535 L
.11867 .74083 L
.11746 .73595 L
.11531 .73091 L
.11221 .72595 L
.10822 .72128 L
.10342 .71713 L
.09793 .71367 L
.09189 .71107 L
.08548 .70946 L
.07887 .70892 L
.07226 .70949 L
.06584 .71116 L
.05979 .71389 L
.05428 .71758 L
.04946 .72209 L
.04545 .72727 L
Mfstroke
gsave
.21618 .76534 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .34091 L
s
.21976 .31295 m
.1707 .28297 L
.16252 .3184 L
F
gsave
.20902 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .65909 m
.6644 .6565 L
.66962 .65431 L
.67467 .65288 L
.67948 .65247 L
.68402 .65324 L
.68828 .65522 L
.69228 .65831 L
.69607 .66229 L
.69974 .66682 L
.70337 .67152 L
.70705 .676 L
.71088 .67986 L
.71491 .68281 L
.71921 .68462 L
.72378 .68522 L
.72863 .68465 L
.73371 .68308 L
.73895 .68082 L
.74427 .6782 L
.74957 .67565 L
.75477 .67354 L
.75979 .67224 L
.76456 .67199 L
.76906 .67294 L
.77327 .67509 L
.77724 .67832 L
.78102 .6824 L
.78468 .68698 L
.78831 .69167 L
.792 .69608 L
.79585 .69983 L
.79992 .70262 L
.80426 .70427 L
.80888 .70469 L
.81376 .70396 L
.81886 .70228 L
.82412 .69994 L
.82944 .69731 L
.83474 .69479 L
.83991 .69278 L
.8449 .69162 L
.84963 .69153 L
.85409 .69265 L
.85827 .69497 L
.86221 .69834 L
.86596 .70251 L
.86961 .70713 L
.87325 .71181 L
.87696 .71614 L
Mistroke
.88084 .71977 L
.88494 .72241 L
.88932 .72388 L
.89398 .72413 L
.89889 .72325 L
.90402 .72145 L
.90929 .71904 L
.91462 .71641 L
.9199 .71394 L
.92506 .71203 L
.93001 .71101 L
.9347 .71109 L
.93912 .71238 L
.94326 .71486 L
.94717 .71836 L
.9509 .72262 L
.95455 .72727 L
Mfstroke
gsave
.79098 .73434 -64.625 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .34091 L
s
.83339 .30069 m
.78433 .33067 L
.77616 .29523 L
F
gsave
.79098 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .65909 m
.34091 .34091 L
s
.34091 .52727 m
.32273 .47273 L
.35909 .47273 L
F
gsave
.29795 .5 -70.625 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
.34091 .65909 m
.65909 .65909 L
s
.52727 .65909 m
.47273 .64091 L
.47273 .67727 L
F
gsave
.5 .70205 -65.8125 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
.65909 .34091 m
.65454 .34537 L
.65 .34912 L
.64545 .35155 L
.64091 .35226 L
.63636 .35114 L
.63182 .34838 L
.62727 .34442 L
.62273 .33988 L
.61818 .33552 L
.61364 .33202 L
.60909 .32995 L
.60455 .32964 L
.6 .33115 L
.59546 .33422 L
.59091 .33837 L
.58636 .34293 L
.58182 .34716 L
.57727 .35038 L
.57273 .35208 L
.56818 .35198 L
.56364 .35009 L
.55909 .34673 L
.55455 .34242 L
.55 .33787 L
.54545 .33381 L
.54091 .33089 L
.53636 .32958 L
.53182 .33009 L
.52727 .33234 L
.52273 .33596 L
.51818 .34039 L
.51364 .34489 L
.50909 .34875 L
.50455 .35134 L
.5 .35226 L
.49545 .35134 L
.49091 .34875 L
.48636 .34489 L
.48182 .34039 L
.47727 .33596 L
.47273 .33234 L
.46818 .33009 L
.46364 .32958 L
.45909 .33089 L
.45455 .33381 L
.45 .33787 L
.44545 .34242 L
.44091 .34673 L
.43636 .35009 L
Mistroke
.43182 .35198 L
.42727 .35208 L
.42273 .35038 L
.41818 .34716 L
.41364 .34293 L
.40909 .33837 L
.40454 .33422 L
.4 .33115 L
.39545 .32964 L
.39091 .32995 L
.38636 .33202 L
.38182 .33552 L
.37727 .33988 L
.37273 .34442 L
.36818 .34838 L
.36364 .35114 L
.35909 .35226 L
.35455 .35155 L
.35 .34912 L
.34546 .34537 L
.34091 .34091 L
Mfstroke
.47273 .34091 m
.52727 .32273 L
.52727 .35909 L
F
gsave
.5 .29795 -65.9062 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(W) show
68.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .65909 m
.65909 .34091 L
s
.65909 .47273 m
.64091 .52727 L
.67727 .52727 L
F
gsave
.70205 .5 -61 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
.04 w
.34091 .65909 Mdot
.34091 .34091 Mdot
.65909 .65909 Mdot
.65909 .34091 Mdot
gsave
.5 .02273 -73.4062 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T1) show
70.000 11.250 moveto
(C3) show
77.562 11.250 moveto
(N6) show
83.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.2 0.6 0.4 0.8 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.34091 .65909 m
.33504 .65619 L
.32873 .65424 L
.32216 .65334 L
.31553 .65354 L
.30902 .65485 L
.30283 .65723 L
.29713 .66062 L
.29207 .66488 L
.28778 .66986 L
.28436 .67537 L
.28187 .68121 L
.28032 .68715 L
.27971 .69297 L
.27998 .69844 L
.28104 .70336 L
.28276 .70755 L
.28499 .71085 L
.28756 .71314 L
.29029 .71435 L
.29298 .71445 L
.29544 .71345 L
.29749 .71141 L
.29896 .70843 L
.29972 .70466 L
.29964 .70027 L
.29867 .69545 L
.29675 .69043 L
.29388 .68543 L
.29011 .68067 L
.2855 .67637 L
.28017 .67272 L
.27425 .6699 L
.26791 .66803 L
.26134 .66722 L
.25471 .66751 L
.24822 .66891 L
.24206 .67138 L
.23641 .67484 L
.23141 .67917 L
.22719 .6842 L
.22384 .68975 L
.22143 .6956 L
.21996 .70154 L
.21943 .70734 L
.21977 .71278 L
.22089 .71764 L
.22265 .72176 L
.22492 .72498 L
.22751 .72719 L
Mistroke
.23024 .72831 L
.23292 .72832 L
.23535 .72723 L
.23736 .7251 L
.23878 .72206 L
.23947 .71822 L
.23932 .71379 L
.23827 .70895 L
.23627 .70392 L
.23333 .69893 L
.22948 .6942 L
.22481 .68995 L
.21943 .68636 L
.21347 .68361 L
.2071 .68183 L
.20051 .68111 L
.19389 .68149 L
.18742 .68298 L
.1813 .68554 L
.17569 .68908 L
.17075 .69347 L
.1666 .69855 L
.16333 .70413 L
.161 .71 L
.15961 .71594 L
.15915 .72172 L
.15956 .72711 L
.16073 .73192 L
.16255 .73598 L
.16485 .73911 L
.16746 .74123 L
.1702 .74226 L
.17286 .74218 L
.17526 .741 L
.17723 .73879 L
.17859 .73568 L
.17922 .73179 L
.179 .72731 L
.17787 .72245 L
.17579 .71741 L
.17277 .71243 L
.16885 .70774 L
.16412 .70353 L
.15868 .70001 L
.15268 .69734 L
.14629 .69564 L
.13969 .69501 L
.13307 .69548 L
.12663 .69706 L
.12054 .69971 L
Mistroke
.11499 .70332 L
.11011 .70778 L
.10603 .71291 L
.10283 .71852 L
.10057 .72441 L
.09927 .73034 L
.09888 .73609 L
.09936 .74145 L
.10059 .7462 L
.10245 .75018 L
.10479 .75324 L
.10741 .75527 L
.11015 .75621 L
.1128 .75603 L
.11517 .75477 L
.11709 .75248 L
.1184 .7493 L
.11896 .74535 L
.11867 .74083 L
.11746 .73595 L
.11531 .73091 L
.11221 .72595 L
.10822 .72128 L
.10342 .71713 L
.09793 .71367 L
.09189 .71107 L
.08548 .70946 L
.07887 .70892 L
.07226 .70949 L
.06584 .71116 L
.05979 .71389 L
.05428 .71758 L
.04946 .72209 L
.04545 .72727 L
Mfstroke
gsave
.21618 .76534 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .34091 L
s
.21976 .31295 m
.1707 .28297 L
.16252 .3184 L
F
gsave
.20902 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .65909 m
.6644 .6565 L
.66962 .65431 L
.67467 .65288 L
.67948 .65247 L
.68402 .65324 L
.68828 .65522 L
.69228 .65831 L
.69607 .66229 L
.69974 .66682 L
.70337 .67152 L
.70705 .676 L
.71088 .67986 L
.71491 .68281 L
.71921 .68462 L
.72378 .68522 L
.72863 .68465 L
.73371 .68308 L
.73895 .68082 L
.74427 .6782 L
.74957 .67565 L
.75477 .67354 L
.75979 .67224 L
.76456 .67199 L
.76906 .67294 L
.77327 .67509 L
.77724 .67832 L
.78102 .6824 L
.78468 .68698 L
.78831 .69167 L
.792 .69608 L
.79585 .69983 L
.79992 .70262 L
.80426 .70427 L
.80888 .70469 L
.81376 .70396 L
.81886 .70228 L
.82412 .69994 L
.82944 .69731 L
.83474 .69479 L
.83991 .69278 L
.8449 .69162 L
.84963 .69153 L
.85409 .69265 L
.85827 .69497 L
.86221 .69834 L
.86596 .70251 L
.86961 .70713 L
.87325 .71181 L
.87696 .71614 L
Mistroke
.88084 .71977 L
.88494 .72241 L
.88932 .72388 L
.89398 .72413 L
.89889 .72325 L
.90402 .72145 L
.90929 .71904 L
.91462 .71641 L
.9199 .71394 L
.92506 .71203 L
.93001 .71101 L
.9347 .71109 L
.93912 .71238 L
.94326 .71486 L
.94717 .71836 L
.9509 .72262 L
.95455 .72727 L
Mfstroke
gsave
.79098 .73434 -64.625 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .34091 L
s
.83339 .30069 m
.78433 .33067 L
.77616 .29523 L
F
gsave
.79098 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .65909 m
.34091 .34091 L
s
.34091 .52727 m
.32273 .47273 L
.35909 .47273 L
F
gsave
.29795 .5 -68.4375 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .65909 m
.65909 .65909 L
s
.52727 .65909 m
.47273 .64091 L
.47273 .67727 L
F
gsave
.5 .70205 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .34091 m
.65342 .33614 L
.64691 .33253 L
.63981 .33029 L
.63242 .32954 L
.62503 .33033 L
.61794 .33262 L
.61146 .33626 L
.60581 .34107 L
.60122 .34676 L
.59783 .35302 L
.59571 .35949 L
.59487 .36582 L
.59525 .37163 L
.59671 .37661 L
.59905 .38047 L
.60204 .383 L
.60538 .38406 L
.60878 .38358 L
.61194 .38159 L
.61455 .3782 L
.61637 .37361 L
.61717 .36807 L
.6168 .3619 L
.61517 .35544 L
.61225 .34906 L
.60809 .34311 L
.60282 .33794 L
.59663 .33383 L
.58974 .33101 L
.58243 .32965 L
.575 .32982 L
.56775 .33151 L
.56099 .33462 L
.55498 .33899 L
.54994 .34436 L
.54604 .35043 L
.5434 .35686 L
.54205 .36328 L
.54195 .36935 L
.54299 .3747 L
.545 .37905 L
.54775 .38214 L
.55099 .38381 L
.5544 .38395 L
.55769 .38257 L
.56056 .37973 L
.56273 .3756 L
.56397 .37041 L
.56409 .36446 L
Mistroke
.56297 .35807 L
.56057 .35162 L
.55691 .34545 L
.55208 .33993 L
.54623 .33535 L
.53959 .33199 L
.53241 .33002 L
.525 .32956 L
.51764 .33064 L
.51065 .33319 L
.5043 .33708 L
.49884 .34207 L
.49447 .3479 L
.49131 .35422 L
.48943 .36069 L
.48883 .36695 L
.48942 .37263 L
.49106 .37742 L
.49355 .38105 L
.49662 .38331 L
.5 .38408 L
.50338 .38331 L
.50645 .38105 L
.50894 .37742 L
.51058 .37263 L
.51117 .36695 L
.51057 .36069 L
.50869 .35422 L
.50553 .3479 L
.50116 .34207 L
.4957 .33708 L
.48935 .33319 L
.48236 .33064 L
.475 .32956 L
.46759 .33002 L
.46041 .33199 L
.45377 .33535 L
.44792 .33993 L
.44309 .34545 L
.43943 .35162 L
.43703 .35807 L
.43591 .36446 L
.43603 .37041 L
.43727 .3756 L
.43944 .37973 L
.44231 .38257 L
.4456 .38395 L
.44901 .38381 L
.45225 .38214 L
.455 .37905 L
Mistroke
.45701 .3747 L
.45805 .36935 L
.45795 .36328 L
.4566 .35686 L
.45396 .35043 L
.45006 .34436 L
.44502 .33899 L
.43901 .33462 L
.43225 .33151 L
.425 .32982 L
.41757 .32965 L
.41026 .33101 L
.40337 .33383 L
.39718 .33794 L
.39191 .34311 L
.38775 .34906 L
.38483 .35544 L
.3832 .3619 L
.38283 .36807 L
.38363 .37361 L
.38545 .3782 L
.38806 .38159 L
.39122 .38358 L
.39462 .38406 L
.39796 .383 L
.40095 .38047 L
.40329 .37661 L
.40475 .37163 L
.40513 .36582 L
.40429 .35949 L
.40217 .35302 L
.39878 .34676 L
.39419 .34107 L
.38854 .33626 L
.38206 .33262 L
.37497 .33033 L
.36758 .32954 L
.36019 .33029 L
.35309 .33253 L
.34658 .33614 L
.34091 .34091 L
Mfstroke
gsave
.5 .29795 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .65909 m
.65909 .34091 L
s
.65909 .47273 m
.64091 .52727 L
.67727 .52727 L
F
gsave
.70205 .5 -61 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.34091 .65909 Mdot
.34091 .34091 Mdot
.65909 .65909 Mdot
.65909 .34091 Mdot
gsave
.5 .02273 -73.4062 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T1) show
70.000 11.250 moveto
(C4) show
77.562 11.250 moveto
(N7) show
83.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.4 0.6 0.6 0.8 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.34091 .65909 m
.33504 .65619 L
.32873 .65424 L
.32216 .65334 L
.31553 .65354 L
.30902 .65485 L
.30283 .65723 L
.29713 .66062 L
.29207 .66488 L
.28778 .66986 L
.28436 .67537 L
.28187 .68121 L
.28032 .68715 L
.27971 .69297 L
.27998 .69844 L
.28104 .70336 L
.28276 .70755 L
.28499 .71085 L
.28756 .71314 L
.29029 .71435 L
.29298 .71445 L
.29544 .71345 L
.29749 .71141 L
.29896 .70843 L
.29972 .70466 L
.29964 .70027 L
.29867 .69545 L
.29675 .69043 L
.29388 .68543 L
.29011 .68067 L
.2855 .67637 L
.28017 .67272 L
.27425 .6699 L
.26791 .66803 L
.26134 .66722 L
.25471 .66751 L
.24822 .66891 L
.24206 .67138 L
.23641 .67484 L
.23141 .67917 L
.22719 .6842 L
.22384 .68975 L
.22143 .6956 L
.21996 .70154 L
.21943 .70734 L
.21977 .71278 L
.22089 .71764 L
.22265 .72176 L
.22492 .72498 L
.22751 .72719 L
Mistroke
.23024 .72831 L
.23292 .72832 L
.23535 .72723 L
.23736 .7251 L
.23878 .72206 L
.23947 .71822 L
.23932 .71379 L
.23827 .70895 L
.23627 .70392 L
.23333 .69893 L
.22948 .6942 L
.22481 .68995 L
.21943 .68636 L
.21347 .68361 L
.2071 .68183 L
.20051 .68111 L
.19389 .68149 L
.18742 .68298 L
.1813 .68554 L
.17569 .68908 L
.17075 .69347 L
.1666 .69855 L
.16333 .70413 L
.161 .71 L
.15961 .71594 L
.15915 .72172 L
.15956 .72711 L
.16073 .73192 L
.16255 .73598 L
.16485 .73911 L
.16746 .74123 L
.1702 .74226 L
.17286 .74218 L
.17526 .741 L
.17723 .73879 L
.17859 .73568 L
.17922 .73179 L
.179 .72731 L
.17787 .72245 L
.17579 .71741 L
.17277 .71243 L
.16885 .70774 L
.16412 .70353 L
.15868 .70001 L
.15268 .69734 L
.14629 .69564 L
.13969 .69501 L
.13307 .69548 L
.12663 .69706 L
.12054 .69971 L
Mistroke
.11499 .70332 L
.11011 .70778 L
.10603 .71291 L
.10283 .71852 L
.10057 .72441 L
.09927 .73034 L
.09888 .73609 L
.09936 .74145 L
.10059 .7462 L
.10245 .75018 L
.10479 .75324 L
.10741 .75527 L
.11015 .75621 L
.1128 .75603 L
.11517 .75477 L
.11709 .75248 L
.1184 .7493 L
.11896 .74535 L
.11867 .74083 L
.11746 .73595 L
.11531 .73091 L
.11221 .72595 L
.10822 .72128 L
.10342 .71713 L
.09793 .71367 L
.09189 .71107 L
.08548 .70946 L
.07887 .70892 L
.07226 .70949 L
.06584 .71116 L
.05979 .71389 L
.05428 .71758 L
.04946 .72209 L
.04545 .72727 L
Mfstroke
gsave
.21618 .76534 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .34091 L
s
.21976 .31295 m
.1707 .28297 L
.16252 .3184 L
F
gsave
.20902 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .34091 m
.66472 .34233 L
.67005 .34398 L
.67481 .34606 L
.67881 .34872 L
.68191 .35207 L
.68408 .35614 L
.68538 .36087 L
.68595 .36615 L
.68604 .37181 L
.6859 .37763 L
.68585 .38339 L
.68617 .38887 L
.68711 .39387 L
.68887 .39825 L
.69155 .40192 L
.69515 .40489 L
.69959 .40722 L
.70469 .40904 L
.71022 .41054 L
.71588 .41193 L
.72138 .41345 L
.72644 .41531 L
.7308 .41769 L
.73432 .42072 L
.73691 .42446 L
.73859 .4289 L
.73947 .43395 L
.73975 .43946 L
.73968 .44524 L
.73955 .45105 L
.73967 .45669 L
.7403 .46192 L
.74167 .4666 L
.74392 .4706 L
.74711 .47388 L
.75119 .47649 L
.75601 .47852 L
.76138 .48014 L
.76702 .48155 L
.77263 .48298 L
.77792 .48466 L
.78263 .48678 L
.78655 .48951 L
.78956 .49292 L
.79165 .49705 L
.79287 .50184 L
.7934 .50716 L
.79345 .51284 L
.79331 .51867 L
Mistroke
.79328 .52442 L
.79365 .52986 L
.79466 .5348 L
.7965 .53912 L
.79926 .54273 L
.80295 .54564 L
.80745 .54791 L
.81261 .54969 L
.81816 .55117 L
.82382 .55256 L
.82929 .5541 L
.83429 .556 L
.83859 .55843 L
.84203 .56153 L
.84453 .56533 L
.84613 .56983 L
.84695 .57493 L
.84719 .58047 L
.8471 .58626 L
.84698 .59208 L
.84714 .59768 L
.84783 .60287 L
.84928 .60749 L
.85162 .61142 L
.85489 .61464 L
.85904 .61719 L
.86392 .61918 L
.86933 .62077 L
.87498 .62217 L
.88057 .62361 L
.88582 .62532 L
.89046 .62749 L
.8943 .63028 L
.89724 .63376 L
.89924 .63795 L
.90039 .64279 L
.90086 .64815 L
.90089 .65386 L
.90075 .65969 L
.90074 .66541 L
.90116 .67082 L
.90225 .67571 L
.90417 .67996 L
.90701 .68351 L
.91078 .68635 L
.91535 .68858 L
.92056 .69032 L
.92613 .69178 L
.93179 .69317 L
.93723 .69474 L
Mistroke
.94217 .69668 L
.9464 .69917 L
.94975 .70232 L
.95217 .70619 L
.9537 .71075 L
.95445 .7159 L
.95465 .72147 L
.95455 .72727 L
Mfstroke
gsave
.86846 .66805 -68.25 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .65909 L
s
.82339 .44424 m
.80469 .49862 L
.77581 .47653 L
F
gsave
.86165 .34332 -68.4375 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .65909 m
.34091 .34091 L
s
.34091 .52727 m
.32273 .47273 L
.35909 .47273 L
F
gsave
.29795 .5 -70.625 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
.34091 .65909 m
.65909 .65909 L
s
.52727 .65909 m
.47273 .64091 L
.47273 .67727 L
F
gsave
.5 .70205 -65.8125 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
[ .03 .03 ] 0 setdash
.34091 .34091 m
.65909 .34091 L
s
.47273 .34091 m
.52727 .32273 L
.52727 .35909 L
F
gsave
.5 .29795 -65.4062 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(G) show
67.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .34091 m
.65909 .65909 L
s
.65909 .47273 m
.67727 .52727 L
.64091 .52727 L
F
gsave
.61613 .5 -69.8125 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(G) show
67.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.34091 .65909 Mdot
.34091 .34091 Mdot
.65909 .34091 Mdot
.65909 .65909 Mdot
gsave
.5 .02273 -73.4062 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T2) show
70.000 11.250 moveto
(C1) show
77.562 11.250 moveto
(N8) show
83.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.6 0.6 0.8 0.8 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.34091 .65909 m
.33504 .65619 L
.32873 .65424 L
.32216 .65334 L
.31553 .65354 L
.30902 .65485 L
.30283 .65723 L
.29713 .66062 L
.29207 .66488 L
.28778 .66986 L
.28436 .67537 L
.28187 .68121 L
.28032 .68715 L
.27971 .69297 L
.27998 .69844 L
.28104 .70336 L
.28276 .70755 L
.28499 .71085 L
.28756 .71314 L
.29029 .71435 L
.29298 .71445 L
.29544 .71345 L
.29749 .71141 L
.29896 .70843 L
.29972 .70466 L
.29964 .70027 L
.29867 .69545 L
.29675 .69043 L
.29388 .68543 L
.29011 .68067 L
.2855 .67637 L
.28017 .67272 L
.27425 .6699 L
.26791 .66803 L
.26134 .66722 L
.25471 .66751 L
.24822 .66891 L
.24206 .67138 L
.23641 .67484 L
.23141 .67917 L
.22719 .6842 L
.22384 .68975 L
.22143 .6956 L
.21996 .70154 L
.21943 .70734 L
.21977 .71278 L
.22089 .71764 L
.22265 .72176 L
.22492 .72498 L
.22751 .72719 L
Mistroke
.23024 .72831 L
.23292 .72832 L
.23535 .72723 L
.23736 .7251 L
.23878 .72206 L
.23947 .71822 L
.23932 .71379 L
.23827 .70895 L
.23627 .70392 L
.23333 .69893 L
.22948 .6942 L
.22481 .68995 L
.21943 .68636 L
.21347 .68361 L
.2071 .68183 L
.20051 .68111 L
.19389 .68149 L
.18742 .68298 L
.1813 .68554 L
.17569 .68908 L
.17075 .69347 L
.1666 .69855 L
.16333 .70413 L
.161 .71 L
.15961 .71594 L
.15915 .72172 L
.15956 .72711 L
.16073 .73192 L
.16255 .73598 L
.16485 .73911 L
.16746 .74123 L
.1702 .74226 L
.17286 .74218 L
.17526 .741 L
.17723 .73879 L
.17859 .73568 L
.17922 .73179 L
.179 .72731 L
.17787 .72245 L
.17579 .71741 L
.17277 .71243 L
.16885 .70774 L
.16412 .70353 L
.15868 .70001 L
.15268 .69734 L
.14629 .69564 L
.13969 .69501 L
.13307 .69548 L
.12663 .69706 L
.12054 .69971 L
Mistroke
.11499 .70332 L
.11011 .70778 L
.10603 .71291 L
.10283 .71852 L
.10057 .72441 L
.09927 .73034 L
.09888 .73609 L
.09936 .74145 L
.10059 .7462 L
.10245 .75018 L
.10479 .75324 L
.10741 .75527 L
.11015 .75621 L
.1128 .75603 L
.11517 .75477 L
.11709 .75248 L
.1184 .7493 L
.11896 .74535 L
.11867 .74083 L
.11746 .73595 L
.11531 .73091 L
.11221 .72595 L
.10822 .72128 L
.10342 .71713 L
.09793 .71367 L
.09189 .71107 L
.08548 .70946 L
.07887 .70892 L
.07226 .70949 L
.06584 .71116 L
.05979 .71389 L
.05428 .71758 L
.04946 .72209 L
.04545 .72727 L
Mfstroke
gsave
.21618 .76534 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .34091 L
s
.21976 .31295 m
.1707 .28297 L
.16252 .3184 L
F
gsave
.20902 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .34091 m
.66472 .34233 L
.67005 .34398 L
.67481 .34606 L
.67881 .34872 L
.68191 .35207 L
.68408 .35614 L
.68538 .36087 L
.68595 .36615 L
.68604 .37181 L
.6859 .37763 L
.68585 .38339 L
.68617 .38887 L
.68711 .39387 L
.68887 .39825 L
.69155 .40192 L
.69515 .40489 L
.69959 .40722 L
.70469 .40904 L
.71022 .41054 L
.71588 .41193 L
.72138 .41345 L
.72644 .41531 L
.7308 .41769 L
.73432 .42072 L
.73691 .42446 L
.73859 .4289 L
.73947 .43395 L
.73975 .43946 L
.73968 .44524 L
.73955 .45105 L
.73967 .45669 L
.7403 .46192 L
.74167 .4666 L
.74392 .4706 L
.74711 .47388 L
.75119 .47649 L
.75601 .47852 L
.76138 .48014 L
.76702 .48155 L
.77263 .48298 L
.77792 .48466 L
.78263 .48678 L
.78655 .48951 L
.78956 .49292 L
.79165 .49705 L
.79287 .50184 L
.7934 .50716 L
.79345 .51284 L
.79331 .51867 L
Mistroke
.79328 .52442 L
.79365 .52986 L
.79466 .5348 L
.7965 .53912 L
.79926 .54273 L
.80295 .54564 L
.80745 .54791 L
.81261 .54969 L
.81816 .55117 L
.82382 .55256 L
.82929 .5541 L
.83429 .556 L
.83859 .55843 L
.84203 .56153 L
.84453 .56533 L
.84613 .56983 L
.84695 .57493 L
.84719 .58047 L
.8471 .58626 L
.84698 .59208 L
.84714 .59768 L
.84783 .60287 L
.84928 .60749 L
.85162 .61142 L
.85489 .61464 L
.85904 .61719 L
.86392 .61918 L
.86933 .62077 L
.87498 .62217 L
.88057 .62361 L
.88582 .62532 L
.89046 .62749 L
.8943 .63028 L
.89724 .63376 L
.89924 .63795 L
.90039 .64279 L
.90086 .64815 L
.90089 .65386 L
.90075 .65969 L
.90074 .66541 L
.90116 .67082 L
.90225 .67571 L
.90417 .67996 L
.90701 .68351 L
.91078 .68635 L
.91535 .68858 L
.92056 .69032 L
.92613 .69178 L
.93179 .69317 L
.93723 .69474 L
Mistroke
.94217 .69668 L
.9464 .69917 L
.94975 .70232 L
.95217 .70619 L
.9537 .71075 L
.95445 .7159 L
.95465 .72147 L
.95455 .72727 L
Mfstroke
gsave
.86846 .66805 -68.25 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .65909 L
s
.82339 .44424 m
.80469 .49862 L
.77581 .47653 L
F
gsave
.86165 .34332 -68.4375 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .65909 m
.34091 .34091 L
s
.34091 .52727 m
.32273 .47273 L
.35909 .47273 L
F
gsave
.29795 .5 -70.625 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
.34091 .65909 m
.65909 .65909 L
s
.52727 .65909 m
.47273 .64091 L
.47273 .67727 L
F
gsave
.5 .70205 -65.8125 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
[ .03 .03 ] 0 setdash
.34091 .34091 m
.65909 .34091 L
s
.47273 .34091 m
.52727 .32273 L
.52727 .35909 L
F
gsave
.5 .29795 -65.4062 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(G) show
67.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
[ ] 0 setdash
.65909 .65909 m
.65463 .65454 L
.65088 .65 L
.64845 .64545 L
.64774 .64091 L
.64886 .63636 L
.65162 .63182 L
.65558 .62727 L
.66012 .62273 L
.66448 .61818 L
.66798 .61364 L
.67005 .60909 L
.67036 .60455 L
.66885 .6 L
.66578 .59546 L
.66163 .59091 L
.65707 .58636 L
.65284 .58182 L
.64962 .57727 L
.64792 .57273 L
.64802 .56818 L
.64991 .56364 L
.65327 .55909 L
.65758 .55455 L
.66213 .55 L
.66619 .54545 L
.66911 .54091 L
.67042 .53636 L
.66991 .53182 L
.66766 .52727 L
.66404 .52273 L
.65961 .51818 L
.65511 .51364 L
.65125 .50909 L
.64866 .50455 L
.64774 .5 L
.64866 .49545 L
.65125 .49091 L
.65511 .48636 L
.65961 .48182 L
.66404 .47727 L
.66766 .47273 L
.66991 .46818 L
.67042 .46364 L
.66911 .45909 L
.66619 .45455 L
.66213 .45 L
.65758 .44545 L
.65327 .44091 L
.64991 .43636 L
Mistroke
.64802 .43182 L
.64792 .42727 L
.64962 .42273 L
.65284 .41818 L
.65707 .41364 L
.66163 .40909 L
.66578 .40454 L
.66885 .4 L
.67036 .39545 L
.67005 .39091 L
.66798 .38636 L
.66448 .38182 L
.66012 .37727 L
.65558 .37273 L
.65162 .36818 L
.64886 .36364 L
.64774 .35909 L
.64845 .35455 L
.65088 .35 L
.65463 .34546 L
.65909 .34091 L
Mfstroke
.65909 .47273 m
.67727 .52727 L
.64091 .52727 L
F
gsave
.61613 .5 -70.8125 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(W) show
68.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.34091 .65909 Mdot
.34091 .34091 Mdot
.65909 .34091 Mdot
.65909 .65909 Mdot
gsave
.5 .02273 -73.4062 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T2) show
70.000 11.250 moveto
(C1) show
77.562 11.250 moveto
(N9) show
83.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.8 0.6 1 0.8 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.34091 .65909 m
.33504 .65619 L
.32873 .65424 L
.32216 .65334 L
.31553 .65354 L
.30902 .65485 L
.30283 .65723 L
.29713 .66062 L
.29207 .66488 L
.28778 .66986 L
.28436 .67537 L
.28187 .68121 L
.28032 .68715 L
.27971 .69297 L
.27998 .69844 L
.28104 .70336 L
.28276 .70755 L
.28499 .71085 L
.28756 .71314 L
.29029 .71435 L
.29298 .71445 L
.29544 .71345 L
.29749 .71141 L
.29896 .70843 L
.29972 .70466 L
.29964 .70027 L
.29867 .69545 L
.29675 .69043 L
.29388 .68543 L
.29011 .68067 L
.2855 .67637 L
.28017 .67272 L
.27425 .6699 L
.26791 .66803 L
.26134 .66722 L
.25471 .66751 L
.24822 .66891 L
.24206 .67138 L
.23641 .67484 L
.23141 .67917 L
.22719 .6842 L
.22384 .68975 L
.22143 .6956 L
.21996 .70154 L
.21943 .70734 L
.21977 .71278 L
.22089 .71764 L
.22265 .72176 L
.22492 .72498 L
.22751 .72719 L
Mistroke
.23024 .72831 L
.23292 .72832 L
.23535 .72723 L
.23736 .7251 L
.23878 .72206 L
.23947 .71822 L
.23932 .71379 L
.23827 .70895 L
.23627 .70392 L
.23333 .69893 L
.22948 .6942 L
.22481 .68995 L
.21943 .68636 L
.21347 .68361 L
.2071 .68183 L
.20051 .68111 L
.19389 .68149 L
.18742 .68298 L
.1813 .68554 L
.17569 .68908 L
.17075 .69347 L
.1666 .69855 L
.16333 .70413 L
.161 .71 L
.15961 .71594 L
.15915 .72172 L
.15956 .72711 L
.16073 .73192 L
.16255 .73598 L
.16485 .73911 L
.16746 .74123 L
.1702 .74226 L
.17286 .74218 L
.17526 .741 L
.17723 .73879 L
.17859 .73568 L
.17922 .73179 L
.179 .72731 L
.17787 .72245 L
.17579 .71741 L
.17277 .71243 L
.16885 .70774 L
.16412 .70353 L
.15868 .70001 L
.15268 .69734 L
.14629 .69564 L
.13969 .69501 L
.13307 .69548 L
.12663 .69706 L
.12054 .69971 L
Mistroke
.11499 .70332 L
.11011 .70778 L
.10603 .71291 L
.10283 .71852 L
.10057 .72441 L
.09927 .73034 L
.09888 .73609 L
.09936 .74145 L
.10059 .7462 L
.10245 .75018 L
.10479 .75324 L
.10741 .75527 L
.11015 .75621 L
.1128 .75603 L
.11517 .75477 L
.11709 .75248 L
.1184 .7493 L
.11896 .74535 L
.11867 .74083 L
.11746 .73595 L
.11531 .73091 L
.11221 .72595 L
.10822 .72128 L
.10342 .71713 L
.09793 .71367 L
.09189 .71107 L
.08548 .70946 L
.07887 .70892 L
.07226 .70949 L
.06584 .71116 L
.05979 .71389 L
.05428 .71758 L
.04946 .72209 L
.04545 .72727 L
Mfstroke
gsave
.21618 .76534 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .34091 L
s
.21976 .31295 m
.1707 .28297 L
.16252 .3184 L
F
gsave
.20902 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .34091 m
.66472 .34233 L
.67005 .34398 L
.67481 .34606 L
.67881 .34872 L
.68191 .35207 L
.68408 .35614 L
.68538 .36087 L
.68595 .36615 L
.68604 .37181 L
.6859 .37763 L
.68585 .38339 L
.68617 .38887 L
.68711 .39387 L
.68887 .39825 L
.69155 .40192 L
.69515 .40489 L
.69959 .40722 L
.70469 .40904 L
.71022 .41054 L
.71588 .41193 L
.72138 .41345 L
.72644 .41531 L
.7308 .41769 L
.73432 .42072 L
.73691 .42446 L
.73859 .4289 L
.73947 .43395 L
.73975 .43946 L
.73968 .44524 L
.73955 .45105 L
.73967 .45669 L
.7403 .46192 L
.74167 .4666 L
.74392 .4706 L
.74711 .47388 L
.75119 .47649 L
.75601 .47852 L
.76138 .48014 L
.76702 .48155 L
.77263 .48298 L
.77792 .48466 L
.78263 .48678 L
.78655 .48951 L
.78956 .49292 L
.79165 .49705 L
.79287 .50184 L
.7934 .50716 L
.79345 .51284 L
.79331 .51867 L
Mistroke
.79328 .52442 L
.79365 .52986 L
.79466 .5348 L
.7965 .53912 L
.79926 .54273 L
.80295 .54564 L
.80745 .54791 L
.81261 .54969 L
.81816 .55117 L
.82382 .55256 L
.82929 .5541 L
.83429 .556 L
.83859 .55843 L
.84203 .56153 L
.84453 .56533 L
.84613 .56983 L
.84695 .57493 L
.84719 .58047 L
.8471 .58626 L
.84698 .59208 L
.84714 .59768 L
.84783 .60287 L
.84928 .60749 L
.85162 .61142 L
.85489 .61464 L
.85904 .61719 L
.86392 .61918 L
.86933 .62077 L
.87498 .62217 L
.88057 .62361 L
.88582 .62532 L
.89046 .62749 L
.8943 .63028 L
.89724 .63376 L
.89924 .63795 L
.90039 .64279 L
.90086 .64815 L
.90089 .65386 L
.90075 .65969 L
.90074 .66541 L
.90116 .67082 L
.90225 .67571 L
.90417 .67996 L
.90701 .68351 L
.91078 .68635 L
.91535 .68858 L
.92056 .69032 L
.92613 .69178 L
.93179 .69317 L
.93723 .69474 L
Mistroke
.94217 .69668 L
.9464 .69917 L
.94975 .70232 L
.95217 .70619 L
.9537 .71075 L
.95445 .7159 L
.95465 .72147 L
.95455 .72727 L
Mfstroke
gsave
.86846 .66805 -68.25 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .65909 L
s
.82339 .44424 m
.80469 .49862 L
.77581 .47653 L
F
gsave
.86165 .34332 -68.4375 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .65909 m
.34091 .34091 L
s
.34091 .52727 m
.32273 .47273 L
.35909 .47273 L
F
gsave
.29795 .5 -70.625 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
.34091 .65909 m
.65909 .65909 L
s
.52727 .65909 m
.47273 .64091 L
.47273 .67727 L
F
gsave
.5 .70205 -65.8125 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
.65909 .34091 m
.65454 .34537 L
.65 .34912 L
.64545 .35155 L
.64091 .35226 L
.63636 .35114 L
.63182 .34838 L
.62727 .34442 L
.62273 .33988 L
.61818 .33552 L
.61364 .33202 L
.60909 .32995 L
.60455 .32964 L
.6 .33115 L
.59546 .33422 L
.59091 .33837 L
.58636 .34293 L
.58182 .34716 L
.57727 .35038 L
.57273 .35208 L
.56818 .35198 L
.56364 .35009 L
.55909 .34673 L
.55455 .34242 L
.55 .33787 L
.54545 .33381 L
.54091 .33089 L
.53636 .32958 L
.53182 .33009 L
.52727 .33234 L
.52273 .33596 L
.51818 .34039 L
.51364 .34489 L
.50909 .34875 L
.50455 .35134 L
.5 .35226 L
.49545 .35134 L
.49091 .34875 L
.48636 .34489 L
.48182 .34039 L
.47727 .33596 L
.47273 .33234 L
.46818 .33009 L
.46364 .32958 L
.45909 .33089 L
.45455 .33381 L
.45 .33787 L
.44545 .34242 L
.44091 .34673 L
.43636 .35009 L
Mistroke
.43182 .35198 L
.42727 .35208 L
.42273 .35038 L
.41818 .34716 L
.41364 .34293 L
.40909 .33837 L
.40454 .33422 L
.4 .33115 L
.39545 .32964 L
.39091 .32995 L
.38636 .33202 L
.38182 .33552 L
.37727 .33988 L
.37273 .34442 L
.36818 .34838 L
.36364 .35114 L
.35909 .35226 L
.35455 .35155 L
.35 .34912 L
.34546 .34537 L
.34091 .34091 L
Mfstroke
.47273 .34091 m
.52727 .32273 L
.52727 .35909 L
F
gsave
.5 .29795 -65.9062 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(W) show
68.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
[ .03 .03 ] 0 setdash
.65909 .34091 m
.65909 .65909 L
s
.65909 .47273 m
.67727 .52727 L
.64091 .52727 L
F
gsave
.61613 .5 -69.8125 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(G) show
67.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.34091 .65909 Mdot
.34091 .34091 Mdot
.65909 .34091 Mdot
.65909 .65909 Mdot
gsave
.5 .02273 -74.75 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T2) show
70.000 11.250 moveto
(C1) show
77.562 11.250 moveto
(N10) show
86.500 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
2.42861e-17 0.4 0.2 0.6 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.34091 .65909 m
.33504 .65619 L
.32873 .65424 L
.32216 .65334 L
.31553 .65354 L
.30902 .65485 L
.30283 .65723 L
.29713 .66062 L
.29207 .66488 L
.28778 .66986 L
.28436 .67537 L
.28187 .68121 L
.28032 .68715 L
.27971 .69297 L
.27998 .69844 L
.28104 .70336 L
.28276 .70755 L
.28499 .71085 L
.28756 .71314 L
.29029 .71435 L
.29298 .71445 L
.29544 .71345 L
.29749 .71141 L
.29896 .70843 L
.29972 .70466 L
.29964 .70027 L
.29867 .69545 L
.29675 .69043 L
.29388 .68543 L
.29011 .68067 L
.2855 .67637 L
.28017 .67272 L
.27425 .6699 L
.26791 .66803 L
.26134 .66722 L
.25471 .66751 L
.24822 .66891 L
.24206 .67138 L
.23641 .67484 L
.23141 .67917 L
.22719 .6842 L
.22384 .68975 L
.22143 .6956 L
.21996 .70154 L
.21943 .70734 L
.21977 .71278 L
.22089 .71764 L
.22265 .72176 L
.22492 .72498 L
.22751 .72719 L
Mistroke
.23024 .72831 L
.23292 .72832 L
.23535 .72723 L
.23736 .7251 L
.23878 .72206 L
.23947 .71822 L
.23932 .71379 L
.23827 .70895 L
.23627 .70392 L
.23333 .69893 L
.22948 .6942 L
.22481 .68995 L
.21943 .68636 L
.21347 .68361 L
.2071 .68183 L
.20051 .68111 L
.19389 .68149 L
.18742 .68298 L
.1813 .68554 L
.17569 .68908 L
.17075 .69347 L
.1666 .69855 L
.16333 .70413 L
.161 .71 L
.15961 .71594 L
.15915 .72172 L
.15956 .72711 L
.16073 .73192 L
.16255 .73598 L
.16485 .73911 L
.16746 .74123 L
.1702 .74226 L
.17286 .74218 L
.17526 .741 L
.17723 .73879 L
.17859 .73568 L
.17922 .73179 L
.179 .72731 L
.17787 .72245 L
.17579 .71741 L
.17277 .71243 L
.16885 .70774 L
.16412 .70353 L
.15868 .70001 L
.15268 .69734 L
.14629 .69564 L
.13969 .69501 L
.13307 .69548 L
.12663 .69706 L
.12054 .69971 L
Mistroke
.11499 .70332 L
.11011 .70778 L
.10603 .71291 L
.10283 .71852 L
.10057 .72441 L
.09927 .73034 L
.09888 .73609 L
.09936 .74145 L
.10059 .7462 L
.10245 .75018 L
.10479 .75324 L
.10741 .75527 L
.11015 .75621 L
.1128 .75603 L
.11517 .75477 L
.11709 .75248 L
.1184 .7493 L
.11896 .74535 L
.11867 .74083 L
.11746 .73595 L
.11531 .73091 L
.11221 .72595 L
.10822 .72128 L
.10342 .71713 L
.09793 .71367 L
.09189 .71107 L
.08548 .70946 L
.07887 .70892 L
.07226 .70949 L
.06584 .71116 L
.05979 .71389 L
.05428 .71758 L
.04946 .72209 L
.04545 .72727 L
Mfstroke
gsave
.21618 .76534 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .34091 L
s
.21976 .31295 m
.1707 .28297 L
.16252 .3184 L
F
gsave
.20902 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .34091 m
.66472 .34233 L
.67005 .34398 L
.67481 .34606 L
.67881 .34872 L
.68191 .35207 L
.68408 .35614 L
.68538 .36087 L
.68595 .36615 L
.68604 .37181 L
.6859 .37763 L
.68585 .38339 L
.68617 .38887 L
.68711 .39387 L
.68887 .39825 L
.69155 .40192 L
.69515 .40489 L
.69959 .40722 L
.70469 .40904 L
.71022 .41054 L
.71588 .41193 L
.72138 .41345 L
.72644 .41531 L
.7308 .41769 L
.73432 .42072 L
.73691 .42446 L
.73859 .4289 L
.73947 .43395 L
.73975 .43946 L
.73968 .44524 L
.73955 .45105 L
.73967 .45669 L
.7403 .46192 L
.74167 .4666 L
.74392 .4706 L
.74711 .47388 L
.75119 .47649 L
.75601 .47852 L
.76138 .48014 L
.76702 .48155 L
.77263 .48298 L
.77792 .48466 L
.78263 .48678 L
.78655 .48951 L
.78956 .49292 L
.79165 .49705 L
.79287 .50184 L
.7934 .50716 L
.79345 .51284 L
.79331 .51867 L
Mistroke
.79328 .52442 L
.79365 .52986 L
.79466 .5348 L
.7965 .53912 L
.79926 .54273 L
.80295 .54564 L
.80745 .54791 L
.81261 .54969 L
.81816 .55117 L
.82382 .55256 L
.82929 .5541 L
.83429 .556 L
.83859 .55843 L
.84203 .56153 L
.84453 .56533 L
.84613 .56983 L
.84695 .57493 L
.84719 .58047 L
.8471 .58626 L
.84698 .59208 L
.84714 .59768 L
.84783 .60287 L
.84928 .60749 L
.85162 .61142 L
.85489 .61464 L
.85904 .61719 L
.86392 .61918 L
.86933 .62077 L
.87498 .62217 L
.88057 .62361 L
.88582 .62532 L
.89046 .62749 L
.8943 .63028 L
.89724 .63376 L
.89924 .63795 L
.90039 .64279 L
.90086 .64815 L
.90089 .65386 L
.90075 .65969 L
.90074 .66541 L
.90116 .67082 L
.90225 .67571 L
.90417 .67996 L
.90701 .68351 L
.91078 .68635 L
.91535 .68858 L
.92056 .69032 L
.92613 .69178 L
.93179 .69317 L
.93723 .69474 L
Mistroke
.94217 .69668 L
.9464 .69917 L
.94975 .70232 L
.95217 .70619 L
.9537 .71075 L
.95445 .7159 L
.95465 .72147 L
.95455 .72727 L
Mfstroke
gsave
.86846 .66805 -68.25 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .65909 L
s
.82339 .44424 m
.80469 .49862 L
.77581 .47653 L
F
gsave
.86165 .34332 -68.4375 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .65909 m
.34091 .34091 L
s
.34091 .52727 m
.32273 .47273 L
.35909 .47273 L
F
gsave
.29795 .5 -70.625 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
.34091 .65909 m
.65909 .65909 L
s
.52727 .65909 m
.47273 .64091 L
.47273 .67727 L
F
gsave
.5 .70205 -65.8125 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
.65909 .34091 m
.65454 .34537 L
.65 .34912 L
.64545 .35155 L
.64091 .35226 L
.63636 .35114 L
.63182 .34838 L
.62727 .34442 L
.62273 .33988 L
.61818 .33552 L
.61364 .33202 L
.60909 .32995 L
.60455 .32964 L
.6 .33115 L
.59546 .33422 L
.59091 .33837 L
.58636 .34293 L
.58182 .34716 L
.57727 .35038 L
.57273 .35208 L
.56818 .35198 L
.56364 .35009 L
.55909 .34673 L
.55455 .34242 L
.55 .33787 L
.54545 .33381 L
.54091 .33089 L
.53636 .32958 L
.53182 .33009 L
.52727 .33234 L
.52273 .33596 L
.51818 .34039 L
.51364 .34489 L
.50909 .34875 L
.50455 .35134 L
.5 .35226 L
.49545 .35134 L
.49091 .34875 L
.48636 .34489 L
.48182 .34039 L
.47727 .33596 L
.47273 .33234 L
.46818 .33009 L
.46364 .32958 L
.45909 .33089 L
.45455 .33381 L
.45 .33787 L
.44545 .34242 L
.44091 .34673 L
.43636 .35009 L
Mistroke
.43182 .35198 L
.42727 .35208 L
.42273 .35038 L
.41818 .34716 L
.41364 .34293 L
.40909 .33837 L
.40454 .33422 L
.4 .33115 L
.39545 .32964 L
.39091 .32995 L
.38636 .33202 L
.38182 .33552 L
.37727 .33988 L
.37273 .34442 L
.36818 .34838 L
.36364 .35114 L
.35909 .35226 L
.35455 .35155 L
.35 .34912 L
.34546 .34537 L
.34091 .34091 L
Mfstroke
.47273 .34091 m
.52727 .32273 L
.52727 .35909 L
F
gsave
.5 .29795 -65.9062 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(W) show
68.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .65909 m
.65463 .65454 L
.65088 .65 L
.64845 .64545 L
.64774 .64091 L
.64886 .63636 L
.65162 .63182 L
.65558 .62727 L
.66012 .62273 L
.66448 .61818 L
.66798 .61364 L
.67005 .60909 L
.67036 .60455 L
.66885 .6 L
.66578 .59546 L
.66163 .59091 L
.65707 .58636 L
.65284 .58182 L
.64962 .57727 L
.64792 .57273 L
.64802 .56818 L
.64991 .56364 L
.65327 .55909 L
.65758 .55455 L
.66213 .55 L
.66619 .54545 L
.66911 .54091 L
.67042 .53636 L
.66991 .53182 L
.66766 .52727 L
.66404 .52273 L
.65961 .51818 L
.65511 .51364 L
.65125 .50909 L
.64866 .50455 L
.64774 .5 L
.64866 .49545 L
.65125 .49091 L
.65511 .48636 L
.65961 .48182 L
.66404 .47727 L
.66766 .47273 L
.66991 .46818 L
.67042 .46364 L
.66911 .45909 L
.66619 .45455 L
.66213 .45 L
.65758 .44545 L
.65327 .44091 L
.64991 .43636 L
Mistroke
.64802 .43182 L
.64792 .42727 L
.64962 .42273 L
.65284 .41818 L
.65707 .41364 L
.66163 .40909 L
.66578 .40454 L
.66885 .4 L
.67036 .39545 L
.67005 .39091 L
.66798 .38636 L
.66448 .38182 L
.66012 .37727 L
.65558 .37273 L
.65162 .36818 L
.64886 .36364 L
.64774 .35909 L
.64845 .35455 L
.65088 .35 L
.65463 .34546 L
.65909 .34091 L
Mfstroke
.65909 .47273 m
.67727 .52727 L
.64091 .52727 L
F
gsave
.61613 .5 -70.8125 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(W) show
68.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.34091 .65909 Mdot
.34091 .34091 Mdot
.65909 .34091 Mdot
.65909 .65909 Mdot
gsave
.5 .02273 -74.75 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T2) show
70.000 11.250 moveto
(C1) show
77.562 11.250 moveto
(N11) show
86.500 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.2 0.4 0.4 0.6 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.34091 .65909 m
.33504 .65619 L
.32873 .65424 L
.32216 .65334 L
.31553 .65354 L
.30902 .65485 L
.30283 .65723 L
.29713 .66062 L
.29207 .66488 L
.28778 .66986 L
.28436 .67537 L
.28187 .68121 L
.28032 .68715 L
.27971 .69297 L
.27998 .69844 L
.28104 .70336 L
.28276 .70755 L
.28499 .71085 L
.28756 .71314 L
.29029 .71435 L
.29298 .71445 L
.29544 .71345 L
.29749 .71141 L
.29896 .70843 L
.29972 .70466 L
.29964 .70027 L
.29867 .69545 L
.29675 .69043 L
.29388 .68543 L
.29011 .68067 L
.2855 .67637 L
.28017 .67272 L
.27425 .6699 L
.26791 .66803 L
.26134 .66722 L
.25471 .66751 L
.24822 .66891 L
.24206 .67138 L
.23641 .67484 L
.23141 .67917 L
.22719 .6842 L
.22384 .68975 L
.22143 .6956 L
.21996 .70154 L
.21943 .70734 L
.21977 .71278 L
.22089 .71764 L
.22265 .72176 L
.22492 .72498 L
.22751 .72719 L
Mistroke
.23024 .72831 L
.23292 .72832 L
.23535 .72723 L
.23736 .7251 L
.23878 .72206 L
.23947 .71822 L
.23932 .71379 L
.23827 .70895 L
.23627 .70392 L
.23333 .69893 L
.22948 .6942 L
.22481 .68995 L
.21943 .68636 L
.21347 .68361 L
.2071 .68183 L
.20051 .68111 L
.19389 .68149 L
.18742 .68298 L
.1813 .68554 L
.17569 .68908 L
.17075 .69347 L
.1666 .69855 L
.16333 .70413 L
.161 .71 L
.15961 .71594 L
.15915 .72172 L
.15956 .72711 L
.16073 .73192 L
.16255 .73598 L
.16485 .73911 L
.16746 .74123 L
.1702 .74226 L
.17286 .74218 L
.17526 .741 L
.17723 .73879 L
.17859 .73568 L
.17922 .73179 L
.179 .72731 L
.17787 .72245 L
.17579 .71741 L
.17277 .71243 L
.16885 .70774 L
.16412 .70353 L
.15868 .70001 L
.15268 .69734 L
.14629 .69564 L
.13969 .69501 L
.13307 .69548 L
.12663 .69706 L
.12054 .69971 L
Mistroke
.11499 .70332 L
.11011 .70778 L
.10603 .71291 L
.10283 .71852 L
.10057 .72441 L
.09927 .73034 L
.09888 .73609 L
.09936 .74145 L
.10059 .7462 L
.10245 .75018 L
.10479 .75324 L
.10741 .75527 L
.11015 .75621 L
.1128 .75603 L
.11517 .75477 L
.11709 .75248 L
.1184 .7493 L
.11896 .74535 L
.11867 .74083 L
.11746 .73595 L
.11531 .73091 L
.11221 .72595 L
.10822 .72128 L
.10342 .71713 L
.09793 .71367 L
.09189 .71107 L
.08548 .70946 L
.07887 .70892 L
.07226 .70949 L
.06584 .71116 L
.05979 .71389 L
.05428 .71758 L
.04946 .72209 L
.04545 .72727 L
Mfstroke
gsave
.21618 .76534 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .34091 L
s
.21976 .31295 m
.1707 .28297 L
.16252 .3184 L
F
gsave
.20902 .26566 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .34091 m
.66472 .34233 L
.67005 .34398 L
.67481 .34606 L
.67881 .34872 L
.68191 .35207 L
.68408 .35614 L
.68538 .36087 L
.68595 .36615 L
.68604 .37181 L
.6859 .37763 L
.68585 .38339 L
.68617 .38887 L
.68711 .39387 L
.68887 .39825 L
.69155 .40192 L
.69515 .40489 L
.69959 .40722 L
.70469 .40904 L
.71022 .41054 L
.71588 .41193 L
.72138 .41345 L
.72644 .41531 L
.7308 .41769 L
.73432 .42072 L
.73691 .42446 L
.73859 .4289 L
.73947 .43395 L
.73975 .43946 L
.73968 .44524 L
.73955 .45105 L
.73967 .45669 L
.7403 .46192 L
.74167 .4666 L
.74392 .4706 L
.74711 .47388 L
.75119 .47649 L
.75601 .47852 L
.76138 .48014 L
.76702 .48155 L
.77263 .48298 L
.77792 .48466 L
.78263 .48678 L
.78655 .48951 L
.78956 .49292 L
.79165 .49705 L
.79287 .50184 L
.7934 .50716 L
.79345 .51284 L
.79331 .51867 L
Mistroke
.79328 .52442 L
.79365 .52986 L
.79466 .5348 L
.7965 .53912 L
.79926 .54273 L
.80295 .54564 L
.80745 .54791 L
.81261 .54969 L
.81816 .55117 L
.82382 .55256 L
.82929 .5541 L
.83429 .556 L
.83859 .55843 L
.84203 .56153 L
.84453 .56533 L
.84613 .56983 L
.84695 .57493 L
.84719 .58047 L
.8471 .58626 L
.84698 .59208 L
.84714 .59768 L
.84783 .60287 L
.84928 .60749 L
.85162 .61142 L
.85489 .61464 L
.85904 .61719 L
.86392 .61918 L
.86933 .62077 L
.87498 .62217 L
.88057 .62361 L
.88582 .62532 L
.89046 .62749 L
.8943 .63028 L
.89724 .63376 L
.89924 .63795 L
.90039 .64279 L
.90086 .64815 L
.90089 .65386 L
.90075 .65969 L
.90074 .66541 L
.90116 .67082 L
.90225 .67571 L
.90417 .67996 L
.90701 .68351 L
.91078 .68635 L
.91535 .68858 L
.92056 .69032 L
.92613 .69178 L
.93179 .69317 L
.93723 .69474 L
Mistroke
.94217 .69668 L
.9464 .69917 L
.94975 .70232 L
.95217 .70619 L
.9537 .71075 L
.95445 .7159 L
.95465 .72147 L
.95455 .72727 L
Mfstroke
gsave
.86846 .66805 -68.25 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .65909 L
s
.82339 .44424 m
.80469 .49862 L
.77581 .47653 L
F
gsave
.86165 .34332 -68.4375 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .34091 m
.33614 .34658 L
.33253 .35309 L
.33029 .36019 L
.32954 .36758 L
.33033 .37497 L
.33262 .38206 L
.33626 .38854 L
.34107 .39419 L
.34676 .39878 L
.35302 .40217 L
.35949 .40429 L
.36582 .40513 L
.37163 .40475 L
.37661 .40329 L
.38047 .40095 L
.383 .39796 L
.38406 .39462 L
.38358 .39122 L
.38159 .38806 L
.3782 .38545 L
.37361 .38363 L
.36807 .38283 L
.3619 .3832 L
.35544 .38483 L
.34906 .38775 L
.34311 .39191 L
.33794 .39718 L
.33383 .40337 L
.33101 .41026 L
.32965 .41757 L
.32982 .425 L
.33151 .43225 L
.33462 .43901 L
.33899 .44502 L
.34436 .45006 L
.35043 .45396 L
.35686 .4566 L
.36328 .45795 L
.36935 .45805 L
.3747 .45701 L
.37905 .455 L
.38214 .45225 L
.38381 .44901 L
.38395 .4456 L
.38257 .44231 L
.37973 .43944 L
.3756 .43727 L
.37041 .43603 L
.36446 .43591 L
Mistroke
.35807 .43703 L
.35162 .43943 L
.34545 .44309 L
.33993 .44792 L
.33535 .45377 L
.33199 .46041 L
.33002 .46759 L
.32956 .475 L
.33064 .48236 L
.33319 .48935 L
.33708 .4957 L
.34207 .50116 L
.3479 .50553 L
.35422 .50869 L
.36069 .51057 L
.36695 .51117 L
.37263 .51058 L
.37742 .50894 L
.38105 .50645 L
.38331 .50338 L
.38408 .5 L
.38331 .49662 L
.38105 .49355 L
.37742 .49106 L
.37263 .48942 L
.36695 .48883 L
.36069 .48943 L
.35422 .49131 L
.3479 .49447 L
.34207 .49884 L
.33708 .5043 L
.33319 .51065 L
.33064 .51764 L
.32956 .525 L
.33002 .53241 L
.33199 .53959 L
.33535 .54623 L
.33993 .55208 L
.34545 .55691 L
.35162 .56057 L
.35807 .56297 L
.36446 .56409 L
.37041 .56397 L
.3756 .56273 L
.37973 .56056 L
.38257 .55769 L
.38395 .5544 L
.38381 .55099 L
.38214 .54775 L
.37905 .545 L
Mistroke
.3747 .54299 L
.36935 .54195 L
.36328 .54205 L
.35686 .5434 L
.35043 .54604 L
.34436 .54994 L
.33899 .55498 L
.33462 .56099 L
.33151 .56775 L
.32982 .575 L
.32965 .58243 L
.33101 .58974 L
.33383 .59663 L
.33794 .60282 L
.34311 .60809 L
.34906 .61225 L
.35544 .61517 L
.3619 .6168 L
.36807 .61717 L
.37361 .61637 L
.3782 .61455 L
.38159 .61194 L
.38358 .60878 L
.38406 .60538 L
.383 .60204 L
.38047 .59905 L
.37661 .59671 L
.37163 .59525 L
.36582 .59487 L
.35949 .59571 L
.35302 .59783 L
.34676 .60122 L
.34107 .60581 L
.33626 .61146 L
.33262 .61794 L
.33033 .62503 L
.32954 .63242 L
.33029 .63981 L
.33253 .64691 L
.33614 .65342 L
.34091 .65909 L
Mfstroke
gsave
.29795 .5 -68.4375 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .65909 m
.65342 .65432 L
.64691 .65071 L
.63981 .64847 L
.63242 .64772 L
.62503 .64851 L
.61794 .6508 L
.61146 .65445 L
.60581 .65925 L
.60122 .66494 L
.59783 .6712 L
.59571 .67768 L
.59487 .684 L
.59525 .68981 L
.59671 .69479 L
.59905 .69865 L
.60204 .70118 L
.60538 .70224 L
.60878 .70176 L
.61194 .69977 L
.61455 .69638 L
.61637 .69179 L
.61717 .68625 L
.6168 .68008 L
.61517 .67362 L
.61225 .66724 L
.60809 .6613 L
.60282 .65612 L
.59663 .65201 L
.58974 .6492 L
.58243 .64783 L
.575 .648 L
.56775 .64969 L
.56099 .65281 L
.55498 .65717 L
.54994 .66254 L
.54604 .66861 L
.5434 .67504 L
.54205 .68147 L
.54195 .68753 L
.54299 .69288 L
.545 .69723 L
.54775 .70032 L
.55099 .70199 L
.5544 .70213 L
.55769 .70075 L
.56056 .69791 L
.56273 .69378 L
.56397 .68859 L
.56409 .68264 L
Mistroke
.56297 .67625 L
.56057 .6698 L
.55691 .66363 L
.55208 .65811 L
.54623 .65353 L
.53959 .65017 L
.53241 .6482 L
.525 .64775 L
.51764 .64882 L
.51065 .65138 L
.5043 .65526 L
.49884 .66025 L
.49447 .66608 L
.49131 .6724 L
.48943 .67888 L
.48883 .68513 L
.48942 .69081 L
.49106 .6956 L
.49355 .69923 L
.49662 .70149 L
.5 .70226 L
.50338 .70149 L
.50645 .69923 L
.50894 .6956 L
.51058 .69081 L
.51117 .68513 L
.51057 .67888 L
.50869 .6724 L
.50553 .66608 L
.50116 .66025 L
.4957 .65526 L
.48935 .65138 L
.48236 .64882 L
.475 .64775 L
.46759 .6482 L
.46041 .65017 L
.45377 .65353 L
.44792 .65811 L
.44309 .66363 L
.43943 .6698 L
.43703 .67625 L
.43591 .68264 L
.43603 .68859 L
.43727 .69378 L
.43944 .69791 L
.44231 .70075 L
.4456 .70213 L
.44901 .70199 L
.45225 .70032 L
.455 .69723 L
Mistroke
.45701 .69288 L
.45805 .68753 L
.45795 .68147 L
.4566 .67504 L
.45396 .66861 L
.45006 .66254 L
.44502 .65717 L
.43901 .65281 L
.43225 .64969 L
.425 .648 L
.41757 .64783 L
.41026 .6492 L
.40337 .65201 L
.39718 .65612 L
.39191 .6613 L
.38775 .66724 L
.38483 .67362 L
.3832 .68008 L
.38283 .68625 L
.38363 .69179 L
.38545 .69638 L
.38806 .69977 L
.39122 .70176 L
.39462 .70224 L
.39796 .70118 L
.40095 .69865 L
.40329 .69479 L
.40475 .68981 L
.40513 .684 L
.40429 .67768 L
.40217 .6712 L
.39878 .66494 L
.39419 .65925 L
.38854 .65445 L
.38206 .6508 L
.37497 .64851 L
.36758 .64772 L
.36019 .64847 L
.35309 .65071 L
.34658 .65432 L
.34091 .65909 L
Mfstroke
gsave
.5 .73387 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .34091 m
.65909 .34091 L
s
.52727 .34091 m
.47273 .32273 L
.47273 .35909 L
F
gsave
.5 .29795 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .34091 m
.65909 .65909 L
s
.65909 .52727 m
.67727 .47273 L
.64091 .47273 L
F
gsave
.61613 .5 -68.4375 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.34091 .65909 Mdot
.34091 .34091 Mdot
.65909 .34091 Mdot
.65909 .65909 Mdot
gsave
.5 .02273 -74.75 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T2) show
70.000 11.250 moveto
(C1) show
77.562 11.250 moveto
(N12) show
86.500 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.4 0.4 0.6 0.6 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.65909 .63636 m
.6531 .63284 L
.64655 .63035 L
.63964 .62901 L
.6326 .6289 L
.62565 .63004 L
.61901 .63239 L
.61289 .63586 L
.60748 .6403 L
.60292 .64553 L
.59933 .65131 L
.59678 .6574 L
.59528 .66352 L
.59481 .66942 L
.59529 .67484 L
.5966 .67953 L
.59859 .68331 L
.60105 .68601 L
.6038 .68751 L
.60659 .68778 L
.6092 .6868 L
.61143 .68463 L
.61305 .6814 L
.61392 .67727 L
.61387 .67243 L
.61283 .66713 L
.61074 .66162 L
.60761 .65618 L
.60346 .65106 L
.59841 .64652 L
.59258 .64278 L
.58615 .64002 L
.57931 .63839 L
.57228 .63798 L
.56528 .63882 L
.55855 .64089 L
.55229 .6441 L
.54669 .64832 L
.54191 .65338 L
.53808 .65905 L
.53528 .66508 L
.53352 .67123 L
.53281 .67721 L
.53307 .68276 L
.53419 .68765 L
.53603 .69166 L
.5384 .69463 L
.5411 .69644 L
.5439 .697 L
.54658 .69632 L
Mistroke
.54891 .69443 L
.5507 .69145 L
.55176 .68751 L
.55195 .68283 L
.55116 .67761 L
.54932 .67213 L
.54643 .66665 L
.54253 .66143 L
.53768 .65673 L
.53203 .65277 L
.52572 .64976 L
.51896 .64785 L
.51196 .64714 L
.50493 .64768 L
.49812 .64946 L
.49172 .6524 L
.48595 .65639 L
.48096 .66127 L
.47689 .66681 L
.47383 .67278 L
.47183 .67892 L
.47087 .68497 L
.4709 .69065 L
.47183 .69572 L
.47351 .69996 L
.47577 .7032 L
.47841 .70529 L
.4812 .70616 L
.48393 .70577 L
.48637 .70417 L
.48831 .70144 L
.48956 .69772 L
.48997 .69319 L
.48942 .68809 L
.48784 .68265 L
.48521 .67714 L
.48154 .67183 L
.47691 .66698 L
.47144 .66283 L
.46527 .65957 L
.4586 .65739 L
.45164 .65638 L
.4446 .65662 L
.43771 .6581 L
.43119 .66077 L
.42525 .66452 L
.42006 .6692 L
.41576 .6746 L
.41246 .68049 L
.41019 .68662 L
Mistroke
.40898 .69271 L
.40878 .6985 L
.40951 .70374 L
.41102 .7082 L
.41316 .7117 L
.41572 .71408 L
.4185 .71524 L
.42127 .71516 L
.4238 .71385 L
.42587 .71138 L
.42731 .70788 L
.42793 .70353 L
.42762 .69854 L
.4263 .69316 L
.42392 .68764 L
.42049 .68226 L
.41609 .67728 L
.41081 .67294 L
.40479 .66945 L
.39823 .667 L
.39131 .6657 L
.38427 .66563 L
.37732 .66681 L
.3707 .6692 L
.3646 .67271 L
.35922 .67718 L
.35469 .68243 L
.35114 .68822 L
.34862 .69432 L
.34716 .70044 L
.34672 .70633 L
.34723 .71173 L
.34857 .71639 L
.35057 .72014 L
.35306 .72279 L
.3558 .72426 L
.35859 .72448 L
.3612 .72346 L
.3634 .72126 L
.36501 .718 L
.36584 .71384 L
.36577 .70898 L
.36469 .70367 L
.36257 .69816 L
.35939 .69272 L
.35522 .68762 L
.35013 .6831 L
.34428 .67939 L
.33783 .67667 L
.33098 .67509 L
Mistroke
.32395 .67472 L
.31696 .6756 L
.31024 .67771 L
.304 .68096 L
.29842 .68521 L
.29368 .69029 L
.28988 .69598 L
.28711 .70202 L
.2854 .70816 L
.28472 .71413 L
.28501 .71967 L
.28616 .72453 L
.28802 .72852 L
.2904 .73145 L
.29311 .73321 L
.29591 .73373 L
.29858 .73301 L
.3009 .73109 L
.30267 .72807 L
.3037 .7241 L
.30385 .7194 L
.30303 .71417 L
.30116 .70869 L
.29823 .70321 L
.29429 .698 L
.28942 .69332 L
.28374 .6894 L
.27741 .68642 L
.27064 .68455 L
.26363 .68389 L
.25661 .68447 L
.2498 .68628 L
.24343 .68927 L
.23768 .69329 L
.23272 .69819 L
.22869 .70375 L
.22566 .70974 L
.22369 .71588 L
.22277 .72192 L
.22283 .72758 L
.22379 .73263 L
.22549 .73684 L
.22777 .74004 L
.23042 .74209 L
.23321 .74292 L
.23594 .74249 L
.23836 .74085 L
.24028 .73808 L
.2415 .73433 L
.24188 .72978 L
Mistroke
.2413 .72466 L
.23968 .71922 L
.23701 .71371 L
.23331 .70842 L
.22865 .70359 L
.22315 .69946 L
.21697 .69624 L
.21028 .69409 L
.20331 .69313 L
.19627 .69341 L
.1894 .69493 L
.1829 .69764 L
.17698 .70143 L
.17182 .70614 L
.16755 .71156 L
.16428 .71746 L
.16205 .72359 L
.16088 .72968 L
.16071 .73546 L
.16146 .74068 L
.163 .74511 L
.16516 .74857 L
.16774 .7509 L
.17052 .75203 L
.17328 .75191 L
.1758 .75055 L
.17785 .74805 L
.17926 .74452 L
.17986 .74014 L
.17951 .73514 L
.17815 .72975 L
.17574 .72423 L
.17228 .71886 L
.16784 .7139 L
.16253 .70958 L
.1565 .70613 L
.14991 .70371 L
.14299 .70245 L
.13595 .70243 L
.12901 .70365 L
.1224 .70608 L
.11633 .70963 L
.11097 .71413 L
.10647 .7194 L
.10295 .72521 L
.10047 .73131 L
.09905 .73743 L
.09864 .74331 L
.09919 .74868 L
.10055 .75332 L
Mistroke
.10257 .75703 L
.10507 .75965 L
.10782 .76108 L
.11061 .76125 L
.1132 .76019 L
.11539 .75796 L
.11697 .75466 L
.11778 .75047 L
.11767 .7456 L
.11656 .74028 L
.1144 .73477 L
.11119 .72934 L
.10698 .72425 L
.10187 .71976 L
.09599 .71608 L
.08952 .7134 L
.08266 .71185 L
.07563 .71152 L
.06864 .71245 L
.06194 .7146 L
.05572 .71788 L
.05017 .72217 L
.04545 .72727 L
Mfstroke
gsave
.20513 .77707 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .31818 L
s
.22014 .2996 m
.16899 .27334 L
.16346 .30928 L
F
gsave
.20389 .25331 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .63636 m
.34599 .63322 L
.351 .63052 L
.35588 .62868 L
.3606 .62799 L
.36512 .62862 L
.36944 .63056 L
.37359 .63367 L
.37761 .63766 L
.38155 .64213 L
.3855 .64663 L
.3895 .65071 L
.39363 .65396 L
.39793 .65607 L
.40242 .65687 L
.40711 .65635 L
.41197 .65465 L
.41697 .65205 L
.42205 .64894 L
.42713 .64576 L
.43215 .64298 L
.43706 .64101 L
.44179 .64016 L
.44634 .6406 L
.45069 .64237 L
.45486 .64534 L
.45889 .64924 L
.46284 .65367 L
.46678 .65819 L
.47078 .66235 L
.47489 .66573 L
.47916 .668 L
.48363 .66898 L
.48829 .66864 L
.49313 .66708 L
.49812 .66458 L
.50318 .66151 L
.50827 .65831 L
.5133 .65545 L
.51823 .65335 L
.52299 .65233 L
.52756 .6526 L
.53193 .6542 L
.53613 .65702 L
.54017 .66081 L
.54414 .66519 L
.54807 .66973 L
.55206 .67396 L
.55615 .67747 L
.5604 .6799 L
Mistroke
.56484 .68106 L
.56948 .68089 L
.5743 .67948 L
.57926 .67708 L
.58432 .67406 L
.58941 .67086 L
.59445 .66793 L
.59939 .6657 L
.60418 .66453 L
.60878 .66462 L
.61318 .66604 L
.61739 .66871 L
.62146 .67239 L
.62543 .67672 L
.62937 .68126 L
.63334 .68556 L
.63741 .68918 L
.64164 .69177 L
.64605 .69311 L
.65067 .69311 L
.65546 .69186 L
.66041 .68957 L
.66546 .68661 L
.67055 .6834 L
.6756 .68041 L
.68056 .67807 L
.68537 .67674 L
.68999 .67665 L
.69442 .6779 L
.69866 .68041 L
.70274 .68397 L
.70672 .68824 L
.71066 .69278 L
.71462 .69714 L
.71868 .70087 L
.72289 .70362 L
.72727 .70513 L
.73186 .70531 L
.73663 .70421 L
.74156 .70204 L
.7466 .69914 L
.75169 .69594 L
.75675 .6929 L
.76172 .69044 L
.76656 .68896 L
.77121 .6887 L
.77566 .68977 L
.77992 .69212 L
.78402 .69556 L
.78801 .69976 L
Mistroke
.79195 .70429 L
.79591 .70869 L
.79995 .71253 L
.80414 .71543 L
.8085 .71711 L
.81306 .71747 L
.81781 .71653 L
.82272 .71449 L
.82775 .71167 L
.83283 .70848 L
.8379 .70538 L
.84289 .70283 L
.84774 .7012 L
.85242 .70076 L
.8569 .70165 L
.86118 .70384 L
.8653 .70716 L
.8693 .71127 L
.87325 .71578 L
.8772 .72023 L
.88123 .72417 L
.88539 .72721 L
.88973 .72907 L
.89426 .7296 L
.89899 .72883 L
.90388 .72692 L
.90889 .72417 L
.91397 .72101 L
.91905 .71788 L
.92405 .71522 L
.92892 .71345 L
.93362 .71284 L
.93813 .71355 L
.94244 .71558 L
.94658 .71876 L
.9506 .72279 L
.95455 .72727 L
Mfstroke
gsave
.79954 .7456 -64.625 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .31818 L
s
.83377 .29131 m
.78263 .31757 L
.7771 .28163 L
F
gsave
.79611 .25331 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .63636 m
.34091 .63636 L
s
.52727 .63636 m
.47273 .65455 L
.47273 .61818 L
F
gsave
.5 .5934 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .63636 m
.65909 .31818 L
s
.65909 .45 m
.64091 .50455 L
.67727 .50455 L
F
gsave
.70205 .47727 -61 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .31818 m
.34091 .63636 L
s
.34091 .50455 m
.35909 .45 L
.32273 .45 L
F
gsave
.29795 .47727 -68.4375 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
[ .03 .03 ] 0 setdash
.34091 .31818 m
.65909 .31818 L
s
gsave
.5 .28658 -65.2188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(H) show
67.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.65909 .63636 Mdot
.34091 .31818 Mdot
.34091 .63636 Mdot
.65909 .31818 Mdot
gsave
.5 .02273 -74.75 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T3) show
70.000 11.250 moveto
(C1) show
77.562 11.250 moveto
(N13) show
86.500 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.6 0.4 0.8 0.6 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.65909 .63636 m
.6531 .63284 L
.64655 .63035 L
.63964 .62901 L
.6326 .6289 L
.62565 .63004 L
.61901 .63239 L
.61289 .63586 L
.60748 .6403 L
.60292 .64553 L
.59933 .65131 L
.59678 .6574 L
.59528 .66352 L
.59481 .66942 L
.59529 .67484 L
.5966 .67953 L
.59859 .68331 L
.60105 .68601 L
.6038 .68751 L
.60659 .68778 L
.6092 .6868 L
.61143 .68463 L
.61305 .6814 L
.61392 .67727 L
.61387 .67243 L
.61283 .66713 L
.61074 .66162 L
.60761 .65618 L
.60346 .65106 L
.59841 .64652 L
.59258 .64278 L
.58615 .64002 L
.57931 .63839 L
.57228 .63798 L
.56528 .63882 L
.55855 .64089 L
.55229 .6441 L
.54669 .64832 L
.54191 .65338 L
.53808 .65905 L
.53528 .66508 L
.53352 .67123 L
.53281 .67721 L
.53307 .68276 L
.53419 .68765 L
.53603 .69166 L
.5384 .69463 L
.5411 .69644 L
.5439 .697 L
.54658 .69632 L
Mistroke
.54891 .69443 L
.5507 .69145 L
.55176 .68751 L
.55195 .68283 L
.55116 .67761 L
.54932 .67213 L
.54643 .66665 L
.54253 .66143 L
.53768 .65673 L
.53203 .65277 L
.52572 .64976 L
.51896 .64785 L
.51196 .64714 L
.50493 .64768 L
.49812 .64946 L
.49172 .6524 L
.48595 .65639 L
.48096 .66127 L
.47689 .66681 L
.47383 .67278 L
.47183 .67892 L
.47087 .68497 L
.4709 .69065 L
.47183 .69572 L
.47351 .69996 L
.47577 .7032 L
.47841 .70529 L
.4812 .70616 L
.48393 .70577 L
.48637 .70417 L
.48831 .70144 L
.48956 .69772 L
.48997 .69319 L
.48942 .68809 L
.48784 .68265 L
.48521 .67714 L
.48154 .67183 L
.47691 .66698 L
.47144 .66283 L
.46527 .65957 L
.4586 .65739 L
.45164 .65638 L
.4446 .65662 L
.43771 .6581 L
.43119 .66077 L
.42525 .66452 L
.42006 .6692 L
.41576 .6746 L
.41246 .68049 L
.41019 .68662 L
Mistroke
.40898 .69271 L
.40878 .6985 L
.40951 .70374 L
.41102 .7082 L
.41316 .7117 L
.41572 .71408 L
.4185 .71524 L
.42127 .71516 L
.4238 .71385 L
.42587 .71138 L
.42731 .70788 L
.42793 .70353 L
.42762 .69854 L
.4263 .69316 L
.42392 .68764 L
.42049 .68226 L
.41609 .67728 L
.41081 .67294 L
.40479 .66945 L
.39823 .667 L
.39131 .6657 L
.38427 .66563 L
.37732 .66681 L
.3707 .6692 L
.3646 .67271 L
.35922 .67718 L
.35469 .68243 L
.35114 .68822 L
.34862 .69432 L
.34716 .70044 L
.34672 .70633 L
.34723 .71173 L
.34857 .71639 L
.35057 .72014 L
.35306 .72279 L
.3558 .72426 L
.35859 .72448 L
.3612 .72346 L
.3634 .72126 L
.36501 .718 L
.36584 .71384 L
.36577 .70898 L
.36469 .70367 L
.36257 .69816 L
.35939 .69272 L
.35522 .68762 L
.35013 .6831 L
.34428 .67939 L
.33783 .67667 L
.33098 .67509 L
Mistroke
.32395 .67472 L
.31696 .6756 L
.31024 .67771 L
.304 .68096 L
.29842 .68521 L
.29368 .69029 L
.28988 .69598 L
.28711 .70202 L
.2854 .70816 L
.28472 .71413 L
.28501 .71967 L
.28616 .72453 L
.28802 .72852 L
.2904 .73145 L
.29311 .73321 L
.29591 .73373 L
.29858 .73301 L
.3009 .73109 L
.30267 .72807 L
.3037 .7241 L
.30385 .7194 L
.30303 .71417 L
.30116 .70869 L
.29823 .70321 L
.29429 .698 L
.28942 .69332 L
.28374 .6894 L
.27741 .68642 L
.27064 .68455 L
.26363 .68389 L
.25661 .68447 L
.2498 .68628 L
.24343 .68927 L
.23768 .69329 L
.23272 .69819 L
.22869 .70375 L
.22566 .70974 L
.22369 .71588 L
.22277 .72192 L
.22283 .72758 L
.22379 .73263 L
.22549 .73684 L
.22777 .74004 L
.23042 .74209 L
.23321 .74292 L
.23594 .74249 L
.23836 .74085 L
.24028 .73808 L
.2415 .73433 L
.24188 .72978 L
Mistroke
.2413 .72466 L
.23968 .71922 L
.23701 .71371 L
.23331 .70842 L
.22865 .70359 L
.22315 .69946 L
.21697 .69624 L
.21028 .69409 L
.20331 .69313 L
.19627 .69341 L
.1894 .69493 L
.1829 .69764 L
.17698 .70143 L
.17182 .70614 L
.16755 .71156 L
.16428 .71746 L
.16205 .72359 L
.16088 .72968 L
.16071 .73546 L
.16146 .74068 L
.163 .74511 L
.16516 .74857 L
.16774 .7509 L
.17052 .75203 L
.17328 .75191 L
.1758 .75055 L
.17785 .74805 L
.17926 .74452 L
.17986 .74014 L
.17951 .73514 L
.17815 .72975 L
.17574 .72423 L
.17228 .71886 L
.16784 .7139 L
.16253 .70958 L
.1565 .70613 L
.14991 .70371 L
.14299 .70245 L
.13595 .70243 L
.12901 .70365 L
.1224 .70608 L
.11633 .70963 L
.11097 .71413 L
.10647 .7194 L
.10295 .72521 L
.10047 .73131 L
.09905 .73743 L
.09864 .74331 L
.09919 .74868 L
.10055 .75332 L
Mistroke
.10257 .75703 L
.10507 .75965 L
.10782 .76108 L
.11061 .76125 L
.1132 .76019 L
.11539 .75796 L
.11697 .75466 L
.11778 .75047 L
.11767 .7456 L
.11656 .74028 L
.1144 .73477 L
.11119 .72934 L
.10698 .72425 L
.10187 .71976 L
.09599 .71608 L
.08952 .7134 L
.08266 .71185 L
.07563 .71152 L
.06864 .71245 L
.06194 .7146 L
.05572 .71788 L
.05017 .72217 L
.04545 .72727 L
Mfstroke
gsave
.20513 .77707 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .31818 L
s
.22014 .2996 m
.16899 .27334 L
.16346 .30928 L
F
gsave
.20389 .25331 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .63636 m
.34599 .63322 L
.351 .63052 L
.35588 .62868 L
.3606 .62799 L
.36512 .62862 L
.36944 .63056 L
.37359 .63367 L
.37761 .63766 L
.38155 .64213 L
.3855 .64663 L
.3895 .65071 L
.39363 .65396 L
.39793 .65607 L
.40242 .65687 L
.40711 .65635 L
.41197 .65465 L
.41697 .65205 L
.42205 .64894 L
.42713 .64576 L
.43215 .64298 L
.43706 .64101 L
.44179 .64016 L
.44634 .6406 L
.45069 .64237 L
.45486 .64534 L
.45889 .64924 L
.46284 .65367 L
.46678 .65819 L
.47078 .66235 L
.47489 .66573 L
.47916 .668 L
.48363 .66898 L
.48829 .66864 L
.49313 .66708 L
.49812 .66458 L
.50318 .66151 L
.50827 .65831 L
.5133 .65545 L
.51823 .65335 L
.52299 .65233 L
.52756 .6526 L
.53193 .6542 L
.53613 .65702 L
.54017 .66081 L
.54414 .66519 L
.54807 .66973 L
.55206 .67396 L
.55615 .67747 L
.5604 .6799 L
Mistroke
.56484 .68106 L
.56948 .68089 L
.5743 .67948 L
.57926 .67708 L
.58432 .67406 L
.58941 .67086 L
.59445 .66793 L
.59939 .6657 L
.60418 .66453 L
.60878 .66462 L
.61318 .66604 L
.61739 .66871 L
.62146 .67239 L
.62543 .67672 L
.62937 .68126 L
.63334 .68556 L
.63741 .68918 L
.64164 .69177 L
.64605 .69311 L
.65067 .69311 L
.65546 .69186 L
.66041 .68957 L
.66546 .68661 L
.67055 .6834 L
.6756 .68041 L
.68056 .67807 L
.68537 .67674 L
.68999 .67665 L
.69442 .6779 L
.69866 .68041 L
.70274 .68397 L
.70672 .68824 L
.71066 .69278 L
.71462 .69714 L
.71868 .70087 L
.72289 .70362 L
.72727 .70513 L
.73186 .70531 L
.73663 .70421 L
.74156 .70204 L
.7466 .69914 L
.75169 .69594 L
.75675 .6929 L
.76172 .69044 L
.76656 .68896 L
.77121 .6887 L
.77566 .68977 L
.77992 .69212 L
.78402 .69556 L
.78801 .69976 L
Mistroke
.79195 .70429 L
.79591 .70869 L
.79995 .71253 L
.80414 .71543 L
.8085 .71711 L
.81306 .71747 L
.81781 .71653 L
.82272 .71449 L
.82775 .71167 L
.83283 .70848 L
.8379 .70538 L
.84289 .70283 L
.84774 .7012 L
.85242 .70076 L
.8569 .70165 L
.86118 .70384 L
.8653 .70716 L
.8693 .71127 L
.87325 .71578 L
.8772 .72023 L
.88123 .72417 L
.88539 .72721 L
.88973 .72907 L
.89426 .7296 L
.89899 .72883 L
.90388 .72692 L
.90889 .72417 L
.91397 .72101 L
.91905 .71788 L
.92405 .71522 L
.92892 .71345 L
.93362 .71284 L
.93813 .71355 L
.94244 .71558 L
.94658 .71876 L
.9506 .72279 L
.95455 .72727 L
Mfstroke
gsave
.79954 .7456 -64.625 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .31818 L
s
.83377 .29131 m
.78263 .31757 L
.7771 .28163 L
F
gsave
.79611 .25331 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .63636 m
.34091 .63636 L
s
.52727 .63636 m
.47273 .65455 L
.47273 .61818 L
F
gsave
.5 .5934 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .63636 m
.65909 .31818 L
s
.65909 .45 m
.64091 .50455 L
.67727 .50455 L
F
gsave
.70205 .47727 -61 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .31818 m
.34091 .63636 L
s
.34091 .50455 m
.35909 .45 L
.32273 .45 L
F
gsave
.29795 .47727 -68.4375 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
[ .03 .03 ] 0 setdash
.34091 .31818 m
.65909 .31818 L
s
gsave
.5 .28658 -67.3438 -13.875 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.312 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(G) show
67.812 8.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(0) show
1.000 setlinewidth
grestore
.04 w
.65909 .63636 Mdot
.34091 .31818 Mdot
.34091 .63636 Mdot
.65909 .31818 Mdot
gsave
.5 .02273 -74.75 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T3) show
70.000 11.250 moveto
(C2) show
77.562 11.250 moveto
(N14) show
86.500 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.8 0.4 1 0.6 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.65909 .63636 m
.6531 .63284 L
.64655 .63035 L
.63964 .62901 L
.6326 .6289 L
.62565 .63004 L
.61901 .63239 L
.61289 .63586 L
.60748 .6403 L
.60292 .64553 L
.59933 .65131 L
.59678 .6574 L
.59528 .66352 L
.59481 .66942 L
.59529 .67484 L
.5966 .67953 L
.59859 .68331 L
.60105 .68601 L
.6038 .68751 L
.60659 .68778 L
.6092 .6868 L
.61143 .68463 L
.61305 .6814 L
.61392 .67727 L
.61387 .67243 L
.61283 .66713 L
.61074 .66162 L
.60761 .65618 L
.60346 .65106 L
.59841 .64652 L
.59258 .64278 L
.58615 .64002 L
.57931 .63839 L
.57228 .63798 L
.56528 .63882 L
.55855 .64089 L
.55229 .6441 L
.54669 .64832 L
.54191 .65338 L
.53808 .65905 L
.53528 .66508 L
.53352 .67123 L
.53281 .67721 L
.53307 .68276 L
.53419 .68765 L
.53603 .69166 L
.5384 .69463 L
.5411 .69644 L
.5439 .697 L
.54658 .69632 L
Mistroke
.54891 .69443 L
.5507 .69145 L
.55176 .68751 L
.55195 .68283 L
.55116 .67761 L
.54932 .67213 L
.54643 .66665 L
.54253 .66143 L
.53768 .65673 L
.53203 .65277 L
.52572 .64976 L
.51896 .64785 L
.51196 .64714 L
.50493 .64768 L
.49812 .64946 L
.49172 .6524 L
.48595 .65639 L
.48096 .66127 L
.47689 .66681 L
.47383 .67278 L
.47183 .67892 L
.47087 .68497 L
.4709 .69065 L
.47183 .69572 L
.47351 .69996 L
.47577 .7032 L
.47841 .70529 L
.4812 .70616 L
.48393 .70577 L
.48637 .70417 L
.48831 .70144 L
.48956 .69772 L
.48997 .69319 L
.48942 .68809 L
.48784 .68265 L
.48521 .67714 L
.48154 .67183 L
.47691 .66698 L
.47144 .66283 L
.46527 .65957 L
.4586 .65739 L
.45164 .65638 L
.4446 .65662 L
.43771 .6581 L
.43119 .66077 L
.42525 .66452 L
.42006 .6692 L
.41576 .6746 L
.41246 .68049 L
.41019 .68662 L
Mistroke
.40898 .69271 L
.40878 .6985 L
.40951 .70374 L
.41102 .7082 L
.41316 .7117 L
.41572 .71408 L
.4185 .71524 L
.42127 .71516 L
.4238 .71385 L
.42587 .71138 L
.42731 .70788 L
.42793 .70353 L
.42762 .69854 L
.4263 .69316 L
.42392 .68764 L
.42049 .68226 L
.41609 .67728 L
.41081 .67294 L
.40479 .66945 L
.39823 .667 L
.39131 .6657 L
.38427 .66563 L
.37732 .66681 L
.3707 .6692 L
.3646 .67271 L
.35922 .67718 L
.35469 .68243 L
.35114 .68822 L
.34862 .69432 L
.34716 .70044 L
.34672 .70633 L
.34723 .71173 L
.34857 .71639 L
.35057 .72014 L
.35306 .72279 L
.3558 .72426 L
.35859 .72448 L
.3612 .72346 L
.3634 .72126 L
.36501 .718 L
.36584 .71384 L
.36577 .70898 L
.36469 .70367 L
.36257 .69816 L
.35939 .69272 L
.35522 .68762 L
.35013 .6831 L
.34428 .67939 L
.33783 .67667 L
.33098 .67509 L
Mistroke
.32395 .67472 L
.31696 .6756 L
.31024 .67771 L
.304 .68096 L
.29842 .68521 L
.29368 .69029 L
.28988 .69598 L
.28711 .70202 L
.2854 .70816 L
.28472 .71413 L
.28501 .71967 L
.28616 .72453 L
.28802 .72852 L
.2904 .73145 L
.29311 .73321 L
.29591 .73373 L
.29858 .73301 L
.3009 .73109 L
.30267 .72807 L
.3037 .7241 L
.30385 .7194 L
.30303 .71417 L
.30116 .70869 L
.29823 .70321 L
.29429 .698 L
.28942 .69332 L
.28374 .6894 L
.27741 .68642 L
.27064 .68455 L
.26363 .68389 L
.25661 .68447 L
.2498 .68628 L
.24343 .68927 L
.23768 .69329 L
.23272 .69819 L
.22869 .70375 L
.22566 .70974 L
.22369 .71588 L
.22277 .72192 L
.22283 .72758 L
.22379 .73263 L
.22549 .73684 L
.22777 .74004 L
.23042 .74209 L
.23321 .74292 L
.23594 .74249 L
.23836 .74085 L
.24028 .73808 L
.2415 .73433 L
.24188 .72978 L
Mistroke
.2413 .72466 L
.23968 .71922 L
.23701 .71371 L
.23331 .70842 L
.22865 .70359 L
.22315 .69946 L
.21697 .69624 L
.21028 .69409 L
.20331 .69313 L
.19627 .69341 L
.1894 .69493 L
.1829 .69764 L
.17698 .70143 L
.17182 .70614 L
.16755 .71156 L
.16428 .71746 L
.16205 .72359 L
.16088 .72968 L
.16071 .73546 L
.16146 .74068 L
.163 .74511 L
.16516 .74857 L
.16774 .7509 L
.17052 .75203 L
.17328 .75191 L
.1758 .75055 L
.17785 .74805 L
.17926 .74452 L
.17986 .74014 L
.17951 .73514 L
.17815 .72975 L
.17574 .72423 L
.17228 .71886 L
.16784 .7139 L
.16253 .70958 L
.1565 .70613 L
.14991 .70371 L
.14299 .70245 L
.13595 .70243 L
.12901 .70365 L
.1224 .70608 L
.11633 .70963 L
.11097 .71413 L
.10647 .7194 L
.10295 .72521 L
.10047 .73131 L
.09905 .73743 L
.09864 .74331 L
.09919 .74868 L
.10055 .75332 L
Mistroke
.10257 .75703 L
.10507 .75965 L
.10782 .76108 L
.11061 .76125 L
.1132 .76019 L
.11539 .75796 L
.11697 .75466 L
.11778 .75047 L
.11767 .7456 L
.11656 .74028 L
.1144 .73477 L
.11119 .72934 L
.10698 .72425 L
.10187 .71976 L
.09599 .71608 L
.08952 .7134 L
.08266 .71185 L
.07563 .71152 L
.06864 .71245 L
.06194 .7146 L
.05572 .71788 L
.05017 .72217 L
.04545 .72727 L
Mfstroke
gsave
.20513 .77707 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .31818 L
s
.22014 .2996 m
.16899 .27334 L
.16346 .30928 L
F
gsave
.20389 .25331 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .63636 m
.34599 .63322 L
.351 .63052 L
.35588 .62868 L
.3606 .62799 L
.36512 .62862 L
.36944 .63056 L
.37359 .63367 L
.37761 .63766 L
.38155 .64213 L
.3855 .64663 L
.3895 .65071 L
.39363 .65396 L
.39793 .65607 L
.40242 .65687 L
.40711 .65635 L
.41197 .65465 L
.41697 .65205 L
.42205 .64894 L
.42713 .64576 L
.43215 .64298 L
.43706 .64101 L
.44179 .64016 L
.44634 .6406 L
.45069 .64237 L
.45486 .64534 L
.45889 .64924 L
.46284 .65367 L
.46678 .65819 L
.47078 .66235 L
.47489 .66573 L
.47916 .668 L
.48363 .66898 L
.48829 .66864 L
.49313 .66708 L
.49812 .66458 L
.50318 .66151 L
.50827 .65831 L
.5133 .65545 L
.51823 .65335 L
.52299 .65233 L
.52756 .6526 L
.53193 .6542 L
.53613 .65702 L
.54017 .66081 L
.54414 .66519 L
.54807 .66973 L
.55206 .67396 L
.55615 .67747 L
.5604 .6799 L
Mistroke
.56484 .68106 L
.56948 .68089 L
.5743 .67948 L
.57926 .67708 L
.58432 .67406 L
.58941 .67086 L
.59445 .66793 L
.59939 .6657 L
.60418 .66453 L
.60878 .66462 L
.61318 .66604 L
.61739 .66871 L
.62146 .67239 L
.62543 .67672 L
.62937 .68126 L
.63334 .68556 L
.63741 .68918 L
.64164 .69177 L
.64605 .69311 L
.65067 .69311 L
.65546 .69186 L
.66041 .68957 L
.66546 .68661 L
.67055 .6834 L
.6756 .68041 L
.68056 .67807 L
.68537 .67674 L
.68999 .67665 L
.69442 .6779 L
.69866 .68041 L
.70274 .68397 L
.70672 .68824 L
.71066 .69278 L
.71462 .69714 L
.71868 .70087 L
.72289 .70362 L
.72727 .70513 L
.73186 .70531 L
.73663 .70421 L
.74156 .70204 L
.7466 .69914 L
.75169 .69594 L
.75675 .6929 L
.76172 .69044 L
.76656 .68896 L
.77121 .6887 L
.77566 .68977 L
.77992 .69212 L
.78402 .69556 L
.78801 .69976 L
Mistroke
.79195 .70429 L
.79591 .70869 L
.79995 .71253 L
.80414 .71543 L
.8085 .71711 L
.81306 .71747 L
.81781 .71653 L
.82272 .71449 L
.82775 .71167 L
.83283 .70848 L
.8379 .70538 L
.84289 .70283 L
.84774 .7012 L
.85242 .70076 L
.8569 .70165 L
.86118 .70384 L
.8653 .70716 L
.8693 .71127 L
.87325 .71578 L
.8772 .72023 L
.88123 .72417 L
.88539 .72721 L
.88973 .72907 L
.89426 .7296 L
.89899 .72883 L
.90388 .72692 L
.90889 .72417 L
.91397 .72101 L
.91905 .71788 L
.92405 .71522 L
.92892 .71345 L
.93362 .71284 L
.93813 .71355 L
.94244 .71558 L
.94658 .71876 L
.9506 .72279 L
.95455 .72727 L
Mfstroke
gsave
.79954 .7456 -64.625 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .31818 L
s
.83377 .29131 m
.78263 .31757 L
.7771 .28163 L
F
gsave
.79611 .25331 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .63636 m
.34091 .63636 L
s
.52727 .63636 m
.47273 .65455 L
.47273 .61818 L
F
gsave
.5 .5934 -65.8125 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
.65909 .63636 m
.65909 .31818 L
s
.65909 .45 m
.64091 .50455 L
.67727 .50455 L
F
gsave
.70205 .47727 -61 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
.34091 .31818 m
.34091 .63636 L
s
.34091 .50455 m
.35909 .45 L
.32273 .45 L
F
gsave
.29795 .47727 -70.625 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
[ .03 .03 ] 0 setdash
.34091 .31818 m
.65909 .31818 L
s
.47273 .31818 m
.52727 .3 L
.52727 .33636 L
F
gsave
.5 .27522 -65.4062 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(G) show
67.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.65909 .63636 Mdot
.34091 .31818 Mdot
.34091 .63636 Mdot
.65909 .31818 Mdot
gsave
.5 .02273 -74.75 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T3) show
70.000 11.250 moveto
(C3) show
77.562 11.250 moveto
(N15) show
86.500 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
2.42861e-17 0.2 0.2 0.4 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.65909 .63636 m
.6531 .63284 L
.64655 .63035 L
.63964 .62901 L
.6326 .6289 L
.62565 .63004 L
.61901 .63239 L
.61289 .63586 L
.60748 .6403 L
.60292 .64553 L
.59933 .65131 L
.59678 .6574 L
.59528 .66352 L
.59481 .66942 L
.59529 .67484 L
.5966 .67953 L
.59859 .68331 L
.60105 .68601 L
.6038 .68751 L
.60659 .68778 L
.6092 .6868 L
.61143 .68463 L
.61305 .6814 L
.61392 .67727 L
.61387 .67243 L
.61283 .66713 L
.61074 .66162 L
.60761 .65618 L
.60346 .65106 L
.59841 .64652 L
.59258 .64278 L
.58615 .64002 L
.57931 .63839 L
.57228 .63798 L
.56528 .63882 L
.55855 .64089 L
.55229 .6441 L
.54669 .64832 L
.54191 .65338 L
.53808 .65905 L
.53528 .66508 L
.53352 .67123 L
.53281 .67721 L
.53307 .68276 L
.53419 .68765 L
.53603 .69166 L
.5384 .69463 L
.5411 .69644 L
.5439 .697 L
.54658 .69632 L
Mistroke
.54891 .69443 L
.5507 .69145 L
.55176 .68751 L
.55195 .68283 L
.55116 .67761 L
.54932 .67213 L
.54643 .66665 L
.54253 .66143 L
.53768 .65673 L
.53203 .65277 L
.52572 .64976 L
.51896 .64785 L
.51196 .64714 L
.50493 .64768 L
.49812 .64946 L
.49172 .6524 L
.48595 .65639 L
.48096 .66127 L
.47689 .66681 L
.47383 .67278 L
.47183 .67892 L
.47087 .68497 L
.4709 .69065 L
.47183 .69572 L
.47351 .69996 L
.47577 .7032 L
.47841 .70529 L
.4812 .70616 L
.48393 .70577 L
.48637 .70417 L
.48831 .70144 L
.48956 .69772 L
.48997 .69319 L
.48942 .68809 L
.48784 .68265 L
.48521 .67714 L
.48154 .67183 L
.47691 .66698 L
.47144 .66283 L
.46527 .65957 L
.4586 .65739 L
.45164 .65638 L
.4446 .65662 L
.43771 .6581 L
.43119 .66077 L
.42525 .66452 L
.42006 .6692 L
.41576 .6746 L
.41246 .68049 L
.41019 .68662 L
Mistroke
.40898 .69271 L
.40878 .6985 L
.40951 .70374 L
.41102 .7082 L
.41316 .7117 L
.41572 .71408 L
.4185 .71524 L
.42127 .71516 L
.4238 .71385 L
.42587 .71138 L
.42731 .70788 L
.42793 .70353 L
.42762 .69854 L
.4263 .69316 L
.42392 .68764 L
.42049 .68226 L
.41609 .67728 L
.41081 .67294 L
.40479 .66945 L
.39823 .667 L
.39131 .6657 L
.38427 .66563 L
.37732 .66681 L
.3707 .6692 L
.3646 .67271 L
.35922 .67718 L
.35469 .68243 L
.35114 .68822 L
.34862 .69432 L
.34716 .70044 L
.34672 .70633 L
.34723 .71173 L
.34857 .71639 L
.35057 .72014 L
.35306 .72279 L
.3558 .72426 L
.35859 .72448 L
.3612 .72346 L
.3634 .72126 L
.36501 .718 L
.36584 .71384 L
.36577 .70898 L
.36469 .70367 L
.36257 .69816 L
.35939 .69272 L
.35522 .68762 L
.35013 .6831 L
.34428 .67939 L
.33783 .67667 L
.33098 .67509 L
Mistroke
.32395 .67472 L
.31696 .6756 L
.31024 .67771 L
.304 .68096 L
.29842 .68521 L
.29368 .69029 L
.28988 .69598 L
.28711 .70202 L
.2854 .70816 L
.28472 .71413 L
.28501 .71967 L
.28616 .72453 L
.28802 .72852 L
.2904 .73145 L
.29311 .73321 L
.29591 .73373 L
.29858 .73301 L
.3009 .73109 L
.30267 .72807 L
.3037 .7241 L
.30385 .7194 L
.30303 .71417 L
.30116 .70869 L
.29823 .70321 L
.29429 .698 L
.28942 .69332 L
.28374 .6894 L
.27741 .68642 L
.27064 .68455 L
.26363 .68389 L
.25661 .68447 L
.2498 .68628 L
.24343 .68927 L
.23768 .69329 L
.23272 .69819 L
.22869 .70375 L
.22566 .70974 L
.22369 .71588 L
.22277 .72192 L
.22283 .72758 L
.22379 .73263 L
.22549 .73684 L
.22777 .74004 L
.23042 .74209 L
.23321 .74292 L
.23594 .74249 L
.23836 .74085 L
.24028 .73808 L
.2415 .73433 L
.24188 .72978 L
Mistroke
.2413 .72466 L
.23968 .71922 L
.23701 .71371 L
.23331 .70842 L
.22865 .70359 L
.22315 .69946 L
.21697 .69624 L
.21028 .69409 L
.20331 .69313 L
.19627 .69341 L
.1894 .69493 L
.1829 .69764 L
.17698 .70143 L
.17182 .70614 L
.16755 .71156 L
.16428 .71746 L
.16205 .72359 L
.16088 .72968 L
.16071 .73546 L
.16146 .74068 L
.163 .74511 L
.16516 .74857 L
.16774 .7509 L
.17052 .75203 L
.17328 .75191 L
.1758 .75055 L
.17785 .74805 L
.17926 .74452 L
.17986 .74014 L
.17951 .73514 L
.17815 .72975 L
.17574 .72423 L
.17228 .71886 L
.16784 .7139 L
.16253 .70958 L
.1565 .70613 L
.14991 .70371 L
.14299 .70245 L
.13595 .70243 L
.12901 .70365 L
.1224 .70608 L
.11633 .70963 L
.11097 .71413 L
.10647 .7194 L
.10295 .72521 L
.10047 .73131 L
.09905 .73743 L
.09864 .74331 L
.09919 .74868 L
.10055 .75332 L
Mistroke
.10257 .75703 L
.10507 .75965 L
.10782 .76108 L
.11061 .76125 L
.1132 .76019 L
.11539 .75796 L
.11697 .75466 L
.11778 .75047 L
.11767 .7456 L
.11656 .74028 L
.1144 .73477 L
.11119 .72934 L
.10698 .72425 L
.10187 .71976 L
.09599 .71608 L
.08952 .7134 L
.08266 .71185 L
.07563 .71152 L
.06864 .71245 L
.06194 .7146 L
.05572 .71788 L
.05017 .72217 L
.04545 .72727 L
Mfstroke
gsave
.20513 .77707 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .31818 L
s
.22014 .2996 m
.16899 .27334 L
.16346 .30928 L
F
gsave
.20389 .25331 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .63636 m
.34599 .63322 L
.351 .63052 L
.35588 .62868 L
.3606 .62799 L
.36512 .62862 L
.36944 .63056 L
.37359 .63367 L
.37761 .63766 L
.38155 .64213 L
.3855 .64663 L
.3895 .65071 L
.39363 .65396 L
.39793 .65607 L
.40242 .65687 L
.40711 .65635 L
.41197 .65465 L
.41697 .65205 L
.42205 .64894 L
.42713 .64576 L
.43215 .64298 L
.43706 .64101 L
.44179 .64016 L
.44634 .6406 L
.45069 .64237 L
.45486 .64534 L
.45889 .64924 L
.46284 .65367 L
.46678 .65819 L
.47078 .66235 L
.47489 .66573 L
.47916 .668 L
.48363 .66898 L
.48829 .66864 L
.49313 .66708 L
.49812 .66458 L
.50318 .66151 L
.50827 .65831 L
.5133 .65545 L
.51823 .65335 L
.52299 .65233 L
.52756 .6526 L
.53193 .6542 L
.53613 .65702 L
.54017 .66081 L
.54414 .66519 L
.54807 .66973 L
.55206 .67396 L
.55615 .67747 L
.5604 .6799 L
Mistroke
.56484 .68106 L
.56948 .68089 L
.5743 .67948 L
.57926 .67708 L
.58432 .67406 L
.58941 .67086 L
.59445 .66793 L
.59939 .6657 L
.60418 .66453 L
.60878 .66462 L
.61318 .66604 L
.61739 .66871 L
.62146 .67239 L
.62543 .67672 L
.62937 .68126 L
.63334 .68556 L
.63741 .68918 L
.64164 .69177 L
.64605 .69311 L
.65067 .69311 L
.65546 .69186 L
.66041 .68957 L
.66546 .68661 L
.67055 .6834 L
.6756 .68041 L
.68056 .67807 L
.68537 .67674 L
.68999 .67665 L
.69442 .6779 L
.69866 .68041 L
.70274 .68397 L
.70672 .68824 L
.71066 .69278 L
.71462 .69714 L
.71868 .70087 L
.72289 .70362 L
.72727 .70513 L
.73186 .70531 L
.73663 .70421 L
.74156 .70204 L
.7466 .69914 L
.75169 .69594 L
.75675 .6929 L
.76172 .69044 L
.76656 .68896 L
.77121 .6887 L
.77566 .68977 L
.77992 .69212 L
.78402 .69556 L
.78801 .69976 L
Mistroke
.79195 .70429 L
.79591 .70869 L
.79995 .71253 L
.80414 .71543 L
.8085 .71711 L
.81306 .71747 L
.81781 .71653 L
.82272 .71449 L
.82775 .71167 L
.83283 .70848 L
.8379 .70538 L
.84289 .70283 L
.84774 .7012 L
.85242 .70076 L
.8569 .70165 L
.86118 .70384 L
.8653 .70716 L
.8693 .71127 L
.87325 .71578 L
.8772 .72023 L
.88123 .72417 L
.88539 .72721 L
.88973 .72907 L
.89426 .7296 L
.89899 .72883 L
.90388 .72692 L
.90889 .72417 L
.91397 .72101 L
.91905 .71788 L
.92405 .71522 L
.92892 .71345 L
.93362 .71284 L
.93813 .71355 L
.94244 .71558 L
.94658 .71876 L
.9506 .72279 L
.95455 .72727 L
Mfstroke
gsave
.79954 .7456 -64.625 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .31818 L
s
.83377 .29131 m
.78263 .31757 L
.7771 .28163 L
F
gsave
.79611 .25331 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .63636 m
.34091 .63636 L
s
.52727 .63636 m
.47273 .65455 L
.47273 .61818 L
F
gsave
.5 .5934 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .63636 m
.65909 .31818 L
s
.65909 .45 m
.64091 .50455 L
.67727 .50455 L
F
gsave
.70205 .47727 -61 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .31818 m
.34091 .63636 L
s
.34091 .50455 m
.35909 .45 L
.32273 .45 L
F
gsave
.29795 .47727 -68.4375 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .31818 m
.65454 .32265 L
.65 .32639 L
.64545 .32882 L
.64091 .32953 L
.63636 .32842 L
.63182 .32565 L
.62727 .32169 L
.62273 .31716 L
.61818 .31279 L
.61364 .30929 L
.60909 .30722 L
.60455 .30691 L
.6 .30842 L
.59546 .31149 L
.59091 .31564 L
.58636 .3202 L
.58182 .32443 L
.57727 .32765 L
.57273 .32935 L
.56818 .32925 L
.56364 .32736 L
.55909 .324 L
.55455 .31969 L
.55 .31515 L
.54545 .31108 L
.54091 .30816 L
.53636 .30685 L
.53182 .30736 L
.52727 .30961 L
.52273 .31324 L
.51818 .31766 L
.51364 .32216 L
.50909 .32602 L
.50455 .32862 L
.5 .32953 L
.49545 .32862 L
.49091 .32602 L
.48636 .32216 L
.48182 .31766 L
.47727 .31324 L
.47273 .30961 L
.46818 .30736 L
.46364 .30685 L
.45909 .30816 L
.45455 .31108 L
.45 .31515 L
.44545 .31969 L
.44091 .324 L
.43636 .32736 L
Mistroke
.43182 .32925 L
.42727 .32935 L
.42273 .32765 L
.41818 .32443 L
.41364 .3202 L
.40909 .31564 L
.40454 .31149 L
.4 .30842 L
.39545 .30691 L
.39091 .30722 L
.38636 .30929 L
.38182 .31279 L
.37727 .31716 L
.37273 .32169 L
.36818 .32565 L
.36364 .32842 L
.35909 .32953 L
.35455 .32882 L
.35 .32639 L
.34546 .32265 L
.34091 .31818 L
Mfstroke
gsave
.5 .27522 -64.625 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.65909 .63636 Mdot
.34091 .31818 Mdot
.34091 .63636 Mdot
.65909 .31818 Mdot
gsave
.5 .02273 -74.75 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T3) show
70.000 11.250 moveto
(C1) show
77.562 11.250 moveto
(N16) show
86.500 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.2 0.2 0.4 0.4 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.65909 .63636 m
.6531 .63284 L
.64655 .63035 L
.63964 .62901 L
.6326 .6289 L
.62565 .63004 L
.61901 .63239 L
.61289 .63586 L
.60748 .6403 L
.60292 .64553 L
.59933 .65131 L
.59678 .6574 L
.59528 .66352 L
.59481 .66942 L
.59529 .67484 L
.5966 .67953 L
.59859 .68331 L
.60105 .68601 L
.6038 .68751 L
.60659 .68778 L
.6092 .6868 L
.61143 .68463 L
.61305 .6814 L
.61392 .67727 L
.61387 .67243 L
.61283 .66713 L
.61074 .66162 L
.60761 .65618 L
.60346 .65106 L
.59841 .64652 L
.59258 .64278 L
.58615 .64002 L
.57931 .63839 L
.57228 .63798 L
.56528 .63882 L
.55855 .64089 L
.55229 .6441 L
.54669 .64832 L
.54191 .65338 L
.53808 .65905 L
.53528 .66508 L
.53352 .67123 L
.53281 .67721 L
.53307 .68276 L
.53419 .68765 L
.53603 .69166 L
.5384 .69463 L
.5411 .69644 L
.5439 .697 L
.54658 .69632 L
Mistroke
.54891 .69443 L
.5507 .69145 L
.55176 .68751 L
.55195 .68283 L
.55116 .67761 L
.54932 .67213 L
.54643 .66665 L
.54253 .66143 L
.53768 .65673 L
.53203 .65277 L
.52572 .64976 L
.51896 .64785 L
.51196 .64714 L
.50493 .64768 L
.49812 .64946 L
.49172 .6524 L
.48595 .65639 L
.48096 .66127 L
.47689 .66681 L
.47383 .67278 L
.47183 .67892 L
.47087 .68497 L
.4709 .69065 L
.47183 .69572 L
.47351 .69996 L
.47577 .7032 L
.47841 .70529 L
.4812 .70616 L
.48393 .70577 L
.48637 .70417 L
.48831 .70144 L
.48956 .69772 L
.48997 .69319 L
.48942 .68809 L
.48784 .68265 L
.48521 .67714 L
.48154 .67183 L
.47691 .66698 L
.47144 .66283 L
.46527 .65957 L
.4586 .65739 L
.45164 .65638 L
.4446 .65662 L
.43771 .6581 L
.43119 .66077 L
.42525 .66452 L
.42006 .6692 L
.41576 .6746 L
.41246 .68049 L
.41019 .68662 L
Mistroke
.40898 .69271 L
.40878 .6985 L
.40951 .70374 L
.41102 .7082 L
.41316 .7117 L
.41572 .71408 L
.4185 .71524 L
.42127 .71516 L
.4238 .71385 L
.42587 .71138 L
.42731 .70788 L
.42793 .70353 L
.42762 .69854 L
.4263 .69316 L
.42392 .68764 L
.42049 .68226 L
.41609 .67728 L
.41081 .67294 L
.40479 .66945 L
.39823 .667 L
.39131 .6657 L
.38427 .66563 L
.37732 .66681 L
.3707 .6692 L
.3646 .67271 L
.35922 .67718 L
.35469 .68243 L
.35114 .68822 L
.34862 .69432 L
.34716 .70044 L
.34672 .70633 L
.34723 .71173 L
.34857 .71639 L
.35057 .72014 L
.35306 .72279 L
.3558 .72426 L
.35859 .72448 L
.3612 .72346 L
.3634 .72126 L
.36501 .718 L
.36584 .71384 L
.36577 .70898 L
.36469 .70367 L
.36257 .69816 L
.35939 .69272 L
.35522 .68762 L
.35013 .6831 L
.34428 .67939 L
.33783 .67667 L
.33098 .67509 L
Mistroke
.32395 .67472 L
.31696 .6756 L
.31024 .67771 L
.304 .68096 L
.29842 .68521 L
.29368 .69029 L
.28988 .69598 L
.28711 .70202 L
.2854 .70816 L
.28472 .71413 L
.28501 .71967 L
.28616 .72453 L
.28802 .72852 L
.2904 .73145 L
.29311 .73321 L
.29591 .73373 L
.29858 .73301 L
.3009 .73109 L
.30267 .72807 L
.3037 .7241 L
.30385 .7194 L
.30303 .71417 L
.30116 .70869 L
.29823 .70321 L
.29429 .698 L
.28942 .69332 L
.28374 .6894 L
.27741 .68642 L
.27064 .68455 L
.26363 .68389 L
.25661 .68447 L
.2498 .68628 L
.24343 .68927 L
.23768 .69329 L
.23272 .69819 L
.22869 .70375 L
.22566 .70974 L
.22369 .71588 L
.22277 .72192 L
.22283 .72758 L
.22379 .73263 L
.22549 .73684 L
.22777 .74004 L
.23042 .74209 L
.23321 .74292 L
.23594 .74249 L
.23836 .74085 L
.24028 .73808 L
.2415 .73433 L
.24188 .72978 L
Mistroke
.2413 .72466 L
.23968 .71922 L
.23701 .71371 L
.23331 .70842 L
.22865 .70359 L
.22315 .69946 L
.21697 .69624 L
.21028 .69409 L
.20331 .69313 L
.19627 .69341 L
.1894 .69493 L
.1829 .69764 L
.17698 .70143 L
.17182 .70614 L
.16755 .71156 L
.16428 .71746 L
.16205 .72359 L
.16088 .72968 L
.16071 .73546 L
.16146 .74068 L
.163 .74511 L
.16516 .74857 L
.16774 .7509 L
.17052 .75203 L
.17328 .75191 L
.1758 .75055 L
.17785 .74805 L
.17926 .74452 L
.17986 .74014 L
.17951 .73514 L
.17815 .72975 L
.17574 .72423 L
.17228 .71886 L
.16784 .7139 L
.16253 .70958 L
.1565 .70613 L
.14991 .70371 L
.14299 .70245 L
.13595 .70243 L
.12901 .70365 L
.1224 .70608 L
.11633 .70963 L
.11097 .71413 L
.10647 .7194 L
.10295 .72521 L
.10047 .73131 L
.09905 .73743 L
.09864 .74331 L
.09919 .74868 L
.10055 .75332 L
Mistroke
.10257 .75703 L
.10507 .75965 L
.10782 .76108 L
.11061 .76125 L
.1132 .76019 L
.11539 .75796 L
.11697 .75466 L
.11778 .75047 L
.11767 .7456 L
.11656 .74028 L
.1144 .73477 L
.11119 .72934 L
.10698 .72425 L
.10187 .71976 L
.09599 .71608 L
.08952 .7134 L
.08266 .71185 L
.07563 .71152 L
.06864 .71245 L
.06194 .7146 L
.05572 .71788 L
.05017 .72217 L
.04545 .72727 L
Mfstroke
gsave
.20513 .77707 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .31818 L
s
.22014 .2996 m
.16899 .27334 L
.16346 .30928 L
F
gsave
.20389 .25331 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .63636 m
.34599 .63322 L
.351 .63052 L
.35588 .62868 L
.3606 .62799 L
.36512 .62862 L
.36944 .63056 L
.37359 .63367 L
.37761 .63766 L
.38155 .64213 L
.3855 .64663 L
.3895 .65071 L
.39363 .65396 L
.39793 .65607 L
.40242 .65687 L
.40711 .65635 L
.41197 .65465 L
.41697 .65205 L
.42205 .64894 L
.42713 .64576 L
.43215 .64298 L
.43706 .64101 L
.44179 .64016 L
.44634 .6406 L
.45069 .64237 L
.45486 .64534 L
.45889 .64924 L
.46284 .65367 L
.46678 .65819 L
.47078 .66235 L
.47489 .66573 L
.47916 .668 L
.48363 .66898 L
.48829 .66864 L
.49313 .66708 L
.49812 .66458 L
.50318 .66151 L
.50827 .65831 L
.5133 .65545 L
.51823 .65335 L
.52299 .65233 L
.52756 .6526 L
.53193 .6542 L
.53613 .65702 L
.54017 .66081 L
.54414 .66519 L
.54807 .66973 L
.55206 .67396 L
.55615 .67747 L
.5604 .6799 L
Mistroke
.56484 .68106 L
.56948 .68089 L
.5743 .67948 L
.57926 .67708 L
.58432 .67406 L
.58941 .67086 L
.59445 .66793 L
.59939 .6657 L
.60418 .66453 L
.60878 .66462 L
.61318 .66604 L
.61739 .66871 L
.62146 .67239 L
.62543 .67672 L
.62937 .68126 L
.63334 .68556 L
.63741 .68918 L
.64164 .69177 L
.64605 .69311 L
.65067 .69311 L
.65546 .69186 L
.66041 .68957 L
.66546 .68661 L
.67055 .6834 L
.6756 .68041 L
.68056 .67807 L
.68537 .67674 L
.68999 .67665 L
.69442 .6779 L
.69866 .68041 L
.70274 .68397 L
.70672 .68824 L
.71066 .69278 L
.71462 .69714 L
.71868 .70087 L
.72289 .70362 L
.72727 .70513 L
.73186 .70531 L
.73663 .70421 L
.74156 .70204 L
.7466 .69914 L
.75169 .69594 L
.75675 .6929 L
.76172 .69044 L
.76656 .68896 L
.77121 .6887 L
.77566 .68977 L
.77992 .69212 L
.78402 .69556 L
.78801 .69976 L
Mistroke
.79195 .70429 L
.79591 .70869 L
.79995 .71253 L
.80414 .71543 L
.8085 .71711 L
.81306 .71747 L
.81781 .71653 L
.82272 .71449 L
.82775 .71167 L
.83283 .70848 L
.8379 .70538 L
.84289 .70283 L
.84774 .7012 L
.85242 .70076 L
.8569 .70165 L
.86118 .70384 L
.8653 .70716 L
.8693 .71127 L
.87325 .71578 L
.8772 .72023 L
.88123 .72417 L
.88539 .72721 L
.88973 .72907 L
.89426 .7296 L
.89899 .72883 L
.90388 .72692 L
.90889 .72417 L
.91397 .72101 L
.91905 .71788 L
.92405 .71522 L
.92892 .71345 L
.93362 .71284 L
.93813 .71355 L
.94244 .71558 L
.94658 .71876 L
.9506 .72279 L
.95455 .72727 L
Mfstroke
gsave
.79954 .7456 -64.625 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .31818 L
s
.83377 .29131 m
.78263 .31757 L
.7771 .28163 L
F
gsave
.79611 .25331 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .63636 m
.34091 .63636 L
s
.52727 .63636 m
.47273 .65455 L
.47273 .61818 L
F
gsave
.5 .5934 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .63636 m
.65909 .31818 L
s
.65909 .45 m
.64091 .50455 L
.67727 .50455 L
F
gsave
.70205 .47727 -61 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .31818 m
.34091 .63636 L
s
.34091 .50455 m
.35909 .45 L
.32273 .45 L
F
gsave
.29795 .47727 -68.4375 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .31818 m
.65454 .32265 L
.65 .32639 L
.64545 .32882 L
.64091 .32953 L
.63636 .32842 L
.63182 .32565 L
.62727 .32169 L
.62273 .31716 L
.61818 .31279 L
.61364 .30929 L
.60909 .30722 L
.60455 .30691 L
.6 .30842 L
.59546 .31149 L
.59091 .31564 L
.58636 .3202 L
.58182 .32443 L
.57727 .32765 L
.57273 .32935 L
.56818 .32925 L
.56364 .32736 L
.55909 .324 L
.55455 .31969 L
.55 .31515 L
.54545 .31108 L
.54091 .30816 L
.53636 .30685 L
.53182 .30736 L
.52727 .30961 L
.52273 .31324 L
.51818 .31766 L
.51364 .32216 L
.50909 .32602 L
.50455 .32862 L
.5 .32953 L
.49545 .32862 L
.49091 .32602 L
.48636 .32216 L
.48182 .31766 L
.47727 .31324 L
.47273 .30961 L
.46818 .30736 L
.46364 .30685 L
.45909 .30816 L
.45455 .31108 L
.45 .31515 L
.44545 .31969 L
.44091 .324 L
.43636 .32736 L
Mistroke
.43182 .32925 L
.42727 .32935 L
.42273 .32765 L
.41818 .32443 L
.41364 .3202 L
.40909 .31564 L
.40454 .31149 L
.4 .30842 L
.39545 .30691 L
.39091 .30722 L
.38636 .30929 L
.38182 .31279 L
.37727 .31716 L
.37273 .32169 L
.36818 .32565 L
.36364 .32842 L
.35909 .32953 L
.35455 .32882 L
.35 .32639 L
.34546 .32265 L
.34091 .31818 L
Mfstroke
gsave
.5 .27522 -64.875 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(Z) show
66.750 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.65909 .63636 Mdot
.34091 .31818 Mdot
.34091 .63636 Mdot
.65909 .31818 Mdot
gsave
.5 .02273 -74.75 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T3) show
70.000 11.250 moveto
(C2) show
77.562 11.250 moveto
(N17) show
86.500 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.4 0.2 0.6 0.4 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.65909 .63636 m
.6531 .63284 L
.64655 .63035 L
.63964 .62901 L
.6326 .6289 L
.62565 .63004 L
.61901 .63239 L
.61289 .63586 L
.60748 .6403 L
.60292 .64553 L
.59933 .65131 L
.59678 .6574 L
.59528 .66352 L
.59481 .66942 L
.59529 .67484 L
.5966 .67953 L
.59859 .68331 L
.60105 .68601 L
.6038 .68751 L
.60659 .68778 L
.6092 .6868 L
.61143 .68463 L
.61305 .6814 L
.61392 .67727 L
.61387 .67243 L
.61283 .66713 L
.61074 .66162 L
.60761 .65618 L
.60346 .65106 L
.59841 .64652 L
.59258 .64278 L
.58615 .64002 L
.57931 .63839 L
.57228 .63798 L
.56528 .63882 L
.55855 .64089 L
.55229 .6441 L
.54669 .64832 L
.54191 .65338 L
.53808 .65905 L
.53528 .66508 L
.53352 .67123 L
.53281 .67721 L
.53307 .68276 L
.53419 .68765 L
.53603 .69166 L
.5384 .69463 L
.5411 .69644 L
.5439 .697 L
.54658 .69632 L
Mistroke
.54891 .69443 L
.5507 .69145 L
.55176 .68751 L
.55195 .68283 L
.55116 .67761 L
.54932 .67213 L
.54643 .66665 L
.54253 .66143 L
.53768 .65673 L
.53203 .65277 L
.52572 .64976 L
.51896 .64785 L
.51196 .64714 L
.50493 .64768 L
.49812 .64946 L
.49172 .6524 L
.48595 .65639 L
.48096 .66127 L
.47689 .66681 L
.47383 .67278 L
.47183 .67892 L
.47087 .68497 L
.4709 .69065 L
.47183 .69572 L
.47351 .69996 L
.47577 .7032 L
.47841 .70529 L
.4812 .70616 L
.48393 .70577 L
.48637 .70417 L
.48831 .70144 L
.48956 .69772 L
.48997 .69319 L
.48942 .68809 L
.48784 .68265 L
.48521 .67714 L
.48154 .67183 L
.47691 .66698 L
.47144 .66283 L
.46527 .65957 L
.4586 .65739 L
.45164 .65638 L
.4446 .65662 L
.43771 .6581 L
.43119 .66077 L
.42525 .66452 L
.42006 .6692 L
.41576 .6746 L
.41246 .68049 L
.41019 .68662 L
Mistroke
.40898 .69271 L
.40878 .6985 L
.40951 .70374 L
.41102 .7082 L
.41316 .7117 L
.41572 .71408 L
.4185 .71524 L
.42127 .71516 L
.4238 .71385 L
.42587 .71138 L
.42731 .70788 L
.42793 .70353 L
.42762 .69854 L
.4263 .69316 L
.42392 .68764 L
.42049 .68226 L
.41609 .67728 L
.41081 .67294 L
.40479 .66945 L
.39823 .667 L
.39131 .6657 L
.38427 .66563 L
.37732 .66681 L
.3707 .6692 L
.3646 .67271 L
.35922 .67718 L
.35469 .68243 L
.35114 .68822 L
.34862 .69432 L
.34716 .70044 L
.34672 .70633 L
.34723 .71173 L
.34857 .71639 L
.35057 .72014 L
.35306 .72279 L
.3558 .72426 L
.35859 .72448 L
.3612 .72346 L
.3634 .72126 L
.36501 .718 L
.36584 .71384 L
.36577 .70898 L
.36469 .70367 L
.36257 .69816 L
.35939 .69272 L
.35522 .68762 L
.35013 .6831 L
.34428 .67939 L
.33783 .67667 L
.33098 .67509 L
Mistroke
.32395 .67472 L
.31696 .6756 L
.31024 .67771 L
.304 .68096 L
.29842 .68521 L
.29368 .69029 L
.28988 .69598 L
.28711 .70202 L
.2854 .70816 L
.28472 .71413 L
.28501 .71967 L
.28616 .72453 L
.28802 .72852 L
.2904 .73145 L
.29311 .73321 L
.29591 .73373 L
.29858 .73301 L
.3009 .73109 L
.30267 .72807 L
.3037 .7241 L
.30385 .7194 L
.30303 .71417 L
.30116 .70869 L
.29823 .70321 L
.29429 .698 L
.28942 .69332 L
.28374 .6894 L
.27741 .68642 L
.27064 .68455 L
.26363 .68389 L
.25661 .68447 L
.2498 .68628 L
.24343 .68927 L
.23768 .69329 L
.23272 .69819 L
.22869 .70375 L
.22566 .70974 L
.22369 .71588 L
.22277 .72192 L
.22283 .72758 L
.22379 .73263 L
.22549 .73684 L
.22777 .74004 L
.23042 .74209 L
.23321 .74292 L
.23594 .74249 L
.23836 .74085 L
.24028 .73808 L
.2415 .73433 L
.24188 .72978 L
Mistroke
.2413 .72466 L
.23968 .71922 L
.23701 .71371 L
.23331 .70842 L
.22865 .70359 L
.22315 .69946 L
.21697 .69624 L
.21028 .69409 L
.20331 .69313 L
.19627 .69341 L
.1894 .69493 L
.1829 .69764 L
.17698 .70143 L
.17182 .70614 L
.16755 .71156 L
.16428 .71746 L
.16205 .72359 L
.16088 .72968 L
.16071 .73546 L
.16146 .74068 L
.163 .74511 L
.16516 .74857 L
.16774 .7509 L
.17052 .75203 L
.17328 .75191 L
.1758 .75055 L
.17785 .74805 L
.17926 .74452 L
.17986 .74014 L
.17951 .73514 L
.17815 .72975 L
.17574 .72423 L
.17228 .71886 L
.16784 .7139 L
.16253 .70958 L
.1565 .70613 L
.14991 .70371 L
.14299 .70245 L
.13595 .70243 L
.12901 .70365 L
.1224 .70608 L
.11633 .70963 L
.11097 .71413 L
.10647 .7194 L
.10295 .72521 L
.10047 .73131 L
.09905 .73743 L
.09864 .74331 L
.09919 .74868 L
.10055 .75332 L
Mistroke
.10257 .75703 L
.10507 .75965 L
.10782 .76108 L
.11061 .76125 L
.1132 .76019 L
.11539 .75796 L
.11697 .75466 L
.11778 .75047 L
.11767 .7456 L
.11656 .74028 L
.1144 .73477 L
.11119 .72934 L
.10698 .72425 L
.10187 .71976 L
.09599 .71608 L
.08952 .7134 L
.08266 .71185 L
.07563 .71152 L
.06864 .71245 L
.06194 .7146 L
.05572 .71788 L
.05017 .72217 L
.04545 .72727 L
Mfstroke
gsave
.20513 .77707 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .31818 L
s
.22014 .2996 m
.16899 .27334 L
.16346 .30928 L
F
gsave
.20389 .25331 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .63636 m
.34599 .63322 L
.351 .63052 L
.35588 .62868 L
.3606 .62799 L
.36512 .62862 L
.36944 .63056 L
.37359 .63367 L
.37761 .63766 L
.38155 .64213 L
.3855 .64663 L
.3895 .65071 L
.39363 .65396 L
.39793 .65607 L
.40242 .65687 L
.40711 .65635 L
.41197 .65465 L
.41697 .65205 L
.42205 .64894 L
.42713 .64576 L
.43215 .64298 L
.43706 .64101 L
.44179 .64016 L
.44634 .6406 L
.45069 .64237 L
.45486 .64534 L
.45889 .64924 L
.46284 .65367 L
.46678 .65819 L
.47078 .66235 L
.47489 .66573 L
.47916 .668 L
.48363 .66898 L
.48829 .66864 L
.49313 .66708 L
.49812 .66458 L
.50318 .66151 L
.50827 .65831 L
.5133 .65545 L
.51823 .65335 L
.52299 .65233 L
.52756 .6526 L
.53193 .6542 L
.53613 .65702 L
.54017 .66081 L
.54414 .66519 L
.54807 .66973 L
.55206 .67396 L
.55615 .67747 L
.5604 .6799 L
Mistroke
.56484 .68106 L
.56948 .68089 L
.5743 .67948 L
.57926 .67708 L
.58432 .67406 L
.58941 .67086 L
.59445 .66793 L
.59939 .6657 L
.60418 .66453 L
.60878 .66462 L
.61318 .66604 L
.61739 .66871 L
.62146 .67239 L
.62543 .67672 L
.62937 .68126 L
.63334 .68556 L
.63741 .68918 L
.64164 .69177 L
.64605 .69311 L
.65067 .69311 L
.65546 .69186 L
.66041 .68957 L
.66546 .68661 L
.67055 .6834 L
.6756 .68041 L
.68056 .67807 L
.68537 .67674 L
.68999 .67665 L
.69442 .6779 L
.69866 .68041 L
.70274 .68397 L
.70672 .68824 L
.71066 .69278 L
.71462 .69714 L
.71868 .70087 L
.72289 .70362 L
.72727 .70513 L
.73186 .70531 L
.73663 .70421 L
.74156 .70204 L
.7466 .69914 L
.75169 .69594 L
.75675 .6929 L
.76172 .69044 L
.76656 .68896 L
.77121 .6887 L
.77566 .68977 L
.77992 .69212 L
.78402 .69556 L
.78801 .69976 L
Mistroke
.79195 .70429 L
.79591 .70869 L
.79995 .71253 L
.80414 .71543 L
.8085 .71711 L
.81306 .71747 L
.81781 .71653 L
.82272 .71449 L
.82775 .71167 L
.83283 .70848 L
.8379 .70538 L
.84289 .70283 L
.84774 .7012 L
.85242 .70076 L
.8569 .70165 L
.86118 .70384 L
.8653 .70716 L
.8693 .71127 L
.87325 .71578 L
.8772 .72023 L
.88123 .72417 L
.88539 .72721 L
.88973 .72907 L
.89426 .7296 L
.89899 .72883 L
.90388 .72692 L
.90889 .72417 L
.91397 .72101 L
.91905 .71788 L
.92405 .71522 L
.92892 .71345 L
.93362 .71284 L
.93813 .71355 L
.94244 .71558 L
.94658 .71876 L
.9506 .72279 L
.95455 .72727 L
Mfstroke
gsave
.79954 .7456 -64.625 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .31818 L
s
.83377 .29131 m
.78263 .31757 L
.7771 .28163 L
F
gsave
.79611 .25331 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .63636 m
.34091 .63636 L
s
.52727 .63636 m
.47273 .65455 L
.47273 .61818 L
F
gsave
.5 .5934 -65.8125 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
.65909 .63636 m
.65909 .31818 L
s
.65909 .45 m
.64091 .50455 L
.67727 .50455 L
F
gsave
.70205 .47727 -61 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
.34091 .31818 m
.34091 .63636 L
s
.34091 .50455 m
.35909 .45 L
.32273 .45 L
F
gsave
.29795 .47727 -70.625 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(d) show
66.438 12.500 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 5.000 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(i) show
1.000 setlinewidth
grestore
.65909 .31818 m
.65454 .32265 L
.65 .32639 L
.64545 .32882 L
.64091 .32953 L
.63636 .32842 L
.63182 .32565 L
.62727 .32169 L
.62273 .31716 L
.61818 .31279 L
.61364 .30929 L
.60909 .30722 L
.60455 .30691 L
.6 .30842 L
.59546 .31149 L
.59091 .31564 L
.58636 .3202 L
.58182 .32443 L
.57727 .32765 L
.57273 .32935 L
.56818 .32925 L
.56364 .32736 L
.55909 .324 L
.55455 .31969 L
.55 .31515 L
.54545 .31108 L
.54091 .30816 L
.53636 .30685 L
.53182 .30736 L
.52727 .30961 L
.52273 .31324 L
.51818 .31766 L
.51364 .32216 L
.50909 .32602 L
.50455 .32862 L
.5 .32953 L
.49545 .32862 L
.49091 .32602 L
.48636 .32216 L
.48182 .31766 L
.47727 .31324 L
.47273 .30961 L
.46818 .30736 L
.46364 .30685 L
.45909 .30816 L
.45455 .31108 L
.45 .31515 L
.44545 .31969 L
.44091 .324 L
.43636 .32736 L
Mistroke
.43182 .32925 L
.42727 .32935 L
.42273 .32765 L
.41818 .32443 L
.41364 .3202 L
.40909 .31564 L
.40454 .31149 L
.4 .30842 L
.39545 .30691 L
.39091 .30722 L
.38636 .30929 L
.38182 .31279 L
.37727 .31716 L
.37273 .32169 L
.36818 .32565 L
.36364 .32842 L
.35909 .32953 L
.35455 .32882 L
.35 .32639 L
.34546 .32265 L
.34091 .31818 L
Mfstroke
.47273 .31818 m
.52727 .3 L
.52727 .33636 L
F
gsave
.5 .27522 -65.9062 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(W) show
68.812 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.65909 .63636 Mdot
.34091 .31818 Mdot
.34091 .63636 Mdot
.65909 .31818 Mdot
gsave
.5 .02273 -74.75 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T3) show
70.000 11.250 moveto
(C3) show
77.562 11.250 moveto
(N18) show
86.500 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
% Start of sub-graphic
p
0.6 0.2 0.8 0.4 MathSubStart
%% Graphics
%%IncludeResource: font Courier
%%IncludeFont: Courier
/Courier findfont 10 scalefont setfont
% Scaling calculations
0.0454545 0.0454545 0.0454545 0.0454545 [
[ 0 0 0 0 ]
[ 1 1 0 0 ]
] MathScale
% Start of Graphics
1 setlinecap
1 setlinejoin
newpath
0 0 m
1 0 L
1 1 L
0 1 L
closepath
clip
newpath
0 g
.005 w
[ ] 0 setdash
.65909 .63636 m
.6531 .63284 L
.64655 .63035 L
.63964 .62901 L
.6326 .6289 L
.62565 .63004 L
.61901 .63239 L
.61289 .63586 L
.60748 .6403 L
.60292 .64553 L
.59933 .65131 L
.59678 .6574 L
.59528 .66352 L
.59481 .66942 L
.59529 .67484 L
.5966 .67953 L
.59859 .68331 L
.60105 .68601 L
.6038 .68751 L
.60659 .68778 L
.6092 .6868 L
.61143 .68463 L
.61305 .6814 L
.61392 .67727 L
.61387 .67243 L
.61283 .66713 L
.61074 .66162 L
.60761 .65618 L
.60346 .65106 L
.59841 .64652 L
.59258 .64278 L
.58615 .64002 L
.57931 .63839 L
.57228 .63798 L
.56528 .63882 L
.55855 .64089 L
.55229 .6441 L
.54669 .64832 L
.54191 .65338 L
.53808 .65905 L
.53528 .66508 L
.53352 .67123 L
.53281 .67721 L
.53307 .68276 L
.53419 .68765 L
.53603 .69166 L
.5384 .69463 L
.5411 .69644 L
.5439 .697 L
.54658 .69632 L
Mistroke
.54891 .69443 L
.5507 .69145 L
.55176 .68751 L
.55195 .68283 L
.55116 .67761 L
.54932 .67213 L
.54643 .66665 L
.54253 .66143 L
.53768 .65673 L
.53203 .65277 L
.52572 .64976 L
.51896 .64785 L
.51196 .64714 L
.50493 .64768 L
.49812 .64946 L
.49172 .6524 L
.48595 .65639 L
.48096 .66127 L
.47689 .66681 L
.47383 .67278 L
.47183 .67892 L
.47087 .68497 L
.4709 .69065 L
.47183 .69572 L
.47351 .69996 L
.47577 .7032 L
.47841 .70529 L
.4812 .70616 L
.48393 .70577 L
.48637 .70417 L
.48831 .70144 L
.48956 .69772 L
.48997 .69319 L
.48942 .68809 L
.48784 .68265 L
.48521 .67714 L
.48154 .67183 L
.47691 .66698 L
.47144 .66283 L
.46527 .65957 L
.4586 .65739 L
.45164 .65638 L
.4446 .65662 L
.43771 .6581 L
.43119 .66077 L
.42525 .66452 L
.42006 .6692 L
.41576 .6746 L
.41246 .68049 L
.41019 .68662 L
Mistroke
.40898 .69271 L
.40878 .6985 L
.40951 .70374 L
.41102 .7082 L
.41316 .7117 L
.41572 .71408 L
.4185 .71524 L
.42127 .71516 L
.4238 .71385 L
.42587 .71138 L
.42731 .70788 L
.42793 .70353 L
.42762 .69854 L
.4263 .69316 L
.42392 .68764 L
.42049 .68226 L
.41609 .67728 L
.41081 .67294 L
.40479 .66945 L
.39823 .667 L
.39131 .6657 L
.38427 .66563 L
.37732 .66681 L
.3707 .6692 L
.3646 .67271 L
.35922 .67718 L
.35469 .68243 L
.35114 .68822 L
.34862 .69432 L
.34716 .70044 L
.34672 .70633 L
.34723 .71173 L
.34857 .71639 L
.35057 .72014 L
.35306 .72279 L
.3558 .72426 L
.35859 .72448 L
.3612 .72346 L
.3634 .72126 L
.36501 .718 L
.36584 .71384 L
.36577 .70898 L
.36469 .70367 L
.36257 .69816 L
.35939 .69272 L
.35522 .68762 L
.35013 .6831 L
.34428 .67939 L
.33783 .67667 L
.33098 .67509 L
Mistroke
.32395 .67472 L
.31696 .6756 L
.31024 .67771 L
.304 .68096 L
.29842 .68521 L
.29368 .69029 L
.28988 .69598 L
.28711 .70202 L
.2854 .70816 L
.28472 .71413 L
.28501 .71967 L
.28616 .72453 L
.28802 .72852 L
.2904 .73145 L
.29311 .73321 L
.29591 .73373 L
.29858 .73301 L
.3009 .73109 L
.30267 .72807 L
.3037 .7241 L
.30385 .7194 L
.30303 .71417 L
.30116 .70869 L
.29823 .70321 L
.29429 .698 L
.28942 .69332 L
.28374 .6894 L
.27741 .68642 L
.27064 .68455 L
.26363 .68389 L
.25661 .68447 L
.2498 .68628 L
.24343 .68927 L
.23768 .69329 L
.23272 .69819 L
.22869 .70375 L
.22566 .70974 L
.22369 .71588 L
.22277 .72192 L
.22283 .72758 L
.22379 .73263 L
.22549 .73684 L
.22777 .74004 L
.23042 .74209 L
.23321 .74292 L
.23594 .74249 L
.23836 .74085 L
.24028 .73808 L
.2415 .73433 L
.24188 .72978 L
Mistroke
.2413 .72466 L
.23968 .71922 L
.23701 .71371 L
.23331 .70842 L
.22865 .70359 L
.22315 .69946 L
.21697 .69624 L
.21028 .69409 L
.20331 .69313 L
.19627 .69341 L
.1894 .69493 L
.1829 .69764 L
.17698 .70143 L
.17182 .70614 L
.16755 .71156 L
.16428 .71746 L
.16205 .72359 L
.16088 .72968 L
.16071 .73546 L
.16146 .74068 L
.163 .74511 L
.16516 .74857 L
.16774 .7509 L
.17052 .75203 L
.17328 .75191 L
.1758 .75055 L
.17785 .74805 L
.17926 .74452 L
.17986 .74014 L
.17951 .73514 L
.17815 .72975 L
.17574 .72423 L
.17228 .71886 L
.16784 .7139 L
.16253 .70958 L
.1565 .70613 L
.14991 .70371 L
.14299 .70245 L
.13595 .70243 L
.12901 .70365 L
.1224 .70608 L
.11633 .70963 L
.11097 .71413 L
.10647 .7194 L
.10295 .72521 L
.10047 .73131 L
.09905 .73743 L
.09864 .74331 L
.09919 .74868 L
.10055 .75332 L
Mistroke
.10257 .75703 L
.10507 .75965 L
.10782 .76108 L
.11061 .76125 L
.1132 .76019 L
.11539 .75796 L
.11697 .75466 L
.11778 .75047 L
.11767 .7456 L
.11656 .74028 L
.1144 .73477 L
.11119 .72934 L
.10698 .72425 L
.10187 .71976 L
.09599 .71608 L
.08952 .7134 L
.08266 .71185 L
.07563 .71152 L
.06864 .71245 L
.06194 .7146 L
.05572 .71788 L
.05017 .72217 L
.04545 .72727 L
Mfstroke
gsave
.20513 .77707 -64.7188 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04545 .27273 m
.34091 .31818 L
s
.22014 .2996 m
.16899 .27334 L
.16346 .30928 L
F
gsave
.20389 .25331 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .63636 m
.34599 .63322 L
.351 .63052 L
.35588 .62868 L
.3606 .62799 L
.36512 .62862 L
.36944 .63056 L
.37359 .63367 L
.37761 .63766 L
.38155 .64213 L
.3855 .64663 L
.3895 .65071 L
.39363 .65396 L
.39793 .65607 L
.40242 .65687 L
.40711 .65635 L
.41197 .65465 L
.41697 .65205 L
.42205 .64894 L
.42713 .64576 L
.43215 .64298 L
.43706 .64101 L
.44179 .64016 L
.44634 .6406 L
.45069 .64237 L
.45486 .64534 L
.45889 .64924 L
.46284 .65367 L
.46678 .65819 L
.47078 .66235 L
.47489 .66573 L
.47916 .668 L
.48363 .66898 L
.48829 .66864 L
.49313 .66708 L
.49812 .66458 L
.50318 .66151 L
.50827 .65831 L
.5133 .65545 L
.51823 .65335 L
.52299 .65233 L
.52756 .6526 L
.53193 .6542 L
.53613 .65702 L
.54017 .66081 L
.54414 .66519 L
.54807 .66973 L
.55206 .67396 L
.55615 .67747 L
.5604 .6799 L
Mistroke
.56484 .68106 L
.56948 .68089 L
.5743 .67948 L
.57926 .67708 L
.58432 .67406 L
.58941 .67086 L
.59445 .66793 L
.59939 .6657 L
.60418 .66453 L
.60878 .66462 L
.61318 .66604 L
.61739 .66871 L
.62146 .67239 L
.62543 .67672 L
.62937 .68126 L
.63334 .68556 L
.63741 .68918 L
.64164 .69177 L
.64605 .69311 L
.65067 .69311 L
.65546 .69186 L
.66041 .68957 L
.66546 .68661 L
.67055 .6834 L
.6756 .68041 L
.68056 .67807 L
.68537 .67674 L
.68999 .67665 L
.69442 .6779 L
.69866 .68041 L
.70274 .68397 L
.70672 .68824 L
.71066 .69278 L
.71462 .69714 L
.71868 .70087 L
.72289 .70362 L
.72727 .70513 L
.73186 .70531 L
.73663 .70421 L
.74156 .70204 L
.7466 .69914 L
.75169 .69594 L
.75675 .6929 L
.76172 .69044 L
.76656 .68896 L
.77121 .6887 L
.77566 .68977 L
.77992 .69212 L
.78402 .69556 L
.78801 .69976 L
Mistroke
.79195 .70429 L
.79591 .70869 L
.79995 .71253 L
.80414 .71543 L
.8085 .71711 L
.81306 .71747 L
.81781 .71653 L
.82272 .71449 L
.82775 .71167 L
.83283 .70848 L
.8379 .70538 L
.84289 .70283 L
.84774 .7012 L
.85242 .70076 L
.8569 .70165 L
.86118 .70384 L
.8653 .70716 L
.8693 .71127 L
.87325 .71578 L
.8772 .72023 L
.88123 .72417 L
.88539 .72721 L
.88973 .72907 L
.89426 .7296 L
.89899 .72883 L
.90388 .72692 L
.90889 .72417 L
.91397 .72101 L
.91905 .71788 L
.92405 .71522 L
.92892 .71345 L
.93362 .71284 L
.93813 .71355 L
.94244 .71558 L
.94658 .71876 L
.9506 .72279 L
.95455 .72727 L
Mfstroke
gsave
.79954 .7456 -64.625 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.250 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.95455 .27273 m
.65909 .31818 L
s
.83377 .29131 m
.78263 .31757 L
.7771 .28163 L
F
gsave
.79611 .25331 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .63636 m
.34091 .63636 L
s
.52727 .63636 m
.47273 .65455 L
.47273 .61818 L
F
gsave
.5 .5934 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .63636 m
.65909 .31818 L
s
.65909 .45 m
.64091 .50455 L
.67727 .50455 L
F
gsave
.70205 .47727 -61 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.34091 .31818 m
.34091 .63636 L
s
.34091 .50455 m
.35909 .45 L
.32273 .45 L
F
gsave
.29795 .47727 -68.4375 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.65909 .31818 m
.65342 .31341 L
.64691 .3098 L
.63981 .30756 L
.63242 .30681 L
.62503 .30761 L
.61794 .30989 L
.61146 .31354 L
.60581 .31834 L
.60122 .32404 L
.59783 .33029 L
.59571 .33677 L
.59487 .34309 L
.59525 .3489 L
.59671 .35388 L
.59905 .35774 L
.60204 .36027 L
.60538 .36133 L
.60878 .36085 L
.61194 .35886 L
.61455 .35547 L
.61637 .35088 L
.61717 .34535 L
.6168 .33917 L
.61517 .33271 L
.61225 .32633 L
.60809 .32039 L
.60282 .31521 L
.59663 .3111 L
.58974 .30829 L
.58243 .30693 L
.575 .30709 L
.56775 .30878 L
.56099 .3119 L
.55498 .31626 L
.54994 .32163 L
.54604 .3277 L
.5434 .33413 L
.54205 .34056 L
.54195 .34662 L
.54299 .35197 L
.545 .35632 L
.54775 .35941 L
.55099 .36108 L
.5544 .36122 L
.55769 .35984 L
.56056 .357 L
.56273 .35287 L
.56397 .34769 L
.56409 .34173 L
Mistroke
.56297 .33535 L
.56057 .32889 L
.55691 .32272 L
.55208 .3172 L
.54623 .31262 L
.53959 .30926 L
.53241 .30729 L
.525 .30684 L
.51764 .30791 L
.51065 .31047 L
.5043 .31435 L
.49884 .31934 L
.49447 .32517 L
.49131 .3315 L
.48943 .33797 L
.48883 .34422 L
.48942 .3499 L
.49106 .35469 L
.49355 .35832 L
.49662 .36058 L
.5 .36135 L
.50338 .36058 L
.50645 .35832 L
.50894 .35469 L
.51058 .3499 L
.51117 .34422 L
.51057 .33797 L
.50869 .3315 L
.50553 .32517 L
.50116 .31934 L
.4957 .31435 L
.48935 .31047 L
.48236 .30791 L
.475 .30684 L
.46759 .30729 L
.46041 .30926 L
.45377 .31262 L
.44792 .3172 L
.44309 .32272 L
.43943 .32889 L
.43703 .33535 L
.43591 .34173 L
.43603 .34769 L
.43727 .35287 L
.43944 .357 L
.44231 .35984 L
.4456 .36122 L
.44901 .36108 L
.45225 .35941 L
.455 .35632 L
Mistroke
.45701 .35197 L
.45805 .34662 L
.45795 .34056 L
.4566 .33413 L
.45396 .3277 L
.45006 .32163 L
.44502 .31626 L
.43901 .3119 L
.43225 .30878 L
.425 .30709 L
.41757 .30693 L
.41026 .30829 L
.40337 .3111 L
.39718 .31521 L
.39191 .32039 L
.38775 .32633 L
.38483 .33271 L
.3832 .33917 L
.38283 .34535 L
.38363 .35088 L
.38545 .35547 L
.38806 .35886 L
.39122 .36085 L
.39462 .36133 L
.39796 .36027 L
.40095 .35774 L
.40329 .35388 L
.40475 .3489 L
.40513 .34309 L
.40429 .33677 L
.40217 .33029 L
.39878 .32404 L
.39419 .31834 L
.38854 .31354 L
.38206 .30989 L
.37497 .30761 L
.36758 .30681 L
.36019 .30756 L
.35309 .3098 L
.34658 .31341 L
.34091 .31818 L
Mfstroke
gsave
.5 .27522 -64.7188 -13.8125 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.438 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 6.188 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
.04 w
.65909 .63636 Mdot
.34091 .31818 Mdot
.34091 .63636 Mdot
.65909 .31818 Mdot
gsave
.5 .02273 -74.75 -4 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(T3) show
70.000 11.250 moveto
(C4) show
77.562 11.250 moveto
(N19) show
86.500 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 4.938 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
MathSubEnd
P
% End of sub-graphic
0 g
gsave
.41818 1.036 -65.0625 -8.9375 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.875 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 7.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 7.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
67.125 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 7.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.45909 1.036 -65.0625 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 7.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 7.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
67.125 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 7.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.5 1.036 -66.0312 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 7.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 7.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
63.000 11.250 moveto
(\\256) show
69.062 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 7.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.54091 1.036 -64.9688 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
/MISOfy
{
/newfontname exch def
/oldfontname exch def
oldfontname findfont
dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def
currentdict
end
newfontname exch definefont pop
} def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
%%BeginResource: font Helvetica-MISO
%%BeginFont: Helvetica-MISO
/Helvetica /Helvetica-MISO MISOfy
%%EndFont
%%EndResource
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 7.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Mathematica1
%%IncludeFont: Mathematica1
/Mathematica1 findfont 7.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(g) show
66.938 11.250 moveto
%%IncludeResource: font Helvetica-MISO
%%IncludeFont: Helvetica-MISO
/Helvetica-MISO findfont 7.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
gsave
.58182 1.036 -65.0625 -8.90625 Mabsadd m
1 1 Mabs scale
currentpoint translate
0 17.8125 translate 1 -1 scale
/g { setgray} bind def
/k { setcmykcolor} bind def
/p { gsave} bind def
/r { setrgbcolor} bind def
/w { setlinewidth} bind def
/C { curveto} bind def
/F { fill} bind def
/L { lineto} bind def
/rL { rlineto} bind def
/P { grestore} bind def
/s { stroke} bind def
/S { show} bind def
/N {currentpoint 3 -1 roll show moveto} bind def
/Msf { findfont exch scalefont [1 0 0 -1 0 0 ] makefont setfont} bind def
/m { moveto} bind def
/Mr { rmoveto} bind def
/Mx {currentpoint exch pop moveto} bind def
/My {currentpoint pop exch moveto} bind def
/X {0 rmoveto} bind def
/Y {0 exch rmoveto} bind def
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 7.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
63.000 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 7.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
(u) show
67.125 11.250 moveto
%%IncludeResource: font Helvetica
%%IncludeFont: Helvetica
/Helvetica findfont 7.438 scalefont
[1 0 0 -1 0 0 ] makefont setfont
0.000 0.000 0.000 setrgbcolor
0.000 0.000 rmoveto
1.000 setlinewidth
grestore
% End of Graphics
MathPictureEnd
\
\>"], "Graphics",
ImageSize->{279.562, 296.312},
ImageMargins->{{43, 0}, {0, 0}},
ImageRegion->{{0, 1}, {0, 1}},
ImageCache->GraphicsData["CompressedBitmap", "\<\
eJztXVuPHMd1bu3MLHeXXPEmUiJFctakJJK6i6QoEkJkS4kswJIiKQ6C5CFA
BNmIHcQXOMpDAvg35CFAgLwlcPKU5NVPAfwP8jfyMzbsqto63ae/7/Sp7p7Z
kbICxKmtOveqrq7r159++fVPfvyzL7/+6VdfHnz0qy9/+ZOffvU3B9//xa+e
ZM2eqqqnfvPk//8+qOr0YVUd/RP++7f6n/THSfokfZI+SRekr4af2WHuT47+
mtVJSSmSrfDvopkXC578t8VE3mMF86wrKjs86uK2DrM8v66H/Wq22imn8Gjf
k3/ue4OG5aKylI5ifhFzdN2ITXPNO8PZc2BoI6ZIdJv4TUpnuDZzqO6Y+vYQ
TZbALUXQ7+xbhfFeIOE0xPmvn0cZV/ucU7w4oG0Zloe59d4zFCMlMW8X0ROl
pHJXqRJUwANDKe/TdMAOiwKMjPnrWDjiaa5idxii0mhb25rgKD3Zk0wbMnzw
khUotrrrn0x7UQxKH3Di21D1qSGcBVZs14mdrEFeTVvSl/rfgIHpFFCzBHmL
rHqK92ORavF6rOr813axahRw6+1dFPAfx8TT4afTmi4DUZcw6Q2c/VoR9etF
1NqSVPQMpiaeJopngadaUCLV1jTVzg27LD5SlWWSQm3NUAgSwVpCoCRcPqZg
OBuHPzJb5VV7CcTjuBrHoHjcVuqbPcdnOSgh9aR3AVRt6q6eX8ffO7j0cxC/
Tx3KAt+sIf/XQNAnWCfqPf8nlv19/RMY/rCYN/zRM9WVMfvv59QpZ942yPvT
KHan/glvkjC82KtT5828MBQ7XafOAbo/j2KfzhlBgYwDGiMC/f7r5slr7kZW
uuPk9eaN0aHGOFuZV+Tt5fjLuKvxkm63Ek+ZDHjSY/hc/RNGcnT5YZ5TMruf
A45Zrssob55L068abcxB3iLLWJg27QHrFrl9UX+i/0d5R7bFWJEyZdvPIs21
tmoaIil91C61U4HjHaYDpRaZQ7UU1WZQqRoA/rLhomqyz4E8tOSE3veIjsvD
zTf2gnYP7aFBj+PPN8FtMKpHM83D1jThG+qrUcWqRaI2vLFu9dOdmHli5lRm
vgby9DoA07EH8u7+v3bnvCqq+080nEMi9LC05n3BKQ+FYgF4D+pEo+cfFqiF
KeXGxDH4y5g4lwiar6gqTTgCwxUgj6xE3jJkbTFZc8y0VNmpiMY3yH8alKIY
aZ2G8Ot9PuHdSshEQp4oykKemHTIm7LcIU9MS39U1hryjk+ekCcmO+TI0F2V
Vz8rp7PqBRZEqgHJ13m1/DN98pc4+zSQL80IDcUkiNtY5M0VR6q8QnYUaXqY
pqyTU1hFb7WU9/sk6nZVSZUWPC5ThjJVGhpVaJGJYy+b/MgR78R0OjO9Aph0
cysM53YWjgS9OsQ1Y0ZOeM8AUjQGIwFC7C+PCxXqv/WuUWGAkJXGuHR9oaLs
tLtEDxGSMk0kpp4XoWbgjcsxT+m+waZv4Gz0xMwTMyc1M5Ts5FR4JarldNki
CqWyEI547dK5ftley6quZcbrOXWtQX6gHHnym7Yc2tsQYa1W1jO/l1ON7ZIk
Yze/LHykIvV9YMyZNsnfNsw+DeyUDYnv1qkzjERM0yTRhBaJrejrmH0l10TX
T3l/yih1hkm32qT3hLStP2iaAw5Fpzbq7huqkZXdBfxFW+C9lbidtqvCVvx2
uwUon+Giem6xRBHaig1rXqqZq+0tyYsOb2vhLcdpm3ope6WkUl/oqS1U2ZbP
Sv/qo9o8RbLNiOg+iaqE7bYqtDV6ZKcQXC2ONqI71VatONTDqFTa3jaeNWaG
TM0kr9MdkdjKRjmKaFG89db2YatV/0XMlkVa1GEhLVumNRdp4GMsLZP2Smyx
H74Zs8pRI2ILokMdOa0R1J7OtyNk9QEDQ+NootNU2J/FbH1o2nx+HF0lMnNp
mjlvP/OOfhI1ZSX0ervUqiik2vvEIH+gatxzyrhU2TayXTgCnk5nTdNpvtnm
UPLQQp4VVCWX1jGRW9S5iOX8noXzBTowOn8SGXbaRMrM75sKJPWR0+2PAK88
bv+oTUJx+BiI+ASo+gTQ/XNUEASl04d6PlL/9QXIQ4cyEd2PVir2g4nFfhXF
ns0R0lcx6r9umKXXR/Am9eT8sbRfcrhXCMj6f4GEHzUiEYyMh/LxIeAbLqrr
E8qyI/UGziZRIdTXVijbNv9znE0OTxPqf1qbCmkjX+TU5yAvkQfuDbpa7Emj
S3Fqpk/f4Ob9HFymL+5mdXL/aGawo7KUjpVILwaXyMf79jNTvr1kMzRcD/rd
GXldK9Z/+unslZbfe0N5rjbR0b0YGDN97bgjeNBFZ9+2K5zmsGCVXoakqwJU
K2yyLndh/BJF+b3uuMC+pgvXViNb5QVo6wneLL081sP0NstW7y9o4q1OzP9A
kf7O6juk7Q96rLoC9dM20XXqTbABB91YCfKEXb8RXS57dFKn4/g39mHqvvKU
I6O3svyJhiorFIgWr4b6fQ+YOc2Y5reqvOZ5A+QtQd7rIO/ASRfPb0OUAT0z
r/P0zCQ1v7Kr4uQa+rKIOhlO7srrqVLKJhMrbX7KJrNzWWZujJ7rH3KrV/uV
si8xMRcxPXE4lZbNJKe7yXwh/IKOilw1J8FAl9W3pKAwGJZ772AWfTvcIJ0u
ePryxOEhnpWQICxx9kWn1AuWUROGlkBAfGZI+gSYKwsaqCBeW4kbzEQoeRZC
duBAWn8I8uKBy+rF8GNfJdTt2giThveoSR8a7nxqlKn1ZkJ11++H7pNSHZoP
U4fa8iZc4m+89jsyZTH95abZrmsL5zEp6TMtM/8Ys/zdik36B1OtjHAeYzp0
PHMxmClQfphT2zn1AhZ0PROcAuxxTtWQ8gdA765ZGnaUd3J7DINjOfahlrjC
enJ4NOR8Qhj97Oa6D3nx3HCUHTLeA5r3638XrPR85n0tp66CvOdBXux+409w
/F2mYMFKn83CZEZyJae2ss+3Mp10G8+16VAgXxjGll4v++2Qo1cTLb3BZKND
DmPyQuDvtcOIxvxzpzxZ4kLydkDeIreZ9IKYt+uzu1GuVgXkUMWszYlGCdeA
ht2c2jd5vwPyxpxpRXRykgVdr3o+RuKq1IickstEMU0rhxyKoKfg0PA3TL2W
hxUe391cQ5zQmeMUHTkjrOBh0BkTtEVwbqBP1QbHA5J33mN6jlz/dYta1Rn9
lLEfr/NoWroPiPUbP7lKAoguNOn73hsQgSB2ZhocumUyw0VxenFDvQzGo4He
i8pLMDOnbJvlp7RneR+iu2MvUZPwUS10DYrLOOa+rJ2HtjbQjVivO0iexmKo
/7o9cXi80BcoBgj6Io25x4SRuk2fJe9BuzvfjOChoSEVGx5LFDIUADmzJSfx
+GLZsCAjJA905ZZihChe/X6vSOfjRQYJg+wZ8xzFGfXSyAIb4aSwcmUaiA4t
HyT31HuT3PT3PnlbVH4SNAjrRGMudGQVYIwQv1G8F1n+CkA8mksLRW1pN9mm
XoehZcrULNge5rfSWtEzpD1jzxq9WnCkgTQluWyglKBHgoSPQG6IfD0PZfLJ
ouagJrGbw4ropmkc+4WGzSTYuH3IMoIAppZ1BGdwtsLimPc1CxiujlTB3RgP
xjIU2oOEBy19ECNp+7DUxk5+lS1AUlZFBYFqDrpn0ItoZZ7ZzOyqSqSrbA0d
FaRayl/9gxqFXPgr7x1Qy4zu2ptLoh0hMFltZCFqXfWLQPcH4csg6JxeJqSp
AA/mTBaE2lVz27aomYyvoZtZJ4o5aSyIFH2OAc1TRuLSFLB7IXxsHCgObAXr
EC2xIqXED9pFy3Zdlwm1TT7LwT28V8aY5Q8UB2MzYAWhpGPU7kJReGICYBad
/lu39hDU1jHH07s2gib1sqVwJ6cqdILKOXcXUSuO0dqX3FyTYHSeE7XNb8ii
5NTuePvhDQxPFGvMs3tcqKqqeQbv2xUXuu4nY5TbJp11gg31fJsaCGuAqLdv
DNINdI9uQcrg1rNxWvOfy6LCvp2cQgpkCuBKle7mUhs661qPJ8okdGTAc3ii
5qUb6ApiSwC4knFXsrWyeiRtAJkUlsIPWGloNWcPq+a67vfq1NMgLx7GwB8L
UQeIYiDiM4oGCFvZMbQWfTV7qW5SqBRajSNU9JRHeMTkGM+c8b4nEeicLUFf
bJFR0nv9GgLdQWSXpl7pk0hHBeiTunIM3bq+gCbO9t3FQzIfqjlRfyCHuigI
hpKy3Q5DAw4MtBkkDx0hU/JsrKrdtgVxXyH2UmTBWiwQeLWLOaVsEW1oYjwy
/CFLVX45MtisTddpecC69F/gvMk45WgosoTaFPJOmdVqq/SCmKAUdV5SUt/N
1ws6dYX2ymWPZZ/xojU8pR7loTMrShuKqhe6DTWVIBQdnJQYhNapnkAE0GJX
iyhCUi6Jb5NiDimtpP3HJaeomSKlSfRQo6DbAbR5SApNnpG8RQ4S7QpRKgiR
09/o3bWDWsGh1Wk7mtYNV+x320FXLpfrF620QcdVkZ72Kil9X+/wEB+9QIst
6CkfKhkPlMqfiZfb9SJ9VVEfj/xRkr3x8da5egzDvRk0dkt3GXaAHDQ74F9o
ZbFEiB7yoVlvPXxgeid074M8lHpXu41Wu9BBiWcyx3NA7P2cQtMoZDDF8VJ6
PwS8iO497ZicnuYX6jDUgMxp9fWiJpXU5ReZ/o9y6geRrOCWEblK+rAd9y5B
+D1drI58xfWvACmC/UJ5cQG/MbkhLr2bCS7lGE6g9yzWJkN2FIa3DaZu9qNs
eTlSmV16thE7GVApose5lNhH7vi9CWRZeGfDSZMbpCqQT48wqVUBs6w9hHPp
zLObCbnNJ6sbJLa98G0rZ7FjTvwiH2KeBKqtjLrT8gX+jBhJXCLZH8Tf3wL5
kkpEgWeDQNRK03HkYoDkoPFDA6GkQZ9prCu2CyXJDwv0WOVFuqoIU0RWg5Gg
mV/QXPwcZxF59Ybup7WI7pdxxN4LWEJfcf3ISR2NCyZLL54cgh68qsbDrLnf
10lZP55cH6Zbd0mBqJoKPg4MkZWvCd2sv8W02Ti6WWfZcdH3gHNZYOrSczDp
caGemLfHOif9G0L7aFCsdvp0wGqr/1o9+lthMwGPa3+v0re7wnsVoC66SN8p
asqHDKi6Z/b6Hi7tY3pW6dYS7FWQuo5lIzVtArpbEzWRfq2hbKSwlTtMJLDg
DSqv4mKEMR3UI4sgtlpRtB8Msqd/LICQvMYAhCE6jcJT5yG0sDQCJhhdZTBg
slWljzTYfASxjACEEYsThbY4ZWvNKZugNpWhhJVBQdvmWydfyiCmZI1lIswz
smRyuZDe8vDummIzSbVTPLSHlnQ/vSNQQ6G0HAvtCGiL040GryJTfmRtY4kA
FHzqUHbHb1cwYMZMQed/PIerhK4cmux803jXku+/hH99z03qY98xWAjOGGnF
yCANrJUklHv2r/W/Vh8n64bkkR9hdSJNVv8vLi17NyRZMmj5KKdOmXkF+GDz
IUyDkMhiEBuwYd/NqX0zDwGI7ZilNvhYHJc1cMLezuSXWB5FDNvPHHbp77HY
NxHD3sipa1kpyqPIYnOzlPImQy5kEbez3bfMPNS7XTZLnzVL03Y7xM1iZ3Vk
ihI41LSF8r7W1nGtn06Vygft5SYgOuL4PHBGePdMXgTvRU69zICJMxYQDgvQ
gLuTmCKx6oTjov3QWCsKvSsRaqMbTihz/ag8dOgJ0QXJ6HDuQdamWteuU3LI
oyhjElk0/UcteJtZGk94dlZ8chOhm+RoCQxNnuPyS3u23ygffpwRvU89p9Ur
EombII8gWqHrZbeyI/QSlDcPzXyQSlJ3yGkJzobVBA2lryYQuhrCFkOjZaR6
Z0hIwZTBewLTGzp0jIYjs/WHHeGLIBQvhJmC9O6Oj5v3i+koFF5QMsFB9QYA
aUNnJffWFwB87a0afo0pv3C8AvBFvgpfUzt93JE5TFXuhW5D2uSJRZfm0AHd
cinHHCh59aD7l14Xveho6AzyGHln1he8pdPMqV1E8jRyGZMX++wyJC/Yxbfz
EE4CctGLOrcEeWiYdDDCD3vYhUaBSDIKPJI8GHWLYsNRKTp4FelnPBf3a96D
YptlRlq1R68cPIF11vK5Uq9yC6YMvdjQsW/5/KlXq0zbR7ucDhUWIDCVNXmX
SPLtHm87Inh6y3E+4eojZsmtGnJ4cIoGhQY6kylGwqm74ckNRjYh9n3KZQkW
jfNHtJpEWoa9mJiWhcGjI1dvuGXJu6DeBJfvdPobNRMFfjZWyVj/BrYQqcHG
+sbGtwvHQzVrGyO1Rey2IxQ1eBG1RipDDYLOLMTFuKTYGI4gOXJpRa6U3sJG
0veC1VJkYMFn0iAPdoFV1TyhvxooOls+hVKCc6lKKuGcP6RyQYggViEMLmF6
xa/J6s2kNRQA9hWAIdqvKI0PmpgK1FowldJJ9tZYf/WjMRjqk9C0CI2qvHB0
Au2BSvF9yKp71ouJL0VLky6EVZvzSepxCddoetkd13IKHeuHLDpxbsSsmLfI
grPrCw+aKyMXR68xheDdBaXXmQWBY399oUCGeGG4xsCnodAifzdwXRJ1L8cV
Mrqou4lhnALrzD/75eHy27H2ELnOHNHooGUfGany5V+sVc50HPM+WsjyfNKn
qponrLzbh6JjjXtmyFkBbOI7xnjrnzIhf9EWdXPnXgEhPAJ57+SUzMLR4ZCb
bd6Zk47KS2YGolt1SbhufrNOBRwrihMnKHJox8HGmEtKw+HK0HXIZBWNv2X9
NDyn8hXNkIcOWB6V3QYa0LD0qpPuCtCP6JKDZ7NYtfuATksdZNmztmx0R0aI
JTj3cuoy0Cull4AihB+XDnoJyrmyAa2u38kpOackByOFY97m6FbfrG2p0qV6
KAGIk+pzGHs/E6uKou1PONIJRBlhqtpE+pDpAphMt5Yc4mdtRXdzntp68IpC
R4DQyw6NEuAnHsyQzPKjCgcLQHx5SKj1jdNvjVZJDk+iMIU8jW4RRVTkgxf5
L8WBIHje4P5WzVUt67gnvYNLQ0OxwpAlE0KRjYmUV1E6YG4/6UjBw3Yesp90
ZOpmZJDxdk7x0wHWwVgWEC8CmL1TifwfiS1GI+GVmyrOC8Kll97aYdI3laqW
cUWgXg5bKO9sGO9ZHQo0Cnk9lwp0CaITsK5nTXkI1MumS/vdL2X1aCaNRojo
RjfCPH/YjiGUjHFwHjhswpxvD+ZMtVZwVQnFRkMLpX4ShYdcpkSxIhBK9/22
EgkPRksoDxuakpA7W2h6SUxGYfuB36iP/aRxPaIfGw3NoQ8yE7m8hjxe9ml6
dzRB3KEahrt2MQs/MNiJq4Fv2acWVS5pB8Mx4ihTs8Jl6gNfBLhrOcicrxpU
S1P+4xGl6dJuAZRb2bVpckGfbKwXQMeNJLX9Jhc2y653kuz3j1szwmD7HORJ
KjEGORuEgzYm7cNQo3MNExkK9St9yGpokkgu2TUA0fqk6tssNgacJXMUJIqF
1+QJgW1262sfll3+OsN5AyqYIK8FARg5qvJAaBmXK8lApee1NzRsRtm2q0kV
xIa6EHcQJkRQwy/hYXWPdA5DBqv/KkVxW6U+HlMf0lrjea9/+pvKIFV9HwRq
rMzYuFeyWoYuYVZdjMosvf+ZZT1NT59zzLo8UZMlEhI19N3WKTxZRh0O+LMp
XvL3mRqEx+p5qTlQ1iYSqANR9GZ/OLWZ6UldB2YaWmccIw/RNb8B3G37ZXhr
ZdSvFlGjRSgCFlRmHQlAoiiDbyuj1gGwqT0BGGTd8QWAQrtdKBKDlp3Isg2R
EOIoW8qlMZoOCO4Ciwj5JqPlD3r7lIVlosCi3QkaYgtCDmPAVV0gyVjQzQuL
FIFDw1HWf73cb8HHJYrQ7OAzJbzZFYt1rzQsCbRI74x5/kMcYOSyA7cPqZat
cgtu798B551+hZZI8pIPLEHRb+pUKHfU5qeZjVwbCr/p+5IyCkGAZ2QL4QYg
FfZtU6TkpUME8okuGbM+ynnyfTcZYl7DVl0xmR7nvDPFCoU3HVQK2+RhQBUO
MpzK3UrIez4zXmyXLjJHmD5dNqVIXjoBuZ8Z5SNPN3KefIrpepsO5VHe1F2h
I0jqm8OLtgJEpxaWZozjSjEHOhilsZmMGQy1XcntdE3dPHQCAHkRXw8NFDC0
6jZhXlD6oO0imhag1Dzzei0tQgd7kHV4Fl9ToRiGloqqPPth8g+PXqrq67sp
3ajHaq4JRO0sP97rOaMrl+bQwZyHwLgZSwW6R/10KnV9fc5uxKfET9w5cefE
nRN3TtyJeV6YIqQDnUlEVxFP3B7qtgbtrIcv6KKd5zZuzasv8DB5q8NLQpYu
TCn6Ku2mxSB95FxDG1RxfCkTYw/eTGLSyBNNWVtM1kQ4RG75hiCN99KxH91N
W0MsSFUlirKqSkwEJGR9MEATV1XHfk9VrSAWdlUNwmCZEs9libMd0DJdppsb
6uOGV0H5u0dEnjJ5yTNx7B6nCkFjIbk7gfb9NSxOuxShjAgHKrWhd2wLjCMj
YwZMXrwYpANBISAXN3Ac+y2bjZy4c+LOiTsn7py4M7E7YRQ/z+/zQHMm5z1o
l4YxyH6mewB47VKv5GSc2nlEnxR6K5OogudVXv3zZlagiK8flogq1hunN3GY
FnbWvtN2LJgkpyPQuL9LRWW4NbQbRNCXRpJPZzmyuXkzy5Ets4Msce6kU/Ia
G3tta24wC9D+odeMBF24B6xR+Ap0D/MZoErdrKc7tZeY3obvVYXv589NASs2
PJ1DWJjqpZ0pqA7VCndBzaLL7nfbeeR52HXGVDTcBe5LClmHvF2njwlCxTrd
gExEpxbCkVn0CJ1qC2hgxGbeRjRRbN40RVt206qyPeCze+NOgzIanfbwxgge
jGfRCegk6Jtr6TCU94gJMvgxyIttxq5F1CLR1wx7YSqQ/0oGOu6LIBHKwTa4
xdN4b4BpfAJEILgMKaXwGw7JH2pD0AaIjEs0vGYulREWfcheG6EjHVSMMEWd
lXZ0NXg1OA0FiBAjjTqPPU5cHuGJdA0eT2OU7THFH/EdySZgAmiPgEgdaUAC
YxFQCXKKHqk5yEyDQCUCE30sEVqH8K7ayhQWco9eMHQO+giWmAC1yV5cigK1
qdHKbXwLAOLARbXMVBy4oY9zvBV2xUxy44XAR7xeRD2JJbazJzgS1bccR8KT
/s/6J0QxDFXUY/m7SPQfoAhNKRDo2u8aeuTyQNCIIG7RBzaF478a9sBJUf2X
9b0GBAWLPkx6xpDRNMIRFMucsNcdxt6Cyrm/HtU0EkVGqBsBVthQbWv6Zlft
qILQqPQiZf1jfY5kGRKdjsOhLvw98fNXPfV/Dy8Dyg==\
\>"],
ImageRangeCache->{{{0, 418.312}, {443.438, 0}} -> {-0.000550005, \
-0.00403441, 0.394446, 0.394446}, {{0, 83.625}, {108.75, 25.0625}} -> \
{-1.00011, -89.0586, 0.394623, 0.394623}, {{83.625, 167.312}, {108.75, \
25.0625}} -> {-22.9839, -88.9846, 0.394328, 0.394328}, {{167.312, 250.938}, \
{108.75, 25.0625}} -> {-45.017, -89.0586, 0.394623, 0.394623}, {{250.938, \
334.625}, {108.75, 25.0625}} -> {-66.968, -88.9846, 0.394328, 0.394328}, \
{{334.625, 418.25}, {108.75, 25.0625}} -> {-89.034, -89.0586, 0.394623, \
0.394623}, {{0, 83.625}, {192.438, 108.75}} -> {-1.00011, -67.0419, 0.394623, \
0.394623}, {{83.625, 167.312}, {192.438, 108.75}} -> {-22.9839, -66.9844, \
0.394328, 0.394328}, {{167.312, 250.938}, {192.438, 108.75}} -> {-45.017, \
-67.0419, 0.394623, 0.394623}, {{250.938, 334.625}, {192.438, 108.75}} -> \
{-66.968, -66.9844, 0.394328, 0.394328}, {{334.625, 418.25}, {192.438, \
108.75}} -> {-89.034, -67.0419, 0.394623, 0.394623}, {{0, 83.625}, {276.062, \
192.438}} -> {-1.00011, -45.0335, 0.394623, 0.394623}, {{83.625, 167.312}, \
{276.062, 192.438}} -> {-23.0086, -45.0335, 0.394623, 0.394623}, {{167.312, \
250.938}, {276.062, 192.438}} -> {-45.017, -45.0335, 0.394623, 0.394623}, \
{{250.938, 334.625}, {276.062, 192.438}} -> {-67.0255, -45.0335, 0.394623, \
0.394623}, {{334.625, 418.25}, {276.062, 192.438}} -> {-89.034, -45.0335, \
0.394623, 0.394623}, {{0, 83.625}, {359.75, 276.062}} -> {-1.00011, -23.025, \
0.394623, 0.394623}, {{83.625, 167.312}, {359.75, 276.062}} -> {-22.9839, \
-23.0004, 0.394328, 0.394328}, {{167.312, 250.938}, {359.75, 276.062}} -> \
{-45.017, -23.025, 0.394623, 0.394623}, {{250.938, 334.625}, {359.75, \
276.062}} -> {-66.968, -23.0004, 0.394328, 0.394328}}]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["Direct Photon Production: 2 Loops (4084 diagrams)", "Section"],
Cell[BoxData[
RowBox[{"\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"tops", "=",
RowBox[{"CreateTopologies", "[",
RowBox[{"2", ",", "4", ",",
RowBox[{"ExcludeTopologies", "\[Rule]",
RowBox[{"{", "Internal", "}"}]}]}], "]"}]}], ";"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"ins", "=",
RowBox[{"InsertFields", "[",
RowBox[{"tops", ",",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"V", "[", "5", "]"}], ",",
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}]}], "}"}], "\[Rule]",
RowBox[{"{",
RowBox[{
RowBox[{"V", "[", "1", "]"}], ",",
RowBox[{"F", "[",
RowBox[{"3", ",",
RowBox[{"{", "1", "}"}]}], "]"}]}], "}"}]}], ",",
RowBox[{"Model", "\[Rule]", "SMQCD"}], ",",
RowBox[{"InsertionLevel", "\[Rule]",
RowBox[{"{", "Classes", "}"}]}]}], "]"}]}], ";"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Paint", "[",
RowBox[{"ins", ",",
RowBox[{"ColumnsXRows", "\[Rule]", "10"}], ",",
RowBox[{"PaintLevel", "\[Rule]",
RowBox[{"{", "Classes", "}"}]}], ",",
RowBox[{"AutoEdit", "\[Rule]", "False"}]}], "]"}], ";"}]}]}]], "Input",
Evaluatable->False]
}, Open ]]
},
WindowToolbars->"EditBar",
CellGrouping->Manual,
WindowSize->{1024, 620},
WindowMargins->{{0, Automatic}, {Automatic, 0}},
ShowSelection->True,
Magnification->1.5,
FrontEndVersion->"8.0 for Mac OS X x86 (32-bit, 64-bit Kernel) (November 13, \
2010)",
StyleDefinitions->Notebook[{
Cell[
CellGroupData[{
Cell["Style Definitions", "Subtitle"],
Cell[
"Modify the definitions below to change the default appearance of all \
cells in a given style. Make modifications to any definition using commands \
in the Format menu.", "Text"],
Cell[
CellGroupData[{
Cell["Style Environment Names", "Section"],
Cell[
StyleData[All, "Working"], PageWidth -> WindowWidth,
CellLabelMargins -> {{12, Inherited}, {Inherited, Inherited}},
ScriptMinSize -> 9],
Cell[
StyleData[All, "Presentation"], PageWidth -> WindowWidth,
CellLabelMargins -> {{24, Inherited}, {Inherited, Inherited}},
ScriptMinSize -> 12],
Cell[
StyleData[All, "Condensed"], PageWidth -> WindowWidth,
CellLabelMargins -> {{8, Inherited}, {Inherited, Inherited}},
ScriptMinSize -> 8],
Cell[
StyleData[All, "Printout"], PageWidth -> PaperWidth,
CellLabelMargins -> {{2, Inherited}, {Inherited, Inherited}},
ScriptMinSize -> 5,
PrivateFontOptions -> {"FontType" -> "Outline"}]}, Closed]],
Cell[
CellGroupData[{
Cell["Notebook Options", "Section"],
Cell[
"The options defined for the style below will be used at the \
Notebook level.", "Text"],
Cell[
StyleData["Notebook"], PageHeaders -> {{
Cell[
TextData[{
CounterBox["Page"]}], "PageNumber"], None,
Cell[
TextData[{
ValueBox["FileName"]}], "Header"]}, {
Cell[
TextData[{
ValueBox["FileName"]}], "Header"], None,
Cell[
TextData[{
CounterBox["Page"]}], "PageNumber"]}}, CellFrameLabelMargins ->
6, StyleMenuListing -> None]}, Closed]],
Cell[
CellGroupData[{
Cell["Styles for Headings", "Section"],
Cell[
CellGroupData[{
Cell[
StyleData["Title"], CellMargins -> {{12, Inherited}, {20, 40}},
CellGroupingRules -> {"TitleGrouping", 0}, PageBreakBelow ->
False, DefaultNewInlineCellStyle -> "None",
InputAutoReplacements -> {"TeX" -> StyleBox[
RowBox[{"T",
AdjustmentBox[
"E", BoxMargins -> {{-0.075, -0.085}, {0, 0}},
BoxBaselineShift -> 0.5], "X"}]], "LaTeX" -> StyleBox[
RowBox[{"L",
StyleBox[
AdjustmentBox[
"A", BoxMargins -> {{-0.36, -0.1}, {0, 0}},
BoxBaselineShift -> -0.2], FontSize -> Smaller], "T",
AdjustmentBox[
"E", BoxMargins -> {{-0.075, -0.085}, {0, 0}},
BoxBaselineShift -> 0.5], "X"}]], "mma" -> "Mathematica",
"Mma" -> "Mathematica", "MMA" -> "Mathematica", Inherited},
LineSpacing -> {1, 11}, LanguageCategory -> "NaturalLanguage",
CounterIncrements -> "Title",
CounterAssignments -> {{"Section", 0}, {"Equation", 0}, {
"Figure", 0}, {"Subtitle", 0}, {"Subsubtitle", 0}}, FontFamily ->
"Helvetica", FontSize -> 36, FontWeight -> "Bold"],
Cell[
StyleData["Title", "Presentation"],
CellMargins -> {{24, 10}, {20, 40}}, LineSpacing -> {1, 0},
FontSize -> 44],
Cell[
StyleData["Title", "Condensed"],
CellMargins -> {{8, 10}, {4, 8}}, FontSize -> 20],
Cell[
StyleData["Title", "Printout"],
CellMargins -> {{2, 10}, {12, 30}}, FontSize -> 24]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["Subtitle"],
CellMargins -> {{12, Inherited}, {20, 15}},
CellGroupingRules -> {"TitleGrouping", 10}, PageBreakBelow ->
False, DefaultNewInlineCellStyle -> "None",
InputAutoReplacements -> {"TeX" -> StyleBox[
RowBox[{"T",
AdjustmentBox[
"E", BoxMargins -> {{-0.075, -0.085}, {0, 0}},
BoxBaselineShift -> 0.5], "X"}]], "LaTeX" -> StyleBox[
RowBox[{"L",
StyleBox[
AdjustmentBox[
"A", BoxMargins -> {{-0.36, -0.1}, {0, 0}},
BoxBaselineShift -> -0.2], FontSize -> Smaller], "T",
AdjustmentBox[
"E", BoxMargins -> {{-0.075, -0.085}, {0, 0}},
BoxBaselineShift -> 0.5], "X"}]], "mma" -> "Mathematica",
"Mma" -> "Mathematica", "MMA" -> "Mathematica", Inherited},
LanguageCategory -> "NaturalLanguage", CounterIncrements ->
"Subtitle",
CounterAssignments -> {{"Section", 0}, {"Equation", 0}, {
"Figure", 0}, {"Subsubtitle", 0}}, FontFamily -> "Helvetica",
FontSize -> 24],
Cell[
StyleData["Subtitle", "Presentation"],
CellMargins -> {{24, 10}, {20, 20}}, LineSpacing -> {1, 0},
FontSize -> 36],
Cell[
StyleData["Subtitle", "Condensed"],
CellMargins -> {{8, 10}, {4, 4}}, FontSize -> 14],
Cell[
StyleData["Subtitle", "Printout"],
CellMargins -> {{2, 10}, {12, 8}}, FontSize -> 18]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["Subsubtitle"],
CellMargins -> {{12, Inherited}, {20, 15}},
CellGroupingRules -> {"TitleGrouping", 20}, PageBreakBelow ->
False, DefaultNewInlineCellStyle -> "None",
InputAutoReplacements -> {"TeX" -> StyleBox[
RowBox[{"T",
AdjustmentBox[
"E", BoxMargins -> {{-0.075, -0.085}, {0, 0}},
BoxBaselineShift -> 0.5], "X"}]], "LaTeX" -> StyleBox[
RowBox[{"L",
StyleBox[
AdjustmentBox[
"A", BoxMargins -> {{-0.36, -0.1}, {0, 0}},
BoxBaselineShift -> -0.2], FontSize -> Smaller], "T",
AdjustmentBox[
"E", BoxMargins -> {{-0.075, -0.085}, {0, 0}},
BoxBaselineShift -> 0.5], "X"}]], "mma" -> "Mathematica",
"Mma" -> "Mathematica", "MMA" -> "Mathematica", Inherited},
LanguageCategory -> "NaturalLanguage", CounterIncrements ->
"Subsubtitle",
CounterAssignments -> {{"Section", 0}, {"Equation", 0}, {
"Figure", 0}}, FontFamily -> "Helvetica", FontSize -> 14,
FontSlant -> "Italic"],
Cell[
StyleData["Subsubtitle", "Presentation"],
CellMargins -> {{24, 10}, {20, 20}}, LineSpacing -> {1, 0},
FontSize -> 24],
Cell[
StyleData["Subsubtitle", "Condensed"],
CellMargins -> {{8, 10}, {8, 8}}, FontSize -> 12],
Cell[
StyleData["Subsubtitle", "Printout"],
CellMargins -> {{2, 10}, {12, 8}}, FontSize -> 14]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["Section"], CellFrame -> True, CellDingbat ->
"\[FilledSquare]", CellMargins -> {{25, Inherited}, {8, 24}},
CellGroupingRules -> {"SectionGrouping", 30}, PageBreakBelow ->
False, DefaultNewInlineCellStyle -> "None",
InputAutoReplacements -> {"TeX" -> StyleBox[
RowBox[{"T",
AdjustmentBox[
"E", BoxMargins -> {{-0.075, -0.085}, {0, 0}},
BoxBaselineShift -> 0.5], "X"}]], "LaTeX" -> StyleBox[
RowBox[{"L",
StyleBox[
AdjustmentBox[
"A", BoxMargins -> {{-0.36, -0.1}, {0, 0}},
BoxBaselineShift -> -0.2], FontSize -> Smaller], "T",
AdjustmentBox[
"E", BoxMargins -> {{-0.075, -0.085}, {0, 0}},
BoxBaselineShift -> 0.5], "X"}]], "mma" -> "Mathematica",
"Mma" -> "Mathematica", "MMA" -> "Mathematica", Inherited},
LineSpacing -> {1, 7}, LanguageCategory -> "NaturalLanguage",
CounterIncrements -> "Section",
CounterAssignments -> {{"Subsection", 0}, {"Subsubsection", 0}},
FontFamily -> "Helvetica", FontSize -> 16, FontWeight -> "Bold",
Background -> GrayLevel[0.849989]],
Cell[
StyleData["Section", "Presentation"], CellFrame -> True,
CellMargins -> {{40, 10}, {11, 32}}, LineSpacing -> {1, 0},
FontSize -> 24],
Cell[
StyleData["Section", "Condensed"], CellFrame -> True,
CellMargins -> {{18, Inherited}, {6, 12}}, FontSize -> 12],
Cell[
StyleData["Section", "Printout"], CellFrame -> True,
CellMargins -> {{13, 0}, {7, 22}}, FontSize -> 14]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["Subsection"], CellDingbat -> "\[FilledSmallSquare]",
CellMargins -> {{22, Inherited}, {8, 20}},
CellGroupingRules -> {"SectionGrouping", 40}, PageBreakBelow ->
False, DefaultNewInlineCellStyle -> "None",
InputAutoReplacements -> {"TeX" -> StyleBox[
RowBox[{"T",
AdjustmentBox[
"E", BoxMargins -> {{-0.075, -0.085}, {0, 0}},
BoxBaselineShift -> 0.5], "X"}]], "LaTeX" -> StyleBox[
RowBox[{"L",
StyleBox[
AdjustmentBox[
"A", BoxMargins -> {{-0.36, -0.1}, {0, 0}},
BoxBaselineShift -> -0.2], FontSize -> Smaller], "T",
AdjustmentBox[
"E", BoxMargins -> {{-0.075, -0.085}, {0, 0}},
BoxBaselineShift -> 0.5], "X"}]], "mma" -> "Mathematica",
"Mma" -> "Mathematica", "MMA" -> "Mathematica", Inherited},
LanguageCategory -> "NaturalLanguage", CounterIncrements ->
"Subsection", CounterAssignments -> {{"Subsubsection", 0}},
FontFamily -> "Times", FontSize -> 14, FontWeight -> "Bold"],
Cell[
StyleData["Subsection", "Presentation"],
CellMargins -> {{36, 10}, {11, 32}}, LineSpacing -> {1, 0},
FontSize -> 22],
Cell[
StyleData["Subsection", "Condensed"],
CellMargins -> {{16, Inherited}, {6, 12}}, FontSize -> 12],
Cell[
StyleData["Subsection", "Printout"],
CellMargins -> {{9, 0}, {7, 22}}, FontSize -> 12]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["Subsubsection"], CellDingbat ->
"\[FilledSmallSquare]",
CellMargins -> {{22, Inherited}, {8, 18}},
CellGroupingRules -> {"SectionGrouping", 50}, PageBreakBelow ->
False, DefaultNewInlineCellStyle -> "None",
InputAutoReplacements -> {"TeX" -> StyleBox[
RowBox[{"T",
AdjustmentBox[
"E", BoxMargins -> {{-0.075, -0.085}, {0, 0}},
BoxBaselineShift -> 0.5], "X"}]], "LaTeX" -> StyleBox[
RowBox[{"L",
StyleBox[
AdjustmentBox[
"A", BoxMargins -> {{-0.36, -0.1}, {0, 0}},
BoxBaselineShift -> -0.2], FontSize -> Smaller], "T",
AdjustmentBox[
"E", BoxMargins -> {{-0.075, -0.085}, {0, 0}},
BoxBaselineShift -> 0.5], "X"}]], "mma" -> "Mathematica",
"Mma" -> "Mathematica", "MMA" -> "Mathematica", Inherited},
LanguageCategory -> "NaturalLanguage", CounterIncrements ->
"Subsubsection", FontFamily -> "Times", FontWeight -> "Bold"],
Cell[
StyleData["Subsubsection", "Presentation"],
CellMargins -> {{34, 10}, {11, 26}}, LineSpacing -> {1, 0},
FontSize -> 18],
Cell[
StyleData["Subsubsection", "Condensed"],
CellMargins -> {{17, Inherited}, {6, 12}}, FontSize -> 10],
Cell[
StyleData["Subsubsection", "Printout"],
CellMargins -> {{9, 0}, {7, 14}}, FontSize -> 11]}, Closed]]},
Open]],
Cell[
CellGroupData[{
Cell["Styles for Body Text", "Section"],
Cell[
CellGroupData[{
Cell[
StyleData["Text"], CellMargins -> {{12, 10}, {7, 7}},
InputAutoReplacements -> {"TeX" -> StyleBox[
RowBox[{"T",
AdjustmentBox[
"E", BoxMargins -> {{-0.075, -0.085}, {0, 0}},
BoxBaselineShift -> 0.5], "X"}]], "LaTeX" -> StyleBox[
RowBox[{"L",
StyleBox[
AdjustmentBox[
"A", BoxMargins -> {{-0.36, -0.1}, {0, 0}},
BoxBaselineShift -> -0.2], FontSize -> Smaller], "T",
AdjustmentBox[
"E", BoxMargins -> {{-0.075, -0.085}, {0, 0}},
BoxBaselineShift -> 0.5], "X"}]], "mma" -> "Mathematica",
"Mma" -> "Mathematica", "MMA" -> "Mathematica", Inherited},
Hyphenation -> True, LineSpacing -> {1, 3}, CounterIncrements ->
"Text"],
Cell[
StyleData["Text", "Presentation"],
CellMargins -> {{24, 10}, {10, 10}}, LineSpacing -> {1, 5},
FontSize -> 16],
Cell[
StyleData["Text", "Condensed"], CellMargins -> {{8, 10}, {6, 6}},
LineSpacing -> {1, 1}, FontSize -> 11],
Cell[
StyleData["Text", "Printout"], CellMargins -> {{2, 2}, {6, 6}},
TextJustification -> 0.5, FontSize -> 10]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["SmallText"], CellMargins -> {{12, 10}, {6, 6}},
DefaultNewInlineCellStyle -> "None", Hyphenation -> True,
LineSpacing -> {1, 3}, LanguageCategory -> "NaturalLanguage",
CounterIncrements -> "SmallText", FontFamily -> "Helvetica",
FontSize -> 9],
Cell[
StyleData["SmallText", "Presentation"],
CellMargins -> {{24, 10}, {8, 8}}, LineSpacing -> {1, 5},
FontSize -> 12],
Cell[
StyleData["SmallText", "Condensed"],
CellMargins -> {{8, 10}, {5, 5}}, LineSpacing -> {1, 2},
FontSize -> 9],
Cell[
StyleData["SmallText", "Printout"],
CellMargins -> {{2, 2}, {5, 5}}, TextJustification -> 0.5,
FontSize -> 7]}, Closed]]}, Closed]],
Cell[
CellGroupData[{
Cell["Styles for Input/Output", "Section"],
Cell[
"The cells in this section define styles used for input and output \
to the kernel. Be careful when modifying, renaming, or removing these \
styles, because the front end associates special meanings with these style \
names. Some attributes for these styles are actually set in FormatType Styles \
(in the last section of this stylesheet). ", "Text"],
Cell[
CellGroupData[{
Cell[
StyleData["Input"], CellMargins -> {{45, 10}, {5, 7}},
Evaluatable -> True, CellGroupingRules -> "InputGrouping",
CellHorizontalScrolling -> True, PageBreakWithin -> False,
GroupPageBreakWithin -> False, DefaultFormatType ->
DefaultInputFormatType,
HyphenationOptions -> {
"HyphenationCharacter" -> "\[Continuation]"},
AutoItalicWords -> {}, LanguageCategory -> "Mathematica",
FormatType -> InputForm, ShowStringCharacters -> True,
NumberMarks -> True, LinebreakAdjustments -> {0.85, 2, 10, 0, 1},
CounterIncrements -> "Input", FontWeight -> "Bold"],
Cell[
StyleData["Input", "Presentation"],
CellMargins -> {{72, Inherited}, {8, 10}}, LineSpacing -> {1, 0},
FontSize -> 16],
Cell[
StyleData["Input", "Condensed"],
CellMargins -> {{40, 10}, {2, 3}}, FontSize -> 11],
Cell[
StyleData["Input", "Printout"], CellMargins -> {{39, 0}, {4, 6}},
LinebreakAdjustments -> {0.85, 2, 10, 1, 1}, FontSize -> 9]},
Closed]],
Cell[
StyleData["InputOnly"], Evaluatable -> True, CellGroupingRules ->
"InputGrouping", CellHorizontalScrolling -> True, DefaultFormatType ->
DefaultInputFormatType,
HyphenationOptions -> {"HyphenationCharacter" -> "\[Continuation]"},
AutoItalicWords -> {}, LanguageCategory -> "Mathematica",
FormatType -> InputForm, ShowStringCharacters -> True, NumberMarks ->
True, LinebreakAdjustments -> {0.85, 2, 10, 0, 1},
CounterIncrements -> "Input", StyleMenuListing -> None, FontWeight ->
"Bold"],
Cell[
CellGroupData[{
Cell[
StyleData["Output"], CellMargins -> {{47, 10}, {7, 5}},
CellEditDuplicate -> True, CellGroupingRules -> "OutputGrouping",
CellHorizontalScrolling -> True, PageBreakWithin -> False,
GroupPageBreakWithin -> False, GeneratedCell -> True,
CellAutoOverwrite -> True, DefaultFormatType ->
DefaultOutputFormatType,
HyphenationOptions -> {
"HyphenationCharacter" -> "\[Continuation]"},
AutoItalicWords -> {}, LanguageCategory -> None, FormatType ->
InputForm, CounterIncrements -> "Output"],
Cell[
StyleData["Output", "Presentation"],
CellMargins -> {{72, Inherited}, {10, 8}}, LineSpacing -> {1, 0},
FontSize -> 16],
Cell[
StyleData["Output", "Condensed"],
CellMargins -> {{41, Inherited}, {3, 2}}, FontSize -> 11],
Cell[
StyleData["Output", "Printout"],
CellMargins -> {{39, 0}, {6, 4}}, FontSize -> 9]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["Message"],
CellMargins -> {{45, Inherited}, {Inherited, Inherited}},
CellGroupingRules -> "OutputGrouping", PageBreakWithin -> False,
GroupPageBreakWithin -> False, GeneratedCell -> True,
CellAutoOverwrite -> True, ShowCellLabel -> False,
DefaultFormatType -> DefaultOutputFormatType,
HyphenationOptions -> {
"HyphenationCharacter" -> "\[Continuation]"},
AutoItalicWords -> {}, LanguageCategory -> None, FormatType ->
InputForm, CounterIncrements -> "Message", StyleMenuListing ->
None, FontSize -> 11, FontColor -> RGBColor[0, 0, 1]],
Cell[
StyleData["Message", "Presentation"],
CellMargins -> {{72, Inherited}, {Inherited, Inherited}},
LineSpacing -> {1, 0}, FontSize -> 16],
Cell[
StyleData["Message", "Condensed"],
CellMargins -> {{41, Inherited}, {Inherited, Inherited}},
FontSize -> 11],
Cell[
StyleData["Message", "Printout"],
CellMargins -> {{39, Inherited}, {Inherited, Inherited}},
FontSize -> 7, FontColor -> GrayLevel[0]]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["Print"],
CellMargins -> {{45, Inherited}, {Inherited, Inherited}},
CellGroupingRules -> "OutputGrouping", CellHorizontalScrolling ->
True, PageBreakWithin -> False, GroupPageBreakWithin -> False,
GeneratedCell -> True, CellAutoOverwrite -> True, ShowCellLabel ->
False, DefaultFormatType -> DefaultOutputFormatType,
HyphenationOptions -> {
"HyphenationCharacter" -> "\[Continuation]"},
AutoItalicWords -> {}, LanguageCategory -> None, FormatType ->
InputForm, CounterIncrements -> "Print", StyleMenuListing ->
None],
Cell[
StyleData["Print", "Presentation"],
CellMargins -> {{72, Inherited}, {Inherited, Inherited}},
LineSpacing -> {1, 0}, FontSize -> 16],
Cell[
StyleData["Print", "Condensed"],
CellMargins -> {{41, Inherited}, {Inherited, Inherited}},
FontSize -> 11],
Cell[
StyleData["Print", "Printout"],
CellMargins -> {{39, Inherited}, {Inherited, Inherited}},
FontSize -> 8]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["Graphics"],
CellMargins -> {{4, Inherited}, {Inherited, Inherited}},
CellGroupingRules -> "GraphicsGrouping", CellHorizontalScrolling ->
True, PageBreakWithin -> False, GeneratedCell -> True,
CellAutoOverwrite -> True, ShowCellLabel -> False,
DefaultFormatType -> DefaultOutputFormatType, LanguageCategory ->
None, FormatType -> InputForm, CounterIncrements -> "Graphics",
ImageMargins -> {{43, Inherited}, {Inherited, 0}},
StyleMenuListing -> None, FontFamily -> "Courier", FontSize ->
10],
Cell[
StyleData["Graphics", "Presentation"],
ImageMargins -> {{62, Inherited}, {Inherited, 0}}],
Cell[
StyleData["Graphics", "Condensed"],
ImageMargins -> {{38, Inherited}, {Inherited, 0}}, Magnification ->
0.6],
Cell[
StyleData["Graphics", "Printout"],
ImageMargins -> {{30, Inherited}, {Inherited, 0}}, Magnification ->
0.8]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["CellLabel"], LanguageCategory -> None,
StyleMenuListing -> None, FontFamily -> "Helvetica", FontSize ->
9, FontColor -> RGBColor[0, 0, 1]],
Cell[
StyleData["CellLabel", "Presentation"], FontSize -> 12],
Cell[
StyleData["CellLabel", "Condensed"], FontSize -> 9],
Cell[
StyleData["CellLabel", "Printout"], FontFamily -> "Courier",
FontSize -> 8, FontSlant -> "Italic", FontColor ->
GrayLevel[0]]}, Closed]]}, Closed]],
Cell[
CellGroupData[{
Cell["Inline Formatting", "Section"],
Cell[
"These styles are for modifying individual words or letters in a \
cell exclusive of the cell tag.", "Text"],
Cell[
StyleData["RM"], StyleMenuListing -> None, FontWeight -> "Plain",
FontSlant -> "Plain"],
Cell[
StyleData["BF"], StyleMenuListing -> None, FontWeight -> "Bold"],
Cell[
StyleData["IT"], StyleMenuListing -> None, FontSlant -> "Italic"],
Cell[
StyleData["TR"], StyleMenuListing -> None, FontFamily -> "Times",
FontWeight -> "Plain", FontSlant -> "Plain"],
Cell[
StyleData["TI"], StyleMenuListing -> None, FontFamily -> "Times",
FontWeight -> "Plain", FontSlant -> "Italic"],
Cell[
StyleData["TB"], StyleMenuListing -> None, FontFamily -> "Times",
FontWeight -> "Bold", FontSlant -> "Plain"],
Cell[
StyleData["TBI"], StyleMenuListing -> None, FontFamily -> "Times",
FontWeight -> "Bold", FontSlant -> "Italic"],
Cell[
StyleData["MR"],
HyphenationOptions -> {"HyphenationCharacter" -> "\[Continuation]"},
StyleMenuListing -> None, FontFamily -> "Courier", FontWeight ->
"Plain", FontSlant -> "Plain"],
Cell[
StyleData["MO"],
HyphenationOptions -> {"HyphenationCharacter" -> "\[Continuation]"},
StyleMenuListing -> None, FontFamily -> "Courier", FontWeight ->
"Plain", FontSlant -> "Italic"],
Cell[
StyleData["MB"],
HyphenationOptions -> {"HyphenationCharacter" -> "\[Continuation]"},
StyleMenuListing -> None, FontFamily -> "Courier", FontWeight ->
"Bold", FontSlant -> "Plain"],
Cell[
StyleData["MBO"],
HyphenationOptions -> {"HyphenationCharacter" -> "\[Continuation]"},
StyleMenuListing -> None, FontFamily -> "Courier", FontWeight ->
"Bold", FontSlant -> "Italic"],
Cell[
StyleData["SR"], StyleMenuListing -> None, FontFamily ->
"Helvetica", FontWeight -> "Plain", FontSlant -> "Plain"],
Cell[
StyleData["SO"], StyleMenuListing -> None, FontFamily ->
"Helvetica", FontWeight -> "Plain", FontSlant -> "Italic"],
Cell[
StyleData["SB"], StyleMenuListing -> None, FontFamily ->
"Helvetica", FontWeight -> "Bold", FontSlant -> "Plain"],
Cell[
StyleData["SBO"], StyleMenuListing -> None, FontFamily ->
"Helvetica", FontWeight -> "Bold", FontSlant -> "Italic"],
Cell[
CellGroupData[{
Cell[
StyleData["SO10"], StyleMenuListing -> None, FontFamily ->
"Helvetica", FontSize -> 10, FontWeight -> "Plain", FontSlant ->
"Italic"],
Cell[
StyleData["SO10", "Printout"], StyleMenuListing -> None,
FontFamily -> "Helvetica", FontSize -> 7, FontWeight -> "Plain",
FontSlant -> "Italic"],
Cell[
StyleData["SO10", "EnhancedPrintout"], StyleMenuListing -> None,
FontFamily -> "Futura", FontSize -> 7, FontWeight -> "Plain",
FontSlant -> "Italic"]}, Closed]]}, Closed]],
Cell[
CellGroupData[{
Cell["Formulas and Programming", "Section"],
Cell[
CellGroupData[{
Cell[
StyleData["InlineFormula"], CellMargins -> {{10, 4}, {0, 8}},
CellHorizontalScrolling -> True,
HyphenationOptions -> {
"HyphenationCharacter" -> "\[Continuation]"}, LanguageCategory ->
"Formula", ScriptLevel -> 1, SingleLetterItalics -> True],
Cell[
StyleData["InlineFormula", "Presentation"],
CellMargins -> {{24, 10}, {10, 10}}, LineSpacing -> {1, 5},
FontSize -> 16],
Cell[
StyleData["InlineFormula", "Condensed"],
CellMargins -> {{8, 10}, {6, 6}}, LineSpacing -> {1, 1},
FontSize -> 11],
Cell[
StyleData["InlineFormula", "Printout"],
CellMargins -> {{2, 0}, {6, 6}}, FontSize -> 10]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["DisplayFormula"],
CellMargins -> {{42, Inherited}, {Inherited, Inherited}},
CellHorizontalScrolling -> True, DefaultFormatType ->
DefaultInputFormatType,
HyphenationOptions -> {
"HyphenationCharacter" -> "\[Continuation]"}, LanguageCategory ->
"Formula", ScriptLevel -> 0, SingleLetterItalics -> True,
UnderoverscriptBoxOptions -> {LimitsPositioning -> True}],
Cell[
StyleData["DisplayFormula", "Presentation"],
LineSpacing -> {1, 5}, FontSize -> 16],
Cell[
StyleData["DisplayFormula", "Condensed"], LineSpacing -> {1, 1},
FontSize -> 11],
Cell[
StyleData["DisplayFormula", "Printout"], FontSize -> 10]},
Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["Program"], CellFrame -> {{0, 0}, {0.5, 0.5}},
CellMargins -> {{10, 4}, {0, 8}}, CellHorizontalScrolling ->
True, Hyphenation -> False, LanguageCategory -> "Formula",
ScriptLevel -> 1, FontFamily -> "Courier"],
Cell[
StyleData["Program", "Presentation"],
CellMargins -> {{24, 10}, {10, 10}}, LineSpacing -> {1, 5},
FontSize -> 16],
Cell[
StyleData["Program", "Condensed"],
CellMargins -> {{8, 10}, {6, 6}}, LineSpacing -> {1, 1},
FontSize -> 11],
Cell[
StyleData["Program", "Printout"],
CellMargins -> {{2, 0}, {6, 6}}, FontSize -> 9]}, Closed]]},
Closed]],
Cell[
CellGroupData[{
Cell["Outline Styles", "Section"],
Cell[
CellGroupData[{
Cell[
StyleData["Outline1"], CellMargins -> {{12, 10}, {7, 7}},
CellGroupingRules -> {"SectionGrouping", 50},
ParagraphIndent -> -38, CounterIncrements -> "Outline1",
FontSize -> 18, FontWeight -> "Bold",
CounterBoxOptions -> {CounterFunction :> CapitalRomanNumeral}],
Cell[
StyleData["Outline1", "Printout"],
CounterBoxOptions -> {CounterFunction :> CapitalRomanNumeral}]},
Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["Outline2"], CellMargins -> {{59, 10}, {7, 7}},
CellGroupingRules -> {"SectionGrouping", 60},
ParagraphIndent -> -27, CounterIncrements -> "Outline2",
FontSize -> 15, FontWeight -> "Bold",
CounterBoxOptions -> {CounterFunction :> (Part[
CharacterRange["A", "Z"], #]& )}],
Cell[
StyleData["Outline2", "Printout"],
CounterBoxOptions -> {CounterFunction :> (Part[
CharacterRange["A", "Z"], #]& )}]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["Outline3"], CellMargins -> {{108, 10}, {7, 7}},
CellGroupingRules -> {"SectionGrouping", 70},
ParagraphIndent -> -21, CounterIncrements -> "Outline3",
FontSize -> 12,
CounterBoxOptions -> {CounterFunction :> Identity}],
Cell[
StyleData["Outline3", "Printout"],
CounterBoxOptions -> {CounterFunction :> Identity}]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["Outline4"], CellMargins -> {{158, 10}, {7, 7}},
CellGroupingRules -> {"SectionGrouping", 80},
ParagraphIndent -> -18, CounterIncrements -> "Outline4",
FontSize -> 10, CounterBoxOptions -> {CounterFunction :> (Part[
CharacterRange["a", "z"], #]& )}],
Cell[
StyleData["Outline4", "Printout"]]}, Closed]]}, Closed]],
Cell[
CellGroupData[{
Cell["Hyperlink Styles", "Section"],
Cell[
"The cells below define styles useful for making hypertext \
ButtonBoxes. The \"Hyperlink\" style is for links within the same Notebook, \
or between Notebooks.", "Text"],
Cell[
CellGroupData[{
Cell[
StyleData["Hyperlink"], StyleMenuListing -> None,
ButtonStyleMenuListing -> Automatic,
FontVariations -> {"Underline" -> True}, FontColor ->
RGBColor[0, 0, 1],
ButtonBoxOptions -> {
Active -> True, ButtonFunction :> (FrontEndExecute[{
FrontEnd`NotebookLocate[#2]}]& ), ButtonNote ->
ButtonData}],
Cell[
StyleData["Hyperlink", "Presentation"], FontSize -> 16],
Cell[
StyleData["Hyperlink", "Condensed"], FontSize -> 11],
Cell[
StyleData["Hyperlink", "Printout"], FontSize -> 10,
FontVariations -> {"Underline" -> False}, FontColor ->
GrayLevel[0]]}, Closed]],
Cell[
"The following styles are for linking automatically to the on-line \
help system.", "Text"],
Cell[
CellGroupData[{
Cell[
StyleData["MainBookLink"], StyleMenuListing -> None,
ButtonStyleMenuListing -> Automatic,
FontVariations -> {"Underline" -> True}, FontColor ->
RGBColor[0, 0, 1],
ButtonBoxOptions -> {
Active -> True, Appearance -> {Automatic, None},
ButtonFunction :> (FrontEndExecute[{
FrontEnd`HelpBrowserLookup["MainBook", #]}]& )}],
Cell[
StyleData["MainBookLink", "Presentation"], FontSize -> 16],
Cell[
StyleData["MainBookLink", "Condensed"], FontSize -> 11],
Cell[
StyleData["MainBookLink", "Printout"], FontSize -> 10,
FontVariations -> {"Underline" -> False}, FontColor ->
GrayLevel[0]]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["AddOnsLink"], StyleMenuListing -> None,
ButtonStyleMenuListing -> Automatic, FontFamily -> "Courier",
FontVariations -> {"Underline" -> True}, FontColor ->
RGBColor[0, 0, 1],
ButtonBoxOptions -> {
Active -> True, Appearance -> {Automatic, None},
ButtonFunction :> (FrontEndExecute[{
FrontEnd`HelpBrowserLookup["AddOns", #]}]& )}],
Cell[
StyleData["AddOnsLink", "Presentation"], FontSize -> 16],
Cell[
StyleData["AddOnsLink", "Condensed"], FontSize -> 11],
Cell[
StyleData["AddOnsLink", "Printout"], FontSize -> 10,
FontVariations -> {"Underline" -> False}, FontColor ->
GrayLevel[0]]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["RefGuideLink"], StyleMenuListing -> None,
ButtonStyleMenuListing -> Automatic, FontFamily -> "Courier",
FontVariations -> {"Underline" -> True}, FontColor ->
RGBColor[0, 0, 1],
ButtonBoxOptions -> {
Active -> True, Appearance -> {Automatic, None},
ButtonFunction :> (FrontEndExecute[{
FrontEnd`HelpBrowserLookup["RefGuide", #]}]& )}],
Cell[
StyleData["RefGuideLink", "Presentation"], FontSize -> 16],
Cell[
StyleData["RefGuideLink", "Condensed"], FontSize -> 11],
Cell[
StyleData["RefGuideLink", "Printout"], FontSize -> 10,
FontVariations -> {"Underline" -> False}, FontColor ->
GrayLevel[0]]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["GettingStartedLink"], StyleMenuListing -> None,
ButtonStyleMenuListing -> Automatic,
FontVariations -> {"Underline" -> True}, FontColor ->
RGBColor[0, 0, 1],
ButtonBoxOptions -> {
Active -> True, Appearance -> {Automatic, None},
ButtonFunction :> (FrontEndExecute[{
FrontEnd`HelpBrowserLookup["GettingStarted", #]}]& )}],
Cell[
StyleData["GettingStartedLink", "Presentation"], FontSize -> 16],
Cell[
StyleData["GettingStartedLink", "Condensed"], FontSize -> 11],
Cell[
StyleData["GettingStartedLink", "Printout"], FontSize -> 10,
FontVariations -> {"Underline" -> False}, FontColor ->
GrayLevel[0]]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["OtherInformationLink"], StyleMenuListing -> None,
ButtonStyleMenuListing -> Automatic,
FontVariations -> {"Underline" -> True}, FontColor ->
RGBColor[0, 0, 1],
ButtonBoxOptions -> {
Active -> True, Appearance -> {Automatic, None},
ButtonFunction :> (FrontEndExecute[{
FrontEnd`HelpBrowserLookup["OtherInformation", #]}]& )}],
Cell[
StyleData["OtherInformationLink", "Presentation"], FontSize ->
16],
Cell[
StyleData["OtherInformationLink", "Condensed"], FontSize -> 11],
Cell[
StyleData["OtherInformationLink", "Printout"], FontSize -> 10,
FontVariations -> {"Underline" -> False}, FontColor ->
GrayLevel[0]]}, Closed]]}, Closed]],
Cell[
CellGroupData[{
Cell["Styles for Headers and Footers", "Section"],
Cell[
StyleData["Header"], CellMargins -> {{0, 0}, {4, 1}},
DefaultNewInlineCellStyle -> "None", LanguageCategory ->
"NaturalLanguage", StyleMenuListing -> None, FontSize -> 10,
FontSlant -> "Italic"],
Cell[
StyleData["Footer"], CellMargins -> {{0, 0}, {0, 4}},
DefaultNewInlineCellStyle -> "None", LanguageCategory ->
"NaturalLanguage", StyleMenuListing -> None, FontSize -> 9,
FontSlant -> "Italic"],
Cell[
StyleData["PageNumber"], CellMargins -> {{0, 0}, {4, 1}},
StyleMenuListing -> None, FontFamily -> "Times", FontSize -> 10]},
Closed]],
Cell[
CellGroupData[{
Cell["Palette Styles", "Section"],
Cell[
"The cells below define styles that define standard ButtonFunctions, \
for use in palette buttons.", "Text"],
Cell[
StyleData["Paste"], StyleMenuListing -> None,
ButtonStyleMenuListing -> Automatic,
ButtonBoxOptions -> {ButtonFunction :> (FrontEndExecute[{
FrontEnd`NotebookApply[
FrontEnd`InputNotebook[], #, After]}]& )}],
Cell[
StyleData["Evaluate"], StyleMenuListing -> None,
ButtonStyleMenuListing -> Automatic,
ButtonBoxOptions -> {ButtonFunction :> (FrontEndExecute[{
FrontEnd`NotebookApply[
FrontEnd`InputNotebook[], #, All],
SelectionEvaluate[
FrontEnd`InputNotebook[], All]}]& )}],
Cell[
StyleData["EvaluateCell"], StyleMenuListing -> None,
ButtonStyleMenuListing -> Automatic,
ButtonBoxOptions -> {ButtonFunction :> (FrontEndExecute[{
FrontEnd`NotebookApply[
FrontEnd`InputNotebook[], #, All],
FrontEnd`SelectionMove[
FrontEnd`InputNotebook[], All, Cell, 1],
FrontEnd`SelectionEvaluateCreateCell[
FrontEnd`InputNotebook[], All]}]& )}],
Cell[
StyleData["CopyEvaluate"], StyleMenuListing -> None,
ButtonStyleMenuListing -> Automatic,
ButtonBoxOptions -> {ButtonFunction :> (FrontEndExecute[{
FrontEnd`SelectionCreateCell[
FrontEnd`InputNotebook[], All],
FrontEnd`NotebookApply[
FrontEnd`InputNotebook[], #, All],
FrontEnd`SelectionEvaluate[
FrontEnd`InputNotebook[], All]}]& )}],
Cell[
StyleData["CopyEvaluateCell"], StyleMenuListing -> None,
ButtonStyleMenuListing -> Automatic,
ButtonBoxOptions -> {ButtonFunction :> (FrontEndExecute[{
FrontEnd`SelectionCreateCell[
FrontEnd`InputNotebook[], All],
FrontEnd`NotebookApply[
FrontEnd`InputNotebook[], #, All],
FrontEnd`SelectionEvaluateCreateCell[
FrontEnd`InputNotebook[], All]}]& )}]}, Closed]],
Cell[
CellGroupData[{
Cell["Placeholder Styles", "Section"],
Cell[
"The cells below define styles useful for making placeholder objects \
in palette templates.", "Text"],
Cell[
CellGroupData[{
Cell[
StyleData["Placeholder"], Placeholder -> True, StyleMenuListing ->
None, FontSlant -> "Italic", FontColor ->
RGBColor[0.890623, 0.864698, 0.384756],
TagBoxOptions -> {
Editable -> False, Selectable -> False, StripWrapperBoxes ->
False}],
Cell[
StyleData["Placeholder", "Presentation"]],
Cell[
StyleData["Placeholder", "Condensed"]],
Cell[
StyleData["Placeholder", "Printout"]]}, Closed]],
Cell[
CellGroupData[{
Cell[
StyleData["PrimaryPlaceholder"], StyleMenuListing -> None,
DrawHighlighted -> True, FontSlant -> "Italic", Background ->
RGBColor[0.912505, 0.891798, 0.507774],
TagBoxOptions -> {
Editable -> False, Selectable -> False, StripWrapperBoxes ->
False}],
Cell[
StyleData["PrimaryPlaceholder", "Presentation"]],
Cell[
StyleData["PrimaryPlaceholder", "Condensed"]],
Cell[
StyleData["PrimaryPlaceholder", "Printout"]]}, Closed]]},
Closed]],
Cell[
CellGroupData[{
Cell["FormatType Styles", "Section"],
Cell[
"The cells below define styles that are mixed in with the styles of \
most cells. If a cell's FormatType matches the name of one of the styles \
defined below, then that style is applied between the cell's style and its \
own options. This is particularly true of Input and Output.", "Text"],
Cell[
StyleData["CellExpression"], PageWidth -> Infinity,
CellMargins -> {{6, Inherited}, {Inherited, Inherited}},
ShowCellLabel -> False, ShowSpecialCharacters -> False,
AllowInlineCells -> False, Hyphenation -> False,
AutoItalicWords -> {}, StyleMenuListing -> None, FontFamily ->
"Courier", FontSize -> 12, Background -> GrayLevel[1]],
Cell[
StyleData["InputForm"], InputAutoReplacements -> {},
AllowInlineCells -> False, Hyphenation -> False, StyleMenuListing ->
None, FontFamily -> "Courier"],
Cell[
StyleData["OutputForm"], PageWidth -> Infinity, TextAlignment ->
Left, LineSpacing -> {0.6, 1}, StyleMenuListing -> None, FontFamily ->
"Courier"],
Cell[
StyleData["StandardForm"],
InputAutoReplacements -> {
"->" -> "\[Rule]", ":>" -> "\[RuleDelayed]", "<=" ->
"\[LessEqual]", ">=" -> "\[GreaterEqual]", "!=" -> "\[NotEqual]",
"==" -> "\[Equal]", Inherited}, LineSpacing -> {1.25, 0},
StyleMenuListing -> None, FontFamily -> "Courier"],
Cell[
StyleData["TraditionalForm"],
InputAutoReplacements -> {
"->" -> "\[Rule]", ":>" -> "\[RuleDelayed]", "<=" ->
"\[LessEqual]", ">=" -> "\[GreaterEqual]", "!=" -> "\[NotEqual]",
"==" -> "\[Equal]", Inherited}, LineSpacing -> {1.25, 0},
SingleLetterItalics -> True, TraditionalFunctionNotation -> True,
DelimiterMatching -> None, StyleMenuListing -> None],
Cell[
"The style defined below is mixed in to any cell that is in an \
inline cell within another.", "Text"],
Cell[
StyleData["InlineCell"], LanguageCategory -> "Formula", ScriptLevel ->
1, StyleMenuListing -> None],
Cell[
StyleData["InlineCellEditing"], StyleMenuListing -> None,
Background -> RGBColor[1, 0.749996, 0.8]]}, Closed]],
Cell[
CellGroupData[{
Cell["Automatic Styles", "Section"],
Cell[
"The cells below define styles that are used to affect the display \
of certain types of objects in typeset expressions. For example, \
\"UnmatchedBracket\" style defines how unmatched bracket, curly bracket, and \
parenthesis characters are displayed (typically by coloring them to make them \
stand out).", "Text"],
Cell[
StyleData["UnmatchedBracket"], StyleMenuListing -> None, FontColor ->
RGBColor[0.760006, 0.330007, 0.8]]}, Closed]]}, Open]]}, Visible ->
False, FrontEndVersion ->
"8.0 for Mac OS X x86 (32-bit, 64-bit Kernel) (November 13, 2010)",
StyleDefinitions -> "Default.nb"]
]
(* End of Notebook Content *)
(* Internal cache information *)
(*CellTagsOutline
CellTagsIndex->{}
*)
(*CellTagsIndex
CellTagsIndex->{}
*)
(*NotebookFileOutline
Notebook[{
Cell[CellGroupData[{
Cell[579, 22, 37, 0, 96, "Section"],
Cell[CellGroupData[{
Cell[641, 26, 92, 1, 36, "Input"],
Cell[736, 29, 34, 0, 30, "Print"],
Cell[773, 31, 46, 0, 30, "Print"],
Cell[822, 33, 79, 0, 30, "Print"],
Cell[904, 35, 56, 0, 30, "Print"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell[1009, 41, 45, 0, 96, "Section"],
Cell[CellGroupData[{
Cell[1079, 45, 53, 1, 36, "Input"],
Cell[1135, 48, 69849, 1624, 1678, "Print"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell[71033, 1678, 40, 0, 96, "Section"],
Cell[CellGroupData[{
Cell[71098, 1682, 1866, 53, 198, "Input"],
Cell[72967, 1737, 34, 0, 30, "Print"],
Cell[73004, 1739, 341, 8, 54, "Print"],
Cell[73348, 1749, 52, 0, 30, "Print"],
Cell[73403, 1751, 251, 5, 30, "Print"],
Cell[73657, 1758, 34, 0, 30, "Print"],
Cell[73694, 1760, 337, 8, 54, "Print"],
Cell[74034, 1770, 346, 7, 30, "Print"],
Cell[74383, 1779, 56, 0, 30, "Print"],
Cell[74442, 1781, 201, 5, 30, "Print"],
Cell[74646, 1788, 235, 5, 30, "Print"],
Cell[74884, 1795, 231, 5, 30, "Print"],
Cell[75118, 1802, 247, 5, 30, "Print"],
Cell[75368, 1809, 34, 0, 30, "Print"],
Cell[75405, 1811, 425, 9, 30, "Print"],
Cell[75833, 1822, 34, 0, 30, "Print"],
Cell[75870, 1824, 218, 5, 30, "Print"],
Cell[76091, 1831, 276, 6, 30, "Print"],
Cell[76370, 1839, 276, 6, 30, "Print"],
Cell[76649, 1847, 276, 6, 30, "Print"],
Cell[76928, 1855, 276, 6, 30, "Print"],
Cell[77207, 1863, 208, 5, 30, "Print"],
Cell[77418, 1870, 34, 0, 30, "Print"],
Cell[77455, 1872, 425, 9, 30, "Print"],
Cell[77883, 1883, 256, 6, 30, "Print"],
Cell[78142, 1891, 31704, 1248, 293, 28286, 1189, "GraphicsData", \
"PostScript", "Graphics"]
}, Open ]],
Cell[CellGroupData[{
Cell[109883, 3144, 94, 2, 36, "Input"],
Cell[109980, 3148, 34, 0, 30, "Print"],
Cell[110017, 3150, 238, 5, 30, "Print"],
Cell[110258, 3157, 276, 6, 30, "Print"],
Cell[110537, 3165, 208, 5, 30, "Print"],
Cell[110748, 3172, 14557, 395, 645, "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[125342, 3572, 63, 1, 36, "Input"],
Cell[125408, 3575, 28, 0, 36, "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[125473, 3580, 103, 2, 36, "Input"],
Cell[125579, 3584, 105, 2, 36, "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[125721, 3591, 152, 3, 60, "Input"],
Cell[125876, 3596, 43, 0, 36, "Output"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell[125968, 3602, 110, 1, 96, "Section"],
Cell[CellGroupData[{
Cell[126103, 3607, 1314, 38, 175, "Input"],
Cell[127420, 3647, 34, 0, 30, "Print"],
Cell[127457, 3649, 218, 5, 30, "Print"],
Cell[127678, 3656, 276, 6, 30, "Print"],
Cell[127957, 3664, 274, 6, 30, "Print"],
Cell[128234, 3672, 276, 6, 30, "Print"],
Cell[128513, 3680, 274, 6, 30, "Print"],
Cell[128790, 3688, 208, 5, 30, "Print"],
Cell[129001, 3695, 254, 6, 30, "Print"],
Cell[129258, 3703, 254, 6, 30, "Print"],
Cell[129515, 3711, 39618, 1704, 257, 35705, 1637, "GraphicsData", \
"PostScript", "Graphics"]
}, Open ]],
Cell[CellGroupData[{
Cell[169170, 5420, 94, 2, 36, "Input"],
Cell[169267, 5424, 34, 0, 30, "Print"],
Cell[169304, 5426, 238, 5, 30, "Print"],
Cell[169545, 5433, 274, 6, 30, "Print"],
Cell[169822, 5441, 274, 6, 30, "Print"],
Cell[170099, 5449, 208, 5, 30, "Print"],
Cell[170310, 5456, 17384, 466, 585, "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[187731, 5927, 63, 1, 36, "Input"],
Cell[187797, 5930, 28, 0, 36, "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[187862, 5935, 103, 2, 36, "Input"],
Cell[187968, 5939, 105, 2, 36, "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[188110, 5946, 151, 3, 60, "Input"],
Cell[188264, 5951, 43, 0, 36, "Output"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell[188356, 5957, 39, 0, 96, "Section"],
Cell[CellGroupData[{
Cell[188420, 5961, 1372, 40, 175, "Input"],
Cell[189795, 6003, 34, 0, 30, "Print"],
Cell[189832, 6005, 218, 5, 30, "Print"],
Cell[190053, 6012, 276, 6, 30, "Print"],
Cell[190332, 6020, 276, 6, 30, "Print"],
Cell[190611, 6028, 274, 6, 30, "Print"],
Cell[190888, 6036, 274, 6, 30, "Print"],
Cell[191165, 6044, 208, 5, 30, "Print"],
Cell[191376, 6051, 254, 6, 30, "Print"],
Cell[191633, 6059, 254, 6, 30, "Print"],
Cell[191890, 6067, 40405, 1787, 257, 36484, 1720, "GraphicsData", \
"PostScript", "Graphics"]
}, Open ]],
Cell[CellGroupData[{
Cell[232332, 7859, 94, 2, 36, "Input"],
Cell[232429, 7863, 34, 0, 30, "Print"],
Cell[232466, 7865, 238, 5, 30, "Print"],
Cell[232707, 7872, 274, 6, 30, "Print"],
Cell[232984, 7880, 274, 6, 30, "Print"],
Cell[233261, 7888, 208, 5, 30, "Print"],
Cell[233472, 7895, 16755, 454, 573, "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[250264, 8354, 63, 1, 36, "Input"],
Cell[250330, 8357, 28, 0, 36, "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[250395, 8362, 103, 2, 36, "Input"],
Cell[250501, 8366, 105, 2, 36, "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[250643, 8373, 151, 3, 60, "Input"],
Cell[250797, 8378, 43, 0, 36, "Output"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell[250889, 8384, 29, 0, 96, "Section"],
Cell[CellGroupData[{
Cell[250943, 8388, 1342, 39, 175, "Input"],
Cell[252288, 8429, 34, 0, 30, "Print"],
Cell[252325, 8431, 218, 5, 30, "Print"],
Cell[252546, 8438, 276, 6, 30, "Print"],
Cell[252825, 8446, 274, 6, 30, "Print"],
Cell[253102, 8454, 276, 6, 30, "Print"],
Cell[253381, 8462, 274, 6, 30, "Print"],
Cell[253658, 8470, 208, 5, 30, "Print"],
Cell[253869, 8477, 254, 6, 30, "Print"],
Cell[254126, 8485, 254, 6, 30, "Print"],
Cell[254383, 8493, 40051, 1711, 293, 35714, 1637, "GraphicsData", \
"PostScript", "Graphics"]
}, Open ]],
Cell[CellGroupData[{
Cell[294471, 10209, 94, 2, 36, "Input"],
Cell[294568, 10213, 34, 0, 30, "Print"],
Cell[294605, 10215, 238, 5, 30, "Print"],
Cell[294846, 10222, 274, 6, 30, "Print"],
Cell[295123, 10230, 274, 6, 30, "Print"],
Cell[295400, 10238, 208, 5, 30, "Print"],
Cell[295611, 10245, 17384, 466, 585, "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[313032, 10716, 63, 1, 36, "Input"],
Cell[313098, 10719, 28, 0, 36, "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[313163, 10724, 103, 2, 36, "Input"],
Cell[313269, 10728, 105, 2, 36, "Output"]
}, Open ]],
Cell[CellGroupData[{
Cell[313411, 10735, 151, 3, 60, "Input"],
Cell[313565, 10740, 43, 0, 36, "Output"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell[313657, 10746, 66, 0, 96, "Section"],
Cell[CellGroupData[{
Cell[313748, 10750, 1410, 39, 175, "Input"],
Cell[315161, 10791, 34, 0, 30, "Print"],
Cell[315198, 10793, 218, 5, 30, "Print"],
Cell[315419, 10800, 276, 6, 30, "Print"],
Cell[315698, 10808, 276, 6, 30, "Print"],
Cell[315977, 10816, 276, 6, 30, "Print"],
Cell[316256, 10824, 276, 6, 30, "Print"],
Cell[316535, 10832, 276, 6, 30, "Print"],
Cell[316814, 10840, 276, 6, 30, "Print"],
Cell[317093, 10848, 276, 6, 30, "Print"],
Cell[317372, 10856, 276, 6, 30, "Print"],
Cell[317651, 10864, 276, 6, 30, "Print"],
Cell[317930, 10872, 278, 6, 30, "Print"],
Cell[318211, 10880, 278, 6, 30, "Print"],
Cell[318492, 10888, 278, 6, 30, "Print"],
Cell[318773, 10896, 210, 5, 30, "Print"],
Cell[318986, 10903, 256, 6, 30, "Print"],
Cell[319245, 10911, 256, 6, 30, "Print"],
Cell[319504, 10919, 256, 6, 30, "Print"],
Cell[319763, 10927, 389144, 17823, 457, 377831, 17640, "GraphicsData", \
"PostScript", "Graphics"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell[708956, 28756, 68, 0, 96, "Section"],
Cell[709027, 28758, 1432, 40, 175, "Input",
Evaluatable->False]
}, Open ]]
}
]
*)
(* End of internal cache information *)
|
{% macro test_expect_column_values_to_not_match_regex(model, column_name,
regex,
row_condition=None
) %}
{% set expression %}
{{ dbt_expectations.regexp_instr(column_name, regex) }} = 0
{% endset %}
{{ dbt_expectations.expression_is_true(model,
expression=expression,
group_by_columns=group_by,
row_condition=row_condition
)
}}
{% endmacro %}
|
# Get the name of the source files of the project
set project_name [lindex $argv 0]
# Set the paths
source scripts/common_scripts/common_paths.tcl
# Create the project and specify the board
if {[string first "vcu118" ${project_name}] == 0} {
set fpga_part "xcvu9p-flga2104-2L-e"
set fpga_board "xilinx.com:vcu118:part0:2.0"
} elseif {[string first "alveou200" ${project_name}] == 0} {
set fpga_part "xcu200-fsgd2104-2-e"
set fpga_board "xilinx.com:au200:part0:1.0"
} elseif {[string first "alveou280" ${project_name}] == 0} {
set fpga_part "xcu280-fsvh2892-2L-e"
set fpga_board "xilinx.com:au280:part0:1.1"
} else {
puts "The project ${project_name} does not have associated constraint(s)"
exit
}
create_project ${project_name} ${project_dir}/${project_name} -part ${fpga_part} -force
set_property board_part ${fpga_board} [current_project]
#Adding the ip path to the project
set_property ip_repo_paths "$submodules_ip_dir" [current_project]
#A block design is created
create_bd_design "bd"
#Add modules from RTL
add_files ${src_dir}/
add_files ${submodules_ip_dir}/fpga-network-stack-core/RTL
# Refresh the hierarchy
set_property source_mgmt_mode All [current_project]
# Add extra files
source ./scripts/${project_name}/extra_files.tcl -quiet
# Create the block Design
source ./scripts/${project_name}/block_design.tcl
# Add Contraints files
if {[string first "vcu118" ${project_name}] == 0} {
add_files -fileset constrs_1 -norecurse ${constraints_dir}/vcu118_pinout.xdc
add_files -fileset constrs_1 -norecurse ${constraints_dir}/vcu118_timing.xdc
} elseif {[string first "alveou200" ${project_name}] == 0} {
add_files -fileset constrs_1 -norecurse ${constraints_dir}/alveou200_pinout.xdc
add_files -fileset constrs_1 -norecurse ${constraints_dir}/alveou200_timing.xdc
} elseif {[string first "alveou280" ${project_name}] == 0} {
add_files -fileset constrs_1 -norecurse ${constraints_dir}/alveou280_pinout.xdc
add_files -fileset constrs_1 -norecurse ${constraints_dir}/alveou280_timing.xdc
} else {
puts "The project ${project_name} does not have associated constraint(s)"
}
set_property -name {STEPS.SYNTH_DESIGN.ARGS.MORE OPTIONS} -value {-verilog_define ULTRASCALE_PLUS} -objects [get_runs synth_1]
set_property verilog_define ULTRASCALE_PLUS [get_filesets sources_1]
set_property verilog_define ULTRASCALE_PLUS [get_filesets sim_1]
update_compile_order -fileset sources_1
generate_target all [get_files ${project_dir}/${project_name}/${project_name}.srcs/sources_1/bd/bd/bd.bd]
make_wrapper -files [get_files ${project_dir}/${project_name}/${project_name}.srcs/sources_1/bd/bd/bd.bd] -top
add_files -norecurse ${project_dir}/${project_name}/${project_name}.srcs/sources_1/bd/bd/hdl/bd_wrapper.v
set_property top bd_wrapper [current_fileset]
set_property top bd_wrapper [get_filesets sim_1]
set_property strategy Performance_ExtraTimingOpt [get_runs impl_1]
# Add in this file things that are not common to the other projects
# If this file does not exists the project creation will continue due to "-quiet"
source ./scripts/${project_name}/specific_details.tcl -quiet
close_project
|
@testset "context" begin
ctx = CuCurrentContext()
dev = CuCurrentDevice()
let ctx2 = CuContext(dev)
@test ctx2 == CuCurrentContext() # ctor implicitly pushes
activate(ctx)
@test ctx == CuCurrentContext()
@test CuDevice(ctx2) == dev
CUDA.unsafe_destroy!(ctx2)
end
let global_ctx2 = nothing
CuContext(dev) do ctx2
@test ctx2 == CuCurrentContext()
@test ctx != ctx2
global_ctx2 = ctx2
end
@test !CUDA.isvalid(global_ctx2)
@test ctx == CuCurrentContext()
@test CuDevice(ctx) == dev
@test CuCurrentDevice() == dev
device_synchronize()
end
end
# FIXME: these trample over our globally-managed context
# @testset "primary context" begin
# pctx = CuPrimaryContext(device())
# @test !isactive(pctx)
# unsafe_reset!(pctx)
# @test !isactive(pctx)
# @test flags(pctx) == 0
# setflags!(pctx, CUDA.CTX_SCHED_BLOCKING_SYNC)
# @test flags(pctx) == CUDA.CTX_SCHED_BLOCKING_SYNC
# let global_ctx = nothing
# CuContext(pctx) do ctx
# @test CUDA.isvalid(ctx)
# @test isactive(pctx)
# global_ctx = ctx
# end
# @test !isactive(pctx)
# @test !CUDA.isvalid(global_ctx)
# end
# CuContext(pctx) do ctx
# @test CUDA.isvalid(ctx)
# @test isactive(pctx)
# unsafe_reset!(pctx)
# @test !isactive(pctx)
# @test !CUDA.isvalid(ctx)
# end
# let
# @test !isactive(pctx)
# ctx1 = CuContext(pctx)
# @test isactive(pctx)
# @test CUDA.isvalid(ctx1)
# unsafe_reset!(pctx)
# @test !isactive(pctx)
# @test !CUDA.isvalid(ctx1)
# CUDA.valid_contexts
# ctx2 = CuContext(pctx)
# @test isactive(pctx)
# @test !CUDA.isvalid(ctx1)
# @test CUDA.isvalid(ctx2)
# unsafe_reset!(pctx)
# end
# end
@testset "cache config" begin
config = cache_config()
cache_config!(CUDA.FUNC_CACHE_PREFER_L1)
@test cache_config() == CUDA.FUNC_CACHE_PREFER_L1
cache_config!(config)
end
@testset "shmem config" begin
config = shmem_config()
shmem_config!(CUDA.SHARED_MEM_CONFIG_FOUR_BYTE_BANK_SIZE)
@test shmem_config() == CUDA.SHARED_MEM_CONFIG_FOUR_BYTE_BANK_SIZE
shmem_config!(config)
end
@testset "limits" begin
lim = limit(CUDA.LIMIT_DEV_RUNTIME_SYNC_DEPTH)
lim += 1
limit!(CUDA.LIMIT_DEV_RUNTIME_SYNC_DEPTH, lim)
@test lim == limit(CUDA.LIMIT_DEV_RUNTIME_SYNC_DEPTH)
limit!(CUDA.LIMIT_DEV_RUNTIME_SYNC_DEPTH, lim)
end
|
object JvPropertyStoreEditorForm: TJvPropertyStoreEditorForm
Left = 0
Top = 0
BorderIcons = []
ClientHeight = 541
ClientWidth = 751
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
end
|
# This software is licensed under the MIT License (MIT).
import Pkg
srcdir = @__DIR__
Pkg.activate(srcdir)
# Need to have PackageCompiler installed
Pkg.add("PackageCompiler", preserve = Pkg.PRESERVE_ALL)
prj_file = Pkg.project().path
prj_dir = dirname(prj_file)
@info("Building custom system image in project \"$prj_dir\".")
@info("Instantiating project.")
Pkg.instantiate()
@info("Precompiling packages.")
Pkg.precompile()
excluded = [
"PyCall",
"SymPy",
"StatsPlots",
"ImageMagick",
"StatsBase",
"PackageCompiler",
"Ipopt",
"SpecialFunctions",
]
prj_sysimage = get(Pkg.TOML.parsefile(prj_file), "deps", Dict{String,Any}())
sysimg_pkgs = filter(x -> x ∉ excluded, sort(collect(keys(prj_sysimage))))
@info("Package to include in system image: $(join(sysimg_pkgs, " "))")
@info("Building system image.")
import PackageCompiler, Libdl
sysimage_path = joinpath(srcdir, "JuliaSysimage." * Libdl.dlext)
PackageCompiler.create_sysimage(
Symbol.(sysimg_pkgs),
sysimage_path = sysimage_path,
precompile_execution_file = joinpath(srcdir, "precompile_exec.jl"),
cpu_target = PackageCompiler.default_app_cpu_target(),
replace_default = false
)
@info "Created custom Julia system image" |
#lang scribble/manual
@(require emoji)
@title{@emojize{:first_quarter_moon:} May 1, 2020}
@bold{Chapter 10: Gene isolation and maniupation & lac operon review}
In this chapter, you will learn about (1)
@section{Discussion Materials & Keys}
@bold{Discussion notes:} @hyperlink["https://uic.blackboard.com/bbcswebdav/xid-85667632_1"]{[Blank]} | @hyperlink["https://uic.blackboard.com/bbcswebdav/xid-85692198_1"]{[Annotated]}
@bold{Annotated keys:} @hyperlink["https://uic.blackboard.com/bbcswebdav/xid-85777236_1"]{[Bb Problem Set 11]} | @hyperlink["https://uic.blackboard.com/bbcswebdav/xid-85777227_1"]{[Quiz 10]}
@bold{Extra:} Have a wonderful summer! |
; Licensed to the Apache Software Foundation (ASF) under one
; or more contributor license agreements. See the NOTICE file
; distributed with this work for additional information
; regarding copyright ownership. The ASF licenses this file
; to you under the Apache License, Version 2.0 (the
; "License"); you may not use this file except in compliance
; with the License. You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS,
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
; See the License for the specific language governing permissions and
; limitations under the License.
(ns dda.pallet.commons.session
(:require
[schema.core :as s]
[dda.pallet.commons.session-target :as st]
[dda.pallet.commons.session-result :as sr]))
(def SessionSpec
{:new-nodes s/Any
:old-nodes s/Any
:targets s/Any
:plan-state s/Any
:service-state s/Any
:results [{:target st/TargetSpec
:target-type s/Any
:plan-state s/Any
:result [sr/ResultSpec]
:phase s/Any}]
:environment s/Any
:initial-plan-state s/Any})
|
<?php
namespace Symfony\Component\DependencyInjection\Tests;
use PHPUnit\Framework\TestCase;
use Symfony\Component\DependencyInjection\Argument\RewindableGenerator;
use Symfony\Component\DependencyInjection\Container;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\EnvVarLoaderInterface;
use Symfony\Component\DependencyInjection\EnvVarProcessor;
use Symfony\Component\DependencyInjection\Exception\EnvNotFoundException;
use Symfony\Component\DependencyInjection\Exception\ParameterCircularReferenceException;
use Symfony\Component\DependencyInjection\Exception\RuntimeException;
class EnvVarProcessorTest extends TestCase
{
public const TEST_CONST = 'test';
/**
* @dataProvider validStrings
*/
public function testGetEnvString($value, $processed)
{
$container = new ContainerBuilder();
$container->setParameter('env(foo)', $value);
$container->compile();
$processor = new EnvVarProcessor($container);
$result = $processor->getEnv('string', 'foo', function () {
$this->fail('Should not be called');
});
$this->assertSame($processed, $result);
}
public function validStrings()
{
return [
['hello', 'hello'],
['true', 'true'],
['false', 'false'],
['null', 'null'],
['1', '1'],
['0', '0'],
['1.1', '1.1'],
['1e1', '1e1'],
];
}
/**
* @dataProvider validBools
*/
public function testGetEnvBool($value, $processed)
{
$processor = new EnvVarProcessor(new Container());
$result = $processor->getEnv('bool', 'foo', function ($name) use ($value) {
$this->assertSame('foo', $name);
return $value;
});
$this->assertSame($processed, $result);
}
/**
* @dataProvider validBools
*/
public function testGetEnvNot($value, $processed)
{
$processor = new EnvVarProcessor(new Container());
$result = $processor->getEnv('not', 'foo', function ($name) use ($value) {
$this->assertSame('foo', $name);
return $value;
});
$this->assertSame(!$processed, $result);
}
public function validBools()
{
return [
['true', true],
['false', false],
['null', false],
['1', true],
['0', false],
['1.1', true],
['1e1', true],
];
}
/**
* @dataProvider validInts
*/
public function testGetEnvInt($value, $processed)
{
$processor = new EnvVarProcessor(new Container());
$result = $processor->getEnv('int', 'foo', function ($name) use ($value) {
$this->assertSame('foo', $name);
return $value;
});
$this->assertSame($processed, $result);
}
public function validInts()
{
return [
['1', 1],
['1.1', 1],
['1e1', 10],
];
}
/**
* @dataProvider invalidInts
*/
public function testGetEnvIntInvalid($value)
{
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('Non-numeric env var');
$processor = new EnvVarProcessor(new Container());
$processor->getEnv('int', 'foo', function ($name) use ($value) {
$this->assertSame('foo', $name);
return $value;
});
}
public function invalidInts()
{
return [
['foo'],
['true'],
['null'],
];
}
/**
* @dataProvider validFloats
*/
public function testGetEnvFloat($value, $processed)
{
$processor = new EnvVarProcessor(new Container());
$result = $processor->getEnv('float', 'foo', function ($name) use ($value) {
$this->assertSame('foo', $name);
return $value;
});
$this->assertSame($processed, $result);
}
public function validFloats()
{
return [
['1', 1.0],
['1.1', 1.1],
['1e1', 10.0],
];
}
/**
* @dataProvider invalidFloats
*/
public function testGetEnvFloatInvalid($value)
{
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('Non-numeric env var');
$processor = new EnvVarProcessor(new Container());
$processor->getEnv('float', 'foo', function ($name) use ($value) {
$this->assertSame('foo', $name);
return $value;
});
}
public function invalidFloats()
{
return [
['foo'],
['true'],
['null'],
];
}
/**
* @dataProvider validConsts
*/
public function testGetEnvConst($value, $processed)
{
$processor = new EnvVarProcessor(new Container());
$result = $processor->getEnv('const', 'foo', function ($name) use ($value) {
$this->assertSame('foo', $name);
return $value;
});
$this->assertSame($processed, $result);
}
public function validConsts()
{
return [
['Symfony\Component\DependencyInjection\Tests\EnvVarProcessorTest::TEST_CONST', self::TEST_CONST],
['E_ERROR', \E_ERROR],
];
}
/**
* @dataProvider invalidConsts
*/
public function testGetEnvConstInvalid($value)
{
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('undefined constant');
$processor = new EnvVarProcessor(new Container());
$processor->getEnv('const', 'foo', function ($name) use ($value) {
$this->assertSame('foo', $name);
return $value;
});
}
public function invalidConsts()
{
return [
['Symfony\Component\DependencyInjection\Tests\EnvVarProcessorTest::UNDEFINED_CONST'],
['UNDEFINED_CONST'],
];
}
public function testGetEnvBase64()
{
$processor = new EnvVarProcessor(new Container());
$result = $processor->getEnv('base64', 'foo', function ($name) {
$this->assertSame('foo', $name);
return base64_encode('hello');
});
$this->assertSame('hello', $result);
$result = $processor->getEnv('base64', 'foo', function ($name) { return '/+0='; });
$this->assertSame("\xFF\xED", $result);
$result = $processor->getEnv('base64', 'foo', function ($name) { return '_-0='; });
$this->assertSame("\xFF\xED", $result);
}
public function testGetEnvTrim()
{
$processor = new EnvVarProcessor(new Container());
$result = $processor->getEnv('trim', 'foo', function ($name) {
$this->assertSame('foo', $name);
return " hello\n";
});
$this->assertSame('hello', $result);
}
/**
* @dataProvider validJson
*/
public function testGetEnvJson($value, $processed)
{
$processor = new EnvVarProcessor(new Container());
$result = $processor->getEnv('json', 'foo', function ($name) use ($value) {
$this->assertSame('foo', $name);
return $value;
});
$this->assertSame($processed, $result);
}
public function validJson()
{
return [
['[1]', [1]],
['{"key": "value"}', ['key' => 'value']],
[null, null],
];
}
public function testGetEnvInvalidJson()
{
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('Syntax error');
$processor = new EnvVarProcessor(new Container());
$processor->getEnv('json', 'foo', function ($name) {
$this->assertSame('foo', $name);
return 'invalid_json';
});
}
/**
* @dataProvider otherJsonValues
*/
public function testGetEnvJsonOther($value)
{
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('Invalid JSON env var');
$processor = new EnvVarProcessor(new Container());
$processor->getEnv('json', 'foo', function ($name) use ($value) {
$this->assertSame('foo', $name);
return json_encode($value);
});
}
public function otherJsonValues()
{
return [
[1],
[1.1],
[true],
[false],
['foo'],
];
}
public function testGetEnvUnknown()
{
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('Unsupported env var prefix');
$processor = new EnvVarProcessor(new Container());
$processor->getEnv('unknown', 'foo', function ($name) {
$this->assertSame('foo', $name);
return 'foo';
});
}
public function testGetEnvKeyInvalidKey()
{
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('Invalid env "key:foo": a key specifier should be provided.');
$processor = new EnvVarProcessor(new Container());
$processor->getEnv('key', 'foo', function ($name) {
$this->fail('Should not get here');
});
}
/**
* @dataProvider noArrayValues
*/
public function testGetEnvKeyNoArrayResult($value)
{
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('Resolved value of "foo" did not result in an array value.');
$processor = new EnvVarProcessor(new Container());
$processor->getEnv('key', 'index:foo', function ($name) use ($value) {
$this->assertSame('foo', $name);
return $value;
});
}
public function noArrayValues()
{
return [
[null],
['string'],
[1],
[true],
];
}
/**
* @dataProvider invalidArrayValues
*/
public function testGetEnvKeyArrayKeyNotFound($value)
{
$this->expectException(EnvNotFoundException::class);
$this->expectExceptionMessage('Key "index" not found in');
$processor = new EnvVarProcessor(new Container());
$processor->getEnv('key', 'index:foo', function ($name) use ($value) {
$this->assertSame('foo', $name);
return $value;
});
}
public function invalidArrayValues()
{
return [
[[]],
[['index2' => 'value']],
[['index', 'index2']],
];
}
/**
* @dataProvider arrayValues
*/
public function testGetEnvKey($value)
{
$processor = new EnvVarProcessor(new Container());
$this->assertSame($value['index'], $processor->getEnv('key', 'index:foo', function ($name) use ($value) {
$this->assertSame('foo', $name);
return $value;
}));
}
public function arrayValues()
{
return [
[['index' => 'password']],
[['index' => 'true']],
[['index' => false]],
[['index' => '1']],
[['index' => 1]],
[['index' => '1.1']],
[['index' => 1.1]],
[['index' => []]],
[['index' => ['val1', 'val2']]],
];
}
public function testGetEnvKeyChained()
{
$processor = new EnvVarProcessor(new Container());
$this->assertSame('password', $processor->getEnv('key', 'index:file:foo', function ($name) {
$this->assertSame('file:foo', $name);
return [
'index' => 'password',
];
}));
}
/**
* @dataProvider validNullables
*/
public function testGetEnvNullable($value, $processed)
{
$processor = new EnvVarProcessor(new Container());
$result = $processor->getEnv('default', ':foo', function ($name) use ($value) {
$this->assertSame('foo', $name);
return $value;
});
$this->assertSame($processed, $result);
}
public function validNullables()
{
return [
['hello', 'hello'],
['', null],
['null', 'null'],
['Null', 'Null'],
['NULL', 'NULL'],
];
}
public function testRequireMissingFile()
{
$this->expectException(EnvNotFoundException::class);
$this->expectExceptionMessage('missing-file');
$processor = new EnvVarProcessor(new Container());
$processor->getEnv('require', '/missing-file', function ($name) {
return $name;
});
}
public function testRequireFile()
{
$path = __DIR__.'/Fixtures/php/return_foo_string.php';
$processor = new EnvVarProcessor(new Container());
$result = $processor->getEnv('require', $path, function ($name) use ($path) {
$this->assertSame($path, $name);
return $path;
});
$this->assertEquals('foo', $result);
}
/**
* @dataProvider validCsv
*/
public function testGetEnvCsv($value, $processed)
{
$processor = new EnvVarProcessor(new Container());
$result = $processor->getEnv('csv', 'foo', function ($name) use ($value) {
$this->assertSame('foo', $name);
return $value;
});
$this->assertSame($processed, $result);
}
public function validCsv()
{
$complex = <<<'CSV'
,"""","foo""","\""",\,foo\
CSV;
return [
['', [null]],
[',', ['', '']],
['1', ['1']],
['1,2," 3 "', ['1', '2', ' 3 ']],
['\\,\\\\', ['\\', '\\\\']],
[$complex, \PHP_VERSION_ID >= 70400 ? ['', '"', 'foo"', '\\"', '\\', 'foo\\'] : ['', '"', 'foo"', '\\"",\\,foo\\']],
[null, null],
];
}
public function testEnvLoader()
{
$loaders = function () {
yield new class() implements EnvVarLoaderInterface {
public function loadEnvVars(): array
{
return [
'FOO_ENV_LOADER' => '123',
];
}
};
yield new class() implements EnvVarLoaderInterface {
public function loadEnvVars(): array
{
return [
'FOO_ENV_LOADER' => '234',
'BAR_ENV_LOADER' => '456',
];
}
};
};
$processor = new EnvVarProcessor(new Container(), $loaders());
$result = $processor->getEnv('string', 'FOO_ENV_LOADER', function () {});
$this->assertSame('123', $result);
$result = $processor->getEnv('string', 'BAR_ENV_LOADER', function () {});
$this->assertSame('456', $result);
$result = $processor->getEnv('string', 'FOO_ENV_LOADER', function () {});
$this->assertSame('123', $result); // check twice
}
public function testCircularEnvLoader()
{
$container = new ContainerBuilder();
$container->setParameter('env(FOO_CONTAINER)', 'foo');
$container->compile();
$index = 0;
$loaders = function () use (&$index) {
if (0 === $index++) {
throw new ParameterCircularReferenceException(['FOO_CONTAINER']);
}
yield new class() implements EnvVarLoaderInterface {
public function loadEnvVars(): array
{
return [
'FOO_ENV_LOADER' => '123',
];
}
};
};
$processor = new EnvVarProcessor($container, new RewindableGenerator($loaders, 1));
$result = $processor->getEnv('string', 'FOO_CONTAINER', function () {});
$this->assertSame('foo', $result);
$result = $processor->getEnv('string', 'FOO_ENV_LOADER', function () {});
$this->assertSame('123', $result);
$result = $processor->getEnv('default', ':BAR_CONTAINER', function ($name) use ($processor) {
$this->assertSame('BAR_CONTAINER', $name);
return $processor->getEnv('string', $name, function () {});
});
$this->assertNull($result);
$this->assertSame(2, $index);
}
public function testGetEnvInvalidPrefixWithDefault()
{
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('Unsupported env var prefix');
$processor = new EnvVarProcessor(new Container());
$processor->getEnv('unknown', 'default::FAKE', function ($name) {
$this->assertSame('default::FAKE', $name);
return null;
});
}
}
|
#!/bin/csh -efx
# some variable you need to set before running this script
set tDbName = mm3
set qDbName = mm3
set tOrg = mouse
set qOrg = mouse
set aliDir = /mnt/angie/blastz.mm3.2003-03-06-ASH
set chainDir = $aliDir/axtChain
set tSeqDir = /cluster/store2/mm.2003.02/mm3
set qSeqDir = /cluster/store2/mm.2003.02/mm3
set fileServer = eieio
set dbServer = hgwdev
set parasolServer = kkr1u00
set subShellDir = chain.$tDbName.$qDbName.tmp
mkdir -p $subShellDir
cd $subShellDir
cat >chainRun.csh <<endCat
#!/bin/csh -efx
# Do small cluster run on kkr1u00
# The little cluster run will probably take about 1 hours.
cd $aliDir
mkdir -p axtChain
cd axtChain
mkdir -p run1
cd run1
mkdir -p chain out
ls -1S ../../axtChrom/*.axt > input.lst
echo '#LOOP' > gsub
echo 'doChain {check in exists \$(path1)} {check out line+ chain/\$(root1).chain} {check out line+ out/\$(root1).out}' >> gsub
echo '#ENDLOOP' >> gsub
gensub2 input.lst single gsub spec
para create spec
echo '#\!/bin/csh -ef' > doChain
echo 'axtChain \$1 $tSeqDir/mixedNib $qSeqDir/mixedNib \$2 > \$3' >> doChain
chmod a+x doChain
para shove
endCat
cat > sortChains.csh <<endCat
#!/bin/csh -efx
# Do some sorting on the little cluster job on the file server
# This will take about 20 minutes. This also ends up assigning
# a unique id to each member of the chain.
# ssh $fileServer
cd $chainDir
chainMergeSort run1/chain/*.chain > all.chain
chainSplit chain all.chain
rm run1/chain/*.chain
endCat
cat > loadChains.csh <<endCat
#!/bin/csh -efx
# Load the chains into the database as so. This will take about
# 45 minutes.
# ssh $dbServer
cd $chainDir
cd chain
foreach i (*.chain)
set c = \$i:r
hgLoadChain $tDbName \${c}_${qOrg}Chain \$i
end
endCat
chmod a+x *.csh
ssh $parasolServer $cwd/chainRun.csh
ssh $fileServer $cwd/sortChains.csh
ssh $dbServer $cwd/loadChains.csh
# rm -f $subShellDir
cd ..
|
@echo off
REM ****************************************************************************
REM Vivado (TM) v2020.2 (64-bit)
REM
REM Filename : compile.bat
REM Simulator : Xilinx Vivado Simulator
REM Description : Script for compiling the simulation design source files
REM
REM Generated by Vivado on Wed Mar 10 15:58:15 +0100 2021
REM SW Build 3064766 on Wed Nov 18 09:12:45 MST 2020
REM
REM Copyright 1986-2020 Xilinx, Inc. All Rights Reserved.
REM
REM usage: compile.bat
REM
REM ****************************************************************************
REM compile VHDL design sources
echo "xvhdl --incr --relax -prj tb_cnt_up_down_vhdl.prj"
call xvhdl --incr --relax -prj tb_cnt_up_down_vhdl.prj -log xvhdl.log
call type xvhdl.log > compile.log
if "%errorlevel%"=="1" goto END
if "%errorlevel%"=="0" goto SUCCESS
:END
exit 1
:SUCCESS
exit 0
|
\newcommand{\FOOT}{--FOOT--}
%%ligne de tableau avec \\
\newcommand{\specialcell}[2][c]{
\parbox[#1]{6.3cm}{#2}}
\begin{tabular}{p{9cm} p{8cm}}
\vspace{0pt}
\includegraphics[width=7.5cm]{--LOGO--}
&
\vspace{0pt}
\raggedleft
%\begin{flushright}
\textcolor{violet}{\textsc{\Large Commande fournisseur --NUM--}}\\
Date de commande : --DATEC--\\
%{\small Date d'expédition : \textbf{--DATEEXP--}\\
Ref. commande fournisseur : --REFCLIENT--\\
SN : --SN--\\
%TVA Intra. du client : --DESTINATAIRE.TVA--\\}~\\
\end{tabular}
%\vspace{-0.7cm}
\begin{minipage}[t]{0.40\textwidth}
{\small Facturation :}\\
\begin{fminipage}
--MYSOC--
\end{fminipage}
{\small Livraison :}\\
\begin{fminipage}
\textbf{\large --SHIPPING.NAME--}\\
--SHIPPING.ADDRESS--\\
\textsc{--SHIPPING.ZIP-- --SHIPPING.TOWN--}\\
\end{fminipage}
\end{minipage}
\hspace{1cm}
\begin{minipage}[t]{0.52\textwidth}
{\small Destinataire :}
\begin{fminipage}
\textbf{\large --DESTINATAIRE.NAME--}\\
--DESTINATAIRE.ADDRESS--\\
\textsc{--DESTINATAIRE.ZIP-- --DESTINATAIRE.TOWN--}\\
\begin{minipage}{\textwidth}
\flushright
{\tiny --CODECLIENT--}
\end{minipage}
\end{fminipage}
\end{minipage}
\begin{minipage}{\textwidth}
\flushright
{\footnotesize \textit{Montants exprimés en €}}
\end{minipage}\\
\setlength\LTleft{0pt}
\setlength\LTright{0pt}
\setlength\LTpre{0pt}
\begin{longtable}{|p{2.5cm}|p{6.5cm}@{\extracolsep{1mm plus 1fil}}|c|r|r|r|}
\hline
\multicolumn{1}{|c}{R\'ef} &
\multicolumn{1}{c}{D\'esignation} &
Qt\'e &
PU &
Total HT &
\multicolumn{1}{c|}{TVA} \\
\hline \hline
\endfirsthead
\hline
\multicolumn{6}{|l|}{\small\sl suite de la page pr\'ec\'edente}\\
\hline \multicolumn{1}{|c}{R\'ef} &
\multicolumn{1}{c}{D\'esignation} &
Qt\'e &
PU &
Total HT &
\multicolumn{1}{c|}{TVA} \\ \hline \hline
\endhead
\hline \multicolumn{6}{|r|}{{\small\sl suite sur la prochaine page}} \\ \hline
\endfoot
\hline
\endlastfoot
--TABULAR--
\end{longtable}
\begin{minipage}[t]{0.40\textwidth}
Notes : --NOTE--
\end{minipage}
\hspace{1cm}
\begin{minipage}[t]{0.50\textwidth}
\begin{flushright}
\begin{tabular}{p{4.5cm} r}
--TOTAL--
\end{tabular}
\end{flushright}
%\begin{flushright}
%\begin{footnotesize}
%Versements déjà effectués :
% \begin{tabular}{p{1.8cm} c p{1.8cm} c}
%Règlement & Montant & Type & Numéro \\
%\ghline
% --DATEACPTE--& --ACPTE-- & --MODEREG-- & --NUMP-- \\
%\ghline
%\end{tabular}
% \end{footnotesize}
%\end{flushright}
\end{minipage}
|
# This file is a part of AstroLib.jl. License is MIT "Expat".
# Copyright (C) 2016 Mosè Giordano.
function kepler_solver(M::T, e::T) where {T<:AbstractFloat}
@assert 0 <= e <= 1 "eccentricity must be in the range [0, 1]"
# M must be in the range [-pi, pi], see Markley (1995), page 2.
M = rem2pi(M, RoundNearest)
if iszero(M) || iszero(e)
return M
else
pi2 = abs2(T(pi))
# equation (20)
α = (3 * pi2 + 1.6 * (pi2 - pi * abs(M))/(1 + e))/(pi2 - 6)
# equation (5)
d = 3 * (1 - e) + α * e
# equation (9)
q = 2 * α * d * (1 - e) - M * M
# equation (10)
r = 3 * α * d * (d - 1 + e) * M + M * M * M
# equation (14)
w = cbrt(abs2(abs(r) + sqrt(q * q * q + r * r)))
# equation (15)
E1 = (2 * r * w / @evalpoly(w, q * q, q, 1) + M)/d
# equation (26) & equation (27)
f2, f3 = e .* sincos(E1)
# equation (21)
f0 = E1 - f2 - M
# equation (25)
f1 = 1 - f3
# equation (22)
δ3 = -f0 / (f1 - f0 * f2 / (2 * f1))
# equation (23)
δ4 = -f0 / @evalpoly(δ3, f1, f2 / 2, f3 / 6)
# equations (24) and (28)
δ5 = -f0 / @evalpoly(δ4, f1, f2 / 2, f3 / 6, - f2 / 24)
return E1 + δ5 # equation 29
end
end
"""
kepler_solver(M, e) -> E
### Purpose ###
Solve Kepler's equation in the elliptic motion regime (\$0 \\leq e \\leq 1\$)
and return eccentric anomaly \$E\$.
### Explanation ###
In order to find the position of a body in elliptic motion (e.g., in the
two-body problem) at a given time \$t\$, one has to solve the [Kepler's
equation](https://en.wikipedia.org/wiki/Kepler%27s_equation)
``M(t) = E(t) - e\\sin E(t)``
where \$M(t) = (t - t_{0})/P\$ is the mean anomaly, \$E(t)\$ the eccentric
anomaly, \$e\$ the eccentricity of the orbit, \$t_0\$ is the time of periapsis
passage, and \$P\$ is the period of the orbit. Usually the eccentricity is
given and one wants to find the eccentric anomaly \$E(t)\$ at a specific time
\$t\$, so that also the mean anomaly \$M(t)\$ is known.
### Arguments ###
* `M`: mean anomaly.
* `e`: eccentricity, in the elliptic motion regime (\$0 \\leq e \\leq 1\$)
### Output ###
The eccentric anomaly \$E\$, restricted to the range \$[-\\pi, \\pi]\$.
### Method ###
Many different numerical methods exist to solve Kepler's equation. This
function implements the algorithm proposed in Markley (1995) Celestial Mechanics
and Dynamical Astronomy, 63, 101
(DOI:[10.1007/BF00691917](http://dx.doi.org/10.1007/BF00691917)). This method
is not iterative, requires only four transcendental function evaluations, and
has been proved to be fast and efficient over the entire range of elliptic
motion \$0 \\leq e \\leq 1\$.
### Example ###
(1) Find the eccentric anomaly for an orbit with eccentricity \$e = 0.7\$ and
for \$M(t) = 8\\pi/3\$.
```jldoctest
julia> using AstroLib
julia> ecc = 0.7;
julia> E = kepler_solver(8pi/3, ecc)
2.5085279492864223
```
(2) Plot the eccentric anomaly as a function of mean anomaly for eccentricity
\$e = 0\$, \$0.5\$, \$0.9\$. Recall that `kepler_solver` gives \$E \\in [-\\pi,
\\pi]\$, use `mod2pi` to have it in \$[0, 2\\pi]\$. Use
[PyPlot.jl](https://github.com/JuliaPlots/Plots.jl/) for plotting.
```julia
using AstroLib, PyPlot
M = range(0, stop=2pi, length=1001)[1:end-1];
for ecc in (0, 0.5, 0.9); plot(M, mod2pi.(kepler_solver.(M, ecc))); end
```
### Notes ###
The true anomaly can be calculated with `trueanom` function.
"""
kepler_solver(M::Real, e::Real) =
kepler_solver(promote(float(M), float(e))...)
|
Beat 0 2
Beat 245 0
Beat 490 1
Beat 735 0
Beat 1015 4
Beat 1260 0
Beat 1505 1
Beat 1750 0
Beat 1995 2
Beat 2240 0
Beat 2485 1
Beat 2730 0
Beat 3010 3
Beat 3255 0
Beat 3500 1
Beat 3745 0
Beat 3990 2
Beat 4235 0
Beat 4480 1
Beat 4725 0
Beat 5005 4
Beat 5250 0
Beat 5495 1
Beat 5740 0
Beat 5985 2
Beat 6230 0
Beat 6510 1
Beat 6755 0
Beat 7000 3
Beat 7245 0
Beat 7490 1
Beat 7735 0
Beat 8015 2
Beat 8260 0
Beat 8505 1
Beat 8750 0
Beat 8995 4
Beat 9240 0
Beat 9485 1
Beat 9730 0
Beat 10010 2
Beat 10255 0
Beat 10500 1
Beat 10745 0
Beat 10990 3
Beat 11235 0
Beat 11480 1
Beat 11725 0
Beat 12005 2
Beat 12250 0
Beat 12495 1
Beat 12740 0
Beat 12985 4
Beat 13230 0
Beat 13510 1
Beat 13755 0
Beat 14000 2
Beat 14245 0
Beat 14490 1
Beat 14735 0
Beat 15015 3
Beat 15260 0
Beat 15505 1
Beat 15750 0
Beat 15995 2
Beat 16240 0
Beat 16485 1
Beat 16730 0
Beat 17010 4
Beat 17255 0
Beat 17500 1
Beat 17745 0
Beat 17990 2
Beat 18235 0
Beat 18480 1
Beat 18725 0
Beat 19005 3
Beat 19250 0
Beat 19495 1
Beat 19740 0
Beat 19985 2
Beat 20230 0
Beat 20475 1
Beat 20720 0
Beat 21000 4
Beat 21245 0
Beat 21490 1
Beat 21735 0
Beat 22015 2
Beat 22260 0
Beat 22505 1
Beat 22750 0
Beat 22995 3
Beat 23240 0
Beat 23485 1
Beat 23730 0
Beat 23975 2
Beat 24220 0
Beat 24500 1
Beat 24745 0
Beat 24990 4
Beat 25235 0
Beat 25480 1
Beat 25725 0
Beat 26005 2
Beat 26250 0
Beat 26495 1
Beat 26740 0
Beat 26985 3
Beat 27230 0
Beat 27475 1
Beat 27720 0
Beat 28000 2
Beat 28245 0
Beat 28490 1
Beat 28735 0
Beat 29015 4
Beat 29260 0
Beat 29505 1
Beat 29750 0
Beat 29995 2
Beat 30240 0
Beat 30485 1
Beat 30730 0
Beat 30975 3
Beat 31220 0
Beat 31465 1
Beat 31710 0
Beat 31990 2
Beat 32235 0
Beat 32480 1
Beat 32725 0
Beat 33005 4
Beat 33250 0
Beat 33495 1
Beat 33740 0
Beat 33985 2
Beat 34230 0
Beat 34475 1
Beat 34720 0
Beat 35000 3
Beat 35245 0
Beat 35490 1
Beat 35735 0
Beat 36015 2
Beat 36260 0
Beat 36505 1
Beat 36750 0
Beat 36995 4
Beat 37240 0
Beat 37485 1
Beat 37730 0
Beat 38010 2
Beat 38255 0
Beat 38500 1
Beat 38745 0
Beat 38990 3
Beat 39235 0
Beat 39480 1
Beat 39725 0
Beat 39970 2
Beat 40215 0
Beat 40460 1
Beat 40705 0
Beat 40985 4
Beat 41230 0
Beat 41475 1
Beat 41720 0
Beat 42000 2
Beat 42245 0
Beat 42490 1
Beat 42735 0
Beat 43015 3
Beat 43260 0
Beat 43505 1
Beat 43750 0
Beat 43995 2
Beat 44240 0
Beat 44485 1
Beat 44730 0
Beat 45010 4
Beat 45255 0
Beat 45500 1
Beat 45745 0
Beat 45990 2
Beat 46235 0
Beat 46480 1
Beat 46725 0
Beat 47005 3
Beat 47250 0
Beat 47495 1
Beat 47740 0
Beat 47985 2
Beat 48230 0
Beat 48475 1
Beat 48720 0
Beat 49000 4
Beat 49245 0
Beat 49490 1
Beat 49735 0
Beat 50015 2
Beat 50260 0
Beat 50505 1
Beat 50750 0
Beat 50995 3
Beat 51240 0
Beat 51485 1
Beat 51730 0
Beat 52010 2
Beat 52255 0
Beat 52500 1
Beat 52745 0
Beat 52990 4
Beat 53235 0
Beat 53480 1
Beat 53725 0
Beat 54005 2
Beat 54250 0
Beat 54495 1
Beat 54740 0
Beat 54985 3
Beat 55230 0
Beat 55475 1
Beat 55720 0
Beat 56000 2
Beat 56245 0
Beat 56490 1
Beat 56735 0
Beat 57015 4
Beat 57260 0
Beat 57505 1
Beat 57750 0
Beat 57995 2
Beat 58240 0
Beat 58485 1
Beat 58730 0
Beat 59010 3
Beat 59255 0
Beat 59500 1
Beat 59745 0
Beat 59990 2
Beat 60235 0
Beat 60480 1
Beat 60725 0
Beat 61005 4
Beat 61250 0
Beat 61495 1
Beat 61740 0
Beat 61985 2
Note 0 1015 55
Note 1015 1995 60
Note 1995 3010 62
Note 3010 3990 64
Note 3990 5005 65
Note 5005 5495 67
Note 5495 5985 67
Note 5985 6510 67
Note 6510 7000 67
Note 7000 8015 67
|
Note 8015 8995 69
Note 8995 9485 65
Note 9485 10010 65
Note 10010 10500 65
Note 10500 10990 65
Note 10990 12005 65
Note 12005 12985 67
Note 12985 13510 64
Note 13510 14000 64
Note 14000 14490 64
Note 14490 15015 64
Note 15015 15995 64
|
Note 15995 17010 55
Note 17010 17990 60
Note 17990 19005 62
Note 19005 19985 64
Note 19985 21000 65
Note 21000 21490 67
Note 21490 22015 67
Note 22015 22505 67
Note 22505 22995 67
Note 22995 24500 67
|
Note 24500 24990 69
Note 24990 26005 67
Note 26005 26985 65
Note 26985 28000 64
Note 28000 29015 62
Note 29015 29995 60
|
Note 31990 33005 55
Note 33005 33985 60
Note 33985 35000 62
Note 35000 36015 64
Note 36015 36995 65
Note 36995 38010 67
Note 38010 38990 67
Note 38990 40005 67
|
Note 40985 42000 65
Note 42000 43015 65
Note 43015 43995 65
|
Note 45010 45990 64
Note 45990 47005 64
Note 47005 47985 64
|
Note 47985 49000 55
Note 49000 50015 60
Note 50015 50995 62
Note 50995 52010 64
Note 52010 52990 65
Note 52990 54005 67
Note 54005 54985 67
Note 54985 56000 67
|
Note 56000 57015 69
Note 57015 57505 67
Note 57505 57995 67
Note 57995 58485 65
Note 58485 59010 65
Note 59010 59990 64
Note 59990 61005 62
Note 61005 61985 60
|
|
/-
Copyright (c) 2018 Mario Carneiro. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Mario Carneiro
Additional facts about equiv and encodable using the
pairing function on nat.
-/
import data.equiv.basic data.nat.pairing data.pnat.basic
open nat
namespace equiv
@[simp] def nat_prod_nat_equiv_nat : ℕ × ℕ ≃ ℕ :=
⟨λ p, nat.mkpair p.1 p.2,
nat.unpair,
λ p, begin cases p, apply nat.unpair_mkpair end,
nat.mkpair_unpair⟩
@[simp] def bool_prod_nat_equiv_nat : bool × ℕ ≃ ℕ :=
⟨λ ⟨b, n⟩, bit b n, bodd_div2,
λ ⟨b, n⟩, by simp [bool_prod_nat_equiv_nat._match_1, bodd_bit, div2_bit],
λ n, by simp [bool_prod_nat_equiv_nat._match_1, bit_decomp]⟩
@[simp] def nat_sum_nat_equiv_nat : ℕ ⊕ ℕ ≃ ℕ :=
(bool_prod_equiv_sum ℕ).symm.trans bool_prod_nat_equiv_nat
def int_equiv_nat : ℤ ≃ ℕ :=
int_equiv_nat_sum_nat.trans nat_sum_nat_equiv_nat
def prod_equiv_of_equiv_nat {α : Sort*} (e : α ≃ ℕ) : α × α ≃ α :=
calc α × α ≃ ℕ × ℕ : prod_congr e e
... ≃ ℕ : nat_prod_nat_equiv_nat
... ≃ α : e.symm
def pnat_equiv_nat : ℕ+ ≃ ℕ :=
⟨λ n, pred n.1, succ_pnat,
λ ⟨n, h⟩, by { cases n, cases h, simp [succ_pnat, h] }, λ n, by simp [succ_pnat] ⟩
end equiv
|
private
implementorsMethod
methodHolder value
ifNotNil: [:aMethod | self model browseMessagesFrom: aMethod selector ] |
* Created 2020-04-30 by Rebecca Joseph at the University of Nottingham
*************************************
* Name: sensitivity_stopdate.do
* Creator: RMJ
* Date: 20200430
* Desc: Sensitivity analysis changing the definition of stop dates
* Version History:
* Date Reference Update
* 20200430 sensitivity_noselfharm Create file
* 20200506 sensitivity_stopdate Specify model vars using do-files
* 20200507 sensitivity_stopdate Change macro outcome to savetag
* 20200515 sensitivity_stopdate Run utility collecting counts info
* 20200521 sensitivity_stopdate Drop macros between analyses
* 20201013 sensitivity_stopdate Add optional stsplit
* 20201022 sensitivity_stopdate Add id(patid) option
* 20201022 sensitivity_stopdate Collapse split categories to avoid omission error (stop30 only)
* 20201207 sensitivity_stopdate Change specn of interaction - use new dofile
* 20201208 sensitivity_stopdate Add local to allow alt definition of interaction (stop30)
*************************************
*** Log
capture log close stopdate
local date: display %dCYND date("`c(current_date)'", "DMY")
log using "logs/sensitivity_stopdate_`date'.txt", text append name(stopdate)
*******
frames reset
clear
/***** RULES
* ignore starting third antidepressant
* stop date with no carry-over window
* stop date with 30 day carry-over window
* ignore stopping the index antidepressant
* NOTE - use adjusted regression
* NOTE - all of the outcomes? Start with all-cause
*****/
******** ALL-CAUSE MORTALITY
******** IGNORE THIRD ANTIDEP
macro drop _all
*** Load imputed dataset (all-cause mort)
use data/clean/imputed_outcome1
*** Define new enddate variable and recalculate time
egen newstop = rowmin(deathdate eligstop switchenddate6m)
drop time
gen time=newstop - index
*** Redefine the death variable
drop died
gen died = (deathdate<=newstop)
*** RUN THE REGRESSION SCRIPT
*** Specify macros
include scripts/analysis/model_outcome1.do
local stset "stset time, fail(died) scale(365.25) id(patid)" // the full stset command
local regression stcox // type of regression
local options // fill in if using stcrreg
local savetag sensitivity_allcausethirdad
***** Extract counts info
local countsrowname "Ignore 3rd antidepressant"
gen outcome=died
include scripts/analysis/TabulateCounts.do
drop outcome
*****
*** Run the do-file
include scripts/analysis/AdjustedSurvivalWithInteraction.do
******** NO CARRY-OVER WINDOW
frames reset
macro drop _all
use data/clean/imputed_outcome1
** redefine time and died variables
drop time
gen time = enddate0-index
drop died
gen died = endreason0==1
*** RUN THE REGRESSION SCRIPT
*** Specify macros
include scripts/analysis/model_outcome1.do
local stset "stset time, fail(died) scale(365.25) id(patid)" // the full stset command
local regression stcox // type of regression
local options // fill in if using stcrreg
local savetag sensitivity_allcausestop0
***** Extract counts info
local countsrowname "No carry-over window"
gen outcome=died
include scripts/analysis/TabulateCounts.do
drop outcome
*****
*** Run the do-file
include scripts/analysis/AdjustedSurvivalWithInteraction.do
******** 30 DAY CARRY-OVER WINDOW
frames reset
macro drop _all
use data/clean/imputed_outcome1
gen cohort2=cohort
replace cohort2=3 if cohort2==4 // use to fix problem with term omission
local o_error 1 // local allows use of cohort2 in creating interactions (avoids omission error)
** redefine time and died variables
drop time
gen time = enddate30-index
drop died
gen died = endreason30==1
*** RUN THE REGRESSION SCRIPT
*** Specify macros
include scripts/analysis/model_outcome1.do
local stset "stset time, fail(died) scale(365.25) id(patid)" // the full stset command
local regression stcox // type of regression
local options // fill in if using stcrreg
local savetag sensitivity_allcausestop30
***** Extract counts info
local countsrowname "30 day carry-over window"
gen outcome=died
include scripts/analysis/TabulateCounts.do
drop outcome
*****
*** Run the do-file
include scripts/analysis/AdjustedSurvivalWithInteraction.do
******** FOLLOW-UP, IGNORING STOPPING ANTIDEP
frames reset
macro drop _all
use data/clean/imputed_outcome1
*** Define new enddate variable and recalculate time
egen newstop = rowmin(deathdate eligstop thirdaddate)
drop time
gen time=newstop - index
*** Redefine the death variable
drop died
gen died = (deathdate<=newstop)
*** Investigate
tab cohort died
*** RUN THE REGRESSION SCRIPT
*** Specify macros
include scripts/analysis/model_outcome1.do
local stset "stset time, fail(died) scale(365.25) id(patid)" // the full stset command
local regression stcox // type of regression
local options // fill in if using stcrreg
local savetag sensitivity_allcausenostop
***** Extract counts info
local countsrowname "Follow-up to end"
gen outcome=died
include scripts/analysis/TabulateCounts.do
drop outcome
*****
*** Run the do-file
include scripts/analysis/AdjustedSurvivalWithInteraction.do
*** CLOSE
frames reset
log close stopdate
exit
|
(define unused 'hello)
(include (build-path "ttt" "uinc4.rktl"))
|
/*******************************************************************
* VT_SID_2008_DX_PR_GRPS.SAS:
* THE SAS CODE SHOWN BELOW WILL LOAD THE ASCII
* INPATIENT STAY DX_PR_GRPS FILE INTO SAS
*******************************************************************/
***********************************************;
* Create SAS informats for missing values ;
***********************************************;
PROC FORMAT;
INVALUE N2PF
'-9' = .
'-8' = .A
'-6' = .C
'-5' = .N
OTHER = (|2.|)
;
INVALUE N3PF
'-99' = .
'-88' = .A
'-66' = .C
OTHER = (|3.|)
;
INVALUE N4PF
'-999' = .
'-888' = .A
'-666' = .C
OTHER = (|4.|)
;
INVALUE N4P1F
'-9.9' = .
'-8.8' = .A
'-6.6' = .C
OTHER = (|4.1|)
;
INVALUE N5PF
'-9999' = .
'-8888' = .A
'-6666' = .C
OTHER = (|5.|)
;
INVALUE N5P2F
'-9.99' = .
'-8.88' = .A
'-6.66' = .C
OTHER = (|5.2|)
;
INVALUE N6PF
'-99999' = .
'-88888' = .A
'-66666' = .C
OTHER = (|6.|)
;
INVALUE N6P2F
'-99.99' = .
'-88.88' = .A
'-66.66' = .C
OTHER = (|6.2|)
;
INVALUE N7P2F
'-999.99' = .
'-888.88' = .A
'-666.66' = .C
OTHER = (|7.2|)
;
INVALUE N7P4F
'-9.9999' = .
'-8.8888' = .A
'-6.6666' = .C
OTHER = (|7.4|)
;
INVALUE N8PF
'-9999999' = .
'-8888888' = .A
'-6666666' = .C
OTHER = (|8.|)
;
INVALUE N8P2F
'-9999.99' = .
'-8888.88' = .A
'-6666.66' = .C
OTHER = (|8.2|)
;
INVALUE N9PF
'-99999999' = .
'-88888888' = .A
'-66666666' = .C
OTHER = (|9.|)
;
INVALUE N9P2F
'-99999.99' = .
'-88888.88' = .A
'-66666.66' = .C
OTHER = (|9.2|)
;
INVALUE N10PF
'-999999999' = .
'-888888888' = .A
'-666666666' = .C
OTHER = (|10.|)
;
INVALUE N10P4F
'-9999.9999' = .
'-8888.8888' = .A
'-6666.6666' = .C
OTHER = (|10.4|)
;
INVALUE N10P5F
'-999.99999' = .
'-888.88888' = .A
'-666.66666' = .C
OTHER = (|10.5|)
;
INVALUE DATE10F
'-999999999' = .
'-888888888' = .A
'-666666666' = .C
OTHER = (|MMDDYY10.|)
;
INVALUE N11PF
'-9999999999' = .
'-8888888888' = .A
'-6666666666' = .C
OTHER = (|11.|)
;
INVALUE N12P2F
'-99999999.99' = .
'-88888888.88' = .A
'-66666666.66' = .C
OTHER = (|12.2|)
;
INVALUE N12P5F
'-99999.99999' = .
'-88888.88888' = .A
'-66666.66666' = .C
OTHER = (|12.5|)
;
INVALUE N13PF
'-999999999999' = .
'-888888888888' = .A
'-666666666666' = .C
OTHER = (|13.|)
;
INVALUE N15P2F
'-99999999999.99' = .
'-88888888888.88' = .A
'-66666666666.66' = .C
OTHER = (|15.2|)
;
RUN;
*******************************;
* Data Step *;
*******************************;
DATA VT_SIDC_2008_DX_PR_GRPS;
INFILE 'VT_SID_2008_DX_PR_GRPS.ASC' LRECL = 640;
*** Variable attribute ***;
ATTRIB
CHRON1 LENGTH=3
LABEL="Chronic condition indicator 1"
CHRON2 LENGTH=3
LABEL="Chronic condition indicator 2"
CHRON3 LENGTH=3
LABEL="Chronic condition indicator 3"
CHRON4 LENGTH=3
LABEL="Chronic condition indicator 4"
CHRON5 LENGTH=3
LABEL="Chronic condition indicator 5"
CHRON6 LENGTH=3
LABEL="Chronic condition indicator 6"
CHRON7 LENGTH=3
LABEL="Chronic condition indicator 7"
CHRON8 LENGTH=3
LABEL="Chronic condition indicator 8"
CHRON9 LENGTH=3
LABEL="Chronic condition indicator 9"
CHRON10 LENGTH=3
LABEL="Chronic condition indicator 10"
CHRON11 LENGTH=3
LABEL="Chronic condition indicator 11"
CHRON12 LENGTH=3
LABEL="Chronic condition indicator 12"
CHRON13 LENGTH=3
LABEL="Chronic condition indicator 13"
CHRON14 LENGTH=3
LABEL="Chronic condition indicator 14"
CHRON15 LENGTH=3
LABEL="Chronic condition indicator 15"
CHRON16 LENGTH=3
LABEL="Chronic condition indicator 16"
CHRON17 LENGTH=3
LABEL="Chronic condition indicator 17"
CHRON18 LENGTH=3
LABEL="Chronic condition indicator 18"
CHRON19 LENGTH=3
LABEL="Chronic condition indicator 19"
CHRON20 LENGTH=3
LABEL="Chronic condition indicator 20"
CHRONB1 LENGTH=3
LABEL="Chronic condition body system 1"
CHRONB2 LENGTH=3
LABEL="Chronic condition body system 2"
CHRONB3 LENGTH=3
LABEL="Chronic condition body system 3"
CHRONB4 LENGTH=3
LABEL="Chronic condition body system 4"
CHRONB5 LENGTH=3
LABEL="Chronic condition body system 5"
CHRONB6 LENGTH=3
LABEL="Chronic condition body system 6"
CHRONB7 LENGTH=3
LABEL="Chronic condition body system 7"
CHRONB8 LENGTH=3
LABEL="Chronic condition body system 8"
CHRONB9 LENGTH=3
LABEL="Chronic condition body system 9"
CHRONB10 LENGTH=3
LABEL="Chronic condition body system 10"
CHRONB11 LENGTH=3
LABEL="Chronic condition body system 11"
CHRONB12 LENGTH=3
LABEL="Chronic condition body system 12"
CHRONB13 LENGTH=3
LABEL="Chronic condition body system 13"
CHRONB14 LENGTH=3
LABEL="Chronic condition body system 14"
CHRONB15 LENGTH=3
LABEL="Chronic condition body system 15"
CHRONB16 LENGTH=3
LABEL="Chronic condition body system 16"
CHRONB17 LENGTH=3
LABEL="Chronic condition body system 17"
CHRONB18 LENGTH=3
LABEL="Chronic condition body system 18"
CHRONB19 LENGTH=3
LABEL="Chronic condition body system 19"
CHRONB20 LENGTH=3
LABEL="Chronic condition body system 20"
DXMCCS1 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 1"
DXMCCS2 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 2"
DXMCCS3 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 3"
DXMCCS4 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 4"
DXMCCS5 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 5"
DXMCCS6 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 6"
DXMCCS7 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 7"
DXMCCS8 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 8"
DXMCCS9 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 9"
DXMCCS10 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 10"
DXMCCS11 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 11"
DXMCCS12 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 12"
DXMCCS13 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 13"
DXMCCS14 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 14"
DXMCCS15 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 15"
DXMCCS16 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 16"
DXMCCS17 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 17"
DXMCCS18 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 18"
DXMCCS19 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 19"
DXMCCS20 LENGTH=$11
LABEL="Multi-Level CCS: Diagnosis 20"
E_MCCS1 LENGTH=$11
LABEL="Multi-Level CCS: E Code 1"
E_MCCS2 LENGTH=$11
LABEL="Multi-Level CCS: E Code 2"
E_MCCS3 LENGTH=$11
LABEL="Multi-Level CCS: E Code 3"
E_MCCS4 LENGTH=$11
LABEL="Multi-Level CCS: E Code 4"
E_MCCS5 LENGTH=$11
LABEL="Multi-Level CCS: E Code 5"
E_MCCS6 LENGTH=$11
LABEL="Multi-Level CCS: E Code 6"
KEY LENGTH=8 FORMAT=Z14.
LABEL="HCUP record identifier"
PCLASS1 LENGTH=3
LABEL="Procedure class 1"
PCLASS2 LENGTH=3
LABEL="Procedure class 2"
PCLASS3 LENGTH=3
LABEL="Procedure class 3"
PCLASS4 LENGTH=3
LABEL="Procedure class 4"
PCLASS5 LENGTH=3
LABEL="Procedure class 5"
PCLASS6 LENGTH=3
LABEL="Procedure class 6"
PCLASS7 LENGTH=3
LABEL="Procedure class 7"
PCLASS8 LENGTH=3
LABEL="Procedure class 8"
PCLASS9 LENGTH=3
LABEL="Procedure class 9"
PCLASS10 LENGTH=3
LABEL="Procedure class 10"
PCLASS11 LENGTH=3
LABEL="Procedure class 11"
PCLASS12 LENGTH=3
LABEL="Procedure class 12"
PCLASS13 LENGTH=3
LABEL="Procedure class 13"
PCLASS14 LENGTH=3
LABEL="Procedure class 14"
PCLASS15 LENGTH=3
LABEL="Procedure class 15"
PCLASS16 LENGTH=3
LABEL="Procedure class 16"
PCLASS17 LENGTH=3
LABEL="Procedure class 17"
PCLASS18 LENGTH=3
LABEL="Procedure class 18"
PCLASS19 LENGTH=3
LABEL="Procedure class 19"
PCLASS20 LENGTH=3
LABEL="Procedure class 20"
PRMCCS1 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 1"
PRMCCS2 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 2"
PRMCCS3 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 3"
PRMCCS4 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 4"
PRMCCS5 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 5"
PRMCCS6 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 6"
PRMCCS7 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 7"
PRMCCS8 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 8"
PRMCCS9 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 9"
PRMCCS10 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 10"
PRMCCS11 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 11"
PRMCCS12 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 12"
PRMCCS13 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 13"
PRMCCS14 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 14"
PRMCCS15 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 15"
PRMCCS16 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 16"
PRMCCS17 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 17"
PRMCCS18 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 18"
PRMCCS19 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 19"
PRMCCS20 LENGTH=$8
LABEL="Multi-Level CCS: Procedure 20"
U_BLOOD LENGTH=3
LABEL="Utilization Flag: Blood"
U_CATH LENGTH=3
LABEL="Utilization Flag: Cardiac Catheterization Lab"
U_CCU LENGTH=3
LABEL="Utilization Flag: Coronary Care Unit (CCU)"
U_CHESTXRAY LENGTH=3
LABEL="Utilization Flag: Chest X-Ray"
U_CTSCAN LENGTH=3
LABEL="Utilization Flag: Computed Tomography Scan"
U_DIALYSIS LENGTH=3
LABEL="Utilization Flag: Renal Dialysis"
U_ECHO LENGTH=3
LABEL="Utilization Flag: Echocardiology"
U_ED LENGTH=3
LABEL="Utilization Flag: Emergency Room"
U_EEG LENGTH=3
LABEL="Utilization Flag: Electroencephalogram"
U_EKG LENGTH=3
LABEL="Utilization Flag: Electrocardiogram"
U_EPO LENGTH=3
LABEL="Utilization Flag: EPO"
U_ICU LENGTH=3
LABEL="Utilization Flag: Intensive Care Unit (ICU)"
U_LITHOTRIPSY LENGTH=3
LABEL="Utilization Flag: Lithotripsy"
U_MHSA LENGTH=3
LABEL="Utilization Flag: Mental Health and Substance Abuse"
U_MRT LENGTH=3
LABEL="Utilization Flag: Medical Resonance Technology"
U_NEWBN2L LENGTH=3
LABEL="Utilization Flag: Nursery Level II"
U_NEWBN3L LENGTH=3
LABEL="Utilization Flag: Nursery Level III"
U_NEWBN4L LENGTH=3
LABEL="Utilization Flag: Nursery Level IV"
U_NUCMED LENGTH=3
LABEL="Utilization Flag: Nuclear Medicine"
U_OBSERVATION LENGTH=3
LABEL="Utilization Flag: Observation Room"
U_OCCTHERAPY LENGTH=3
LABEL="Utilization Flag: Occupational Therapy"
U_ORGANACQ LENGTH=3
LABEL="Utilization Flag: Organ Acquisition"
U_OTHIMPLANTS LENGTH=3
LABEL="Utilization Flag: Other Implants"
U_PACEMAKER LENGTH=3
LABEL="Utilization Flag: Pacemaker"
U_PHYTHERAPY LENGTH=3
LABEL="Utilization Flag: Physical Therapy"
U_RADTHERAPY LENGTH=3
LABEL=
"Utilization Flag: Radiology - Therapeutic and/or Chemotherapy Administration"
U_RESPTHERAPY LENGTH=3
LABEL="Utilization Flag: Respiratory Services"
U_SPEECHTHERAPY LENGTH=3
LABEL="Utilization Flag: Speech - Language Pathology"
U_STRESS LENGTH=3
LABEL="Utilization Flag: Cardiac Stress Test"
U_ULTRASOUND LENGTH=3
LABEL="Utilization Flag: Ultrasound"
;
*** Input the variables from the ASCII file ***;
INPUT
@1 CHRON1 N2PF.
@3 CHRON2 N2PF.
@5 CHRON3 N2PF.
@7 CHRON4 N2PF.
@9 CHRON5 N2PF.
@11 CHRON6 N2PF.
@13 CHRON7 N2PF.
@15 CHRON8 N2PF.
@17 CHRON9 N2PF.
@19 CHRON10 N2PF.
@21 CHRON11 N2PF.
@23 CHRON12 N2PF.
@25 CHRON13 N2PF.
@27 CHRON14 N2PF.
@29 CHRON15 N2PF.
@31 CHRON16 N2PF.
@33 CHRON17 N2PF.
@35 CHRON18 N2PF.
@37 CHRON19 N2PF.
@39 CHRON20 N2PF.
@41 CHRONB1 N2PF.
@43 CHRONB2 N2PF.
@45 CHRONB3 N2PF.
@47 CHRONB4 N2PF.
@49 CHRONB5 N2PF.
@51 CHRONB6 N2PF.
@53 CHRONB7 N2PF.
@55 CHRONB8 N2PF.
@57 CHRONB9 N2PF.
@59 CHRONB10 N2PF.
@61 CHRONB11 N2PF.
@63 CHRONB12 N2PF.
@65 CHRONB13 N2PF.
@67 CHRONB14 N2PF.
@69 CHRONB15 N2PF.
@71 CHRONB16 N2PF.
@73 CHRONB17 N2PF.
@75 CHRONB18 N2PF.
@77 CHRONB19 N2PF.
@79 CHRONB20 N2PF.
@81 DXMCCS1 $CHAR11.
@92 DXMCCS2 $CHAR11.
@103 DXMCCS3 $CHAR11.
@114 DXMCCS4 $CHAR11.
@125 DXMCCS5 $CHAR11.
@136 DXMCCS6 $CHAR11.
@147 DXMCCS7 $CHAR11.
@158 DXMCCS8 $CHAR11.
@169 DXMCCS9 $CHAR11.
@180 DXMCCS10 $CHAR11.
@191 DXMCCS11 $CHAR11.
@202 DXMCCS12 $CHAR11.
@213 DXMCCS13 $CHAR11.
@224 DXMCCS14 $CHAR11.
@235 DXMCCS15 $CHAR11.
@246 DXMCCS16 $CHAR11.
@257 DXMCCS17 $CHAR11.
@268 DXMCCS18 $CHAR11.
@279 DXMCCS19 $CHAR11.
@290 DXMCCS20 $CHAR11.
@301 E_MCCS1 $CHAR11.
@312 E_MCCS2 $CHAR11.
@323 E_MCCS3 $CHAR11.
@334 E_MCCS4 $CHAR11.
@345 E_MCCS5 $CHAR11.
@356 E_MCCS6 $CHAR11.
@367 KEY 14.
@381 PCLASS1 N2PF.
@383 PCLASS2 N2PF.
@385 PCLASS3 N2PF.
@387 PCLASS4 N2PF.
@389 PCLASS5 N2PF.
@391 PCLASS6 N2PF.
@393 PCLASS7 N2PF.
@395 PCLASS8 N2PF.
@397 PCLASS9 N2PF.
@399 PCLASS10 N2PF.
@401 PCLASS11 N2PF.
@403 PCLASS12 N2PF.
@405 PCLASS13 N2PF.
@407 PCLASS14 N2PF.
@409 PCLASS15 N2PF.
@411 PCLASS16 N2PF.
@413 PCLASS17 N2PF.
@415 PCLASS18 N2PF.
@417 PCLASS19 N2PF.
@419 PCLASS20 N2PF.
@421 PRMCCS1 $CHAR8.
@429 PRMCCS2 $CHAR8.
@437 PRMCCS3 $CHAR8.
@445 PRMCCS4 $CHAR8.
@453 PRMCCS5 $CHAR8.
@461 PRMCCS6 $CHAR8.
@469 PRMCCS7 $CHAR8.
@477 PRMCCS8 $CHAR8.
@485 PRMCCS9 $CHAR8.
@493 PRMCCS10 $CHAR8.
@501 PRMCCS11 $CHAR8.
@509 PRMCCS12 $CHAR8.
@517 PRMCCS13 $CHAR8.
@525 PRMCCS14 $CHAR8.
@533 PRMCCS15 $CHAR8.
@541 PRMCCS16 $CHAR8.
@549 PRMCCS17 $CHAR8.
@557 PRMCCS18 $CHAR8.
@565 PRMCCS19 $CHAR8.
@573 PRMCCS20 $CHAR8.
@581 U_BLOOD N2PF.
@583 U_CATH N2PF.
@585 U_CCU N2PF.
@587 U_CHESTXRAY N2PF.
@589 U_CTSCAN N2PF.
@591 U_DIALYSIS N2PF.
@593 U_ECHO N2PF.
@595 U_ED N2PF.
@597 U_EEG N2PF.
@599 U_EKG N2PF.
@601 U_EPO N2PF.
@603 U_ICU N2PF.
@605 U_LITHOTRIPSY N2PF.
@607 U_MHSA N2PF.
@609 U_MRT N2PF.
@611 U_NEWBN2L N2PF.
@613 U_NEWBN3L N2PF.
@615 U_NEWBN4L N2PF.
@617 U_NUCMED N2PF.
@619 U_OBSERVATION N2PF.
@621 U_OCCTHERAPY N2PF.
@623 U_ORGANACQ N2PF.
@625 U_OTHIMPLANTS N2PF.
@627 U_PACEMAKER N2PF.
@629 U_PHYTHERAPY N2PF.
@631 U_RADTHERAPY N2PF.
@633 U_RESPTHERAPY N2PF.
@635 U_SPEECHTHERAPY N2PF.
@637 U_STRESS N2PF.
@639 U_ULTRASOUND N2PF.
;
RUN;
|
steps
step9a36a31289509d4e9c297386596f007f
<step>
^ ((Dictionary new) add: (#definition->#'c70a89eb-72fb-1846-be69-841c75c0a435'); add: (#class->ViQueryPropertyStep); add: (#properties->((Dictionary new) add: (#priority->6020); add: (#creationAuthor->'mt'); add: (#creationTimeStamp->'2 March 2014 10:06:15 am'); yourself)); add: (#id->#'9a36a312-8950-9d4e-9c29-7386596f007f'); add: (#iconCode->'nil'); add: (#next->#'e578a963-cfd4-5641-b942-6e1eef180ad2'); add: (#viewDefinition->#treeView); add: (#label->nil); yourself) |
"use strict";
import {Manager3} from "./manager3";
import {Manager2} from "./manager2";
import {define, singleton, inject} from '../../../../index';
@define()
@singleton()
export class Manager {
@inject() manager2: Manager2;
@inject() manager3: Manager3;
public get name(): string {
return this.constructor.name
}
}
|
package team.kun.fnaf.metadata
import org.bukkit.entity.Entity
import org.bukkit.entity.Player
sealed class MetadataKey<T>(val value: String) {
object IsPlayerInteract : MetadataKey<Boolean>("IsPlayerInteract")
object Camera : MetadataKey<Entity>("Camera")
object CameraPlayers : MetadataKey<List<Player>>("CameraPlayers")
object UsingCamera : MetadataKey<Boolean>("UsingCamera")
} |
module o_r (input in1, input in2, output out );
assign out = (in1|in2);
endmodule
|
// #package glsl/shaders
// #section ExposureToneMapper/vertex
#version 300 es
precision mediump float;
layout(location = 0) in vec2 aPosition;
out vec2 vFragmentPosition;
void main() {
gl_Position = vec4(aPosition, 0.0, 1.0);
vFragmentPosition = (aPosition + vec2(1.0, 1.0)) * 0.5;
}
// #section ExposureToneMapper/fragment
#version 300 es
precision mediump float;
uniform mediump sampler2D uTexture;
uniform float uExposure;
in vec2 vFragmentPosition;
out vec4 color;
const float gamma = 2.2;
void main() {
vec4 rgba = texture(uTexture, vFragmentPosition);
vec4 mapped = vec4(1.0) - exp(-rgb * uExposure);
mapped = pow(mapped, 1.0 / gamma);
color = vec4(mapped.rgb, 1.0);
}
|
#!/bin/sh
test_description='git blame'
. ./test-lib.sh
PROG='git blame -c'
. "$TEST_DIRECTORY"/annotate-tests.sh
PROG='git blame -c -e'
test_expect_success 'blame --show-email' '
check_count \
"<A@test.git>" 1 \
"<B@test.git>" 1 \
"<B1@test.git>" 1 \
"<B2@test.git>" 1 \
"<author@example.com>" 1 \
"<C@test.git>" 1 \
"<D@test.git>" 1 \
"<E at test dot git>" 1
'
test_done
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2019 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@inproceedings{JourneeChimie2019,
author = {Vallverdu, Germain},
title = {Simulations numériques et chimie théorique},
booktitle = {Journée de formation à la culture scientifique en chimie, Année de la chimie de l'école à l'université 2018-2019},
year = {2019},
month = {3 avril}
}
@inproceedings{festival2019,
author = {Vallverdu, Germain and Darrigan, Clovis},
title = {Jeux quantiques},
booktitle = {Annimation et accueil de public scolaires lors du Festival du
jeu de société de Pau},
year = {2019},
month = {29 - 31 Mars}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2017 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@inproceedings{festival2017,
author = {Vallverdu, Germain and Darrigan, Clovis},
title = {Jeux quantiques},
booktitle = {Annimation lors du Festival du jeu de société de Pau},
link = {https://cst.univ-pau.fr/fr/actualites/archives/actu2017/festival-du-jeu-de-societe-de-pau.html},
year = {2017},
month = {31 Mars - 2 avril}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2017 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@inproceedings{mediatheque2017,
author = {Vallverdu, Germain},
title = {Jouons avec la mécanique quantique !},
booktitle = {Annimation à la médiathèque André Labarrère, Pau},
link = {https://cst.univ-pau.fr/fr/actualites/archives/actu2017/jouons-dans-un-monde-quantique.html},
year = {2017},
month = {13 Janvier}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2016 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@inproceedings{cafe2016,
author = {Vallverdu, Germain},
title = {Jouons dans un monde quantique.},
booktitle = {Café des sciences, Pau},
link = {https://cst.univ-pau.fr/fr/actualites/archives/actu2016/jouons-dans-un-monde-quantique.html},
year = {2016},
month = {13 Octobre}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2015 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@inproceedings{FeteScience2015-2,
author = {Vallverdu, Germain and Tison, Yann},
title = {De l'atome aux nano-objets : voyage dans l'espace et le temps. Épisode 2, Comment "voir" des atomes et effectuer des mesures à leur échelle ?},
booktitle = {Fête de la science},
link = {https://cst.univ-pau.fr/fr/actualites/archives/actu2015/fete-de-la-science-2015.html},
year = {2015},
month = {8 Octobre}
}
@inproceedings{FeteScience2015-1,
author = {Tison, Yann and Vallverdu, Germain},
title = {De l'atome aux nano-objets : voyage dans l'espace et le temps. Épisode 1, Plongeons dans le monde microscopique : vers un monde quantique},
booktitle = {Fête de la science},
link = {https://cst.univ-pau.fr/fr/actualites/archives/actu2015/fete-de-la-science-2015.html},
year = {2015},
month = {7 Octobre}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2013 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@inproceedings{FeteScience2013,
author = {Vallverdu, Germain},
title = {Votre vinaigrette au microscope : quand le réseau social moléculaire s'exprime},
booktitle = {Fête de la science},
link = {https://cst.univ-pau.fr/fr/actualites/archives/actu2013/programme-de-la-fete-de-la-science-2013.html},
year = {2013},
month = {Octobre}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2012 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@inproceedings{Lycee2011,
author = {Vallverdu, Germain},
title = {Le voyage du lithium ou comment fonctionne les batteries de nos appareils électroniques},
booktitle = {{Année mondiale de la chimie, "Les chimistes s'invitent au lycée"}},
year = {2011},
month = {Février}
}
|
PREFIX : <http://example.org/ns#>
SELECT ?v
WHERE { [] ?p ?v }
ORDER BY ?v
OFFSET 100
LIMIT 1 |
#lang at-exp s-exp "bib.rkt"
@title{a new day}
@author{b b baggins}
@(date "23-March-2021")
@location{London}
@url{https://racket-lang.org}
@category{hobbit}
|
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
#import "NSObject.h"
@class WCDeviceTask;
@protocol WCDeviceSendDataToManufacturSvrLogicDelegate <NSObject>
- (void)onHandleMsgEnd:(WCDeviceTask *)arg1 ErrCode:(int)arg2;
@end
|
#include "precompiled.h"
#include <stdio.h>
int main(int argc, char **argv)
{
printf("hello world\n");
}
|
package notetaker
import grails.testing.web.controllers.ControllerUnitTest
import spock.lang.Specification
class ClientControllerSpec extends Specification implements ControllerUnitTest<ClientController> {
def setup() {
}
def cleanup() {
}
void "test something"() {
expect:"fix me"
true == false
}
} |
/*** Spectra Vista SIG Data ***/
name= gr081219_0016.sig
instrument= HI: 1182092 (HR-1024i)
integration= 500.0, 40.0, 10.0, 500.0, 40.0, 10.0
scan method= Time-based, Time-based
scan coadds= 10, 116, 392, 10, 116, 392
scan time= 5, 5
scan settings= AI, AI
external data set1= 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
external data set2= 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
external data dark= 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
external data mask= 0
optic= RAW DN(4), RAW DN(4)
temp= 26.5, -5.0, -10.1, 26.8, -5.0, -10.2
battery= 7.72, 7.69
error= 0, 0
units= Counts, Counts
time= 2019-08-12 08:14:09, 2019-08-12 08:18:51
longitude= , 07333.4003W
latitude= , 4533.4823N
gpstime= , 121853.081
comm=
memory slot= 0, 0
factors= 0.000, 0.000, 0.000 [Overlap: Preserve, Matching Type: None]
inclinometer x offset= 0, 0
inclinometer y offset= 90, 90
data=
338.1 14200.00 14500.00 102.11
339.6 15400.00 15500.00 100.65
341.0 17000.00 16900.00 99.41
342.5 18700.00 18300.00 97.86
343.9 20300.00 19700.00 97.04
345.4 22400.00 21600.00 96.43
346.8 24300.00 23600.00 97.12
348.3 26600.00 25600.00 96.24
349.8 29000.00 27900.00 96.21
351.2 31000.00 30000.00 96.77
352.7 33100.00 32300.00 97.58
354.1 35100.00 34900.00 99.43
355.6 37300.00 36600.00 98.12
357.1 39500.00 38600.00 97.72
358.5 41500.00 40000.00 96.39
360.0 43800.00 41900.00 95.66
361.5 45600.00 44400.00 97.37
362.9 47600.00 46700.00 98.11
364.4 49500.00 48600.00 98.18
365.8 51300.00 50100.00 97.66
367.3 52600.00 51200.00 97.34
368.8 54000.00 52300.00 96.85
370.2 54900.00 53600.00 97.63
371.7 56500.00 55000.00 97.35
373.1 58100.00 56500.00 97.25
374.6 59300.00 57900.00 97.64
376.1 61000.00 59500.00 97.54
377.5 63000.00 61500.00 97.62
379.0 65400.00 63700.00 97.40
380.5 67300.00 66000.00 98.07
381.9 70000.00 68500.00 97.86
383.4 73000.00 71500.00 97.95
384.9 76200.00 74500.00 97.77
386.3 79300.00 77100.00 97.23
387.8 82200.00 80200.00 97.57
389.2 85600.00 83500.00 97.55
390.7 90200.00 87900.00 97.45
392.2 94600.00 92600.00 97.89
393.6 99500.00 96800.00 97.29
395.1 103900.00 101600.00 97.79
396.6 108500.00 106200.00 97.88
398.0 113600.00 111100.00 97.80
399.5 119200.00 117000.00 98.15
401.0 126100.00 122900.00 97.46
402.4 133300.00 129500.00 97.15
403.9 141100.00 137000.00 97.09
405.4 148700.00 144700.00 97.31
406.8 156200.00 152400.00 97.57
408.3 164100.00 160500.00 97.81
409.7 173400.00 169300.00 97.64
411.2 183300.00 178800.00 97.55
412.6 193400.00 188500.00 97.47
414.1 202600.00 197400.00 97.43
415.6 212300.00 206500.00 97.27
417.0 222700.00 217000.00 97.44
418.5 234100.00 228500.00 97.61
420.0 245000.00 239200.00 97.63
421.4 254500.00 248700.00 97.72
422.9 264300.00 257700.00 97.50
424.3 276200.00 269300.00 97.50
425.8 289800.00 283100.00 97.69
427.2 303600.00 296300.00 97.60
428.7 315700.00 308100.00 97.59
430.1 326300.00 317800.00 97.40
431.6 335700.00 327100.00 97.44
433.0 345200.00 336500.00 97.48
434.5 355800.00 347300.00 97.61
436.0 367100.00 358300.00 97.60
437.4 377500.00 368700.00 97.67
438.9 386500.00 377200.00 97.59
440.3 393700.00 384000.00 97.54
441.8 400300.00 390100.00 97.45
443.2 406900.00 396900.00 97.54
444.7 415000.00 405000.00 97.59
446.1 423200.00 413200.00 97.64
447.6 430300.00 420100.00 97.63
449.0 435900.00 425700.00 97.66
450.5 440800.00 430200.00 97.60
451.9 445100.00 434500.00 97.62
453.4 448700.00 437900.00 97.59
454.8 452100.00 441000.00 97.54
456.2 455900.00 445000.00 97.61
457.7 460600.00 449600.00 97.61
459.1 465700.00 454100.00 97.51
460.6 469900.00 458500.00 97.57
462.0 473500.00 462300.00 97.63
463.5 476000.00 465200.00 97.73
464.9 477700.00 466500.00 97.66
466.4 480300.00 469100.00 97.67
467.8 485900.00 474300.00 97.61
469.2 493800.00 481900.00 97.59
470.7 502700.00 490400.00 97.55
472.1 510600.00 498300.00 97.59
473.5 516800.00 504400.00 97.60
475.0 521900.00 509800.00 97.68
476.4 526500.00 514000.00 97.63
477.9 531600.00 519000.00 97.63
479.3 539100.00 526200.00 97.61
480.7 548400.00 535300.00 97.61
482.2 558700.00 545300.00 97.60
483.6 567700.00 554300.00 97.64
485.0 575900.00 562200.00 97.62
486.5 583500.00 569400.00 97.58
487.9 590600.00 576300.00 97.58
489.3 598000.00 583800.00 97.63
490.8 606400.00 592200.00 97.66
492.2 617000.00 602400.00 97.63
493.6 628900.00 614100.00 97.65
495.0 641700.00 626200.00 97.58
496.5 654100.00 638300.00 97.58
497.9 666100.00 650100.00 97.60
499.3 678100.00 662000.00 97.63
500.7 690100.00 674000.00 97.67
502.2 702400.00 686100.00 97.68
503.6 714000.00 697300.00 97.66
505.0 723900.00 707000.00 97.67
506.4 731300.00 714400.00 97.69
507.9 738300.00 721100.00 97.67
509.3 747600.00 730000.00 97.65
510.7 760600.00 742900.00 97.67
512.1 777800.00 759600.00 97.66
513.5 796500.00 777900.00 97.66
515.0 814400.00 795900.00 97.73
516.4 831000.00 811900.00 97.70
517.8 845400.00 825900.00 97.69
519.2 857100.00 837000.00 97.65
520.6 851000.00 830900.00 97.64
522.0 826400.00 807000.00 97.65
523.5 798700.00 780200.00 97.68
524.9 784700.00 766400.00 97.67
526.3 807100.00 788700.00 97.72
527.7 843500.00 823700.00 97.65
529.1 880200.00 859700.00 97.67
530.5 915800.00 894500.00 97.67
531.9 949800.00 927800.00 97.68
533.3 979100.00 956600.00 97.70
534.7 1006300.00 983600.00 97.74
536.1 1034300.00 1010600.00 97.71
537.5 1061700.00 1037200.00 97.69
539.0 1091100.00 1065800.00 97.68
540.3 1119800.00 1093900.00 97.69
541.8 1146500.00 1120200.00 97.71
543.2 1170900.00 1144200.00 97.72
544.6 1191900.00 1164800.00 97.73
546.0 1214200.00 1186500.00 97.72
547.4 1235500.00 1207500.00 97.73
548.8 1254200.00 1225200.00 97.69
550.2 1271200.00 1242000.00 97.70
551.6 1286300.00 1256300.00 97.67
553.0 1319200.00 1288600.00 97.68
554.4 1345400.00 1314000.00 97.67
555.8 1361700.00 1330300.00 97.69
557.2 1376700.00 1345000.00 97.70
558.6 1390000.00 1358200.00 97.71
560.0 1401900.00 1370000.00 97.72
561.3 1410400.00 1378100.00 97.71
562.7 1415900.00 1383600.00 97.72
564.1 1419300.00 1386600.00 97.70
565.5 1421000.00 1388400.00 97.71
566.9 1422700.00 1389700.00 97.68
568.3 1423700.00 1390900.00 97.70
569.7 1425500.00 1392600.00 97.69
571.1 1426100.00 1393900.00 97.74
572.5 1425400.00 1393100.00 97.73
573.9 1423200.00 1390400.00 97.70
575.2 1418400.00 1386300.00 97.74
576.6 1409800.00 1377500.00 97.71
578.0 1398200.00 1365800.00 97.68
579.4 1386400.00 1354600.00 97.71
580.8 1375000.00 1343600.00 97.72
582.2 1365400.00 1334200.00 97.71
583.6 1358200.00 1327500.00 97.74
585.0 1351700.00 1321200.00 97.74
586.3 1345000.00 1314500.00 97.73
587.7 1338900.00 1308800.00 97.75
589.1 1333100.00 1303200.00 97.76
590.5 1327200.00 1297400.00 97.75
591.8 1321500.00 1291300.00 97.71
593.2 1315900.00 1285700.00 97.70
594.6 1309800.00 1279900.00 97.72
596.0 1304200.00 1274800.00 97.75
597.4 1299800.00 1270700.00 97.76
598.7 1295800.00 1266700.00 97.75
600.1 1292100.00 1262900.00 97.74
601.5 1289200.00 1260100.00 97.74
602.9 1287100.00 1257600.00 97.71
604.2 1284900.00 1255700.00 97.73
605.6 1283000.00 1253600.00 97.71
607.0 1281200.00 1251900.00 97.71
608.4 1278800.00 1250000.00 97.75
609.7 1277500.00 1248700.00 97.75
611.1 1276300.00 1247600.00 97.75
612.5 1275000.00 1246100.00 97.73
613.8 1273400.00 1244800.00 97.75
615.2 1271500.00 1243400.00 97.79
616.6 1269000.00 1240800.00 97.78
617.9 1265700.00 1237200.00 97.75
619.3 1261400.00 1233000.00 97.75
620.7 1256100.00 1227700.00 97.74
622.0 1249000.00 1220900.00 97.75
623.4 1240300.00 1212100.00 97.73
624.8 1229600.00 1201800.00 97.74
626.1 1215700.00 1188500.00 97.76
627.5 1199100.00 1172200.00 97.76
628.8 1181000.00 1155000.00 97.80
630.2 1164700.00 1139000.00 97.79
631.6 1154100.00 1128200.00 97.76
632.9 1132700.00 1107000.00 97.73
634.3 1088800.00 1064400.00 97.76
635.7 1041100.00 1017800.00 97.76
637.0 996900.00 975000.00 97.80
638.4 975700.00 953700.00 97.75
639.7 978500.00 957000.00 97.80
641.1 982900.00 960900.00 97.76
642.4 988200.00 966400.00 97.79
643.8 994600.00 972500.00 97.78
645.1 998900.00 976800.00 97.79
646.5 1002100.00 980000.00 97.79
647.8 1009000.00 986700.00 97.79
649.2 1015900.00 993400.00 97.79
650.5 1021600.00 998900.00 97.78
651.9 1028100.00 1005300.00 97.78
653.2 1033200.00 1010100.00 97.76
654.6 1035500.00 1012600.00 97.79
656.0 1032100.00 1009100.00 97.77
657.3 1025700.00 1002900.00 97.78
658.7 1017300.00 994800.00 97.79
660.0 1007500.00 985000.00 97.77
661.3 999400.00 977300.00 97.79
662.7 997600.00 975400.00 97.77
664.0 1018700.00 996200.00 97.79
665.4 1045300.00 1022300.00 97.80
666.7 1057900.00 1034200.00 97.76
668.1 1066800.00 1043000.00 97.77
669.4 1074900.00 1051100.00 97.79
670.8 1082500.00 1058800.00 97.81
672.1 1088800.00 1065000.00 97.81
673.4 1092700.00 1068900.00 97.82
674.8 1093400.00 1069100.00 97.78
676.1 1090800.00 1066400.00 97.76
677.4 1083900.00 1059900.00 97.79
678.8 1077200.00 1053400.00 97.79
680.1 1073300.00 1050000.00 97.83
681.5 1071300.00 1048000.00 97.83
682.8 1071000.00 1047600.00 97.82
684.1 1071500.00 1047800.00 97.79
685.5 1072900.00 1049200.00 97.79
686.8 1074700.00 1051200.00 97.81
688.1 1076900.00 1053600.00 97.84
689.5 1079700.00 1056300.00 97.83
690.8 1082900.00 1059000.00 97.79
692.1 1085800.00 1061800.00 97.79
693.5 1089000.00 1065500.00 97.84
694.8 1093100.00 1069200.00 97.81
696.1 1098600.00 1074800.00 97.83
697.4 1104800.00 1080800.00 97.83
698.8 1111300.00 1087400.00 97.85
700.1 1118000.00 1093700.00 97.83
701.4 1124500.00 1100100.00 97.83
702.7 1129400.00 1105500.00 97.88
704.1 1134800.00 1110700.00 97.88
705.4 1139800.00 1115700.00 97.89
706.7 1145100.00 1120600.00 97.86
708.0 1149100.00 1124400.00 97.85
709.4 1153000.00 1128400.00 97.87
710.7 1156700.00 1131900.00 97.86
712.0 1160200.00 1135500.00 97.87
713.3 1163000.00 1138600.00 97.90
714.6 1165800.00 1141000.00 97.87
716.0 1168000.00 1143200.00 97.88
717.3 1169700.00 1144900.00 97.88
718.6 1171100.00 1146100.00 97.87
719.9 1172100.00 1147600.00 97.91
721.2 1172700.00 1148400.00 97.93
722.5 1173000.00 1148900.00 97.95
723.8 1173800.00 1149400.00 97.92
725.2 1173100.00 1148900.00 97.94
726.5 1172800.00 1148500.00 97.93
727.8 1171700.00 1147500.00 97.93
729.1 1170100.00 1145900.00 97.93
730.4 1168100.00 1144000.00 97.94
731.7 1166500.00 1142000.00 97.90
733.0 1163600.00 1139400.00 97.92
734.3 1160400.00 1136600.00 97.95
735.6 1156300.00 1132800.00 97.97
737.0 1150700.00 1127600.00 97.99
738.3 1144100.00 1121100.00 97.99
739.6 1136400.00 1113500.00 97.98
740.9 1126900.00 1104100.00 97.98
742.2 1116900.00 1094700.00 98.01
743.5 1107200.00 1084800.00 97.98
744.8 1094300.00 1072000.00 97.96
746.1 1087700.00 1065700.00 97.98
747.4 1080800.00 1059200.00 98.00
748.7 1073200.00 1052000.00 98.02
750.0 1065800.00 1044800.00 98.03
751.3 1061700.00 1040800.00 98.03
752.6 1059300.00 1038700.00 98.06
753.9 1061200.00 1040200.00 98.02
755.2 1066000.00 1044900.00 98.02
756.5 1071100.00 1049600.00 97.99
757.7 1073200.00 1052400.00 98.06
759.0 1073900.00 1052600.00 98.02
760.3 1071600.00 1051100.00 98.09
761.6 1067200.00 1047100.00 98.12
762.9 1061800.00 1041900.00 98.13
764.2 1057800.00 1037700.00 98.10
765.5 1054100.00 1033900.00 98.08
766.8 1049700.00 1029300.00 98.06
768.1 1044800.00 1024600.00 98.07
769.3 1038900.00 1018600.00 98.05
770.6 1031700.00 1011900.00 98.08
771.9 1023800.00 1004200.00 98.09
773.2 1015400.00 996400.00 98.13
774.5 1007300.00 988600.00 98.14
775.8 998700.00 980400.00 98.17
777.0 990100.00 971700.00 98.14
778.3 981300.00 963000.00 98.14
779.6 972500.00 954400.00 98.14
780.9 963700.00 945800.00 98.14
782.2 954100.00 936300.00 98.13
783.4 944900.00 927300.00 98.14
784.7 935300.00 917800.00 98.13
786.0 925200.00 908100.00 98.15
787.2 915000.00 898300.00 98.17
788.5 904900.00 888700.00 98.21
789.8 894700.00 878500.00 98.19
791.1 884500.00 868300.00 98.17
792.3 874000.00 858200.00 98.19
793.6 863400.00 847400.00 98.15
794.9 852800.00 837100.00 98.16
796.1 841800.00 826300.00 98.16
797.4 830600.00 815700.00 98.21
798.7 820100.00 805000.00 98.16
799.9 809300.00 794700.00 98.20
801.2 798500.00 784600.00 98.26
802.5 788300.00 774300.00 98.22
803.7 778300.00 764200.00 98.19
805.0 768500.00 754300.00 98.15
806.2 758800.00 744700.00 98.14
807.5 749300.00 735100.00 98.10
808.8 739400.00 726000.00 98.19
810.0 729400.00 716700.00 98.26
811.3 719900.00 707200.00 98.24
812.5 710300.00 697800.00 98.24
813.8 701200.00 688800.00 98.23
815.0 692100.00 679600.00 98.19
816.3 683100.00 670700.00 98.18
817.5 673600.00 661400.00 98.19
818.8 664400.00 652700.00 98.24
820.0 655300.00 643900.00 98.26
821.3 646500.00 635500.00 98.30
822.5 638000.00 626900.00 98.26
823.8 629600.00 618000.00 98.16
825.0 620700.00 609600.00 98.21
826.2 611800.00 601200.00 98.27
827.5 603200.00 593000.00 98.31
828.7 594900.00 584500.00 98.25
830.0 586700.00 576300.00 98.23
831.2 578600.00 567800.00 98.13
832.4 570100.00 559800.00 98.19
833.7 561700.00 551900.00 98.26
834.9 553400.00 544000.00 98.30
836.1 545100.00 535700.00 98.28
837.4 536500.00 527300.00 98.29
838.6 528500.00 519200.00 98.24
839.8 520300.00 511000.00 98.21
841.1 512400.00 503300.00 98.22
842.3 504600.00 495500.00 98.20
843.5 497000.00 488100.00 98.21
844.7 490100.00 481500.00 98.25
846.0 483200.00 475000.00 98.30
847.2 476900.00 468800.00 98.30
848.4 470800.00 462900.00 98.32
849.6 464900.00 456900.00 98.28
850.9 459000.00 450700.00 98.19
852.1 453200.00 445000.00 98.19
853.3 447100.00 439300.00 98.26
854.5 441600.00 433700.00 98.21
855.7 436000.00 428400.00 98.26
856.9 430800.00 423400.00 98.28
858.2 425400.00 418200.00 98.31
859.4 420400.00 413300.00 98.31
860.6 415600.00 408200.00 98.22
861.8 410800.00 403700.00 98.27
863.0 406400.00 399000.00 98.18
864.2 401700.00 394900.00 98.31
865.4 397600.00 390600.00 98.24
866.6 393100.00 386300.00 98.27
867.8 389100.00 382300.00 98.25
869.0 385200.00 378200.00 98.18
870.2 380700.00 374400.00 98.35
871.4 376600.00 370700.00 98.43
872.6 372800.00 367000.00 98.44
873.8 369300.00 363200.00 98.35
875.0 365900.00 359100.00 98.14
876.2 362200.00 355300.00 98.09
877.4 358300.00 351600.00 98.13
878.6 354100.00 347900.00 98.25
879.8 349500.00 343900.00 98.40
881.0 345700.00 340000.00 98.35
882.2 341700.00 336100.00 98.36
883.4 337800.00 332200.00 98.34
884.6 333600.00 328200.00 98.38
885.8 330000.00 324000.00 98.18
887.0 325700.00 319800.00 98.19
888.2 321600.00 316300.00 98.35
889.3 317600.00 312500.00 98.39
890.5 313500.00 308400.00 98.37
891.7 309500.00 304700.00 98.45
892.9 305500.00 300600.00 98.40
894.1 301300.00 296800.00 98.51
895.2 297700.00 292900.00 98.39
896.4 294000.00 289200.00 98.37
897.6 290400.00 285300.00 98.24
898.8 286400.00 281300.00 98.22
900.0 282400.00 277500.00 98.26
901.1 278200.00 273700.00 98.38
902.3 274000.00 269400.00 98.32
903.5 270200.00 265900.00 98.41
904.7 266800.00 262300.00 98.31
905.8 262700.00 258300.00 98.33
907.0 258800.00 254600.00 98.38
908.2 255100.00 251100.00 98.43
909.3 251500.00 247300.00 98.33
910.5 247600.00 243700.00 98.42
911.7 244400.00 240300.00 98.32
912.8 241100.00 237000.00 98.30
914.0 237600.00 233700.00 98.36
915.2 234200.00 230400.00 98.38
916.3 230900.00 227200.00 98.40
917.5 227900.00 224400.00 98.46
918.6 224900.00 221500.00 98.49
919.8 222300.00 218700.00 98.38
921.0 219500.00 215900.00 98.36
922.1 216600.00 212900.00 98.29
923.3 213600.00 210000.00 98.31
924.4 210500.00 207000.00 98.34
925.6 207600.00 204100.00 98.31
926.7 204800.00 201400.00 98.34
927.9 201900.00 198600.00 98.37
929.0 198900.00 195800.00 98.44
930.2 195900.00 192600.00 98.32
931.3 192600.00 189500.00 98.39
932.5 189700.00 186500.00 98.31
933.6 186500.00 183400.00 98.34
934.8 183500.00 180900.00 98.58
935.9 180700.00 178000.00 98.51
937.1 178300.00 175300.00 98.32
938.2 175700.00 172600.00 98.24
939.4 173000.00 170100.00 98.32
940.5 170200.00 167700.00 98.53
941.7 167300.00 165000.00 98.63
942.8 164800.00 162400.00 98.54
944.0 162000.00 159500.00 98.46
945.1 159500.00 156900.00 98.37
946.2 157000.00 154400.00 98.34
947.4 154500.00 152000.00 98.38
948.5 151900.00 149500.00 98.42
949.7 149600.00 147100.00 98.33
950.8 146700.00 144500.00 98.50
951.9 144300.00 142300.00 98.61
953.1 142000.00 139900.00 98.52
954.2 139500.00 137600.00 98.64
955.3 137200.00 135200.00 98.54
956.5 135000.00 132800.00 98.37
957.6 132600.00 129900.00 97.96
958.8 130400.00 127500.00 97.78
959.9 127900.00 125300.00 97.97
961.0 124900.00 123100.00 98.56
962.2 122400.00 120700.00 98.61
963.3 119900.00 118000.00 98.42
964.4 117500.00 115600.00 98.38
965.5 114700.00 113100.00 98.61
966.7 112300.00 110200.00 98.13
967.8 109400.00 107500.00 98.26
968.9 106400.00 104700.00 98.40
970.1 103400.00 101800.00 98.45
971.2 100500.00 99100.00 98.61
972.3 97300.00 95800.00 98.46
973.5 93700.00 92500.00 98.72
974.6 90200.00 89000.00 98.67
975.7 86200.00 85300.00 98.96
976.9 82500.00 81400.00 98.67
978.0 78900.00 77400.00 98.10
979.1 74700.00 73600.00 98.53
980.3 70600.00 69300.00 98.16
981.4 66500.00 65300.00 98.20
982.5 62400.00 61600.00 98.72
983.7 58500.00 57900.00 98.97
984.8 54700.00 54100.00 98.90
985.9 51700.00 50900.00 98.45
987.0 48500.00 47900.00 98.76
988.2 45400.00 45200.00 99.56
989.3 42900.00 42400.00 98.83
990.4 41100.00 40200.00 97.81
991.6 39400.00 38200.00 96.95
992.7 37400.00 36500.00 97.59
993.8 35400.00 34700.00 98.02
995.0 33400.00 33200.00 99.40
996.1 31400.00 31500.00 100.32
997.2 30000.00 30000.00 100.00
998.4 28800.00 28500.00 98.96
999.5 27400.00 27000.00 98.54
1000.7 26200.00 25900.00 98.85
1001.8 24900.00 24500.00 98.39
1002.9 23500.00 23300.00 99.15
1004.1 22000.00 22000.00 100.00
1005.2 21100.00 20900.00 99.05
1006.3 20100.00 19800.00 98.51
1007.5 18900.00 18800.00 99.47
1008.6 19500.00 19300.00 98.97
968.3 18375.00 18750.00 102.04
972.1 25125.00 24500.00 97.51
976.0 32125.00 32125.00 100.00
979.8 44250.00 43625.00 98.59
983.7 57250.00 56375.00 98.47
987.5 74125.00 73000.00 98.48
991.4 84000.00 83125.00 98.96
995.2 101875.00 99875.00 98.04
999.1 109750.00 108000.00 98.41
1002.9 127375.00 125625.00 98.63
1006.8 135875.00 133250.00 98.07
1010.6 146125.00 144125.00 98.63
1014.5 162625.00 159500.00 98.08
1018.3 173125.00 170500.00 98.48
1022.2 194000.00 190875.00 98.39
1026.0 200500.00 198000.00 98.75
1029.8 210250.00 206250.00 98.10
1033.7 220750.00 217250.00 98.41
1037.5 221750.00 218375.00 98.48
1041.3 232125.00 228250.00 98.33
1045.2 227750.00 223750.00 98.24
1049.0 239000.00 235125.00 98.38
1052.8 236625.00 233250.00 98.57
1056.7 237250.00 233750.00 98.52
1060.5 241250.00 237125.00 98.29
1064.3 248125.00 244125.00 98.39
1068.1 243000.00 238750.00 98.25
1071.9 247875.00 243875.00 98.39
1075.8 249250.00 245750.00 98.60
1079.6 251500.00 247750.00 98.51
1083.4 252000.00 247500.00 98.21
1087.2 247250.00 244000.00 98.69
1091.0 243000.00 239625.00 98.61
1094.8 247000.00 243125.00 98.43
1098.7 248250.00 244000.00 98.29
1102.5 246500.00 242875.00 98.53
1106.3 255500.00 251625.00 98.48
1110.1 255125.00 251250.00 98.48
1113.9 252375.00 248125.00 98.32
1117.7 255625.00 252125.00 98.63
1121.5 253250.00 249250.00 98.42
1125.3 253500.00 249500.00 98.42
1129.1 254625.00 250125.00 98.23
1132.9 257500.00 254250.00 98.74
1136.7 260625.00 256750.00 98.51
1140.5 262125.00 258000.00 98.43
1144.3 266000.00 262000.00 98.50
1148.1 266250.00 262375.00 98.54
1151.9 267250.00 263125.00 98.46
1155.7 264000.00 260250.00 98.58
1159.5 260500.00 256500.00 98.46
1163.3 270875.00 265500.00 98.02
1167.1 259250.00 255000.00 98.36
1170.9 263125.00 259000.00 98.43
1174.7 265000.00 261250.00 98.58
1178.4 264375.00 260500.00 98.53
1182.2 257875.00 254000.00 98.50
1186.0 264250.00 260250.00 98.49
1189.8 257750.00 254125.00 98.59
1193.6 256500.00 252750.00 98.54
1197.3 267500.00 263625.00 98.55
1201.1 275375.00 270750.00 98.32
1204.9 283250.00 279500.00 98.68
1208.7 293750.00 289250.00 98.47
1212.4 291625.00 287500.00 98.59
1216.2 299500.00 295500.00 98.66
1220.0 299500.00 294750.00 98.41
1223.8 305000.00 300125.00 98.40
1227.5 299250.00 295500.00 98.75
1231.3 296500.00 292000.00 98.48
1235.1 306375.00 301500.00 98.41
1238.8 303625.00 299125.00 98.52
1242.6 304875.00 300625.00 98.61
1246.4 303750.00 299250.00 98.52
1250.1 313625.00 309125.00 98.57
1253.9 310125.00 305750.00 98.59
1257.6 313750.00 309000.00 98.49
1261.4 318875.00 314250.00 98.55
1265.2 317375.00 312625.00 98.50
1268.9 317000.00 313000.00 98.74
1272.7 320125.00 315375.00 98.52
1276.4 322000.00 317125.00 98.49
1280.2 324750.00 320250.00 98.61
1283.9 339000.00 334125.00 98.56
1287.7 342250.00 337125.00 98.50
1291.4 345375.00 340875.00 98.70
1295.2 340500.00 336000.00 98.68
1298.9 339125.00 334125.00 98.53
1302.6 332000.00 327125.00 98.53
1306.4 332000.00 326750.00 98.42
1310.1 335125.00 330250.00 98.55
1313.9 336750.00 332125.00 98.63
1317.6 340750.00 335625.00 98.50
1321.3 343125.00 338125.00 98.54
1325.1 340500.00 335250.00 98.46
1328.8 339125.00 334250.00 98.56
1332.5 337375.00 332875.00 98.67
1336.3 338500.00 333250.00 98.45
1340.0 331125.00 326375.00 98.57
1343.7 329750.00 325750.00 98.79
1347.5 323875.00 318875.00 98.46
1351.2 316750.00 312750.00 98.74
1354.9 310250.00 305625.00 98.51
1358.6 293250.00 288750.00 98.47
1362.4 288750.00 285000.00 98.70
1366.1 276750.00 272625.00 98.51
1369.8 288875.00 285500.00 98.83
1373.5 284625.00 280250.00 98.46
1377.2 277125.00 273125.00 98.56
1380.9 272000.00 268250.00 98.62
1384.7 264500.00 261250.00 98.77
1388.4 264125.00 260250.00 98.53
1392.1 271125.00 268000.00 98.85
1395.8 275000.00 270875.00 98.50
1399.5 273500.00 269625.00 98.58
1403.2 276375.00 272375.00 98.55
1406.9 278875.00 275500.00 98.79
1410.6 276500.00 272500.00 98.55
1414.3 290625.00 286750.00 98.67
1418.1 284875.00 280250.00 98.38
1421.8 287375.00 283625.00 98.70
1425.4 291125.00 286875.00 98.54
1429.2 287500.00 283750.00 98.70
1432.8 282375.00 278250.00 98.54
1436.6 283125.00 279250.00 98.63
1440.2 278625.00 274125.00 98.38
1443.9 278625.00 275125.00 98.74
1447.6 274625.00 271000.00 98.68
1451.3 277500.00 273750.00 98.65
1455.0 278875.00 274750.00 98.52
1458.7 272375.00 268625.00 98.62
1462.4 275375.00 271750.00 98.68
1466.1 276625.00 272125.00 98.37
1469.8 271500.00 268000.00 98.71
1473.5 273625.00 269375.00 98.45
1477.1 272875.00 269375.00 98.72
1480.8 270875.00 267375.00 98.71
1484.5 273875.00 270125.00 98.63
1488.2 269250.00 265250.00 98.51
1491.9 265875.00 262625.00 98.78
1495.6 266875.00 263625.00 98.78
1499.2 266125.00 262000.00 98.45
1502.9 262625.00 258875.00 98.57
1506.6 260250.00 256875.00 98.70
1510.2 266000.00 262250.00 98.59
1513.9 261750.00 258000.00 98.57
1517.6 257500.00 253625.00 98.50
1521.3 263875.00 260375.00 98.67
1524.9 256000.00 252375.00 98.58
1528.6 262625.00 259750.00 98.91
1532.3 251625.00 247875.00 98.51
1535.9 256000.00 252375.00 98.58
1539.6 255750.00 252375.00 98.68
1543.2 251625.00 247875.00 98.51
1546.9 252625.00 249125.00 98.61
1550.6 249875.00 246375.00 98.60
1554.2 250375.00 247000.00 98.65
1557.9 247000.00 243375.00 98.53
1561.6 246000.00 243000.00 98.78
1565.2 245625.00 241750.00 98.42
1568.9 245500.00 242375.00 98.73
1572.5 242000.00 238500.00 98.55
1576.2 239375.00 236375.00 98.75
1579.8 241375.00 238000.00 98.60
1583.5 240250.00 237375.00 98.80
1587.1 234875.00 231625.00 98.62
1590.8 235375.00 232500.00 98.78
1594.4 234625.00 231250.00 98.56
1598.1 230875.00 227875.00 98.70
1601.7 228625.00 225500.00 98.63
1605.3 225875.00 222875.00 98.67
1609.0 224625.00 221125.00 98.44
1612.6 215750.00 213500.00 98.96
1616.2 216125.00 212625.00 98.38
1619.9 215000.00 211625.00 98.43
1623.5 214375.00 211625.00 98.72
1627.2 215125.00 212250.00 98.66
1630.8 217375.00 214375.00 98.62
1634.4 214375.00 211500.00 98.66
1638.1 213750.00 210875.00 98.65
1641.7 206500.00 203625.00 98.61
1645.3 208750.00 205875.00 98.62
1648.9 205500.00 202375.00 98.48
1652.6 200625.00 198000.00 98.69
1656.2 198500.00 195875.00 98.68
1659.8 196625.00 194125.00 98.73
1663.4 195500.00 193250.00 98.85
1667.1 192250.00 189875.00 98.76
1670.7 193625.00 190625.00 98.45
1674.3 189000.00 186500.00 98.68
1677.9 187625.00 185125.00 98.67
1681.6 186500.00 184125.00 98.73
1685.2 184375.00 181875.00 98.64
1688.8 183875.00 181125.00 98.50
1692.4 181375.00 178750.00 98.55
1696.0 178750.00 176250.00 98.60
1699.6 176125.00 174125.00 98.86
1703.2 175500.00 173500.00 98.86
1706.8 173875.00 171500.00 98.63
1710.4 169625.00 167500.00 98.75
1714.1 168625.00 166375.00 98.67
1717.7 167375.00 165375.00 98.81
1721.3 167625.00 165375.00 98.66
1724.9 162250.00 160125.00 98.69
1728.5 165000.00 162750.00 98.64
1732.1 162375.00 160000.00 98.54
1735.7 159125.00 156750.00 98.51
1739.3 160875.00 159375.00 99.07
1742.9 158250.00 155750.00 98.42
1746.5 159125.00 157250.00 98.82
1750.1 161875.00 159875.00 98.76
1753.7 155875.00 154125.00 98.88
1757.2 159625.00 157375.00 98.59
1760.8 156625.00 154625.00 98.72
1764.4 154750.00 153125.00 98.95
1768.0 153000.00 150125.00 98.12
1771.6 153750.00 151750.00 98.70
1775.2 161250.00 159375.00 98.84
1778.8 176250.00 173625.00 98.51
1782.4 187250.00 184750.00 98.66
1786.0 197375.00 195250.00 98.92
1789.5 198125.00 195250.00 98.55
1793.1 194125.00 191875.00 98.84
1796.7 185250.00 182375.00 98.45
1800.3 179750.00 177375.00 98.68
1803.9 174125.00 172500.00 99.07
1807.4 163125.00 160750.00 98.54
1811.0 157375.00 155625.00 98.89
1814.6 152625.00 150500.00 98.61
1818.2 144000.00 142750.00 99.13
1821.7 137625.00 135500.00 98.46
1825.3 133625.00 131625.00 98.50
1828.9 131125.00 129875.00 99.05
1832.5 123125.00 121250.00 98.48
1836.0 118250.00 117125.00 99.05
1839.6 114625.00 113000.00 98.58
1843.2 111625.00 110625.00 99.10
1846.7 108500.00 107250.00 98.85
1850.3 109875.00 108625.00 98.86
1853.8 103625.00 101750.00 98.19
1857.4 104875.00 104000.00 99.17
1861.0 104750.00 103625.00 98.93
1864.5 100375.00 98750.00 98.38
1868.1 96625.00 96250.00 99.61
1871.7 90250.00 88875.00 98.48
1875.2 89250.00 87875.00 98.46
1878.8 92000.00 91000.00 98.91
1882.3 92250.00 91250.00 98.92
1885.9 92375.00 91500.00 99.05
1889.4 87500.00 86125.00 98.43
1893.0 87000.00 85625.00 98.42
1896.5 80000.00 79250.00 99.06
1900.1 76000.00 75125.00 98.85
1903.6 69750.00 68625.00 98.39
1907.2 63625.00 63500.00 99.80
1910.7 57500.00 56250.00 97.83
1898.5 47000.00 50000.00 106.38
1901.2 57000.00 55000.00 96.49
1903.9 67000.00 64000.00 95.52
1906.6 77000.00 75500.00 98.05
1909.4 90000.00 89500.00 99.44
1912.1 106500.00 104000.00 97.65
1914.8 122500.00 121000.00 98.78
1917.5 138500.00 137500.00 99.28
1920.2 156000.00 151000.00 96.79
1922.9 171500.00 167000.00 97.38
1925.6 186000.00 183000.00 98.39
1928.3 200500.00 197500.00 98.50
1931.0 214500.00 211500.00 98.60
1933.7 228500.00 225000.00 98.47
1936.4 241500.00 238000.00 98.55
1939.1 254500.00 253000.00 99.41
1941.8 270000.00 266500.00 98.70
1944.5 283500.00 279500.00 98.59
1947.2 298000.00 292000.00 97.99
1949.8 312500.00 305500.00 97.76
1952.5 323000.00 317500.00 98.30
1955.2 332000.00 326500.00 98.34
1957.9 338500.00 332500.00 98.23
1960.6 340000.00 335000.00 98.53
1963.2 340000.00 335000.00 98.53
1965.9 340000.00 336500.00 98.97
1968.6 339500.00 336000.00 98.97
1971.2 337500.00 333000.00 98.67
1973.9 334000.00 330000.00 98.80
1976.6 331000.00 324500.00 98.04
1979.2 326000.00 319000.00 97.85
1981.9 320500.00 313500.00 97.82
1984.5 315000.00 310000.00 98.41
1987.2 310000.00 306500.00 98.87
1989.8 305500.00 300500.00 98.36
1992.5 301000.00 296500.00 98.50
1995.1 295500.00 291000.00 98.48
1997.7 288500.00 284000.00 98.44
2000.4 283000.00 277000.00 97.88
2003.0 277000.00 272000.00 98.19
2005.6 270000.00 265500.00 98.33
2008.3 264500.00 260500.00 98.49
2010.9 259500.00 255500.00 98.46
2013.5 252000.00 248000.00 98.41
2016.2 245500.00 241000.00 98.17
2018.8 241500.00 238000.00 98.55
2021.4 237000.00 233000.00 98.31
2024.0 230500.00 227000.00 98.48
2026.6 227000.00 224000.00 98.68
2029.2 224500.00 218500.00 97.33
2031.8 218000.00 213500.00 97.94
2034.4 213000.00 210500.00 98.83
2037.1 209500.00 207000.00 98.81
2039.7 205000.00 203000.00 99.02
2042.2 202500.00 199500.00 98.52
2044.8 201500.00 197500.00 98.01
2047.4 199000.00 196000.00 98.49
2050.0 195500.00 192500.00 98.47
2052.6 192000.00 188500.00 98.18
2055.2 189500.00 186000.00 98.15
2057.8 187000.00 184500.00 98.66
2060.4 184000.00 183000.00 99.46
2063.0 182000.00 181000.00 99.45
2065.5 180500.00 179000.00 99.17
2068.1 178500.00 176000.00 98.60
2070.7 176000.00 172000.00 97.73
2073.2 172500.00 170500.00 98.84
2075.8 170000.00 170500.00 100.29
2078.4 167500.00 167500.00 100.00
2080.9 166000.00 163000.00 98.19
2083.5 164500.00 160500.00 97.57
2086.1 162000.00 160500.00 99.07
2088.6 157000.00 158000.00 100.64
2091.2 155500.00 154500.00 99.36
2093.7 155500.00 152000.00 97.75
2096.3 153500.00 149000.00 97.07
2098.8 150500.00 148000.00 98.34
2101.4 148000.00 146000.00 98.65
2103.9 146000.00 143000.00 97.95
2106.4 143500.00 140000.00 97.56
2109.0 141000.00 139000.00 98.58
2111.5 139000.00 137500.00 98.92
2114.1 138000.00 134000.00 97.10
2116.6 134000.00 130500.00 97.39
2119.1 131500.00 128000.00 97.34
2121.6 129500.00 127500.00 98.46
2124.2 126500.00 125000.00 98.81
2126.7 125000.00 122500.00 98.00
2129.2 125500.00 121500.00 96.81
2131.7 122500.00 120500.00 98.37
2134.2 121000.00 120500.00 99.59
2136.7 120000.00 120000.00 100.00
2139.2 120500.00 119500.00 99.17
2141.8 120500.00 118000.00 97.93
2144.2 120000.00 118500.00 98.75
2146.8 120000.00 120000.00 100.00
2149.2 120500.00 119000.00 98.76
2151.8 121000.00 119000.00 98.35
2154.2 122500.00 120500.00 98.37
2156.7 123000.00 121000.00 98.37
2159.2 123000.00 121000.00 98.37
2161.7 126000.00 123500.00 98.02
2164.2 128500.00 127500.00 99.22
2166.7 130500.00 129500.00 99.23
2169.2 131500.00 130500.00 99.24
2171.6 133000.00 131500.00 98.87
2174.1 134000.00 133500.00 99.63
2176.6 135000.00 135000.00 100.00
2179.1 137000.00 135000.00 98.54
2181.5 139000.00 135000.00 97.12
2184.0 139000.00 136500.00 98.20
2186.4 140000.00 138500.00 98.93
2188.9 140500.00 139000.00 98.93
2191.4 138000.00 138000.00 100.00
2193.8 136500.00 135500.00 99.27
2196.3 135000.00 135000.00 100.00
2198.7 134000.00 133500.00 99.63
2201.2 132000.00 129500.00 98.11
2203.6 128500.00 127500.00 99.22
2206.1 128500.00 127000.00 98.83
2208.5 128500.00 126000.00 98.05
2210.9 126000.00 125500.00 99.60
2213.4 126000.00 125500.00 99.60
2215.8 128500.00 126000.00 98.05
2218.2 128500.00 126500.00 98.44
2220.7 128500.00 126500.00 98.44
2223.1 130000.00 126500.00 97.31
2225.5 129500.00 126500.00 97.68
2227.9 128500.00 126500.00 98.44
2230.4 128000.00 125500.00 98.05
2232.8 127000.00 125500.00 98.82
2235.2 127000.00 125500.00 98.82
2237.6 126500.00 126500.00 100.00
2240.0 125000.00 125000.00 100.00
2242.4 123000.00 122000.00 99.19
2244.8 125000.00 122000.00 97.60
2247.2 125500.00 122000.00 97.21
2249.6 123500.00 121000.00 97.98
2252.0 121500.00 121000.00 99.59
2254.4 121500.00 119000.00 97.94
2256.8 121000.00 117500.00 97.11
2259.2 120500.00 117500.00 97.51
2261.6 118500.00 116000.00 97.89
2264.0 119000.00 116000.00 97.48
2266.4 118500.00 118000.00 99.58
2268.8 116500.00 116500.00 100.00
2271.1 115000.00 114500.00 99.57
2273.5 114000.00 113000.00 99.12
2275.9 113000.00 111000.00 98.23
2278.3 112500.00 110000.00 97.78
2280.6 112500.00 109500.00 97.33
2283.0 111000.00 108000.00 97.30
2285.4 110500.00 108500.00 98.19
2287.7 108500.00 106500.00 98.16
2290.1 106500.00 104500.00 98.12
2292.4 105500.00 105000.00 99.53
2294.8 105500.00 103500.00 98.10
2297.1 104000.00 102000.00 98.08
2299.5 103000.00 101000.00 98.06
2301.8 102000.00 100000.00 98.04
2304.2 100500.00 97500.00 97.01
2306.5 99000.00 97000.00 97.98
2308.9 96500.00 97000.00 100.52
2311.2 97000.00 94500.00 97.42
2313.6 96000.00 92000.00 95.83
2315.9 94000.00 91500.00 97.34
2318.2 92500.00 91500.00 98.92
2320.5 89500.00 88500.00 98.88
2322.9 87500.00 85000.00 97.14
2325.2 88000.00 84500.00 96.02
2327.5 86000.00 84500.00 98.26
2329.8 83500.00 82000.00 98.20
2332.1 83500.00 79000.00 94.61
2334.5 82000.00 78000.00 95.12
2336.8 78000.00 77500.00 99.36
2339.1 77500.00 77500.00 100.00
2341.4 78500.00 76500.00 97.45
2343.7 77500.00 73500.00 94.84
2346.0 75000.00 72500.00 96.67
2348.3 74500.00 73500.00 98.66
2350.6 75000.00 72000.00 96.00
2352.9 73500.00 70500.00 95.92
2355.2 72000.00 69000.00 95.83
2357.5 70000.00 69500.00 99.29
2359.8 69500.00 70000.00 100.72
2362.1 69000.00 69000.00 100.00
2364.3 68000.00 67000.00 98.53
2366.6 68000.00 66000.00 97.06
2368.9 67500.00 65000.00 96.30
2371.2 66500.00 64500.00 96.99
2373.4 65500.00 63500.00 96.95
2375.7 64500.00 63500.00 98.45
2378.0 64500.00 64000.00 99.22
2380.2 62500.00 62500.00 100.00
2382.5 63000.00 61500.00 97.62
2384.8 63500.00 61500.00 96.85
2387.0 61000.00 61000.00 100.00
2389.3 61500.00 59500.00 96.75
2391.5 61500.00 59500.00 96.75
2393.8 59000.00 58000.00 98.31
2396.0 60000.00 56500.00 94.17
2398.3 60000.00 56500.00 94.17
2400.5 59500.00 56500.00 94.96
2402.8 57000.00 55500.00 97.37
2405.0 55000.00 54500.00 99.09
2407.3 56000.00 55000.00 98.21
2409.5 56500.00 55000.00 97.35
2411.7 54000.00 53000.00 98.15
2414.0 52500.00 52500.00 100.00
2416.2 54500.00 52500.00 96.33
2418.4 54000.00 52000.00 96.30
2420.6 52500.00 50500.00 96.19
2422.9 51000.00 51500.00 100.98
2425.1 50500.00 51500.00 101.98
2427.3 50500.00 49000.00 97.03
2429.5 51000.00 49500.00 97.06
2431.7 50000.00 49500.00 99.00
2433.9 49500.00 49000.00 98.99
2436.1 47500.00 48000.00 101.05
2438.3 45500.00 48000.00 105.49
2440.5 45500.00 46500.00 102.20
2442.7 46500.00 46500.00 100.00
2444.9 47000.00 46000.00 97.87
2447.1 47000.00 45000.00 95.74
2449.3 47500.00 44000.00 92.63
2451.5 47000.00 44500.00 94.68
2453.7 45500.00 44500.00 97.80
2455.9 45000.00 44500.00 98.89
2458.1 46000.00 43500.00 94.57
2460.2 45000.00 43000.00 95.56
2462.4 44000.00 42500.00 96.59
2464.6 44000.00 41000.00 93.18
2466.8 43500.00 39500.00 90.80
2468.9 41500.00 40500.00 97.59
2471.1 41000.00 40000.00 97.56
2473.3 39500.00 40000.00 101.27
2475.4 39500.00 39500.00 100.00
2477.6 40000.00 37500.00 93.75
2479.8 39000.00 37500.00 96.15
2481.9 40000.00 36500.00 91.25
2484.1 38500.00 37500.00 97.40
2486.2 36000.00 37000.00 102.78
2488.4 36500.00 36000.00 98.63
2490.5 35000.00 35500.00 101.43
2492.7 35000.00 33500.00 95.71
2494.8 35500.00 31500.00 88.73
2496.9 33000.00 32500.00 98.48
2499.1 32500.00 32500.00 100.00
2501.2 32000.00 31000.00 96.88
2503.4 29500.00 29500.00 100.00
2505.5 30500.00 29500.00 96.72
2507.6 31500.00 28000.00 88.89
2509.7 29500.00 26500.00 89.83
2511.9 27500.00 26500.00 96.36
2514.0 27500.00 25000.00 90.91
2516.1 30500.00 23000.00 75.41
|
with Ada.Unchecked_Deallocation;
with Interfaces;
with kv.avm.Transactions;
package kv.avm.Clients is
type Client_Interface is interface;
type Client_Access is access all Client_Interface'CLASS;
type Status_Type is (Uninitialized, Closed, Running, Transacting, Failed);
subtype Open_Status_Type is Status_Type range Running .. Transacting;
procedure Bind_Address
(Self : in out Client_Interface;
Address : in String) is abstract;
procedure Bind_Port
(Self : in out Client_Interface;
Port : in Positive) is abstract;
procedure Open
(Self : in out Client_Interface) is abstract;
procedure Close
(Self : in out Client_Interface) is abstract;
function Get_Status(Self : Client_Interface) return Status_Type is abstract;
function Is_Open(Self : Client_Interface) return Boolean is abstract;
procedure Send_Transaction
(Self : in out Client_Interface;
Transaction : in kv.avm.Transactions.Transactions_Interface'CLASS) is abstract;
procedure Conclude_Transaction
(Self : in out Client_Interface) is abstract;
function Is_Transaction_Pending(Self : Client_Interface) return Boolean is abstract;
function Get_Transaction(Self : Client_Interface) return kv.avm.Transactions.Transactions_Access is abstract;
function Get_Domain(Self : Client_Interface) return Interfaces.Unsigned_32 is abstract;
procedure Free is new Ada.Unchecked_Deallocation(Client_Interface'CLASS, Client_Access);
type Client_Factory is interface;
type Factory_Access is access all Client_Factory'CLASS;
procedure New_Client
(Self : in out Client_Factory;
Client : out Client_Access) is abstract;
end kv.avm.Clients;
|
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/governance/Governor.sol";
import "@openzeppelin/contracts/governance/extensions/GovernorSettings.sol";
import "@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol";
import "@openzeppelin/contracts/governance/extensions/GovernorVotes.sol";
import "@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.sol";
/// @custom:security-contact security@sunblock.finance
contract Freyr is Governor, GovernorSettings, GovernorCountingSimple, GovernorVotes, GovernorVotesQuorumFraction {
constructor(IVotes _token)
Governor("Freyr")
GovernorSettings(1 /* 1 block */, 45818 /* 1 week */, 0)
GovernorVotes(_token)
GovernorVotesQuorumFraction(4)
{}
// The following functions are overrides required by Solidity.
function votingDelay()
public
view
override(IGovernor, GovernorSettings)
returns (uint256)
{
return super.votingDelay();
}
function votingPeriod()
public
view
override(IGovernor, GovernorSettings)
returns (uint256)
{
return super.votingPeriod();
}
function quorum(uint256 blockNumber)
public
view
override(IGovernor, GovernorVotesQuorumFraction)
returns (uint256)
{
return super.quorum(blockNumber);
}
function getVotes(address account, uint256 blockNumber)
public
view
override(IGovernor, GovernorVotes)
returns (uint256)
{
return super.getVotes(account, blockNumber);
}
function proposalThreshold()
public
view
override(Governor, GovernorSettings)
returns (uint256)
{
return super.proposalThreshold();
}
} |
#lang scribble/base
@(require
scribble/manual
scriblib/footnote
"defs.rkt"
"bib.rkt")
@title[#:tag "intro" "Introduction"]
@; What is profile-guided optimization?
Profile-guided optimization (PGO) is an optimization technique in which
a compiler uses profile information gathered at run time to improve the
performance of the generated code.
The profile information acts as an oracle for run-time behavior.
For example, a profiler might count how many times a program calls each
function to inform decisions about function inlining.
Compilers use profile information to guide decisions about reordering
basic blocks, function inlining, reordering conditional branches, and
function layout in memory@~citea{gupta02}.
Contemporary compiler systems that support PGO include GCC, .NET, and
LLVM@~cite[lattner02].
Code generated using PGOs usually exhibits improved performance, at least on
the represented class of inputs, compared to code generated with static
optimization heuristics.
For example, @citeta{Arnold:2000} show that using profiling information
to guide inlining decisions in Java resulted in up to 59% improvement
over static heuristics.
@todo{Not sure if I should cite .net and gcc documentation or not.}
@; Introduce profile-guided meta-programming.
Profile information has also proven useful to implement profile-guided
meta-programs, i.e., PGOs on source programs.
@; Introduce meta-programming
Meta-programs are programs that operate on programs.
Languages with general-purpose meta-programming systems include C, C++,
Haskell@~citea{sheard2002template}, Java@~citea{erdweg11},
ML@~citea{taha00}, OCaml@~citea{bermetaocaml}, Racket@~cite[plt-tr1],
Scala@~citea{burmako2013scala}, and Scheme@~citea{dybvig93}.
Meta-programming is used to implement high-level yet efficient abstractions.
Boost libraries@~cite[boost] make heavy use of C++ meta-programming.
@; And profile-guided meta-programming
@citeta["sujeeth2014delite"] and @citeta["rompf10"] implement high-performance domain
specific languages using staged meta-programming in Scala.
@citeta{chen06:mpipp} implement process placement for SMP clusters using
profile-guided meta-programming.
@citeta{liu09} provide tools that use profile information to identify
suboptimal usage of the STL in C++ @nonbreaking{source code}.
@; Claim the state of the art is insufficient.
Current meta-programming systems do provide profile information to
meta-programs.
Therefore, to implement a profile-guided meta-program, programmers
must introduce new special-purpose toolkits for profiling and
meta-programming.
@; And propose a solution
Instead, meta-programming systems should provide access to profile
information from existing profilers.
Then programmers could reuse existing and familiar meta-programming
and profiling tools.
This paper presents a design for supporting profile-guided meta-programming in
general-purpose meta-programming systems.
To demonstrate the generality of our design, we implement it for
both Racket and Scheme.
Both implementations reuse existing meta-programming and
profiling infrastructure.
The rest of the paper is organized as follows.
In @Secref{example}, we introduce a running example and
Scheme-style meta-programming.
In @Secref{design}, we describe our requirements on the underlying
profiling system and an API for supporting profile-guided
meta-programming.
In @Secref{implementation}, we present two implementations of the
specification in @Secref{design}: one in Chez Scheme and one in Racket.
In @Secref{impl-other}, we sketch implementations for other
general-purpose meta-programming systems.
In @Secref{case-studies}, we demonstrate that our design is general
enough to implement and extend existing PGOs and profile-guided
meta-programs.
In @Secref{related}, we relate to existing work on PGOs and
profile-guided meta-programming.
The source code for our case studies and Racket implementation is
available online@note{http://dx.doi.org/10.5281/zenodo.16784}.
|
> 欲戴皇冠,必先承起重
大家好,我是许振雪,现就读于贵州大学计算机学院,贵州省先进计算与医疗工程&&数据库实验室,学习和从事一些Java Web和数据相关的东西。目前研究方向大致为ETL任务调度相关,希望可以和大家多交流。
##### Education
###### 2013年9月-2017年7月
- [华侨大学][4]·本科·信息管理与信息系统 · [HQU][1] 泉州 2013
###### 2017年9月-至今
- [贵州大学][3]·硕士·计算机科学与技术 · [GZU][2] 贵阳 2017
#### Interest
- Java Web全栈开发
- 大规模数据处理
- 数据挖掘与分析
- 数据可视化
#### Experience
- 贵阳市公安交通管理局数据质量监测平台--前后端开发 ·贵阳 2018
[1]: http://www.hqu.edu.cn/
[2]: http://www.gzu.edu.cn/
[3]: https://baike.baidu.com/item/%E8%B4%B5%E5%B7%9E%E5%A4%A7%E5%AD%A6
[4]: https://baike.baidu.com/item/%E5%8D%8E%E4%BE%A8%E5%A4%A7%E5%AD%A6 |
<?php
App::uses('AppModel', 'Model');
/**
* AdmUserRestriction Model
*
* @property AdmUser $AdmUser
* @property AdmRole $AdmRole
* @property AdmArea $AdmArea
*/
class AdmUserRestriction extends AppModel {
/**
* Validation rules
*
* @var array
*/
public $validate = array(
'adm_user_id' => array(
'notempty' => array(
'rule' => array('notempty'),
//'message' => 'Your custom message here',
//'allowEmpty' => false,
//'required' => false,
//'last' => false, // Stop validation after this rule
//'on' => 'create', // Limit validation to 'create' or 'update' operations
),
),
'adm_role_id' => array(
'notempty' => array(
'rule' => array('notempty'),
//'message' => 'Your custom message here',
//'allowEmpty' => false,
//'required' => false,
//'last' => false, // Stop validation after this rule
//'on' => 'create', // Limit validation to 'create' or 'update' operations
),
),
'adm_area_id' => array(
'notempty' => array(
'rule' => array('notempty'),
//'message' => 'Your custom message here',
//'allowEmpty' => false,
//'required' => false,
//'last' => false, // Stop validation after this rule
//'on' => 'create', // Limit validation to 'create' or 'update' operations
),
),
'active' => array(
'notempty' => array(
'rule' => array('notempty'),
//'message' => 'Your custom message here',
//'allowEmpty' => false,
//'required' => false,
//'last' => false, // Stop validation after this rule
//'on' => 'create', // Limit validation to 'create' or 'update' operations
),
),
'active_date' => array(
'notempty' => array(
'rule' => array('notempty'),
//'message' => 'Your custom message here',
//'allowEmpty' => false,
//'required' => false,
//'last' => false, // Stop validation after this rule
//'on' => 'create', // Limit validation to 'create' or 'update' operations
),
),
'period' => array(
'notempty' => array(
'rule' => array('notempty'),
//'message' => 'Your custom message here',
//'allowEmpty' => false,
//'required' => false,
//'last' => false, // Stop validation after this rule
//'on' => 'create', // Limit validation to 'create' or 'update' operations
),
),
);
//The Associations below have been created with all possible keys, those that are not needed can be removed
/**
* belongsTo associations
*
* @var array
*/
public $belongsTo = array(
'AdmUser' => array(
'className' => 'AdmUser',
'foreignKey' => 'adm_user_id',
'conditions' => '',
'fields' => '',
'order' => ''
),
'AdmRole' => array(
'className' => 'AdmRole',
'foreignKey' => 'adm_role_id',
'conditions' => '',
'fields' => '',
'order' => ''
),
'AdmArea' => array(
'className' => 'AdmArea',
'foreignKey' => 'adm_area_id',
'conditions' => '',
'fields' => '',
'order' => ''
)
);
/*
public $hasMany = array(
'AdmUserLog' => array(
'className' => 'AdmUserLog',
'foreignKey' => 'adm_user_restriction_id',
'dependent' => false,
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'exclusive' => '',
'finderQuery' => '',
'counterQuery' => ''
)
);
*
*/
}
|
body {
background: #000000;
text-align: center;
}
.container {
width: 510px;
height: 500px;
display: inline-block;
transform: translateY(10%);
}
.bar {
background: #FFFFFF;
width: 10px;
height: 100%;
}
.client {
float: left;
}
.server {
float: right;
}
.request {
opacity: 0;
color: #000000;
text-align: center;
}
.el {
background: #FFFFFF;
width: 20px;
height: 20px;
position: absolute;
top: 240px;
left: 10px;
}
.stretched {
position: relative;
top: 0;
left: 0;
height: 4px;
margin-top: 2px;
margin-bottom: 2px;
opacity: 0;
}
.sub {
position: absolute;
display: flex;
align-items: center;
width: 100%;
height: 100%;
}
.response-content {
position: absolute;
right: 10px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
.statistic {
position: absolute;
height: 100%;
}
.statistic > * {
margin-bottom: 15px;
}
.timer {
width: 100px;
height: 100px;
position: relative;
border-radius: 50px;
background: white;
display: block;
margin-right: 4px;
}
.timer > .timer-face {
width: 70px;
height: 70px;
background: black;
border-radius: 35px;
top: 15px;
left: 15px;
position: absolute;
color: white;
text-align: center;
line-height: 70px;
}
.memory {
position: relative;
display: flex;
flex-direction: row;
height: 40px;
width: 184px;
background-color: black;
border-color: white;
border-width: 2px;
border-style: solid;
color: #ffffff;
}
.memory > .memory-indicator {
display: flex;
background-color: white;
width: 4px;
height: 36px;
margin: 2px;
}
.memory-label {
color: #FFFFFF;
margin-bottom: 0 !important;
}
.elements-counter {
color: #FFFFFF;
align-self: flex-end;
position: absolute;
bottom: 0;
}
.control-panel {
display: inline-flex;
flex-direction: row;
align-content: flex-start;
align-items: center;
border-color: #FFFFFF;
border-style: solid;
border-width: 2px;
padding: 5px;
/* margin: auto; */
top: 10px;
}
.control-button {
display: block;
width: 70px;
height: 70px;
}
.control-button > .circle {
transition: stroke-dashoffset 300ms ease-in;
stroke-dashoffset: 0;
fill: none;
}
.control-button[state = 'pause'] > .circle {
stroke-dashoffset: 314;
}
input[type="range"]{
-webkit-appearance:none;
width:160px;
height:20px;
background: linear-gradient(to right, #ffffff 0%, #ffffff 100%);
background-size:150px 10px;
background-position:center;
background-repeat:no-repeat;
overflow:hidden;
outline: none;
}
.speedometer-label {
color: #FFFFFF;
}
input[type="range"] {
margin-bottom: 50px !important;
}
input[type="range"]::-webkit-slider-thumb{
-webkit-appearance:none;
width:20px;
height:20px;
background:#000000;
border-color: #ffffff;
border-style: solid;
border-width: 1px;
position:relative;
z-index:3;
box-shadow:0 0 5px 0 rgba(0,0,0,0.3);
}
input[type="range"]::-webkit-slider-thumb:after{
content:" ";
width:160px;
height:10px;
position:absolute;
z-index:1;
right:20px;
top:5px;
background: #ffffff;
background: linear-gradient(to right, #f088fc 1%, #AC6CFF 70%);
}
/*-------------------*/
.box {
width: 100px;
background-color: #FFFFFF;
height: 100px;
position: absolute;
left: 300px;
top: 300px;
} |
syntax = "proto3";
//Information model for the long_term and mid_term operation of local energy management system.
message local_sources {
int32 AREA = 1; // The area information
int32 TIME_STAMP = 2; //The model generated time
//The defination of diesel generators
message DgType {
int32 ID = 1;
repeated int32 GEN_STATUS = 2;
repeated int32 PG = 3;
repeated int32 RG = 4;
repeated int32 COMMAND_STATUS = 5;
}
//The defination of energy storage systems
message EssType {
int32 ID = 1;
repeated int32 ESS_STATUS = 2;
repeated float SOC = 3;
repeated int32 PG = 4;
repeated int32 RG = 5;
}
//The defination of pv
message PvType {
repeated int32 NPV = 1;
repeated float PG = 2;
repeated int32 COMMAND_CURT = 3;
}
//The defination of wind turbine
message WpType {
repeated int32 NWP = 1;
repeated float PG = 2;
repeated int32 COMMAND_CURT = 3;
}
//The defination of ac load
message Load_AC_Type {
int32 ID = 1;
repeated int32 STATUS = 2;
repeated int32 PD = 3;
repeated float COMMAND_SHED = 4;
}
//The defination of dc load
message Load_DC_Type {
int32 ID = 1;
repeated int32 STATUS = 2;
repeated int32 PD = 3;
repeated float COMMAND_SHED = 4;
}
//The defination of convertor
message Convertor_Type {
int32 ID = 1;
repeated int32 STATUS = 2;
repeated float PAC2DC = 3;
repeated float PDC2AC = 4;
}
repeated DgType dg = 3;
repeated EssType ess = 4;
repeated PvType pv = 5;
repeated WpType wp = 6;
repeated Load_AC_Type load_ac = 7;
repeated Load_DC_Type load_dc = 8;
repeated Convertor_Type bic = 9;
repeated float PMG = 10;
int32 COMMAND_TYPE = 11;
int32 TIME_STAMP_COMMAND = 12;
} |
import subprocess
print('popen2:')
proc = subprocess.Popen(
['cat', '-'],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
)
msg = 'through stdin to stdout'.encode('utf-8')
stdout_value = proc.communicate(msg)[0].decode('utf-8')
print('pass through:', repr(stdout_value))
|
@echo off
premake5 __premake_lua_exec_pre_1
premake5 __premake_lua_exec_pre_2
|
/*
* This file is open source software, licensed to you under the terms
* of the Apache License, Version 2.0 (the "License"). See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. You may not use this file except in compliance with the License.
*
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*
* Copyright (C) 2015 Cloudius Systems, Ltd.
*/
#pragma once
#include <seastar/core/apply.hh>
#include <seastar/core/task.hh>
#include <seastar/core/preempt.hh>
#include <seastar/core/thread_impl.hh>
#include <stdexcept>
#include <atomic>
#include <memory>
#include <type_traits>
#include <assert.h>
#include <cstdlib>
#include <seastar/core/function_traits.hh>
#include <seastar/util/alloc_failure_injector.hh>
#include <seastar/util/attribute-compat.hh>
#include <seastar/util/gcc6-concepts.hh>
#include <seastar/util/noncopyable_function.hh>
namespace seastar {
/// \defgroup future-module Futures and Promises
///
/// \brief
/// Futures and promises are the basic tools for asynchronous
/// programming in seastar. A future represents a result that
/// may not have been computed yet, for example a buffer that
/// is being read from the disk, or the result of a function
/// that is executed on another cpu. A promise object allows
/// the future to be eventually resolved by assigning it a value.
///
/// \brief
/// Another way to look at futures and promises are as the reader
/// and writer sides, respectively, of a single-item, single use
/// queue. You read from the future, and write to the promise,
/// and the system takes care that it works no matter what the
/// order of operations is.
///
/// \brief
/// The normal way of working with futures is to chain continuations
/// to them. A continuation is a block of code (usually a lamdba)
/// that is called when the future is assigned a value (the future
/// is resolved); the continuation can then access the actual value.
///
/// \defgroup future-util Future Utilities
///
/// \brief
/// These utilities are provided to help perform operations on futures.
/// \addtogroup future-module
/// @{
template <class... T>
class promise;
template <class... T>
class future;
template <typename... T>
class shared_future;
/// \brief Creates a \ref future in an available, value state.
///
/// Creates a \ref future object that is already resolved. This
/// is useful when it is determined that no I/O needs to be performed
/// to perform a computation (for example, because the data is cached
/// in some buffer).
template <typename... T, typename... A>
future<T...> make_ready_future(A&&... value);
/// \brief Creates a \ref future in an available, failed state.
///
/// Creates a \ref future object that is already resolved in a failed
/// state. This is useful when no I/O needs to be performed to perform
/// a computation (for example, because the connection is closed and
/// we cannot read from it).
template <typename... T>
future<T...> make_exception_future(std::exception_ptr value) noexcept;
/// \cond internal
void engine_exit(std::exception_ptr eptr = {});
void report_failed_future(const std::exception_ptr& ex) noexcept;
/// \endcond
/// \brief Exception type for broken promises
///
/// When a promise is broken, i.e. a promise object with an attached
/// continuation is destroyed before setting any value or exception, an
/// exception of `broken_promise` type is propagated to that abandoned
/// continuation.
struct broken_promise : std::logic_error {
broken_promise();
};
namespace internal {
template <class... T>
class promise_base_with_type;
// It doesn't seem to be possible to use std::tuple_element_t with an empty tuple. There is an static_assert in it that
// fails the build even if it is in the non enabled side of std::conditional.
template <typename... T>
struct get0_return_type {
using type = void;
static type get0(std::tuple<T...> v) { }
};
template <typename T0, typename... T>
struct get0_return_type<T0, T...> {
using type = T0;
static type get0(std::tuple<T0, T...> v) { return std::get<0>(std::move(v)); }
};
/// \brief Wrapper for keeping uninitialized values of non default constructible types.
///
/// This is similar to a std::optional<T>, but it doesn't know if it is holding a value or not, so the user is
/// responsible for calling constructors and destructors.
///
/// The advantage over just using a union directly is that this uses inheritance when possible and so benefits from the
/// empty base optimization.
template <typename T, bool is_trivial_class>
struct uninitialized_wrapper_base;
template <typename T>
struct uninitialized_wrapper_base<T, false> {
union any {
any() {}
~any() {}
T value;
} _v;
public:
void uninitialized_set(T v) {
new (&_v.value) T(std::move(v));
}
T& uninitialized_get() {
return _v.value;
}
const T& uninitialized_get() const {
return _v.value;
}
};
template <typename T> struct uninitialized_wrapper_base<T, true> : private T {
void uninitialized_set(T v) {
new (this) T(std::move(v));
}
T& uninitialized_get() {
return *this;
}
const T& uninitialized_get() const {
return *this;
}
};
template <typename T>
constexpr bool can_inherit =
#ifdef _LIBCPP_VERSION
// We expect std::tuple<> to be trivially constructible and
// destructible. That is not the case with libc++
// (https://bugs.llvm.org/show_bug.cgi?id=41714). We could avoid this
// optimization when using libc++ and relax the asserts, but
// inspection suggests that std::tuple<> is trivial, it is just not
// marked as such.
std::is_same<std::tuple<>, T>::value ||
#endif
(std::is_trivially_destructible<T>::value && std::is_trivially_constructible<T>::value &&
std::is_class<T>::value && !std::is_final<T>::value);
// The objective is to avoid extra space for empty types like std::tuple<>. We could use std::is_empty_v, but it is
// better to check that both the constructor and destructor can be skipped.
template <typename T>
struct uninitialized_wrapper
: public uninitialized_wrapper_base<T, can_inherit<T>> {};
static_assert(std::is_empty<uninitialized_wrapper<std::tuple<>>>::value, "This should still be empty");
}
//
// A future/promise pair maintain one logical value (a future_state).
// There are up to three places that can store it, but only one is
// active at any time.
//
// - in the promise _local_state member variable
//
// This is necessary because a promise is created first and there
// would be nowhere else to put the value.
//
// - in the future _state variable
//
// This is used anytime a future exists and then has not been called
// yet. This guarantees a simple access to the value for any code
// that already has a future.
//
// - in the task associated with the .then() clause (after .then() is called,
// if a value was not set)
//
//
// The promise maintains a pointer to the state, which is modified as
// the state moves to a new location due to events (such as .then() or
// get_future being called) or due to the promise or future being
// moved around.
//
// non templated base class to reduce code duplication
struct future_state_base {
static_assert(std::is_nothrow_copy_constructible<std::exception_ptr>::value,
"std::exception_ptr's copy constructor must not throw");
static_assert(std::is_nothrow_move_constructible<std::exception_ptr>::value,
"std::exception_ptr's move constructor must not throw");
static_assert(sizeof(std::exception_ptr) == sizeof(void*), "exception_ptr not a pointer");
enum class state : uintptr_t {
invalid = 0,
future = 1,
result = 2,
exception_min = 3, // or anything greater
};
union any {
any() { st = state::future; }
any(state s) { st = s; }
void set_exception(std::exception_ptr&& e) {
new (&ex) std::exception_ptr(std::move(e));
assert(st >= state::exception_min);
}
any(std::exception_ptr&& e) {
set_exception(std::move(e));
}
~any() {}
std::exception_ptr take_exception() {
std::exception_ptr ret(std::move(ex));
// Unfortunately in libstdc++ ~exception_ptr is defined out of line. We know that it does nothing for
// moved out values, so we omit calling it. This is critical for the code quality produced for this
// function. Without the out of line call, gcc can figure out that both sides of the if produce
// identical code and merges them.if
// We don't make any assumptions about other c++ libraries.
// There is request with gcc to define it inline: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90295
#ifndef __GLIBCXX__
ex.~exception_ptr();
#endif
st = state::invalid;
return ret;
}
any(any&& x) {
if (x.st < state::exception_min) {
st = x.st;
} else {
new (&ex) std::exception_ptr(x.take_exception());
}
x.st = state::invalid;
}
state st;
std::exception_ptr ex;
} _u;
future_state_base() noexcept { }
future_state_base(state st) noexcept : _u(st) { }
future_state_base(std::exception_ptr&& ex) noexcept : _u(std::move(ex)) { }
future_state_base(future_state_base&& x) noexcept : _u(std::move(x._u)) { }
// We never need to destruct this polymorphicly, so we can make it
// protected instead of virtual.
protected:
~future_state_base() noexcept {
if (failed()) {
report_failed_future(_u.take_exception());
}
}
public:
bool available() const noexcept { return _u.st == state::result || _u.st >= state::exception_min; }
bool failed() const noexcept { return __builtin_expect(_u.st >= state::exception_min, false); }
void set_to_broken_promise() noexcept;
void set_exception(std::exception_ptr&& ex) noexcept {
assert(_u.st == state::future);
_u.set_exception(std::move(ex));
}
std::exception_ptr get_exception() && noexcept {
assert(_u.st >= state::exception_min);
// Move ex out so future::~future() knows we've handled it
return _u.take_exception();
}
const std::exception_ptr& get_exception() const& noexcept {
assert(_u.st >= state::exception_min);
return _u.ex;
}
};
struct ready_future_marker {};
struct exception_future_marker {};
struct future_for_get_promise_marker {};
/// \cond internal
template <typename... T>
struct future_state : public future_state_base, private internal::uninitialized_wrapper<std::tuple<T...>> {
static constexpr bool copy_noexcept = std::is_nothrow_copy_constructible<std::tuple<T...>>::value;
static_assert(std::is_nothrow_move_constructible<std::tuple<T...>>::value,
"Types must be no-throw move constructible");
static_assert(std::is_nothrow_destructible<std::tuple<T...>>::value,
"Types must be no-throw destructible");
future_state() noexcept {}
[[gnu::always_inline]]
future_state(future_state&& x) noexcept : future_state_base(std::move(x)) {
if (_u.st == state::result) {
this->uninitialized_set(std::move(x.uninitialized_get()));
x.uninitialized_get().~tuple();
}
}
__attribute__((always_inline))
~future_state() noexcept {
if (_u.st == state::result) {
this->uninitialized_get().~tuple();
}
}
future_state& operator=(future_state&& x) noexcept {
this->~future_state();
new (this) future_state(std::move(x));
return *this;
}
template <typename... A>
future_state(ready_future_marker, A&&... a) : future_state_base(state::result) {
this->uninitialized_set(std::tuple<T...>(std::forward<A>(a)...));
}
template <typename... A>
void set(A&&... a) {
assert(_u.st == state::future);
new (this) future_state(ready_future_marker(), std::forward<A>(a)...);
}
future_state(exception_future_marker m, std::exception_ptr&& ex) : future_state_base(std::move(ex)) { }
std::tuple<T...> get_value() && noexcept {
assert(_u.st == state::result);
return std::move(this->uninitialized_get());
}
template<typename U = std::tuple<T...>>
std::enable_if_t<std::is_copy_constructible<U>::value, U> get_value() const& noexcept(copy_noexcept) {
assert(_u.st == state::result);
return this->uninitialized_get();
}
std::tuple<T...> get() && {
assert(_u.st != state::future);
if (_u.st >= state::exception_min) {
// Move ex out so future::~future() knows we've handled it
std::rethrow_exception(std::move(*this).get_exception());
}
return std::move(this->uninitialized_get());
}
std::tuple<T...> get() const& {
assert(_u.st != state::future);
if (_u.st >= state::exception_min) {
std::rethrow_exception(_u.ex);
}
return this->uninitialized_get();
}
void ignore() noexcept {
switch (_u.st) {
case state::invalid:
case state::future:
assert(0 && "invalid state for ignore");
case state::result:
this->~future_state();
break;
default:
// Ignore the exception
_u.take_exception();
}
_u.st = state::invalid;
}
using get0_return_type = typename internal::get0_return_type<T...>::type;
static get0_return_type get0(std::tuple<T...>&& x) {
return internal::get0_return_type<T...>::get0(std::move(x));
}
};
static_assert(sizeof(future_state<>) <= 8, "future_state<> is too large");
static_assert(sizeof(future_state<long>) <= 16, "future_state<long> is too large");
template <typename... T>
class continuation_base : public task {
protected:
future_state<T...> _state;
using future_type = future<T...>;
using promise_type = promise<T...>;
public:
continuation_base() = default;
explicit continuation_base(future_state<T...>&& state) : _state(std::move(state)) {}
void set_state(future_state<T...>&& state) {
_state = std::move(state);
}
friend class internal::promise_base_with_type<T...>;
friend class promise<T...>;
friend class future<T...>;
};
template <typename Func, typename... T>
struct continuation final : continuation_base<T...> {
continuation(Func&& func, future_state<T...>&& state) : continuation_base<T...>(std::move(state)), _func(std::move(func)) {}
continuation(Func&& func) : _func(std::move(func)) {}
virtual void run_and_dispose() noexcept override {
_func(std::move(this->_state));
delete this;
}
Func _func;
};
namespace internal {
template <typename... T, typename U>
void set_callback(future<T...>& fut, std::unique_ptr<U> callback);
class future_base;
class promise_base {
protected:
enum class urgent { no, yes };
future_base* _future = nullptr;
// This points to the future_state that is currently being
// used. See comment above the future_state struct definition for
// details.
future_state_base* _state;
std::unique_ptr<task> _task;
promise_base(const promise_base&) = delete;
promise_base(future_state_base* state) noexcept : _state(state) {}
promise_base(future_base* future, future_state_base* state) noexcept;
promise_base(promise_base&& x) noexcept;
// We never need to destruct this polymorphicly, so we can make it
// protected instead of virtual
~promise_base() noexcept;
void operator=(const promise_base&) = delete;
promise_base& operator=(promise_base&& x) = delete;
template<urgent Urgent>
__attribute__((always_inline))
void make_ready() noexcept;
void set_exception(std::exception_ptr&& ex) noexcept {
if (_state) {
_state->set_exception(std::move(ex));
make_ready<urgent::no>();
} else {
// We get here if promise::get_future is called and the
// returned future is destroyed without creating a
// continuation.
// In older versions of seastar we would store a local
// copy of ex and warn in the promise destructor.
// Since there isn't any way for the user to clear
// the exception, we issue the warning from here.
report_failed_future(ex);
}
}
void set_exception(const std::exception_ptr& ex) noexcept {
set_exception(std::exception_ptr(ex));
}
template<typename Exception>
std::enable_if_t<!std::is_same<std::remove_reference_t<Exception>, std::exception_ptr>::value, void> set_exception(Exception&& e) noexcept {
set_exception(make_exception_ptr(std::forward<Exception>(e)));
}
friend class future_base;
template <typename... U> friend class seastar::future;
};
/// \brief A promise with type but no local data.
///
/// This is a promise without any local data. We use this for when the
/// future is created first, so we know the promise always has an
/// external place to point to. We cannot just use promise_base
/// because we need to know the type that is being stored.
template <typename... T>
class promise_base_with_type : protected internal::promise_base {
protected:
future_state<T...>* get_state() {
return static_cast<future_state<T...>*>(_state);
}
static constexpr bool copy_noexcept = future_state<T...>::copy_noexcept;
public:
promise_base_with_type(future_state_base* state) noexcept : promise_base(state) { }
promise_base_with_type(future<T...>* future) noexcept : promise_base(future, &future->_state) { }
promise_base_with_type(promise_base_with_type&& x) noexcept : promise_base(std::move(x)) { }
promise_base_with_type(const promise_base_with_type&) = delete;
promise_base_with_type& operator=(promise_base_with_type&& x) noexcept {
this->~promise_base_with_type();
new (this) promise_base_with_type(std::move(x));
return *this;
}
void operator=(const promise_base_with_type&) = delete;
void set_urgent_state(future_state<T...>&& state) noexcept {
if (_state) {
*get_state() = std::move(state);
make_ready<urgent::yes>();
}
}
template <typename... A>
void set_value(A&&... a) {
if (auto *s = get_state()) {
s->set(std::forward<A>(a)...);
make_ready<urgent::no>();
}
}
#if SEASTAR_COROUTINES_TS
void set_coroutine(future_state<T...>& state, task& coroutine) noexcept {
_state = &state;
_task = std::unique_ptr<task>(&coroutine);
}
#endif
private:
template <typename Func>
void schedule(Func&& func) {
auto tws = std::make_unique<continuation<Func, T...>>(std::move(func));
_state = &tws->_state;
_task = std::move(tws);
}
void schedule(std::unique_ptr<continuation_base<T...>> callback) {
_state = &callback->_state;
_task = std::move(callback);
}
template <typename... U>
friend class seastar::future;
friend struct seastar::future_state<T...>;
};
}
/// \endcond
/// \brief promise - allows a future value to be made available at a later time.
///
/// \tparam T A list of types to be carried as the result of the associated future.
/// A list with two or more types is deprecated; use
/// \c promise<std::tuple<T...>> instead.
template <typename... T>
class promise : private internal::promise_base_with_type<T...> {
future_state<T...> _local_state;
public:
/// \brief Constructs an empty \c promise.
///
/// Creates promise with no associated future yet (see get_future()).
promise() noexcept : internal::promise_base_with_type<T...>(&_local_state) {}
/// \brief Moves a \c promise object.
promise(promise&& x) noexcept;
promise(const promise&) = delete;
promise& operator=(promise&& x) noexcept {
this->~promise();
new (this) promise(std::move(x));
return *this;
}
void operator=(const promise&) = delete;
/// \brief Gets the promise's associated future.
///
/// The future and promise will be remember each other, even if either or
/// both are moved. When \c set_value() or \c set_exception() are called
/// on the promise, the future will be become ready, and if a continuation
/// was attached to the future, it will run.
future<T...> get_future() noexcept;
/// \brief Sets the promises value
///
/// Forwards the arguments and makes them available to the associated
/// future. May be called either before or after \c get_future().
///
/// The arguments can have either the types the promise is
/// templated with, or a corresponding std::tuple. That is, given
/// a promise<int, double>, both calls are valid:
///
/// pr.set_value(42, 43.0);
/// pr.set_value(std::tuple<int, double>(42, 43.0))
template <typename... A>
void set_value(A&&... a) {
internal::promise_base_with_type<T...>::set_value(std::forward<A>(a)...);
}
/// \brief Marks the promise as failed
///
/// Forwards the exception argument to the future and makes it
/// available. May be called either before or after \c get_future().
void set_exception(std::exception_ptr&& ex) noexcept {
internal::promise_base::set_exception(std::move(ex));
}
void set_exception(const std::exception_ptr& ex) noexcept {
internal::promise_base::set_exception(ex);
}
/// \brief Marks the promise as failed
///
/// Forwards the exception argument to the future and makes it
/// available. May be called either before or after \c get_future().
template<typename Exception>
std::enable_if_t<!std::is_same<std::remove_reference_t<Exception>, std::exception_ptr>::value, void> set_exception(Exception&& e) noexcept {
internal::promise_base::set_exception(std::forward<Exception>(e));
}
using internal::promise_base_with_type<T...>::set_urgent_state;
template <typename... U>
friend class future;
};
/// \brief Specialization of \c promise<void>
///
/// This is an alias for \c promise<>, for generic programming purposes.
/// For example, You may have a \c promise<T> where \c T can legally be
/// \c void.
template<>
class promise<void> : public promise<> {};
/// @}
/// \addtogroup future-util
/// @{
/// \brief Check whether a type is a future
///
/// This is a type trait evaluating to \c true if the given type is a
/// future.
///
template <typename... T> struct is_future : std::false_type {};
/// \cond internal
/// \addtogroup future-util
template <typename... T> struct is_future<future<T...>> : std::true_type {};
/// \endcond
/// \brief Converts a type to a future type, if it isn't already.
///
/// \return Result in member type 'type'.
template <typename T>
struct futurize;
template <typename T>
struct futurize {
/// If \c T is a future, \c T; otherwise \c future<T>
using type = future<T>;
/// The promise type associated with \c type.
using promise_type = promise<T>;
/// The value tuple type associated with \c type
using value_type = std::tuple<T>;
/// Apply a function to an argument list (expressed as a tuple)
/// and return the result, as a future (if it wasn't already).
template<typename Func, typename... FuncArgs>
static inline type apply(Func&& func, std::tuple<FuncArgs...>&& args) noexcept;
/// Apply a function to an argument list
/// and return the result, as a future (if it wasn't already).
template<typename Func, typename... FuncArgs>
static inline type apply(Func&& func, FuncArgs&&... args) noexcept;
/// Convert a value or a future to a future
static inline type convert(T&& value) { return make_ready_future<T>(std::move(value)); }
static inline type convert(type&& value) { return std::move(value); }
/// Convert the tuple representation into a future
static type from_tuple(value_type&& value);
/// Convert the tuple representation into a future
static type from_tuple(const value_type& value);
/// Makes an exceptional future of type \ref type.
template <typename Arg>
static type make_exception_future(Arg&& arg);
};
/// \cond internal
template <>
struct futurize<void> {
using type = future<>;
using promise_type = promise<>;
using value_type = std::tuple<>;
template<typename Func, typename... FuncArgs>
static inline type apply(Func&& func, std::tuple<FuncArgs...>&& args) noexcept;
template<typename Func, typename... FuncArgs>
static inline type apply(Func&& func, FuncArgs&&... args) noexcept;
static inline type from_tuple(value_type&& value);
static inline type from_tuple(const value_type& value);
template <typename Arg>
static type make_exception_future(Arg&& arg);
};
template <typename... Args>
struct futurize<future<Args...>> {
using type = future<Args...>;
using promise_type = promise<Args...>;
using value_type = std::tuple<Args...>;
template<typename Func, typename... FuncArgs>
static inline type apply(Func&& func, std::tuple<FuncArgs...>&& args) noexcept;
template<typename Func, typename... FuncArgs>
static inline type apply(Func&& func, FuncArgs&&... args) noexcept;
static inline type from_tuple(value_type&& value);
static inline type from_tuple(const value_type& value);
static inline type convert(Args&&... values) { return make_ready_future<Args...>(std::move(values)...); }
static inline type convert(type&& value) { return std::move(value); }
template <typename Arg>
static type make_exception_future(Arg&& arg);
};
/// \endcond
// Converts a type to a future type, if it isn't already.
template <typename T>
using futurize_t = typename futurize<T>::type;
/// @}
GCC6_CONCEPT(
template <typename T>
concept bool Future = is_future<T>::value;
template <typename Func, typename... T>
concept bool CanApply = requires (Func f, T... args) {
f(std::forward<T>(args)...);
};
template <typename Func, typename Return, typename... T>
concept bool ApplyReturns = requires (Func f, T... args) {
{ f(std::forward<T>(args)...) } -> Return;
};
template <typename Func, typename... T>
concept bool ApplyReturnsAnyFuture = requires (Func f, T... args) {
requires is_future<decltype(f(std::forward<T>(args)...))>::value;
};
)
/// \addtogroup future-module
/// @{
namespace internal {
class future_base {
protected:
promise_base* _promise;
future_base() noexcept : _promise(nullptr) {}
future_base(promise_base* promise, future_state_base* state) noexcept : _promise(promise) {
_promise->_future = this;
_promise->_state = state;
}
future_base(future_base&& x, future_state_base* state) noexcept : _promise(x._promise) {
if (auto* p = _promise) {
x.detach_promise();
p->_future = this;
p->_state = state;
}
}
~future_base() noexcept {
if (_promise) {
detach_promise();
}
}
promise_base* detach_promise() noexcept {
_promise->_state = nullptr;
_promise->_future = nullptr;
return std::exchange(_promise, nullptr);
}
friend class promise_base;
};
template <bool IsVariadic>
struct warn_variadic_future {
// Non-varidic case, do nothing
void check_deprecation() {}
};
// Note: placing the deprecated attribute on the class specialization has no effect.
template <>
struct warn_variadic_future<true> {
// Variadic case, has deprecation attribute
[[deprecated("Variadic future<> with more than one template parmeter is deprecated, replace with future<std::tuple<...>>")]]
void check_deprecation() {}
};
}
/// \brief A representation of a possibly not-yet-computed value.
///
/// A \c future represents a value that has not yet been computed
/// (an asynchronous computation). It can be in one of several
/// states:
/// - unavailable: the computation has not been completed yet
/// - value: the computation has been completed successfully and a
/// value is available.
/// - failed: the computation completed with an exception.
///
/// methods in \c future allow querying the state and, most importantly,
/// scheduling a \c continuation to be executed when the future becomes
/// available. Only one such continuation may be scheduled.
///
/// \tparam T A list of types to be carried as the result of the future,
/// similar to \c std::tuple<T...>. An empty list (\c future<>)
/// means that there is no result, and an available future only
/// contains a success/failure indication (and in the case of a
/// failure, an exception).
/// A list with two or more types is deprecated; use
/// \c future<std::tuple<T...>> instead.
template <typename... T>
class SEASTAR_NODISCARD future : private internal::future_base, internal::warn_variadic_future<(sizeof...(T) > 1)> {
future_state<T...> _state;
static constexpr bool copy_noexcept = future_state<T...>::copy_noexcept;
private:
// This constructor creates a future that is not ready but has no
// associated promise yet. The use case is to have a less flexible
// but more efficient future/promise pair where we know that
// promise::set_value cannot possibly be called without a matching
// future and so that promise doesn't need to store a
// future_state.
future(future_for_get_promise_marker m) { }
future(promise<T...>* pr) noexcept : future_base(pr, &_state), _state(std::move(pr->_local_state)) { }
template <typename... A>
future(ready_future_marker m, A&&... a) : _state(m, std::forward<A>(a)...) { }
future(exception_future_marker m, std::exception_ptr ex) noexcept : _state(m, std::move(ex)) { }
[[gnu::always_inline]]
explicit future(future_state<T...>&& state) noexcept
: _state(std::move(state)) {
this->check_deprecation();
}
internal::promise_base_with_type<T...> get_promise() noexcept {
assert(!_promise);
return internal::promise_base_with_type<T...>(this);
}
internal::promise_base_with_type<T...>* detach_promise() {
return static_cast<internal::promise_base_with_type<T...>*>(future_base::detach_promise());
}
template <typename Func>
void schedule(Func&& func) {
if (_state.available() || !_promise) {
if (__builtin_expect(!_state.available() && !_promise, false)) {
abandoned();
}
::seastar::schedule(std::make_unique<continuation<Func, T...>>(std::move(func), std::move(_state)));
} else {
assert(_promise);
detach_promise()->schedule(std::move(func));
}
}
[[gnu::always_inline]]
future_state<T...> get_available_state() noexcept {
if (_promise) {
detach_promise();
}
return std::move(_state);
}
[[gnu::noinline]]
future<T...> rethrow_with_nested() {
if (!failed()) {
return make_exception_future<T...>(std::current_exception());
} else {
//
// Encapsulate the current exception into the
// std::nested_exception because the current libstdc++
// implementation has a bug requiring the value of a
// std::throw_with_nested() parameter to be of a polymorphic
// type.
//
std::nested_exception f_ex;
try {
get();
} catch (...) {
std::throw_with_nested(f_ex);
}
__builtin_unreachable();
}
}
// Used when there is to attempt to attach a continuation or a thread to a future
// that was abandoned by its promise.
[[gnu::cold]] [[gnu::noinline]]
void abandoned() noexcept {
_state.set_to_broken_promise();
}
template<typename... U>
friend class shared_future;
public:
/// \brief The data type carried by the future.
using value_type = std::tuple<T...>;
/// \brief The data type carried by the future.
using promise_type = promise<T...>;
/// \brief Moves the future into a new object.
[[gnu::always_inline]]
future(future&& x) noexcept : future_base(std::move(x), &_state), _state(std::move(x._state)) { }
future(const future&) = delete;
future& operator=(future&& x) noexcept {
this->~future();
new (this) future(std::move(x));
return *this;
}
void operator=(const future&) = delete;
/// \brief gets the value returned by the computation
///
/// Requires that the future be available. If the value
/// was computed successfully, it is returned (as an
/// \c std::tuple). Otherwise, an exception is thrown.
///
/// If get() is called in a \ref seastar::thread context,
/// then it need not be available; instead, the thread will
/// be paused until the future becomes available.
[[gnu::always_inline]]
std::tuple<T...> get() {
if (!_state.available()) {
do_wait();
}
return get_available_state().get();
}
[[gnu::always_inline]]
std::exception_ptr get_exception() {
return get_available_state().get_exception();
}
/// Gets the value returned by the computation.
///
/// Similar to \ref get(), but instead of returning a
/// tuple, returns the first value of the tuple. This is
/// useful for the common case of a \c future<T> with exactly
/// one type parameter.
///
/// Equivalent to: \c std::get<0>(f.get()).
typename future_state<T...>::get0_return_type get0() {
return future_state<T...>::get0(get());
}
/// Wait for the future to be available (in a seastar::thread)
///
/// When called from a seastar::thread, this function blocks the
/// thread until the future is availble. Other threads and
/// continuations continue to execute; only the thread is blocked.
void wait() noexcept {
if (!_state.available()) {
do_wait();
}
}
private:
class thread_wake_task final : public continuation_base<T...> {
thread_context* _thread;
future* _waiting_for;
public:
thread_wake_task(thread_context* thread, future* waiting_for)
: _thread(thread), _waiting_for(waiting_for) {
}
virtual void run_and_dispose() noexcept override {
_waiting_for->_state = std::move(this->_state);
thread_impl::switch_in(_thread);
// no need to delete, since this is always allocated on
// _thread's stack.
}
};
void do_wait() noexcept {
if (__builtin_expect(!_promise, false)) {
abandoned();
return;
}
auto thread = thread_impl::get();
assert(thread);
thread_wake_task wake_task{thread, this};
detach_promise()->schedule(std::unique_ptr<continuation_base<T...>>(&wake_task));
thread_impl::switch_out(thread);
}
public:
/// \brief Checks whether the future is available.
///
/// \return \c true if the future has a value, or has failed.
[[gnu::always_inline]]
bool available() const noexcept {
return _state.available();
}
/// \brief Checks whether the future has failed.
///
/// \return \c true if the future is availble and has failed.
[[gnu::always_inline]]
bool failed() noexcept {
return _state.failed();
}
/// \brief Schedule a block of code to run when the future is ready.
///
/// Schedules a function (often a lambda) to run when the future becomes
/// available. The function is called with the result of this future's
/// computation as parameters. The return value of the function becomes
/// the return value of then(), itself as a future; this allows then()
/// calls to be chained.
///
/// If the future failed, the function is not called, and the exception
/// is propagated into the return value of then().
///
/// \param func - function to be called when the future becomes available,
/// unless it has failed.
/// \return a \c future representing the return value of \c func, applied
/// to the eventual value of this future.
template <typename Func, typename Result = futurize_t<std::result_of_t<Func(T&&...)>>>
GCC6_CONCEPT( requires ::seastar::CanApply<Func, T...> )
Result
then(Func&& func) noexcept {
#ifndef SEASTAR_TYPE_ERASE_MORE
return then_impl(std::move(func));
#else
using futurator = futurize<std::result_of_t<Func(T&&...)>>;
return then_impl(noncopyable_function<Result (T&&...)>([func = std::forward<Func>(func)] (T&&... args) mutable {
return futurator::apply(func, std::forward_as_tuple(std::move(args)...));
}));
#endif
}
private:
template <typename Func, typename Result = futurize_t<std::result_of_t<Func(T&&...)>>>
Result
then_impl(Func&& func) noexcept {
using futurator = futurize<std::result_of_t<Func(T&&...)>>;
if (available() && !need_preempt()) {
if (failed()) {
return futurator::make_exception_future(get_available_state().get_exception());
} else {
return futurator::apply(std::forward<Func>(func), get_available_state().get_value());
}
}
typename futurator::type fut(future_for_get_promise_marker{});
// If there is a std::bad_alloc in schedule() there is nothing that can be done about it, we cannot break future
// chain by returning ready future while 'this' future is not ready. The noexcept will call std::terminate if
// that happens.
[&] () noexcept {
memory::disable_failure_guard dfg;
schedule([pr = fut.get_promise(), func = std::forward<Func>(func)] (future_state<T...>&& state) mutable {
if (state.failed()) {
pr.set_exception(std::move(state).get_exception());
} else {
futurator::apply(std::forward<Func>(func), std::move(state).get_value()).forward_to(std::move(pr));
}
});
} ();
return fut;
}
public:
/// \brief Schedule a block of code to run when the future is ready, allowing
/// for exception handling.
///
/// Schedules a function (often a lambda) to run when the future becomes
/// available. The function is called with the this future as a parameter;
/// it will be in an available state. The return value of the function becomes
/// the return value of then_wrapped(), itself as a future; this allows
/// then_wrapped() calls to be chained.
///
/// Unlike then(), the function will be called for both value and exceptional
/// futures.
///
/// \param func - function to be called when the future becomes available,
/// \return a \c future representing the return value of \c func, applied
/// to the eventual value of this future.
template <typename Func, typename Result = futurize_t<std::result_of_t<Func(future)>>>
GCC6_CONCEPT( requires ::seastar::CanApply<Func, future> )
Result
then_wrapped(Func&& func) noexcept {
#ifndef SEASTAR_TYPE_ERASE_MORE
return then_wrapped_impl(std::move(func));
#else
using futurator = futurize<std::result_of_t<Func(future)>>;
return then_wrapped_impl(noncopyable_function<Result (future)>([func = std::forward<Func>(func)] (future f) mutable {
return futurator::apply(std::forward<Func>(func), std::move(f));
}));
#endif
}
private:
template <typename Func, typename Result = futurize_t<std::result_of_t<Func(future)>>>
Result
then_wrapped_impl(Func&& func) noexcept {
using futurator = futurize<std::result_of_t<Func(future)>>;
if (available() && !need_preempt()) {
return futurator::apply(std::forward<Func>(func), future(get_available_state()));
}
typename futurator::type fut(future_for_get_promise_marker{});
// If there is a std::bad_alloc in schedule() there is nothing that can be done about it, we cannot break future
// chain by returning ready future while 'this' future is not ready. The noexcept will call std::terminate if
// that happens.
[&] () noexcept {
memory::disable_failure_guard dfg;
schedule([pr = fut.get_promise(), func = std::forward<Func>(func)] (future_state<T...>&& state) mutable {
futurator::apply(std::forward<Func>(func), future(std::move(state))).forward_to(std::move(pr));
});
} ();
return fut;
}
void forward_to(internal::promise_base_with_type<T...>&& pr) noexcept {
if (_state.available()) {
pr.set_urgent_state(std::move(_state));
} else {
*detach_promise() = std::move(pr);
}
}
public:
/// \brief Satisfy some \ref promise object with this future as a result.
///
/// Arranges so that when this future is resolve, it will be used to
/// satisfy an unrelated promise. This is similar to scheduling a
/// continuation that moves the result of this future into the promise
/// (using promise::set_value() or promise::set_exception(), except
/// that it is more efficient.
///
/// \param pr a promise that will be fulfilled with the results of this
/// future.
void forward_to(promise<T...>&& pr) noexcept {
if (_state.available()) {
pr.set_urgent_state(std::move(_state));
} else if (&pr._local_state != pr._state) {
// The only case when _state points to _local_state is
// when get_future was never called. Given that pr will
// soon be destroyed, we know get_future will never be
// called and we can just ignore this request.
*detach_promise() = std::move(pr);
}
}
/**
* Finally continuation for statements that require waiting for the result.
* I.e. you need to "finally" call a function that returns a possibly
* unavailable future. The returned future will be "waited for", any
* exception generated will be propagated, but the return value is ignored.
* I.e. the original return value (the future upon which you are making this
* call) will be preserved.
*
* If the original return value or the callback return value is an
* exceptional future it will be propagated.
*
* If both of them are exceptional - the std::nested_exception exception
* with the callback exception on top and the original future exception
* nested will be propagated.
*/
template <typename Func>
GCC6_CONCEPT( requires ::seastar::CanApply<Func> )
future<T...> finally(Func&& func) noexcept {
return then_wrapped(finally_body<Func, is_future<std::result_of_t<Func()>>::value>(std::forward<Func>(func)));
}
template <typename Func, bool FuncReturnsFuture>
struct finally_body;
template <typename Func>
struct finally_body<Func, true> {
Func _func;
finally_body(Func&& func) : _func(std::forward<Func>(func))
{ }
future<T...> operator()(future<T...>&& result) {
using futurator = futurize<std::result_of_t<Func()>>;
return futurator::apply(_func).then_wrapped([result = std::move(result)](auto f_res) mutable {
if (!f_res.failed()) {
return std::move(result);
} else {
try {
f_res.get();
} catch (...) {
return result.rethrow_with_nested();
}
__builtin_unreachable();
}
});
}
};
template <typename Func>
struct finally_body<Func, false> {
Func _func;
finally_body(Func&& func) : _func(std::forward<Func>(func))
{ }
future<T...> operator()(future<T...>&& result) {
try {
_func();
return std::move(result);
} catch (...) {
return result.rethrow_with_nested();
}
};
};
/// \brief Terminate the program if this future fails.
///
/// Terminates the entire program is this future resolves
/// to an exception. Use with caution.
future<> or_terminate() noexcept {
return then_wrapped([] (auto&& f) {
try {
f.get();
} catch (...) {
engine_exit(std::current_exception());
}
});
}
/// \brief Discards the value carried by this future.
///
/// Converts the future into a no-value \c future<>, by
/// ignoring any result. Exceptions are propagated unchanged.
future<> discard_result() noexcept {
return then([] (T&&...) {});
}
/// \brief Handle the exception carried by this future.
///
/// When the future resolves, if it resolves with an exception,
/// handle_exception(func) replaces the exception with the value
/// returned by func. The exception is passed (as a std::exception_ptr)
/// as a parameter to func; func may return the replacement value
/// immediately (T or std::tuple<T...>) or in the future (future<T...>)
/// and is even allowed to return (or throw) its own exception.
///
/// The idiom fut.discard_result().handle_exception(...) can be used
/// to handle an exception (if there is one) without caring about the
/// successful value; Because handle_exception() is used here on a
/// future<>, the handler function does not need to return anything.
template <typename Func>
/* Broken?
GCC6_CONCEPT( requires ::seastar::ApplyReturns<Func, future<T...>, std::exception_ptr>
|| (sizeof...(T) == 0 && ::seastar::ApplyReturns<Func, void, std::exception_ptr>)
|| (sizeof...(T) == 1 && ::seastar::ApplyReturns<Func, T..., std::exception_ptr>)
) */
future<T...> handle_exception(Func&& func) noexcept {
using func_ret = std::result_of_t<Func(std::exception_ptr)>;
return then_wrapped([func = std::forward<Func>(func)]
(auto&& fut) mutable -> future<T...> {
if (!fut.failed()) {
return make_ready_future<T...>(fut.get());
} else {
return futurize<func_ret>::apply(func, fut.get_exception());
}
});
}
/// \brief Handle the exception of a certain type carried by this future.
///
/// When the future resolves, if it resolves with an exception of a type that
/// provided callback receives as a parameter, handle_exception(func) replaces
/// the exception with the value returned by func. The exception is passed (by
/// reference) as a parameter to func; func may return the replacement value
/// immediately (T or std::tuple<T...>) or in the future (future<T...>)
/// and is even allowed to return (or throw) its own exception.
/// If exception, that future holds, does not match func parameter type
/// it is propagated as is.
template <typename Func>
future<T...> handle_exception_type(Func&& func) noexcept {
using trait = function_traits<Func>;
static_assert(trait::arity == 1, "func can take only one parameter");
using ex_type = typename trait::template arg<0>::type;
using func_ret = typename trait::return_type;
return then_wrapped([func = std::forward<Func>(func)]
(auto&& fut) mutable -> future<T...> {
try {
return make_ready_future<T...>(fut.get());
} catch(ex_type& ex) {
return futurize<func_ret>::apply(func, ex);
}
});
}
/// \brief Ignore any result hold by this future
///
/// Ignore any result (value or exception) hold by this future.
/// Use with caution since usually ignoring exception is not what
/// you want
void ignore_ready_future() noexcept {
_state.ignore();
}
#if SEASTAR_COROUTINES_TS
void set_coroutine(task& coroutine) noexcept {
assert(!_state.available());
assert(_promise);
detach_promise()->set_coroutine(_state, coroutine);
}
#endif
private:
void set_callback(std::unique_ptr<continuation_base<T...>> callback) {
if (_state.available()) {
callback->set_state(get_available_state());
::seastar::schedule(std::move(callback));
} else {
assert(_promise);
detach_promise()->schedule(std::move(callback));
}
}
/// \cond internal
template <typename... U>
friend class future;
template <typename... U>
friend class promise;
template <typename... U>
friend class internal::promise_base_with_type;
template <typename... U, typename... A>
friend future<U...> make_ready_future(A&&... value);
template <typename... U>
friend future<U...> make_exception_future(std::exception_ptr ex) noexcept;
template <typename... U, typename Exception>
friend future<U...> make_exception_future(Exception&& ex) noexcept;
template <typename... U, typename V>
friend void internal::set_callback(future<U...>&, std::unique_ptr<V>);
/// \endcond
};
inline internal::promise_base::promise_base(future_base* future, future_state_base* state) noexcept
: _future(future), _state(state) {
_future->_promise = this;
}
template <typename... T>
inline
future<T...>
promise<T...>::get_future() noexcept {
assert(!this->_future && this->_state && !this->_task);
return future<T...>(this);
}
template<internal::promise_base::urgent Urgent>
inline
void internal::promise_base::make_ready() noexcept {
if (_task) {
_state = nullptr;
if (Urgent == urgent::yes && !need_preempt()) {
::seastar::schedule_urgent(std::move(_task));
} else {
::seastar::schedule(std::move(_task));
}
}
}
template <typename... T>
inline
promise<T...>::promise(promise&& x) noexcept : internal::promise_base_with_type<T...>(std::move(x)) {
if (this->_state == &x._local_state) {
this->_state = &_local_state;
_local_state = std::move(x._local_state);
}
}
template <typename... T, typename... A>
inline
future<T...> make_ready_future(A&&... value) {
return future<T...>(ready_future_marker(), std::forward<A>(value)...);
}
template <typename... T>
inline
future<T...> make_exception_future(std::exception_ptr ex) noexcept {
return future<T...>(exception_future_marker(), std::move(ex));
}
void log_exception_trace() noexcept;
/// \brief Creates a \ref future in an available, failed state.
///
/// Creates a \ref future object that is already resolved in a failed
/// state. This no I/O needs to be performed to perform a computation
/// (for example, because the connection is closed and we cannot read
/// from it).
template <typename... T, typename Exception>
inline
future<T...> make_exception_future(Exception&& ex) noexcept {
log_exception_trace();
return make_exception_future<T...>(std::make_exception_ptr(std::forward<Exception>(ex)));
}
/// @}
/// \cond internal
template<typename T>
template<typename Func, typename... FuncArgs>
typename futurize<T>::type futurize<T>::apply(Func&& func, std::tuple<FuncArgs...>&& args) noexcept {
try {
return convert(::seastar::apply(std::forward<Func>(func), std::move(args)));
} catch (...) {
return make_exception_future(std::current_exception());
}
}
template<typename T>
template<typename Func, typename... FuncArgs>
typename futurize<T>::type futurize<T>::apply(Func&& func, FuncArgs&&... args) noexcept {
try {
return convert(func(std::forward<FuncArgs>(args)...));
} catch (...) {
return make_exception_future(std::current_exception());
}
}
template <typename Ret> // Ret = void | future<>
struct do_void_futurize_helper;
template <>
struct do_void_futurize_helper<void> {
template <typename Func, typename... FuncArgs>
static future<> apply(Func&& func, FuncArgs&&... args) noexcept {
try {
func(std::forward<FuncArgs>(args)...);
return make_ready_future<>();
} catch (...) {
return make_exception_future(std::current_exception());
}
}
template<typename Func, typename... FuncArgs>
static future<> apply_tuple(Func&& func, std::tuple<FuncArgs...>&& args) noexcept {
try {
::seastar::apply(std::forward<Func>(func), std::move(args));
return make_ready_future<>();
} catch (...) {
return make_exception_future(std::current_exception());
}
}
};
template <>
struct do_void_futurize_helper<future<>> {
template <typename Func, typename... FuncArgs>
static future<> apply(Func&& func, FuncArgs&&... args) noexcept {
try {
return func(std::forward<FuncArgs>(args)...);
} catch (...) {
return make_exception_future(std::current_exception());
}
}
template<typename Func, typename... FuncArgs>
static future<> apply_tuple(Func&& func, std::tuple<FuncArgs...>&& args) noexcept {
try {
return ::seastar::apply(std::forward<Func>(func), std::move(args));
} catch (...) {
return make_exception_future(std::current_exception());
}
}
};
template <typename Func, typename... FuncArgs>
using void_futurize_helper = do_void_futurize_helper<std::result_of_t<Func(FuncArgs&&...)>>;
template<typename Func, typename... FuncArgs>
typename futurize<void>::type futurize<void>::apply(Func&& func, std::tuple<FuncArgs...>&& args) noexcept {
return void_futurize_helper<Func, FuncArgs...>::apply_tuple(std::forward<Func>(func), std::move(args));
}
template<typename Func, typename... FuncArgs>
typename futurize<void>::type futurize<void>::apply(Func&& func, FuncArgs&&... args) noexcept {
return void_futurize_helper<Func, FuncArgs...>::apply(std::forward<Func>(func), std::forward<FuncArgs>(args)...);
}
template<typename... Args>
template<typename Func, typename... FuncArgs>
typename futurize<future<Args...>>::type futurize<future<Args...>>::apply(Func&& func, std::tuple<FuncArgs...>&& args) noexcept {
try {
return ::seastar::apply(std::forward<Func>(func), std::move(args));
} catch (...) {
return make_exception_future(std::current_exception());
}
}
template<typename... Args>
template<typename Func, typename... FuncArgs>
typename futurize<future<Args...>>::type futurize<future<Args...>>::apply(Func&& func, FuncArgs&&... args) noexcept {
try {
return func(std::forward<FuncArgs>(args)...);
} catch (...) {
return make_exception_future(std::current_exception());
}
}
template <typename T>
template <typename Arg>
inline
future<T>
futurize<T>::make_exception_future(Arg&& arg) {
return ::seastar::make_exception_future<T>(std::forward<Arg>(arg));
}
template <typename... T>
template <typename Arg>
inline
future<T...>
futurize<future<T...>>::make_exception_future(Arg&& arg) {
return ::seastar::make_exception_future<T...>(std::forward<Arg>(arg));
}
template <typename Arg>
inline
future<>
futurize<void>::make_exception_future(Arg&& arg) {
return ::seastar::make_exception_future<>(std::forward<Arg>(arg));
}
template <typename T>
inline
future<T>
futurize<T>::from_tuple(std::tuple<T>&& value) {
return make_ready_future<T>(std::move(value));
}
template <typename T>
inline
future<T>
futurize<T>::from_tuple(const std::tuple<T>& value) {
return make_ready_future<T>(value);
}
inline
future<>
futurize<void>::from_tuple(std::tuple<>&& value) {
return make_ready_future<>();
}
inline
future<>
futurize<void>::from_tuple(const std::tuple<>& value) {
return make_ready_future<>();
}
template <typename... Args>
inline
future<Args...>
futurize<future<Args...>>::from_tuple(std::tuple<Args...>&& value) {
return make_ready_future<Args...>(std::move(value));
}
template <typename... Args>
inline
future<Args...>
futurize<future<Args...>>::from_tuple(const std::tuple<Args...>& value) {
return make_ready_future<Args...>(value);
}
template<typename Func, typename... Args>
auto futurize_apply(Func&& func, Args&&... args) {
using futurator = futurize<std::result_of_t<Func(Args&&...)>>;
return futurator::apply(std::forward<Func>(func), std::forward<Args>(args)...);
}
namespace internal {
template <typename... T, typename U>
inline
void set_callback(future<T...>& fut, std::unique_ptr<U> callback) {
// It would be better to use continuation_base<T...> for U, but
// then a derived class of continuation_base<T...> won't be matched
return fut.set_callback(std::move(callback));
}
}
/// \endcond
}
|
port module Ports exposing (postEditorOut, presenceIn, presenceOut, pushManagerIn, pushManagerOut, receiveFile, requestFile, scrollPositionReceived, scrollTo, scrollToBottom, select, socketIn, socketOut, socketTokenUpdated, updateToken)
import Json.Decode as Decode
import Json.Encode as Encode
import Scroll.Types
-- INBOUND
port socketIn : (Decode.Value -> msg) -> Sub msg
port socketTokenUpdated : (Decode.Value -> msg) -> Sub msg
port scrollPositionReceived : (Decode.Value -> msg) -> Sub msg
port receiveFile : (Decode.Value -> msg) -> Sub msg
port pushManagerIn : (Decode.Value -> msg) -> Sub msg
port presenceIn : (Decode.Value -> msg) -> Sub msg
port dragIn : (Decode.Value -> msg) -> Sub msg
-- OUTBOUND
port socketOut : Encode.Value -> Cmd msg
port updateToken : String -> Cmd msg
port scrollTo : Scroll.Types.AnchorParams -> Cmd msg
port scrollToBottom : Scroll.Types.ContainerParams -> Cmd msg
port select : String -> Cmd msg
port requestFile : String -> Cmd msg
port pushManagerOut : String -> Cmd msg
port presenceOut : { method : String, topic : String } -> Cmd msg
port postEditorOut : Encode.Value -> Cmd msg
|
-----------------------------------
-- Area: Giddeus (145)
-- Mob: Yagudo Piper
-- Note: PH for Vuu Puqu the Beguiler
-----------------------------------
local ID = require("scripts/zones/Giddeus/IDs")
require("scripts/globals/mobs")
-----------------------------------
function onMobDeath(mob, player, isKiller)
end
function onMobDespawn(mob)
tpz.mob.phOnDespawn(mob,ID.mob.VUU_PUQU_THE_BEGUILER_PH,5,900) -- 15 minutes
end |
use Mix.Config
# In this file, we keep production configuration that
# you likely want to automate and keep it away from
# your version control system.
config :alumni_book, AlumniBookWeb.Endpoint, secret_key_base: System.get_env("SECRET_KEY_BASE")
# Configure your database
config :alumni_book, AlumniBook.Repo,
adapter: Ecto.Adapters.Postgres,
username: "postgres",
password: "postgres",
database: "alumni_book_prod",
pool_size: 20
|
;;;; package.lisp --- Package definition for the interface module.
;;;;
;;;; Copyright (C) 2018, 2019 Jan Moringen
;;;;
;;;; Author: Jan Moringen <jmoringe@techfak.uni-bielefeld.de>
(cl:defpackage #:parser.packrat
(:use
#:cl
#:alexandria
#:let-plus
#:parser.packrat.base)
(:local-nicknames
(#:exp #:parser.packrat.expression)
(#:env #:parser.packrat.environment)
(#:grammar #:parser.packrat.grammar)
(#:base #:parser.packrat.grammar.base))
;; Parsing protocol
(:export
#:parse)
;; Macros
(:export
#:defgrammar
#:in-grammar
#:defrule
#:match #:ematch #:cmatch))
|
# 4. faza: Napredna analiza podatkov
source("lib/libraries.r")
# Uvoz podatkov
brezposelnost_po_regijah = read_csv("uvoz/brezposelnost_po_regijah.csv", col_names=TRUE)
bdp_po_regijah = read_csv("uvoz/bdp_po_regijah.csv", col_names=TRUE)
kazalniki_bolniskega_staleza_moski = read_csv("uvoz/kazalniki_bolniskega_staleza_moski.csv", col_names=TRUE)
kazalniki_bolniskega_staleza_zenske = read_csv("uvoz/kazalniki_bolniskega_staleza_zenske.csv", col_names=TRUE)
kazalniki_bolniskega_staleza = read_csv("uvoz/kazalniki_bolniskega_staleza.csv", col_names=TRUE)
slo.regije.centroidi = read_csv("zemljevidi/regije-centroidi.csv", col_names=TRUE)
slo.regije.poligoni = read_csv("zemljevidi/regije-poligoni.csv", col_names=TRUE)
# Helper funkcije
dobi_seznam_regij <- function() {
# kazalniki_bolniskega_staleza predstavlja eno od sledečih tabel:
# - kazalniki_bolniskega_staleza
# - kazalniki_bolniskega_staleza_moski
# - kazalniki_bolniskega_staleza_zenske
return ((kazalniki_bolniskega_staleza_moski %>% filter(Regija != 'slo'))$Regija)
}
pripravi_podatke_za_kmeans_analizo <- function(df) {
# Da bom lahko naredil prostorsko analizo po tem, stran vržem podatke o Sloveniji
kazalniki_bolniskega_staleza_brez_slovenije = kazalniki_bolniskega_staleza_moski%>%
filter(Regija != 'slo')
# Shranim seznam regij
seznam_regij = kazalniki_bolniskega_staleza_brez_slovenije$Regija
# Odvržem kategorične podatke --> metoda voditeljev deluje zgolj z numeričnimi podatki
kazalniki_bolniskega_staleza_za_analizo = kazalniki_bolniskega_staleza_brez_slovenije %>%
dplyr::select(-Regija, -'Oznaka regije', -Spol)
kazalniki_bolniskega_staleza_skalirani = kazalniki_bolniskega_staleza_za_analizo %>% scale()
rownames(kazalniki_bolniskega_staleza_skalirani) = seznam_regij
return (kazalniki_bolniskega_staleza_skalirani)
}
kmeans_metoda <- function(kazalniki_bolniskega_staleza_normalizirani, stevilo_skupin, nstart) {
# kazalniki_bolniskega_staleza_normalizirani predstavlja normalizirane podatke
# iz tabele o kazalnikih bolniskega staleza.
return (
kmeans(kazalniki_bolniskega_staleza_normalizirani, stevilo_skupin, nstart=nstart)
)
}
pridobi_podatke_za_clustering_zemljevid <- function(kmeans_rezultat) {
df = data.frame(Regija = dobi_seznam_regij(), Skupina = factor(kmeans_rezultat$cluster))
podatki_za_clustering_zemljevid = df %>%
left_join(slo.regije.centroidi, by = "Regija") %>%
left_join(slo.regije.poligoni, by = "Regija")
podatki_za_clustering_zemljevid = podatki_za_clustering_zemljevid %>%
mutate(
Skupina = as.numeric(as.character(podatki_za_clustering_zemljevid$Skupina))
)
return(podatki_za_clustering_zemljevid)
}
izrisi_figuro_clusteringa <- function(podatki_za_clustering_zemljevid) {
zemljevid = podatki_za_clustering_zemljevid %>%
ggplot() +
geom_polygon(
mapping = aes(long.y, lat.y, group = group, fill = Skupina),
color = "grey"
) +
coord_map() +
scale_fill_binned() +
theme_classic() +
theme(
axis.line = element_blank(),
axis.ticks = element_blank(),
axis.text = element_blank(),
axis.title = element_blank()
)
return (zemljevid)
}
clustering_po_bolniskem_stalezu <- function() {
# Vrne zemljevid Slovenije, kjer so zgručene posamične regije glede na trajanje
# bolniškega staleža od leta 2008 do leta 2012
kazalniki_bolniskega_staleza_normalizirani = pripravi_podatke_za_kmeans_analizo(kazalniki_bolniskega_staleza_zenske)
kmeans_rezultat = kmeans_metoda(kazalniki_bolniskega_staleza_normalizirani, 3, 1000)
podatki_za_clustering_zemljevid = pridobi_podatke_za_clustering_zemljevid(kmeans_rezultat)
zemljevid = izrisi_figuro_clusteringa(podatki_za_clustering_zemljevid)
return(zemljevid)
}
# Končni rezultat clusteringa (zemljevid, ki pogrupira najbolj zdrave regije)
rezultat_clusteringa <- clustering_po_bolniskem_stalezu() |
defmodule Liquex.Render.Text do
@moduledoc false
@behaviour Liquex.Render
@type text_t :: {:text, iodata}
@impl Liquex.Render
def render({:text, text}, context), do: {text, context}
def render(_, _), do: false
end
|
defmodule Changelog.Search do
defmodule Page do
defstruct items: [], total_entries: 0, page_number: 0, total_pages: 1
end
alias Changelog.{NewsItem, Repo}
def search(query, opts \\ []) do
opts = Keyword.merge(opts, attributesToRetrieve: "ObjectID")
case Algolia.search(namespace(), query, opts) do
{:ok, response} -> results_from(response)
_else -> []
end
end
def save_item(%NewsItem{feed_only: true}), do: false
def save_item(item = %NewsItem{status: :published}) do
Algolia.save_object(namespace(), indexed_attributes(item), item.id)
end
def save_item(_), do: false
def update_item(item = %NewsItem{status: :published}) do
Algolia.partial_update_object(namespace(), indexed_attributes(item), item.id)
end
def update_item(_), do: false
def delete_item(item) do
Algolia.delete_object(namespace(), item.id)
end
defp results_from(response) do
item_ids =
response
|> Map.get("hits")
|> Enum.map(fn x -> Map.get(x, "objectID") end)
|> Enum.map(&String.to_integer/1)
items =
NewsItem
|> NewsItem.by_ids(item_ids)
|> NewsItem.preload_all()
|> Repo.all()
|> Enum.map(&NewsItem.load_object/1)
%Page{
items: items,
total_pages: Map.get(response, "nbPages", 1),
total_entries: Map.get(response, "nbHits", 0),
page_number: Map.get(response, "page", 0)
}
end
defp namespace, do: "#{Mix.env()}_news_items"
defp indexed_attributes(item) do
%{
headline: item.headline,
story: item.story,
published_at: item.published_at
}
end
end
|
cask "blitz" do
version "1.13.88"
sha256 "e59df3876ae11fb0221de02618b1117df28062b04a35b57d7babaef7424170e1"
url "https://dl.blitz.gg/download/Blitz-#{version}.dmg"
name "Blitz"
homepage "https://blitz.gg/"
livecheck do
url "https://dl.blitz.gg/download/mac"
strategy :header_match
end
auto_updates true
app "Blitz.app"
uninstall quit: "com.blitz.app"
zap trash: [
"~/Library/Application Support/Blitz",
"~/Library/Caches/com.blitz.app.ShipIt",
"~/Library/Cookies/com.blitz.app.binarycookies",
"~/Library/Logs/Blitz",
"~/Library/Preferences/com.blitz.app.plist",
"~/Library/Saved Application State/com.blitz.app.savedState",
]
end
|
X, Y, TStamp, Pres., EndPts
DataSize: 323
551 1015 0 108 0
551 1009 10 212 0
551 1003 20 270 0
551 997 30 334 0
551 997 40 362 0
551 992 50 404 0
551 992 60 448 0
551 992 70 484 0
551 992 80 508 0
551 992 90 508 0
551 992 100 504 0
546 997 110 508 0
546 1003 120 508 0
541 1015 130 518 0
536 1026 140 524 0
531 1038 150 528 0
526 1055 160 538 0
521 1067 170 548 0
515 1084 180 550 0
510 1102 190 562 0
505 1119 200 564 0
500 1136 210 570 0
495 1154 220 576 0
490 1171 230 582 0
485 1194 240 588 0
480 1218 250 592 0
475 1241 260 598 0
469 1264 270 600 0
464 1287 280 600 0
459 1305 290 600 0
449 1328 300 606 0
444 1345 310 610 0
434 1363 320 610 0
429 1380 330 616 0
424 1392 340 614 0
418 1403 350 614 0
413 1409 360 620 0
413 1409 370 624 0
413 1409 380 644 0
413 1409 390 652 0
413 1409 400 654 0
413 1403 410 650 0
413 1397 420 652 0
413 1386 430 650 0
418 1374 440 648 0
418 1363 450 654 0
424 1345 460 652 0
429 1334 470 654 0
429 1316 480 654 0
434 1299 490 654 0
434 1281 500 652 0
439 1264 510 652 0
439 1241 520 654 0
444 1218 530 654 0
444 1200 540 652 0
449 1177 550 650 0
454 1160 560 648 0
459 1142 570 650 0
469 1125 580 648 0
475 1108 590 646 0
485 1090 600 646 0
495 1073 610 646 0
500 1055 620 644 0
515 1032 630 646 0
526 1009 640 644 0
541 986 650 644 0
551 968 660 642 0
566 957 670 642 0
577 945 680 638 0
582 939 690 626 0
592 939 700 622 0
602 939 710 618 0
617 945 720 618 0
628 951 730 620 0
638 968 740 618 0
648 986 750 620 0
653 1009 760 622 0
658 1026 770 622 0
653 1050 780 624 0
648 1061 790 626 0
633 1079 800 626 0
623 1090 810 630 0
607 1102 820 632 0
592 1108 830 630 0
582 1113 840 632 0
577 1119 850 632 0
572 1125 860 628 0
572 1125 870 628 0
572 1131 880 624 0
577 1136 890 624 0
582 1142 900 620 0
592 1154 910 622 0
602 1165 920 622 0
607 1177 930 626 0
617 1194 940 626 0
623 1212 950 632 0
628 1229 960 640 0
633 1252 970 648 0
633 1264 980 652 0
633 1276 990 660 0
638 1287 1000 660 0
638 1299 1010 662 0
638 1305 1020 662 0
643 1310 1030 666 0
648 1316 1040 668 0
653 1316 1050 672 0
663 1322 1060 678 0
674 1322 1070 672 0
684 1322 1080 674 0
699 1322 1090 674 0
714 1328 1100 678 0
730 1328 1110 676 0
745 1328 1120 682 0
755 1328 1130 688 0
771 1316 1140 694 0
781 1310 1150 698 0
786 1299 1160 702 0
786 1281 1170 706 0
786 1270 1180 706 0
781 1258 1190 706 0
771 1252 1200 706 0
765 1247 1210 700 0
755 1247 1220 700 0
750 1247 1230 696 0
740 1247 1240 688 0
735 1247 1250 690 0
730 1258 1260 688 0
730 1264 1270 690 0
725 1276 1280 688 0
725 1293 1290 692 0
725 1305 1300 694 0
730 1310 1310 696 0
735 1322 1320 696 0
740 1328 1330 702 0
745 1334 1340 702 0
755 1334 1350 710 0
760 1339 1360 712 0
771 1339 1370 720 0
781 1334 1380 722 0
796 1334 1390 726 0
806 1328 1400 726 0
822 1322 1410 728 0
832 1310 1420 730 0
847 1305 1430 730 0
857 1299 1440 726 0
868 1287 1450 728 0
878 1276 1460 726 0
883 1264 1470 728 0
893 1258 1480 726 0
898 1247 1490 728 0
903 1241 1500 728 0
903 1241 1510 728 0
908 1235 1520 728 0
908 1235 1530 716 0
908 1235 1540 720 0
908 1241 1550 716 0
903 1241 1560 714 0
903 1247 1570 712 0
898 1252 1580 714 0
898 1258 1590 720 0
893 1270 1600 720 0
893 1281 1610 724 0
893 1287 1620 724 0
893 1299 1630 728 0
893 1305 1640 732 0
903 1310 1650 736 0
908 1310 1660 734 0
919 1316 1670 740 0
929 1316 1680 744 0
939 1316 1690 742 0
949 1316 1700 746 0
964 1310 1710 748 0
975 1305 1720 750 0
985 1299 1730 750 0
990 1287 1740 746 0
1000 1276 1750 746 0
1005 1264 1760 746 0
1010 1252 1770 742 0
1010 1247 1780 742 0
1015 1235 1790 742 0
1015 1235 1800 744 0
1015 1229 1810 742 0
1015 1229 1820 744 0
1015 1229 1830 740 0
1015 1229 1840 732 0
1010 1229 1850 732 0
1010 1229 1860 726 0
1010 1235 1870 726 0
1005 1247 1880 726 0
1000 1252 1890 732 0
1000 1270 1900 736 0
995 1281 1910 740 0
990 1299 1920 750 0
980 1310 1930 760 0
975 1328 1940 768 0
970 1345 1950 778 0
959 1363 1960 786 0
949 1380 1970 800 0
934 1397 1980 802 0
919 1415 1990 812 0
903 1432 2000 820 0
888 1455 2010 824 0
873 1473 2020 828 0
862 1490 2030 824 0
857 1496 2040 814 0
857 1502 2050 752 0
868 1496 2060 458 0
888 1490 2070 114 1
1097 1276 2563 260 0
1097 1276 2573 298 0
1092 1276 2583 370 0
1087 1281 2593 430 0
1087 1287 2603 454 0
1087 1299 2613 472 0
1087 1310 2623 480 0
1087 1316 2633 492 0
1097 1322 2643 514 0
1112 1328 2653 520 0
1133 1328 2663 526 0
1148 1322 2673 524 0
1169 1310 2683 520 0
1184 1305 2693 508 0
1194 1293 2703 506 0
1204 1281 2713 496 0
1204 1270 2723 496 0
1204 1264 2733 496 0
1199 1258 2743 490 0
1199 1258 2753 490 0
1194 1258 2763 484 0
1189 1258 2773 490 0
1184 1264 2783 490 0
1184 1270 2793 496 0
1179 1276 2803 516 0
1174 1287 2813 532 0
1169 1299 2823 556 0
1163 1316 2833 590 0
1153 1334 2843 610 0
1148 1351 2853 626 0
1138 1374 2863 656 0
1133 1392 2873 676 0
1123 1409 2883 696 0
1118 1426 2893 710 0
1107 1438 2903 720 0
1097 1455 2913 722 0
1092 1473 2923 726 0
1082 1484 2933 724 0
1082 1490 2943 698 0
1082 1490 2953 614 0
1092 1484 2963 338 0
1102 1473 2973 8 1
1403 1334 3203 216 0
1403 1334 3213 236 0
1403 1334 3223 284 0
1403 1334 3233 336 0
1398 1339 3243 392 0
1398 1339 3253 468 0
1393 1339 3263 522 0
1383 1345 3273 566 0
1373 1351 3283 590 0
1363 1351 3293 616 0
1347 1357 3303 638 0
1337 1357 3313 648 0
1322 1357 3323 656 0
1317 1351 3333 656 0
1306 1345 3343 656 0
1306 1339 3353 648 0
1306 1328 3363 624 0
1317 1310 3373 596 0
1332 1299 3383 582 0
1347 1287 3393 568 0
1363 1276 3403 554 0
1378 1270 3413 550 0
1393 1264 3423 544 0
1403 1264 3433 538 0
1408 1264 3443 536 0
1419 1270 3453 532 0
1424 1281 3463 540 0
1424 1293 3473 546 0
1424 1305 3483 568 0
1424 1316 3493 602 0
1419 1328 3503 630 0
1408 1339 3513 656 0
1403 1345 3523 668 0
1398 1357 3533 674 0
1398 1363 3543 682 0
1403 1368 3553 690 0
1414 1374 3563 696 0
1429 1374 3573 696 0
1439 1374 3583 698 0
1454 1374 3593 698 0
1470 1374 3603 698 0
1485 1368 3613 702 0
1495 1368 3623 702 0
1500 1363 3633 700 0
1510 1357 3643 706 0
1516 1351 3653 706 0
1521 1345 3663 706 0
1526 1339 3673 708 0
1531 1328 3683 710 0
1536 1328 3693 706 0
1536 1322 3703 706 0
1541 1316 3713 702 0
1551 1310 3723 700 0
1562 1305 3733 700 0
1572 1299 3743 702 0
1587 1293 3753 702 0
1602 1281 3763 704 0
1623 1276 3773 706 0
1643 1270 3783 706 0
1658 1264 3793 706 0
1679 1264 3803 710 0
1694 1264 3813 712 0
1715 1270 3823 716 0
1735 1276 3833 722 0
1750 1287 3843 732 0
1761 1305 3853 748 0
1766 1328 3863 760 0
1766 1345 3873 762 0
1766 1368 3883 766 0
1761 1386 3893 768 0
1766 1397 3903 712 0
1781 1403 3913 516 0
1817 1403 3923 90 0
|
(defproject diopart "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:dependencies [[clj-time "0.14.0"]
[compojure "1.6.0"]
[cprop "0.1.11"]
[funcool/struct "1.1.0"]
[luminus-immutant "0.2.4"]
[luminus-nrepl "0.1.4"]
[luminus/ring-ttl-session "0.3.2"]
[markdown-clj "1.0.1"]
[metosin/muuntaja "0.4.1"]
[metosin/ring-http-response "0.9.0"]
[mount "0.1.11"]
[org.clojure/clojure "1.8.0"]
[org.clojure/tools.cli "0.3.5"]
[org.clojure/tools.logging "0.4.0"]
[org.webjars.bower/tether "1.4.0"]
[org.webjars/bootstrap "4.0.0-alpha.5"]
[org.webjars/font-awesome "4.7.0"]
[org.webjars/jquery "3.2.1"]
[ring-webjars "0.2.0"]
[ring/ring-core "1.6.3"]
[ring/ring-defaults "0.3.1"]
[selmer "1.11.3"]]
:min-lein-version "2.0.0"
:jvm-opts ["-server" "-Dconf=.lein-env"]
:source-paths ["src/clj"]
:test-paths ["test/clj"]
:resource-paths ["resources"]
:target-path "target/%s/"
:main ^:skip-aot diopart.core
:plugins [[lein-cprop "1.0.3"]
[lein-immutant "2.1.0"]]
:profiles
{:uberjar {:omit-source true
:aot :all
:uberjar-name "diopart.jar"
:source-paths ["env/prod/clj"]
:resource-paths ["env/prod/resources"]}
:dev [:project/dev :profiles/dev]
:test [:project/dev :project/test :profiles/test]
:project/dev {:dependencies [[prone "1.1.4"]
[ring/ring-mock "0.3.1"]
[ring/ring-devel "1.6.3"]
[pjstadig/humane-test-output "0.8.3"]]
:plugins [[com.jakemccrary/lein-test-refresh "0.19.0"]]
:source-paths ["env/dev/clj"]
:resource-paths ["env/dev/resources"]
:repl-options {:init-ns user}
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}
:project/test {:resource-paths ["env/test/resources"]}
:profiles/dev {}
:profiles/test {}})
|
.divPaginas {
color: white;
width: 60%;
margin: 2px auto;
display: flex;
justify-content: center;
text-align: center;
}
/* Janela de Confirmação */
.overlay {
display: none;
}
.overlay_content {
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto auto;
position: fixed;
width: 40%;
height: 35%;
background-color: black;
border: 2px solid white;
display: flex;
flex-flow: column nowrap;
justify-content: center;
}
.overlay_title {
text-align: center;
color: white;
font-size: 18px;
}
.overlay_content_success {
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto auto;
position: fixed;
width: 35%;
height: 30%;
background-color: black;
border: 2px solid white;
display: flex;
flex-flow: column nowrap;
justify-content: center;
}
.overlay_title_success {
text-align: center;
color: green;
font-size: 18px;
}
.bt_wrapper {
text-align: center;
}
/* Página */
/* BUSCA */
.search_opts_wrapper {
width: 70%;
height: 200px;
margin: 30px auto;
margin-top: 50px;
border: 3px double white;
}
/* extra */
.pageContainer {
border-radius: 5px;
border: 3px double black;
background-color: #aaa;
margin: auto;
padding: 20px;
width: 70%;
}
/* LEGENDA */
.borda_leg {
width: 1px;
height: 100%;
border: 1px solid #333;
}
.div_legenda {
margin: 5px auto;
display: flex;
flex-flow: row nowrap;
justify-content: flex-start;
height: 50px;
padding: 5px;
width: 95%;
border: 3px solid #666;
background-color: #bbb;
font-weight: 600;
}
.legenda_img {
margin-right: 10px;
margin-left: 5px;
width: 40px;
text-align: center;
}
.codproduto_leg {
margin: auto 5px;
width: 10%;
min-width: 75px;
height: 95%;
font-size: 100%;
text-align: center;
}
.preco_leg {
margin: auto 5px;
width: 8%;
min-width: 40px;
height: 95%;
font-size: 100%;
text-align: center;
}
.nome_produto_leg {
margin: auto 10px;
height: 100%;
width: 60%;
font-size: 100%;
}
.opts_legenda {
margin: auto;
height: 100%;
padding-left: 5px;
width: 15%;
text-align: center;
}
/* LISTA */
.borda {
width: 1px;
height: 100%;
border: 1px solid #222;
}
.lista_wrapper {
width: 100%;
margin: auto auto;
display: flex;
flex-flow: column nowrap;
justify-content: flex-start;
}
.div_produto {
margin: 5px auto;
display: flex;
flex-flow: row nowrap;
justify-content: flex-start;
height: 50px;
padding: 5px;
width: 95%;
background-color: lightgray;
border: 1px solid #555;
}
.img_div_produto {
margin: auto 10px auto 5px;
width: 40px;
height: 40px;
}
.img_produto {
width: 100%;
height: 100%;
object-fit: contain;
}
.codproduto {
margin: auto 5px;
width: 10%;
min-width: 75px;
height: 95%;
font-size: 15px;
text-align: center;
}
.preco {
margin: auto 5px;
width: 8%;
min-width: 40px;
height: 95%;
font-size: 16px;
text-align: center;
}
.nome_produto {
margin: auto 10px;
height: 100%;
width: 60%;
font-size: 100%;
}
.opts_produto {
margin: auto;
height: 100%;
padding-left: 5px;
width: 15%;
display: flex;
flex-flow: row no-wrap;
justify-content: center;
}
@media screen and (max-width: 1500px) {
.legenda {
margin: 5px auto;
display: grid;
grid-template-columns: 70px 12% 60.8% auto;
height: 40px;
width: 59%;
}
.preco {
width: 10%;
min-width: 65px;
}
.preco_leg {
width: 10%;
min-width: 65px;
}
}
@media screen and (max-width: 1100px) {
.borda {
margin: auto 5px;
}
} |
// SPDX-License-Identifier: MIT
//Developed By https://twitter.com/denialcd048
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721A is
Context,
ERC165,
IERC721,
IERC721Metadata,
IERC721Enumerable
{
using Address for address;
using Strings for uint256;
using Counters for Counters.Counter;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMinted;
}
Counters.Counter private _supply;
uint256 internal _collectionSize;
uint256 internal _maxBatchSize;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => TokenOwnership) private _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(
string memory name_,
string memory symbol_,
uint256 maxBatchSize_,
uint256 collectionSize_
) {
_name = name_;
_symbol = symbol_;
_maxBatchSize = maxBatchSize_;
_collectionSize = collectionSize_;
_supply.increment();
}
/**
@dev See {IERC721Enumerable-totalSupply}, Returns the total tokens minted so far.
1 is always subtracted from the Counter since it tracks the next available tokenId.
*/
function totalSupply() public view override returns (uint256) {
return _supply.current() - 1;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index)
public
view
override
returns (uint256)
{
require(index <= totalSupply(), "ERC721A: global index out of bounds");
return index;
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
* This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
* It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
*/
function tokenOfOwnerByIndex(address owner, uint256 index)
public
view
override
returns (uint256)
{
require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
uint256 numMintedSoFar = totalSupply();
uint256 tokenIdsIdx = 0;
address currOwnershipAddr = address(0);
for (uint256 i = 0; i < numMintedSoFar; i++) {
TokenOwnership memory ownership = _ownerships[i];
if (ownership.addr != address(0)) {
currOwnershipAddr = ownership.addr;
}
if (currOwnershipAddr == owner) {
if (tokenIdsIdx == index) {
return i;
}
tokenIdsIdx++;
}
}
revert("ERC721A: unable to get token of owner by index");
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(ERC165, IERC165)
returns (bool)
{
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
interfaceId == type(IERC721Enumerable).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner)
public
view
virtual
override
returns (uint256)
{
require(
owner != address(0),
"ERC721: balance query for the zero address"
);
return uint256(_addressData[owner].balance);
}
function _numberMinted(address owner) internal view returns (uint256) {
require(
owner != address(0),
"ERC721A: number minted query for the zero address"
);
return uint256(_addressData[owner].numberMinted);
}
function ownershipOf(uint256 tokenId)
internal
view
returns (TokenOwnership memory)
{
require(_exists(tokenId), "ERC721A: owner query for nonexistent token");
uint256 lowestTokenToCheck;
if (tokenId >= _maxBatchSize) {
lowestTokenToCheck = tokenId - _maxBatchSize + 1;
}
for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
TokenOwnership memory ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
revert("ERC721A: unable to determine the owner of token");
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId)
public
view
virtual
override
returns (address)
{
return ownershipOf(tokenId).addr;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
string memory baseURI = _baseURI();
return
bytes(baseURI).length > 0
? string(abi.encodePacked(baseURI, tokenId.toString()))
: "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId)
public
view
virtual
override
returns (address)
{
require(
_exists(tokenId),
"ERC721: approved query for nonexistent token"
);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved)
public
virtual
override
{
require(operator != _msgSender(), "ERC721A: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator)
public
view
virtual
override
returns (bool)
{
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: transfer caller is not owner nor approved"
);
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: transfer caller is not owner nor approved"
);
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _ownerships[tokenId].addr != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId)
internal
view
virtual
returns (bool)
{
require(
_exists(tokenId),
"ERC721: operator query for nonexistent token"
);
address owner = ownerOf(tokenId);
return (spender == owner ||
getApproved(tokenId) == spender ||
isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `quantity` Token and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 quantity) internal virtual {
_safeMint(to, quantity, "");
}
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal virtual {
_mint(to, quantity, _data);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - there must be `quantity` tokens remaining unminted in the total collection.
* - `to` cannot be the zero address.
* - `quantity` cannot be larger than the max batch size.
*
* Emits a {Transfer} event.
*/
function _mint(
address to,
uint256 quantity,
bytes memory _data
) internal virtual {
uint256 startTokenId = _supply.current();
require(to != address(0), "ERC721A: mint to the zero address");
require(!_exists(startTokenId), "ERC721A: token already minted");
if (_maxBatchSize > 0) {
require(
quantity <= _maxBatchSize,
"ERC721A: quantity to mint too high"
);
}
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
AddressData memory addressData = _addressData[to];
_addressData[to] = AddressData(
addressData.balance + uint128(quantity),
addressData.numberMinted + uint128(quantity)
);
_ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));
uint256 updatedIndex = startTokenId;
for (uint256 i = 0; i < quantity; i++) {
emit Transfer(address(0), to, updatedIndex);
require(
_checkOnERC721Received(address(0), to, updatedIndex, _data),
"ERC721A: transfer to non ERC721Receiver implementer"
);
updatedIndex++;
_supply.increment();
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ownerOf(tokenId);
_beforeTokenTransfers(owner, address(0), tokenId, 1);
// Clear approvals
_approve(address(0), tokenId, owner);
AddressData memory addressData = _addressData[owner];
_addressData[owner] = AddressData(
addressData.balance - 1,
addressData.numberMinted - 1
);
_ownerships[tokenId] = TokenOwnership(
address(0),
uint64(block.timestamp)
);
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfers(owner, address(0), tokenId, 1);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
TokenOwnership memory prevOwnership = ownershipOf(tokenId);
bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
getApproved(tokenId) == _msgSender() ||
isApprovedForAll(prevOwnership.addr, _msgSender()));
require(
isApprovedOrOwner,
"ERC721A: transfer caller is not owner nor approved"
);
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, prevOwnership.addr);
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
_ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
if (_ownerships[nextTokenId].addr == address(0)) {
if (_exists(nextTokenId)) {
_ownerships[nextTokenId] = TokenOwnership(
prevOwnership.addr,
prevOwnership.startTimestamp
);
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
uint256 public nextOwnerToExplicitlySet = 0;
/**
* @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
*/
function _setOwnersExplicit(uint256 quantity) internal {
uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
require(quantity > 0, "quantity must be nonzero");
uint256 endIndex = oldNextOwnerToSet + quantity - 1;
if (endIndex > _collectionSize - 1) {
endIndex = _collectionSize - 1;
}
// We know if the last one in the group exists, all in the group exist, due to serial ordering.
require(_exists(endIndex), "not enough minted yet for this cleanup");
for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
if (_ownerships[i].addr == address(0)) {
TokenOwnership memory ownership = ownershipOf(i);
_ownerships[i] = TokenOwnership(
ownership.addr,
ownership.startTimestamp
);
}
}
nextOwnerToExplicitlySet = endIndex + 1;
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try
IERC721Receiver(to).onERC721Received(
_msgSender(),
from,
tokenId,
_data
)
returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert(
"ERC721A: transfer to non ERC721Receiver implementer"
);
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}
|
<?php
namespace App\Http\Controllers;
use App\Models\Product;
use Illuminate\Http\Request;
class ProductsController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return response(Product::all());
}
}
|
package typingsSlinky.googleapis.v14Mod.adexchangebuyerV14
import typingsSlinky.googleAuthLibrary.mod.Compute
import typingsSlinky.googleAuthLibrary.mod.JWT
import typingsSlinky.googleAuthLibrary.mod.OAuth2Client
import typingsSlinky.googleAuthLibrary.mod.UserRefreshClient
import org.scalablytyped.runtime.StObject
import scala.scalajs.js
import scala.scalajs.js.`|`
import scala.scalajs.js.annotation.{JSGlobalScope, JSGlobal, JSImport, JSName, JSBracketAccess}
@js.native
trait ParamsResourceMarketplacedealsList extends StandardParameters {
/**
* Auth client or API Key for the request
*/
var auth: js.UndefOr[String | OAuth2Client | JWT | Compute | UserRefreshClient] = js.native
/**
* Query string to retrieve specific deals.
*/
var pqlQuery: js.UndefOr[String] = js.native
/**
* The proposalId to get deals for. To search across all proposals specify
* order_id = '-' as part of the URL.
*/
var proposalId: js.UndefOr[String] = js.native
}
object ParamsResourceMarketplacedealsList {
@scala.inline
def apply(): ParamsResourceMarketplacedealsList = {
val __obj = js.Dynamic.literal()
__obj.asInstanceOf[ParamsResourceMarketplacedealsList]
}
@scala.inline
implicit class ParamsResourceMarketplacedealsListMutableBuilder[Self <: ParamsResourceMarketplacedealsList] (val x: Self) extends AnyVal {
@scala.inline
def setAuth(value: String | OAuth2Client | JWT | Compute | UserRefreshClient): Self = StObject.set(x, "auth", value.asInstanceOf[js.Any])
@scala.inline
def setAuthUndefined: Self = StObject.set(x, "auth", js.undefined)
@scala.inline
def setPqlQuery(value: String): Self = StObject.set(x, "pqlQuery", value.asInstanceOf[js.Any])
@scala.inline
def setPqlQueryUndefined: Self = StObject.set(x, "pqlQuery", js.undefined)
@scala.inline
def setProposalId(value: String): Self = StObject.set(x, "proposalId", value.asInstanceOf[js.Any])
@scala.inline
def setProposalIdUndefined: Self = StObject.set(x, "proposalId", js.undefined)
}
}
|
{
"id": "193d2ab5-2274-4739-ad00-2ddb125817c2",
"modelName": "GMObject",
"mvc": "1.0",
"name": "obj_kana",
"eventList": [
{
"id": "b36fe531-102d-4969-88e5-46c309e08185",
"modelName": "GMEvent",
"mvc": "1.0",
"IsDnD": false,
"collisionObjectId": "00000000-0000-0000-0000-000000000000",
"enumb": 0,
"eventtype": 0,
"m_owner": "193d2ab5-2274-4739-ad00-2ddb125817c2"
},
{
"id": "739036e7-ca21-4f2e-9d2e-2d4432df476c",
"modelName": "GMEvent",
"mvc": "1.0",
"IsDnD": false,
"collisionObjectId": "00000000-0000-0000-0000-000000000000",
"enumb": 7,
"eventtype": 7,
"m_owner": "193d2ab5-2274-4739-ad00-2ddb125817c2"
},
{
"id": "be963876-5402-43de-a74e-9461fd0fe655",
"modelName": "GMEvent",
"mvc": "1.0",
"IsDnD": false,
"collisionObjectId": "00000000-0000-0000-0000-000000000000",
"enumb": 0,
"eventtype": 2,
"m_owner": "193d2ab5-2274-4739-ad00-2ddb125817c2"
}
],
"maskSpriteId": "00000000-0000-0000-0000-000000000000",
"overriddenProperties": null,
"parentObjectId": "888c0e55-4e59-4398-a503-68301ea399c6",
"persistent": false,
"physicsAngularDamping": 0.1,
"physicsDensity": 0.5,
"physicsFriction": 0.2,
"physicsGroup": 0,
"physicsKinematic": false,
"physicsLinearDamping": 0.1,
"physicsObject": false,
"physicsRestitution": 0.1,
"physicsSensor": false,
"physicsShape": 1,
"physicsShapePoints": null,
"physicsStartAwake": true,
"properties": null,
"solid": false,
"spriteId": "9ebae4f0-a86a-4575-acd8-ef15fd93e83e",
"visible": true
} |
<!DOCTYPE html>
<html lang="en">
<head>
<title>Aspect Ratio with Preview Pane | Jcrop Demo</title>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
<script src="../js/jquery.min.js"></script>
<script src="../js/jquery.Jcrop.js"></script>
<script type="text/javascript">
jQuery(function($){
// Create variables (in this scope) to hold the API and image size
var jcrop_api,
boundx,
boundy,
// Grab some information about the preview pane
$preview = $('#preview-pane'),
$pcnt = $('#preview-pane .preview-container'),
$pimg = $('#preview-pane .preview-container img'),
xsize = $pcnt.width(),
ysize = $pcnt.height();
console.log('init',[xsize,ysize]);
$('#target').Jcrop({
onChange: updatePreview,
onSelect: updatePreview,
onRelease: clearCoords,
aspectRatio: xsize / ysize
},function(){
// Use the API to get the real image size
var bounds = this.getBounds();
boundx = bounds[0];
boundy = bounds[1];
// Store the API in the jcrop_api variable
jcrop_api = this;
// Move the preview into the jcrop container for css positioning
$preview.appendTo(jcrop_api.ui.holder);
});
$('#coords').on('change','input',function(e){
var x1 = $('#x1').val(),
x2 = $('#x2').val(),
y1 = $('#y1').val(),
y2 = $('#y2').val();
jcrop_api.setSelect([x1,y1,x2,y2]);
});
function updatePreview(c)
{
$('#x1').val(c.x);
$('#y1').val(c.y);
$('#x2').val(c.x2);
$('#y2').val(c.y2);
$('#w').val(c.w);
$('#h').val(c.h);
if (parseInt(c.w) > 0)
{
var rx = xsize / c.w;
var ry = ysize / c.h;
$pimg.css({
width: Math.round(rx * boundx) + 'px',
height: Math.round(ry * boundy) + 'px',
marginLeft: '-' + Math.round(rx * c.x) + 'px',
marginTop: '-' + Math.round(ry * c.y) + 'px'
});
}
};
function clearCoords()
{
$('#x1').val('');
$('#y1').val('');
$('#x2').val('');
$('#y2').val('');
$('#w').val('');
$('#h').val('');
// $('#coords input').val('');
};
});
</script>
<link rel="stylesheet" href="Jcrop/demos/demo_files/main.css" type="text/css" />
<link rel="stylesheet" href="Jcrop/demos/demo_files/demos.css" type="text/css" />
<link rel="stylesheet" href="../css/jquery.Jcrop.css" type="text/css" />
<style type="text/css">
/* Apply these styles only when #preview-pane has
been placed within the Jcrop widget */
.jcrop-holder #preview-pane {
display: block;
position: absolute;
z-index: 2000;
top: 10px;
right: -280px;
padding: 6px;
border: 1px rgba(0,0,0,.4) solid;
background-color: white;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.2);
box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.2);
}
/* The Javascript code will set the aspect ratio of the crop
area based on the size of the thumbnail preview,
specified here */
#preview-pane .preview-container {
width: 200px;
height: 240px;
overflow: hidden;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="span12">
<div class="jc-demo-box">
<img src="demo_files/sago.jpg" id="target" alt="[Jcrop Example]" />
<div id="preview-pane">
<div class="preview-container">
<img src="demo_files/sago.jpg" class="jcrop-preview" alt="Preview" />
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
<!-- This is the form that our event handler fills -->
<form id="coords"
class="coords"
onsubmit="return false;"
action="http://example.com/post.php">
<div class="inline-labels">
<label>X1 <input type="text" size="4" id="x1" name="x1" /></label>
<label>Y1 <input type="text" size="4" id="y1" name="y1" /></label>
<label>X2 <input type="text" size="4" id="x2" name="x2" /></label>
<label>Y2 <input type="text" size="4" id="y2" name="y2" /></label>
<label>W <input type="text" size="4" id="w" name="w" /></label>
<label>H <input type="text" size="4" id="h" name="h" /></label>
</div>
</form>
</body>
</html>
|
module DayX where
import Utils
import qualified Relude.Unsafe as Unsafe
import Relude.Extra
import qualified Data.Text as Text
import qualified Data.Map as Map
import qualified Data.Set as Set
import Text.Megaparsec
fileContent :: _
fileContent = parseContent $(getFile)
parseContent :: Text -> _
parseContent = _
-- * Generics
-- * FIRST problem
day :: _ -> Int
day = undefined
-- * SECOND problem
day' :: _ -> Int
day' = undefined
-- * Tests
-- test :: Spec
-- test = do
-- describe "simple examples" $ do
-- it "of first star" $ do
-- day "" `shouldBe` 0
-- it "of second star" $ do
-- day' "" `shouldBe` 0
-- describe "works" $ do
-- it "on first star" $ do
-- day fileContent `shouldBe` 1228
-- it "on second star" $ do
-- day' fileContent `shouldBe` 1238
|
1 2 31 50 79 83
2 60 75
3 19 63 77 80 99
4 25 80
5 11 36
6 26 29 81 97
7 45 72 83
8 59
9 100
10 56
11 3 86 100
12 11 21 30 37 90
13 73
14
15 76
16 35 83
17 70
18 39 43 46 50
19 1 20 28 55
20
21 4 85
22 10
23 88 91
24 45 46 52
25 28 47
26 49
27
28 60 89
29 52
30 1 29 54 74
31 39 41 44
32 14 69
33 58
34 6 82
35 29 57
36 56 95
37 40
38 39 49
39 28 65
40
41 13
42 24 59 71 82
43 7 16
44 3 86
45 73 87 91
46 7 13 97
47 52 85
48 18
49
50 53 58
51 12 95
52
53 45
54 44 68 83
55 6 19 44 96
56 10 32 74 91
57 59
58 23
59 66
60
61 76
62 71
63 36 39 76
64 8 17
65 85
66 41
67 28 50 91
68 10 34 66
69 20 49 59
70 88 96
71
72 12 39 56
73 9 74
74 22 28 61 76
75 15
76 47
77
78
79 43
80 9
81 17 64 67 90
82 13 23 98
83 2 33 63
84 10 46 88
85 12
86
87 26 68 70 89
88 17
89 1 44
90 13 16 32 87
91 96
92 21
93
94 60
95 4 5 34
96
97 18 53
98 3 81
99 44
100 12 47 |
# Use baremodule to shave off a few KB from the serialized `.ji` file
baremodule Vulkan_Headers_jll
using Base
using Base: UUID
import JLLWrappers
JLLWrappers.@generate_main_file_header("Vulkan_Headers")
JLLWrappers.@generate_main_file("Vulkan_Headers", UUID("8d446b21-f3ad-5576-a034-752265b9b6f9"))
end # module Vulkan_Headers_jll
|
// Class: io/quarkus/deployment/steps/NarayanaJtaProcessor$build2
// Access = public synthetic
// Extends: java/lang/Object
// Implements:
// io/quarkus/runtime/StartupTask
// DO NOT MODIFY. This is not actually a source file; it is a textual representation of generated code.
// Use only for debugging purposes.
// Auto-generated constructor
// Access: public
Method <init> : V
(
// (no arguments)
) {
ALOAD 0
// Method descriptor: ()V
INVOKESPECIAL java/lang/Object#<init>
RETURN
}
// Access: public
Method deploy_0 : V
(
arg 1 = Lio/quarkus/runtime/StartupContext;,
arg 2 = [Ljava/lang/Object;
) {
** label1
NEW java/util/Properties
DUP
// Method descriptor: ()V
INVOKESPECIAL java/util/Properties#<init>
ASTORE 3
ALOAD 2
LDC (Integer) 1
ALOAD 3
AASTORE
ALOAD 2
LDC (Integer) 1
AALOAD
ASTORE 4
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.runtime.name"
LDC (String) "OpenJDK Runtime Environment"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "sun.boot.library.path"
LDC (String) "D:\java-1.8.0-openjdk-1.8.0\jre\bin"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.vm.version"
LDC (String) "25.212-b04"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.vm.vendor"
LDC (String) ""
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "maven.multiModuleProjectDirectory"
LDC (String) "D:\GitHub\recommendations\backend"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.vendor.url"
LDC (String) "http://java.oracle.com/"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "path.separator"
LDC (String) ";"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "guice.disable.misplaced.annotation.check"
LDC (String) "true"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.vm.name"
LDC (String) "OpenJDK 64-Bit Server VM"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "file.encoding.pkg"
LDC (String) "sun.io"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "user.script"
LDC (String) ""
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "user.country"
LDC (String) "US"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "sun.java.launcher"
LDC (String) "SUN_STANDARD"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "sun.os.patch.level"
LDC (String) ""
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.vm.specification.name"
LDC (String) "Java Virtual Machine Specification"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "user.dir"
LDC (String) "D:\GitHub\recommendations\backend"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.runtime.version"
LDC (String) "1.8.0_212-3-redhat-b04"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.awt.graphicsenv"
LDC (String) "sun.awt.Win32GraphicsEnvironment"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.endorsed.dirs"
LDC (String) "D:\java-1.8.0-openjdk-1.8.0\jre\lib\endorsed"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "os.arch"
LDC (String) "amd64"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.io.tmpdir"
LDC (String) "C:\Users\lmatt\AppData\Local\Temp\"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "line.separator"
LDC (String) "
"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.vm.specification.vendor"
LDC (String) "Oracle Corporation"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "user.variant"
LDC (String) ""
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "os.name"
LDC (String) "Windows 10"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "classworlds.conf"
LDC (String) "D:\apache-maven-3.6.1\bin\..\bin\m2.conf"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "sun.jnu.encoding"
LDC (String) "Cp1252"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.library.path"
LDC (String) "D:\java-1.8.0-openjdk-1.8.0\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;D:\Program Files\Microsoft VS Code\bin;D:\Program Files\nodejs\;C:\Program Files\Git\cmd;%JAVA_HOME%\bin;;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Users\lmatt\.cargo\bin;D:\Python\Python37\Scripts\;D:\Python\Python37\;C:\Users\lmatt\AppData\Local\Microsoft\WindowsApps;C:\Users\lmatt\AppData\Roaming\npm;D:\apache-maven-3.6.1\bin;d:\vert.x\bin;;."
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "maven.conf"
LDC (String) "D:\apache-maven-3.6.1\bin\../conf"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.specification.name"
LDC (String) "Java Platform API Specification"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.class.version"
LDC (String) "52.0"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "sun.management.compiler"
LDC (String) "HotSpot 64-Bit Tiered Compilers"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "os.version"
LDC (String) "10.0"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "library.jansi.path"
LDC (String) "D:\apache-maven-3.6.1\bin\..\lib\jansi-native"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "user.home"
LDC (String) "C:\Users\lmatt"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "user.timezone"
LDC (String) "America/New_York"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.awt.printerjob"
LDC (String) "sun.awt.windows.WPrinterJob"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "file.encoding"
LDC (String) "Cp1252"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.specification.version"
LDC (String) "1.8"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.class.path"
LDC (String) "D:\apache-maven-3.6.1\bin\..\boot\plexus-classworlds-2.6.0.jar"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "user.name"
LDC (String) "lmatt"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.vm.specification.version"
LDC (String) "1.8"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "sun.java.command"
LDC (String) "org.codehaus.plexus.classworlds.launcher.Launcher clean package"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.home"
LDC (String) "D:\java-1.8.0-openjdk-1.8.0\jre"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "sun.arch.data.model"
LDC (String) "64"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "user.language"
LDC (String) "en"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.specification.vendor"
LDC (String) "Oracle Corporation"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "awt.toolkit"
LDC (String) "sun.awt.windows.WToolkit"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.vm.info"
LDC (String) "mixed mode"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.version"
LDC (String) "1.8.0_212-3-redhat"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.ext.dirs"
LDC (String) "D:\java-1.8.0-openjdk-1.8.0\jre\lib\ext;C:\WINDOWS\Sun\Java\lib\ext"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "sun.boot.class.path"
LDC (String) "D:\java-1.8.0-openjdk-1.8.0\jre\lib\resources.jar;D:\java-1.8.0-openjdk-1.8.0\jre\lib\rt.jar;D:\java-1.8.0-openjdk-1.8.0\jre\lib\sunrsasign.jar;D:\java-1.8.0-openjdk-1.8.0\jre\lib\jsse.jar;D:\java-1.8.0-openjdk-1.8.0\jre\lib\jce.jar;D:\java-1.8.0-openjdk-1.8.0\jre\lib\charsets.jar;D:\java-1.8.0-openjdk-1.8.0\jre\lib\jfr.jar;D:\java-1.8.0-openjdk-1.8.0\jre\classes"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.vendor"
LDC (String) "Oracle Corporation"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "sun.stderr.encoding"
LDC (String) "cp437"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "maven.home"
LDC (String) "D:\apache-maven-3.6.1\bin\.."
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "file.separator"
LDC (String) "\"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "java.vendor.url.bug"
LDC (String) "http://bugreport.sun.com/bugreport/"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "sun.io.unicode.encoding"
LDC (String) "UnicodeLittle"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "sun.cpu.endian"
LDC (String) "little"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "sun.stdout.encoding"
LDC (String) "cp437"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "sun.desktop"
LDC (String) "windows"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 4
CHECKCAST java/util/Map
LDC (String) "sun.cpu.isalist"
LDC (String) "amd64"
// Method descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
INVOKEINTERFACE java/util/Map#put
POP
ALOAD 2
LDC (Integer) 2
ALOAD 4
AASTORE
NEW io/quarkus/narayana/jta/runtime/NarayanaJtaRecorder
DUP
// Method descriptor: ()V
INVOKESPECIAL io/quarkus/narayana/jta/runtime/NarayanaJtaRecorder#<init>
ASTORE 5
ALOAD 2
LDC (Integer) 0
ALOAD 5
AASTORE
ALOAD 2
LDC (Integer) 2
AALOAD
ASTORE 6
ALOAD 2
LDC (Integer) 0
AALOAD
ASTORE 9
ALOAD 9
CHECKCAST io/quarkus/narayana/jta/runtime/NarayanaJtaRecorder
ALOAD 6
CHECKCAST java/util/Properties
// Method descriptor: (Ljava/util/Properties;)V
INVOKEVIRTUAL io/quarkus/narayana/jta/runtime/NarayanaJtaRecorder#setDefaultProperties
// Field descriptor: Lio/quarkus/runtime/generated/RunTimeConfigRoot;
GETSTATIC io/quarkus/runtime/generated/RunTimeConfig#runConfig
// Field descriptor: Ljava/lang/Object;
GETFIELD io/quarkus/runtime/generated/RunTimeConfigRoot#transactionManager
ASTORE 7
ALOAD 2
LDC (Integer) 3
ALOAD 7
AASTORE
ALOAD 2
LDC (Integer) 3
AALOAD
ASTORE 8
ALOAD 9
CHECKCAST io/quarkus/narayana/jta/runtime/NarayanaJtaRecorder
ALOAD 8
CHECKCAST io/quarkus/narayana/jta/runtime/TransactionManagerConfiguration
// Method descriptor: (Lio/quarkus/narayana/jta/runtime/TransactionManagerConfiguration;)V
INVOKEVIRTUAL io/quarkus/narayana/jta/runtime/NarayanaJtaRecorder#setNodeName
ALOAD 9
CHECKCAST io/quarkus/narayana/jta/runtime/NarayanaJtaRecorder
ALOAD 8
CHECKCAST io/quarkus/narayana/jta/runtime/TransactionManagerConfiguration
// Method descriptor: (Lio/quarkus/narayana/jta/runtime/TransactionManagerConfiguration;)V
INVOKEVIRTUAL io/quarkus/narayana/jta/runtime/NarayanaJtaRecorder#setDefaultTimeout
RETURN
** label2
}
// Access: public
Method deploy : V
(
arg 1 = Lio/quarkus/runtime/StartupContext;
) {
** label1
LDC (Integer) 4
ANEWARRAY java/lang/Object
ASTORE 2
ALOAD 0
ALOAD 1
ALOAD 2
// Method descriptor: (Lio/quarkus/runtime/StartupContext;[Ljava/lang/Object;)V
INVOKEVIRTUAL io/quarkus/deployment/steps/NarayanaJtaProcessor$build2#deploy_0
RETURN
** label2
}
|
/*******************************************************************
* MA_SID_2004_CHGS.SAS:
* THE SAS CODE SHOWN BELOW WILL LOAD THE ASCII
* INPATIENT STAY CHGS FILE INTO SAS
*******************************************************************/
***********************************************;
* Create SAS informats for missing values ;
***********************************************;
PROC FORMAT;
INVALUE N2PF
'-9' = .
'-8' = .A
'-6' = .C
'-5' = .N
OTHER = (|2.|)
;
INVALUE N3PF
'-99' = .
'-88' = .A
'-66' = .C
OTHER = (|3.|)
;
INVALUE N4PF
'-999' = .
'-888' = .A
'-666' = .C
OTHER = (|4.|)
;
INVALUE N4P1F
'-9.9' = .
'-8.8' = .A
'-6.6' = .C
OTHER = (|4.1|)
;
INVALUE N5PF
'-9999' = .
'-8888' = .A
'-6666' = .C
OTHER = (|5.|)
;
INVALUE N5P2F
'-9.99' = .
'-8.88' = .A
'-6.66' = .C
OTHER = (|5.2|)
;
INVALUE N6PF
'-99999' = .
'-88888' = .A
'-66666' = .C
OTHER = (|6.|)
;
INVALUE N6P2F
'-99.99' = .
'-88.88' = .A
'-66.66' = .C
OTHER = (|6.2|)
;
INVALUE N7P2F
'-999.99' = .
'-888.88' = .A
'-666.66' = .C
OTHER = (|7.2|)
;
INVALUE N7P4F
'-9.9999' = .
'-8.8888' = .A
'-6.6666' = .C
OTHER = (|7.4|)
;
INVALUE N8PF
'-9999999' = .
'-8888888' = .A
'-6666666' = .C
OTHER = (|8.|)
;
INVALUE N8P2F
'-9999.99' = .
'-8888.88' = .A
'-6666.66' = .C
OTHER = (|8.2|)
;
INVALUE N9PF
'-99999999' = .
'-88888888' = .A
'-66666666' = .C
OTHER = (|9.|)
;
INVALUE N10PF
'-999999999' = .
'-888888888' = .A
'-666666666' = .C
OTHER = (|10.|)
;
INVALUE N10P4F
'-9999.9999' = .
'-8888.8888' = .A
'-6666.6666' = .C
OTHER = (|10.4|)
;
INVALUE N10P5F
'-999.99999' = .
'-888.88888' = .A
'-666.66666' = .C
OTHER = (|10.5|)
;
INVALUE DATE10F
'-999999999' = .
'-888888888' = .A
'-666666666' = .C
OTHER = (|MMDDYY10.|)
;
INVALUE N12P2F
'-99999999.99' = .
'-88888888.88' = .A
'-66666666.66' = .C
OTHER = (|12.2|)
;
INVALUE N12P5F
'-99999.99999' = .
'-88888.88888' = .A
'-66666.66666' = .C
OTHER = (|12.5|)
;
INVALUE N15P2F
'-99999999999.99' = .
'-88888888888.88' = .A
'-66666666666.66' = .C
OTHER = (|15.2|)
;
RUN;
*******************************;
* Data Step *;
*******************************;
DATA MA_SIDC_2004_CHGS;
INFILE 'MA_SID_2004_CHGS.ASC' LRECL = 758;
*** Variable attribute ***;
ATTRIB
KEY LENGTH=8 FORMAT=Z14.
LABEL="HCUP record identifier"
CHG1 LENGTH=6
LABEL="Detailed charges 1 (as received from source)"
CHG2 LENGTH=6
LABEL="Detailed charges 2 (as received from source)"
CHG3 LENGTH=6
LABEL="Detailed charges 3 (as received from source)"
CHG4 LENGTH=6
LABEL="Detailed charges 4 (as received from source)"
CHG5 LENGTH=6
LABEL="Detailed charges 5 (as received from source)"
CHG6 LENGTH=6
LABEL="Detailed charges 6 (as received from source)"
CHG7 LENGTH=6
LABEL="Detailed charges 7 (as received from source)"
CHG8 LENGTH=6
LABEL="Detailed charges 8 (as received from source)"
CHG9 LENGTH=6
LABEL="Detailed charges 9 (as received from source)"
CHG10 LENGTH=6
LABEL="Detailed charges 10 (as received from source)"
CHG11 LENGTH=6
LABEL="Detailed charges 11 (as received from source)"
CHG12 LENGTH=6
LABEL="Detailed charges 12 (as received from source)"
CHG13 LENGTH=6
LABEL="Detailed charges 13 (as received from source)"
CHG14 LENGTH=6
LABEL="Detailed charges 14 (as received from source)"
CHG15 LENGTH=6
LABEL="Detailed charges 15 (as received from source)"
CHG16 LENGTH=6
LABEL="Detailed charges 16 (as received from source)"
CHG17 LENGTH=6
LABEL="Detailed charges 17 (as received from source)"
CHG18 LENGTH=6
LABEL="Detailed charges 18 (as received from source)"
CHG19 LENGTH=6
LABEL="Detailed charges 19 (as received from source)"
CHG20 LENGTH=6
LABEL="Detailed charges 20 (as received from source)"
CHG21 LENGTH=6
LABEL="Detailed charges 21 (as received from source)"
CHG22 LENGTH=6
LABEL="Detailed charges 22 (as received from source)"
CHG23 LENGTH=6
LABEL="Detailed charges 23 (as received from source)"
CHG24 LENGTH=6
LABEL="Detailed charges 24 (as received from source)"
CHG25 LENGTH=6
LABEL="Detailed charges 25 (as received from source)"
CHG26 LENGTH=6
LABEL="Detailed charges 26 (as received from source)"
CHG27 LENGTH=6
LABEL="Detailed charges 27 (as received from source)"
CHG28 LENGTH=6
LABEL="Detailed charges 28 (as received from source)"
CHG29 LENGTH=6
LABEL="Detailed charges 29 (as received from source)"
CHG30 LENGTH=6
LABEL="Detailed charges 30 (as received from source)"
CHG31 LENGTH=6
LABEL="Detailed charges 31 (as received from source)"
REVCD1 LENGTH=$4
LABEL="Revenue code 1 (as received from source)"
REVCD2 LENGTH=$4
LABEL="Revenue code 2 (as received from source)"
REVCD3 LENGTH=$4
LABEL="Revenue code 3 (as received from source)"
REVCD4 LENGTH=$4
LABEL="Revenue code 4 (as received from source)"
REVCD5 LENGTH=$4
LABEL="Revenue code 5 (as received from source)"
REVCD6 LENGTH=$4
LABEL="Revenue code 6 (as received from source)"
REVCD7 LENGTH=$4
LABEL="Revenue code 7 (as received from source)"
REVCD8 LENGTH=$4
LABEL="Revenue code 8 (as received from source)"
REVCD9 LENGTH=$4
LABEL="Revenue code 9 (as received from source)"
REVCD10 LENGTH=$4
LABEL="Revenue code 10 (as received from source)"
REVCD11 LENGTH=$4
LABEL="Revenue code 11 (as received from source)"
REVCD12 LENGTH=$4
LABEL="Revenue code 12 (as received from source)"
REVCD13 LENGTH=$4
LABEL="Revenue code 13 (as received from source)"
REVCD14 LENGTH=$4
LABEL="Revenue code 14 (as received from source)"
REVCD15 LENGTH=$4
LABEL="Revenue code 15 (as received from source)"
REVCD16 LENGTH=$4
LABEL="Revenue code 16 (as received from source)"
REVCD17 LENGTH=$4
LABEL="Revenue code 17 (as received from source)"
REVCD18 LENGTH=$4
LABEL="Revenue code 18 (as received from source)"
REVCD19 LENGTH=$4
LABEL="Revenue code 19 (as received from source)"
REVCD20 LENGTH=$4
LABEL="Revenue code 20 (as received from source)"
REVCD21 LENGTH=$4
LABEL="Revenue code 21 (as received from source)"
REVCD22 LENGTH=$4
LABEL="Revenue code 22 (as received from source)"
REVCD23 LENGTH=$4
LABEL="Revenue code 23 (as received from source)"
REVCD24 LENGTH=$4
LABEL="Revenue code 24 (as received from source)"
REVCD25 LENGTH=$4
LABEL="Revenue code 25 (as received from source)"
REVCD26 LENGTH=$4
LABEL="Revenue code 26 (as received from source)"
REVCD27 LENGTH=$4
LABEL="Revenue code 27 (as received from source)"
REVCD28 LENGTH=$4
LABEL="Revenue code 28 (as received from source)"
REVCD29 LENGTH=$4
LABEL="Revenue code 29 (as received from source)"
REVCD30 LENGTH=$4
LABEL="Revenue code 30 (as received from source)"
REVCD31 LENGTH=$4
LABEL="Revenue code 31 (as received from source)"
UNIT1 LENGTH=4
LABEL="Units of service 1 (as received from source)"
UNIT2 LENGTH=4
LABEL="Units of service 2 (as received from source)"
UNIT3 LENGTH=4
LABEL="Units of service 3 (as received from source)"
UNIT4 LENGTH=4
LABEL="Units of service 4 (as received from source)"
UNIT5 LENGTH=4
LABEL="Units of service 5 (as received from source)"
UNIT6 LENGTH=4
LABEL="Units of service 6 (as received from source)"
UNIT7 LENGTH=4
LABEL="Units of service 7 (as received from source)"
UNIT8 LENGTH=4
LABEL="Units of service 8 (as received from source)"
UNIT9 LENGTH=4
LABEL="Units of service 9 (as received from source)"
UNIT10 LENGTH=4
LABEL="Units of service 10 (as received from source)"
UNIT11 LENGTH=4
LABEL="Units of service 11 (as received from source)"
UNIT12 LENGTH=4
LABEL="Units of service 12 (as received from source)"
UNIT13 LENGTH=4
LABEL="Units of service 13 (as received from source)"
UNIT14 LENGTH=4
LABEL="Units of service 14 (as received from source)"
UNIT15 LENGTH=4
LABEL="Units of service 15 (as received from source)"
UNIT16 LENGTH=4
LABEL="Units of service 16 (as received from source)"
UNIT17 LENGTH=4
LABEL="Units of service 17 (as received from source)"
UNIT18 LENGTH=4
LABEL="Units of service 18 (as received from source)"
UNIT19 LENGTH=4
LABEL="Units of service 19 (as received from source)"
UNIT20 LENGTH=4
LABEL="Units of service 20 (as received from source)"
UNIT21 LENGTH=4
LABEL="Units of service 21 (as received from source)"
UNIT22 LENGTH=4
LABEL="Units of service 22 (as received from source)"
UNIT23 LENGTH=4
LABEL="Units of service 23 (as received from source)"
UNIT24 LENGTH=4
LABEL="Units of service 24 (as received from source)"
UNIT25 LENGTH=4
LABEL="Units of service 25 (as received from source)"
UNIT26 LENGTH=4
LABEL="Units of service 26 (as received from source)"
UNIT27 LENGTH=4
LABEL="Units of service 27 (as received from source)"
UNIT28 LENGTH=4
LABEL="Units of service 28 (as received from source)"
UNIT29 LENGTH=4
LABEL="Units of service 29 (as received from source)"
UNIT30 LENGTH=4
LABEL="Units of service 30 (as received from source)"
UNIT31 LENGTH=4
LABEL="Units of service 31 (as received from source)"
;
*** Input the variables from the ASCII file ***;
INPUT
@1 KEY 14.
@15 CHG1 N12P2F.
@27 CHG2 N12P2F.
@39 CHG3 N12P2F.
@51 CHG4 N12P2F.
@63 CHG5 N12P2F.
@75 CHG6 N12P2F.
@87 CHG7 N12P2F.
@99 CHG8 N12P2F.
@111 CHG9 N12P2F.
@123 CHG10 N12P2F.
@135 CHG11 N12P2F.
@147 CHG12 N12P2F.
@159 CHG13 N12P2F.
@171 CHG14 N12P2F.
@183 CHG15 N12P2F.
@195 CHG16 N12P2F.
@207 CHG17 N12P2F.
@219 CHG18 N12P2F.
@231 CHG19 N12P2F.
@243 CHG20 N12P2F.
@255 CHG21 N12P2F.
@267 CHG22 N12P2F.
@279 CHG23 N12P2F.
@291 CHG24 N12P2F.
@303 CHG25 N12P2F.
@315 CHG26 N12P2F.
@327 CHG27 N12P2F.
@339 CHG28 N12P2F.
@351 CHG29 N12P2F.
@363 CHG30 N12P2F.
@375 CHG31 N12P2F.
@387 REVCD1 $CHAR4.
@391 REVCD2 $CHAR4.
@395 REVCD3 $CHAR4.
@399 REVCD4 $CHAR4.
@403 REVCD5 $CHAR4.
@407 REVCD6 $CHAR4.
@411 REVCD7 $CHAR4.
@415 REVCD8 $CHAR4.
@419 REVCD9 $CHAR4.
@423 REVCD10 $CHAR4.
@427 REVCD11 $CHAR4.
@431 REVCD12 $CHAR4.
@435 REVCD13 $CHAR4.
@439 REVCD14 $CHAR4.
@443 REVCD15 $CHAR4.
@447 REVCD16 $CHAR4.
@451 REVCD17 $CHAR4.
@455 REVCD18 $CHAR4.
@459 REVCD19 $CHAR4.
@463 REVCD20 $CHAR4.
@467 REVCD21 $CHAR4.
@471 REVCD22 $CHAR4.
@475 REVCD23 $CHAR4.
@479 REVCD24 $CHAR4.
@483 REVCD25 $CHAR4.
@487 REVCD26 $CHAR4.
@491 REVCD27 $CHAR4.
@495 REVCD28 $CHAR4.
@499 REVCD29 $CHAR4.
@503 REVCD30 $CHAR4.
@507 REVCD31 $CHAR4.
@511 UNIT1 N8PF.
@519 UNIT2 N8PF.
@527 UNIT3 N8PF.
@535 UNIT4 N8PF.
@543 UNIT5 N8PF.
@551 UNIT6 N8PF.
@559 UNIT7 N8PF.
@567 UNIT8 N8PF.
@575 UNIT9 N8PF.
@583 UNIT10 N8PF.
@591 UNIT11 N8PF.
@599 UNIT12 N8PF.
@607 UNIT13 N8PF.
@615 UNIT14 N8PF.
@623 UNIT15 N8PF.
@631 UNIT16 N8PF.
@639 UNIT17 N8PF.
@647 UNIT18 N8PF.
@655 UNIT19 N8PF.
@663 UNIT20 N8PF.
@671 UNIT21 N8PF.
@679 UNIT22 N8PF.
@687 UNIT23 N8PF.
@695 UNIT24 N8PF.
@703 UNIT25 N8PF.
@711 UNIT26 N8PF.
@719 UNIT27 N8PF.
@727 UNIT28 N8PF.
@735 UNIT29 N8PF.
@743 UNIT30 N8PF.
@751 UNIT31 N8PF.
;
RUN;
|
syntax = "proto3";
package flowable_service;
option go_package = "go.easyops.local/contracts/protorepo-models/easyops/model/flowable_service";
/*
表单模式
*/
message FormSchema {
/*
表单实例id
*/
string instanceId = 1 ;
/*
表单名称
*/
string name = 2 ;
/*
表单类别
*/
string category = 3 ;
/*
表单作者
*/
string creator = 4 ;
/*
表单说明
*/
string memo = 5 ;
/*
创建时间
*/
string ctime = 6 ;
}
|
C @(#)nxt_term.f 20.3 2/13/96
integer function nxt_term (string)
character string *(*)
c
c This function determines the next NULL or LINEFEED terminator
c in the c-compatible STRING.
c
character null * 1, linefeed * 1
null = char(0)
linefeed = char(10)
ln = len (string)
inull = index (string, null)
ilf = index (string, linefeed)
if (inull .eq. 0) inull = ln + 1
if (ilf .eq. 0) ilf = ln + 1
nxt_term = min (ilf, inull)
return
end
|
require 'test_helper'
module ActiveModel
class Serializer
class AttributeTest < Minitest::Test
def setup
@blog = Blog.new({ id: 1, name: 'AMS Hints', type: 'stuff' })
@blog_serializer = AlternateBlogSerializer.new(@blog)
end
def test_attributes_definition
assert_equal([:id, :title],
@blog_serializer.class._attributes)
end
def test_json_serializable_hash
adapter = ActiveModel::Serializer::Adapter::Json.new(@blog_serializer)
assert_equal({ blog: { id: 1, title: 'AMS Hints' } }, adapter.serializable_hash)
end
def test_attribute_inheritance_with_key
inherited_klass = Class.new(AlternateBlogSerializer)
blog_serializer = inherited_klass.new(@blog)
adapter = ActiveModel::Serializer::Adapter::FlattenJson.new(blog_serializer)
assert_equal({ :id => 1, :title => 'AMS Hints' }, adapter.serializable_hash)
end
def test_multiple_calls_with_the_same_attribute
serializer_class = Class.new(ActiveModel::Serializer) do
attribute :title
attribute :title
end
assert_equal([:title], serializer_class._attributes)
end
def test_id_attribute_override
serializer = Class.new(ActiveModel::Serializer) do
attribute :name, key: :id
end
adapter = ActiveModel::Serializer::Adapter::Json.new(serializer.new(@blog))
assert_equal({ blog: { id: 'AMS Hints' } }, adapter.serializable_hash)
end
def test_type_attribute
attribute_serializer = Class.new(ActiveModel::Serializer) do
attribute :id, key: :type
end
attributes_serializer = Class.new(ActiveModel::Serializer) do
attributes :type
end
adapter = ActiveModel::Serializer::Adapter::Json.new(attribute_serializer.new(@blog))
assert_equal({ blog: { type: 1 } }, adapter.serializable_hash)
adapter = ActiveModel::Serializer::Adapter::Json.new(attributes_serializer.new(@blog))
assert_equal({ blog: { type: 'stuff' } }, adapter.serializable_hash)
end
end
end
end
|
#!/bin/bash
WD=$PWD
cd "$WD/external/eigen-git-mirror"
git remote add upstream git@github.com:eigenteam/eigen-git-mirror.git
cd "$WD/external/googletest"
git remote add upstream git@github.com:google/googletest.git
cd "$WD/external/benchmark"
git remote add upstream git@github.com:google/benchmark.git
cd "$WD/external/GSL"
git remote add upstream git@github.com:microsoft/GSL.git
cd "$WD/external/pybind11"
git remote add upstream git@github.com:pybind/pybind11.git
|
; SYNTAX TEST "Packages/Lisp/Lisp.sublime-syntax"
; comment
;^ punctuation.definition.comment
;^^^^^^^^^ comment.line.semicolon
#|
;^^ punctuation.definition.comment.begin
This is a multi-line comment.
; ^^^^^ comment.block
#|
They can be nested!
|#
; ^^ comment.block comment.block punctuation.definition.comment.end
|#
(
; comments inside lists
; ^ comment
#|
even block comments |#
; ^ comment
)
#|
stray comment
|#|#
; ^^ invalid.illegal.stray-comment-end
(#|
stray comment inside list
|#|#)
; ^^ invalid.illegal.stray-comment-end
( #| stray brace |# ))))
; ^^^ invalid.illegal.stray-bracket-end
(( #| nested |# ))
;^ meta.group punctuation.definition.group.begin
; ^ meta.group meta.group punctuation.definition.group.begin
; ^ comment
; ^ meta.group meta.group punctuation.definition.group.end
; ^ meta.group punctuation.definition.group.end
;##########
; STRINGS #
;##########
("string\n")
;^ punctuation.definition.string.begin
;^^^^^^^^ string.quoted.double
; ^^ constant.character.escape
; ^ punctuation.definition.string.end
("multi-line string
ends here"
; ^ punctuation.definition.string.end
)
;##########
; NUMBERS #
;##########
(setq a 10)
; ^^ constant.numeric
(setq b 1.7)
; ^^^ constant.numeric
(setq c 1.5e+4)
; ^^^^^^ constant.numeric
(setq c 0xF0A)
; ^^^^^ constant.numeric
;#####################
; LANGUAGE CONSTANTS #
;#####################
(format t "Hello, world!")
; ^ constant.language
(NULL)
;^^^^ constant.language
(nil)
;^^^ constant.language
;#######################
; ARITHMETIC OPERATORS #
;#######################
(+ a b)
;^ keyword.operator.arithmetic
(- a b)
;^ keyword.operator.arithmetic
(* a b)
;^ keyword.operator.arithmetic
(/ a b)
;^ keyword.operator.arithmetic
(mod a b)
;^^^ keyword.operator.arithmetic
(rem a b)
;^^^ keyword.operator.arithmetic
(INCF a b)
;^^^^ keyword.operator.arithmetic
(decf a b)
;^^^^ keyword.operator.arithmetic
;#######################
; COMPARISON OPERATORS #
;#######################
(= a b)
;^ keyword.operator.comparison
(/= a b)
;^^ keyword.operator.comparison
(> a b)
;^ keyword.operator.comparison
(< a b)
;^ keyword.operator.comparison
(>= a b)
;^^ keyword.operator.comparison
(<= a b)
;^^ keyword.operator.comparison
(max a b)
;^^^ keyword.operator.comparison
(min a b)
;^^^ keyword.operator.comparison
(EQ a b)
;^^ keyword.operator.comparison
(neq a b)
;^^^ keyword.operator.comparison
;####################
; LOGICAL OPERATORS #
;####################
(and a b)
;^^^ keyword.operator.logical
(OR a b)
;^^ keyword.operator.logical
(not a b)
;^^^ keyword.operator.logical
;####################
; BITWISE OPERATORS #
;####################
(logand a b)
;^^^^^^ keyword.operator.bitwise
(logior a b)
;^^^^^^ keyword.operator.bitwise
(LOGXOR a b)
;^^^^^^ keyword.operator.bitwise
(lognor a b)
;^^^^^^ keyword.operator.bitwise
(logeqv a b)
;^^^^^^ keyword.operator.bitwise
;############
; VARIABLES #
;############
(*package*)
;^ punctuation.definition.variable.begin
;^^^^^^^^^ variable.language
; ^ punctuation.definition.variable.end
(*user-var*)
;^ punctuation.definition.variable.begin
;^^^^^^^^^^ variable.other.global
; ^ punctuation.definition.variable.end
;###############
; CONTROL FLOW #
;###############
(loop while (hungry) do (eat))
;^^^^ keyword.control
; ^^^^^ keyword.control
; ^^ keyword.control
;############
; FUNCTIONS #
;############
(defun averagenum (n1 n2 n3 n4)
;^ storage.type.function-type
; ^ entity.name.function
(/ ( + n1 n2 n3 n4) 4)
; ^ keyword.operator
; ^ keyword.operator
; ^ constant.numeric
)
(defun what? (n1 n2 n3 n4)
;^ storage.type.function-type
; ^^^^^ entity.name.function
)
(defun is>?! (n1 n2 n3 n4)
;^ storage.type.function-type
; ^^^^^ entity.name.function
)
|
'------------------------------------------------------------------------------
' <auto-generated>
' This code was generated by a tool.
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
' </auto-generated>
'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
Partial Public Class RegisterExternalLogin
'''<summary>
'''email control.
'''</summary>
'''<remarks>
'''Auto-generated field.
'''To modify move field declaration from designer file to code-behind file.
'''</remarks>
Protected WithEvents email As Global.System.Web.UI.WebControls.TextBox
End Class
|
syntax = "proto3";
package game;
message ping_c2g {
string msg = 1;
}
message pong_g2c {
string msg = 1;
}
message login_c2g {
string token = 1;
uint32 role_id = 2;
}
message login_g2c {
bool result = 1;
uint32 role_id = 2;
string rolename = 3;
uint32 level = 4;
}
|
structure OpCode =
struct
structure V = VMValue
datatype t
= Not
| Add
| Eq
| Gt
| Jump of int
| Jtrue of int
| Call of int
| Ret
| Push of V.t
| Pop
| Lref of int
| Lset of int
| Gref of int
| Gset of int
| Nop
| End
fun toString Not = "Not"
| toString Add = "Add"
| toString Eq = "Eq"
| toString Gt = "Gt"
| toString (Jump i) = "Jump " ^ (Int.toString i)
| toString (Jtrue i) = "Jtrue " ^ (Int.toString i)
| toString (Call i) = "Call " ^ (Int.toString i)
| toString Ret = "Ret"
| toString (Push v) = "Push " ^ (V.toString v)
| toString Pop = "Pop"
| toString (Lref i) = "Lref " ^ (Int.toString i)
| toString (Lset i) = "Lset " ^ (Int.toString i)
| toString (Gref i) = "Gref " ^ (Int.toString i)
| toString (Gset i) = "Gset " ^ (Int.toString i)
| toString Nop = "Nop"
| toString End = "End"
end
|
/* con este código lo que hago es traer el excel*/
FILENAME REFFILE '/folders/myfolders/1.-Metódos Cuantitativos/Para Ejercicios.xlsx';
PROC IMPORT DATAFILE=REFFILE
DBMS=XLSX
OUT=datosImportados;
GETNAMES=YES;
RUN;
proc sort;
by Municipio;
proc sgplot data=datosImportados;
vBox Inai;
By Municipio;
run;
|
# Autogenerated wrapper script for GAP_pkg_cvec_jll for x86_64-unknown-freebsd
export cvec
using GAP_jll
using GAP_lib_jll
JLLWrappers.@generate_wrapper_header("GAP_pkg_cvec")
JLLWrappers.@declare_file_product(cvec)
function __init__()
JLLWrappers.@generate_init_header(GAP_jll, GAP_lib_jll)
JLLWrappers.@init_file_product(
cvec,
"lib/gap/cvec.so",
)
JLLWrappers.@generate_init_footer()
end # __init__()
|
uniform mat4 screenToCamera;
uniform mat4 cameraToWorld;
attribute vec4 vertex;
varying vec3 viewDir;
void main() {
viewDir = (cameraToWorld * vec4((screenToCamera * vertex).xyz, 0.0)).xyz;
gl_Position = vec4(vertex.xy, 0.9999999, 1.0);
}
|
// Choose the mesh size:
c = 0.1;
// Number of extrude layers:
n = 5;
Point(1) = {0, 0, 0, c};
Point(2) = {1, 0, 0, c};
Point(3) = {0, -1, 0, c};
Point(4) = {0, 1, 0, c};
Point(5) = {-1, 0, 0, c};
Circle(1) = {5, 1, 4};
Circle(2) = {4, 1, 2};
Circle(3) = {2, 1, 3};
Circle(4) = {3, 1, 5};
Line Loop(5) = {1, 2, 3, 4};
Plane Surface(6) = {5};
Recombine Surface{6};
Extrude{0,0,0.1}{Surface{6}; Layers{n}; Recombine;}
Physical Volume(1) = {1};
Physical Surface(2) = {15,19,23,27};
Physical Surface(3) = {28};
Physical Line(4) = {8,9,10,11};
|
#lang scribble/manual
@(require raylib/generated/constants)
@title{Raylib}
Racket bindings for @hyperlink["https://www.raylib.com/"]{Raylib}.
These bindings are currently for
@(hyperlink
@(format "https://github.com/raysan5/raylib/releases/tag/~a.0" RAYLIB_VERSION)
@list{Raylib @|RAYLIB_VERSION|.0}).
@table-of-contents[]
@include-section["raylib-support.scrbl"]
@include-section["../generated/scribblings/raylib-generated.scrbl"]
@include-section["raylib-derived.scrbl"]
@include-section["../2d/scribblings/raylib-2d.scrbl"]
@include-section["../raymath/raylib-raymath.scrbl"]
|
/*
* Copyright 2020 NEM
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { Address } from '../account/Address';
import { PublicAccount } from '../account/PublicAccount';
import { NetworkType } from '../network/NetworkType';
import { UInt64 } from '../UInt64';
import { BlockType } from './BlockType';
/**
* The normal block info structure describes basic information of a block.
*/
export class NormalBlockInfo {
/**
* @param recordId
* @param size
* @param hash
* @param generationHash
* @param totalFee
* @param stateHashSubCacheMerkleRoots
* @param totalTransactionsCount
* @param signature
* @param signer
* @param networkType
* @param version
* @param type
* @param height
* @param timestamp
* @param difficulty
* @param proofGamma
* @param proofScalar
* @param proofVerificationHash
* @param feeMultiplier
* @param previousBlockHash
* @param blockTransactionsHash
* @param blockReceiptsHash
* @param blockStateHash
* @param beneficiaryAddress
* @param transactionsCount
* @param statementsCount
*/
constructor(
/**
* The database record id.
*/
public readonly recordId: string,
/**
* Entity size in bytes.
*/
public readonly size: number,
/**
* The block hash.
*/
public readonly hash: string,
/**
* The generation hash
*/
public readonly generationHash: string,
/**
* The sum of all transaction fees included in the block.
*/
public readonly totalFee: UInt64,
/**
* State hash sub cache merkle roots
*/
public readonly stateHashSubCacheMerkleRoots: string[],
/**
* The total number of transactions confirmed (including embedded transaction) included.
*/
public readonly totalTransactionsCount: number,
/**
* The block signature.
* The signature was generated by the signer and can be used to validate that the blockchain
* data was not modified by a node.
*/
public readonly signature: string,
/**
* The public account of block harvester.
*/
public readonly signer: PublicAccount,
/**
* The network type.
*/
public readonly networkType: NetworkType,
/**
* The transaction version.
*/
public readonly version: number,
/**
* The block type.
*/
public readonly type: BlockType,
/**
* The height of which the block was confirmed.
* Each block has a unique height. Subsequent blocks differ in height by 1.
*/
public readonly height: UInt64,
/**
* The number of milliseconds elapsed since the creation of the nemesis blockchain.
*/
public readonly timestamp: UInt64,
/**
* The POI difficulty to harvest a block.
*/
public readonly difficulty: UInt64,
/**
* The feeMultiplier defined by the harvester.
*/
public readonly feeMultiplier: number,
/**
* The last block hash.
*/
public readonly previousBlockHash: string,
/**
* The block transaction hash.
*/
public readonly blockTransactionsHash: string,
/**
* The block receipt hash.
*/
public readonly blockReceiptsHash: string,
/**
* The state hash.
*/
public readonly stateHash: string,
/**
* The proof gamma.
*/
public readonly proofGamma: string,
/**
* The proof scalar.
*/
public readonly proofScalar: string,
/**
* The proof verification hash.
*/
public readonly proofVerificationHash: string,
/**
* The beneficiary address.
*/
public readonly beneficiaryAddress: Address,
/**
* The number of statements confiemd (excluding embedded transaction) included.
*/
public readonly transactionsCount: number,
/**
* The number of statements included.
*/
public readonly statementsCount: number,
) {}
}
|
insert into ims_test.customers(first_name, surname) values('chris', 'perrins');
insert into ims_test.customers(first_name, surname) values('rhys', 'thompson');
insert into ims_test.customers(first_name, surname) values('nic', 'johnson');
insert into ims_test.customers(first_name, surname) values('jordon', 'harrison');
insert into ims_test.items(itemName,itemPrice) values("candle","5.0");
insert into ims_test.items(itemName,itemPrice) values("plant","12.0");
insert into ims_test.items(itemName,itemPrice) values("chair","30.0");
insert into ims_test.items(itemName,itemPrice) values("table","50.0");
insert into ims_test.orders(customerID,totalPrice) values(1L,50.0);
insert into ims_test.orders(customerID,totalPrice) values(3L,30.0);
insert into ims_test.orders(customerID,totalPrice) values(2L,75.0);
insert into ims_test.orders(customerID,totalPrice) values(4L,15.0);
insert into ims_test.orderline(itemID,orderID,quantity) values(1L,1L,3);
insert into ims_test.orderline(itemID,orderID,quantity) values(2L,1L,1);
insert into ims_test.orderline(itemID,orderID,quantity) values(3L,2L,2);
insert into ims_test.orderline(itemID,orderID,quantity) values(4L,2L,1); |
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . R E G E X P --
-- --
-- S p e c --
-- --
-- Copyright (C) 1998-2021, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Simple Regular expression matching
-- This package provides a simple implementation of a regular expression
-- pattern matching algorithm, using a subset of the syntax of regular
-- expressions copied from familiar Unix style utilities.
-- Note: this package is in the System hierarchy so that it can be directly
-- be used by other predefined packages. User access to this package is via
-- a renaming of this package in GNAT.Regexp (file g-regexp.ads).
with Ada.Finalization;
package System.Regexp is
-- The regular expression must first be compiled, using the Compile
-- function, which creates a finite state matching table, allowing
-- very fast matching once the expression has been compiled.
-- The following is the form of a regular expression, expressed in Ada
-- reference manual style BNF is as follows
-- regexp ::= term
-- regexp ::= term | term -- alternation (term or term ...)
-- term ::= item
-- term ::= item item ... -- concatenation (item then item)
-- item ::= elmt -- match elmt
-- item ::= elmt * -- zero or more elmt's
-- item ::= elmt + -- one or more elmt's
-- item ::= elmt ? -- matches elmt or nothing
-- elmt ::= nchr -- matches given character
-- elmt ::= [nchr nchr ...] -- matches any character listed
-- elmt ::= [^ nchr nchr ...] -- matches any character not listed
-- elmt ::= [char - char] -- matches chars in given range
-- elmt ::= . -- matches any single character
-- elmt ::= ( regexp ) -- parens used for grouping
-- char ::= any character, including special characters
-- nchr ::= any character except \()[].*+?^ or \char to match char
-- ... is used to indication repetition (one or more terms)
-- See also regexp(1) man page on Unix systems for further details
-- A second kind of regular expressions is provided. This one is more
-- like the wildcard patterns used in file names by the Unix shell (or
-- DOS prompt) command lines. The grammar is the following:
-- regexp ::= term
-- term ::= elmt
-- term ::= seq
-- term ::= {seq, seq, ...} -- alternation (matches any of seq)
-- seq ::= elmt elmt ... -- concatenation (sequence of elmts)
-- elmt ::= * -- any string of 0 or more characters
-- elmt ::= ? -- matches any character
-- elmt ::= char
-- elmt ::= [^ char char ...] -- matches any character not listed
-- elmt ::= [char char ...] -- matches any character listed
-- elmt ::= [char - char] -- matches any character in given range
-- \char is also supported by this grammar.
-- Important note : This package was mainly intended to match regular
-- expressions against file names. The whole string has to match the
-- regular expression. If only a substring matches, then the function
-- Match will return False.
type Regexp is private;
-- Private type used to represent a regular expression
Error_In_Regexp : exception;
-- Exception raised when an error is found in the regular expression
function Compile
(Pattern : String;
Glob : Boolean := False;
Case_Sensitive : Boolean := True) return Regexp;
-- Compiles a regular expression S. If the syntax of the given
-- expression is invalid (does not match above grammar), Error_In_Regexp
-- is raised. If Glob is True, the pattern is considered as a 'globbing
-- pattern', that is a pattern as given by the second grammar above.
-- As a special case, if Pattern is the empty string it will always
-- match.
function Match (S : String; R : Regexp) return Boolean;
-- True if S matches R, otherwise False. Raises Constraint_Error if
-- R is an uninitialized regular expression value.
private
type Regexp_Value;
type Regexp_Access is access Regexp_Value;
type Regexp is new Ada.Finalization.Controlled with record
R : Regexp_Access := null;
end record;
pragma Finalize_Storage_Only (Regexp);
procedure Finalize (R : in out Regexp);
-- Free the memory occupied by R
procedure Adjust (R : in out Regexp);
-- Called after an assignment (do a copy of the Regexp_Access.all)
end System.Regexp;
|
.byte $01 ; Unknown purpose
.byte OBJ_TREASURESET, $32, $0D
.byte OBJ_TREASUREBOX, $33, $0F
.byte OBJ_TREASUREBOXAPPEAR, $34, $0F
.byte $FF ; Terminator
|
/*
* Copyright 2012-2021 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.cloud.client.loadbalancer.reactive;
import java.io.IOException;
import java.net.URI;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.mockito.InOrder;
import reactor.core.publisher.Mono;
import org.springframework.cloud.client.ServiceInstance;
import org.springframework.cloud.client.loadbalancer.LoadBalancerRetryProperties;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.HttpStatus;
import org.springframework.web.reactive.function.client.ClientRequest;
import org.springframework.web.reactive.function.client.ClientResponse;
import org.springframework.web.reactive.function.client.ExchangeFunction;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.inOrder;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
/**
* Tests for {@link RetryableLoadBalancerExchangeFilterFunction}.
*
* @author Olga Maciaszek-Sharma
* @since 2.2.7
*/
@SuppressWarnings("unchecked")
class RetryableLoadBalancerExchangeFilterFunctionTests {
private final LoadBalancerRetryProperties properties = new LoadBalancerRetryProperties();
private final LoadBalancerRetryPolicy policy = new RetryableExchangeFilterFunctionLoadBalancerRetryPolicy(
properties);
private final ReactiveLoadBalancer.Factory<ServiceInstance> factory = mock(
ReactiveLoadBalancer.Factory.class);
private final RetryableLoadBalancerExchangeFilterFunction filterFunction = new RetryableLoadBalancerExchangeFilterFunction(
policy, factory, properties);
private final ClientRequest clientRequest = mock(ClientRequest.class);
private final ExchangeFunction next = mock(ExchangeFunction.class);
private final ClientResponse clientResponse = mock(ClientResponse.class);
private final InOrder inOrder = inOrder(next, factory);
@BeforeEach
void setUp() {
properties.setMaxRetriesOnSameServiceInstance(1);
properties.getRetryableStatusCodes().add(404);
when(clientRequest.url()).thenReturn(URI.create("http://test"));
when(factory.getInstance("test")).thenReturn(new TestReactiveLoadBalancer());
when(clientRequest.headers()).thenReturn(new HttpHeaders());
when(clientRequest.cookies()).thenReturn(new HttpHeaders());
}
@Test
void shouldRetryOnSameAndNextServiceInstanceOnException() {
when(clientRequest.method()).thenReturn(HttpMethod.GET);
when(clientResponse.statusCode()).thenReturn(HttpStatus.OK);
when(next.exchange(any()))
.thenThrow(new IllegalStateException(new IOException()));
try {
filterFunction.filter(clientRequest, next).subscribe();
}
catch (Exception ignored) {
}
inOrder.verify(factory, times(1)).getInstance(any());
inOrder.verify(next, times(2)).exchange(any());
inOrder.verify(factory, times(1)).getInstance(any());
inOrder.verify(next, times(2)).exchange(any());
}
@Test
void shouldRetryOnSameAndNextServiceInstanceOnRetryableStatusCode() {
when(clientRequest.method()).thenReturn(HttpMethod.GET);
when(clientResponse.statusCode()).thenReturn(HttpStatus.NOT_FOUND);
when(next.exchange(any())).thenReturn(Mono.just(clientResponse));
filterFunction.filter(clientRequest, next).subscribe();
inOrder.verify(factory, times(1)).getInstance(any());
inOrder.verify(next, times(2)).exchange(any());
inOrder.verify(factory, times(1)).getInstance(any());
inOrder.verify(next, times(2)).exchange(any());
}
@Test
void shouldNotRetryWhenNoRetryableExceptionOrStatusCode() {
when(clientRequest.method()).thenReturn(HttpMethod.GET);
when(clientResponse.statusCode()).thenReturn(HttpStatus.OK);
when(next.exchange(any())).thenReturn(Mono.just(clientResponse));
filterFunction.filter(clientRequest, next).subscribe();
verify(next, times(1)).exchange(any());
verify(factory, times(1)).getInstance(any());
}
@Test
void shouldNotRetryOnMethodOtherThanGet() {
when(clientRequest.method()).thenReturn(HttpMethod.POST);
when(clientResponse.statusCode()).thenReturn(HttpStatus.NOT_FOUND);
when(next.exchange(any())).thenReturn(Mono.just(clientResponse));
filterFunction.filter(clientRequest, next).subscribe();
verify(next, times(1)).exchange(any());
verify(factory, times(1)).getInstance(any());
}
@Test
void shouldRetryOnMethodOtherThanGetWhenEnabled() {
LoadBalancerRetryProperties properties = new LoadBalancerRetryProperties();
properties.setRetryOnAllOperations(true);
properties.setMaxRetriesOnSameServiceInstance(1);
properties.getRetryableStatusCodes().add(404);
LoadBalancerRetryPolicy policy = new RetryableExchangeFilterFunctionLoadBalancerRetryPolicy(
properties);
RetryableLoadBalancerExchangeFilterFunction filterFunction = new RetryableLoadBalancerExchangeFilterFunction(
policy, factory, properties);
when(clientRequest.method()).thenReturn(HttpMethod.POST);
when(clientResponse.statusCode()).thenReturn(HttpStatus.NOT_FOUND);
when(next.exchange(any())).thenReturn(Mono.just(clientResponse));
filterFunction.filter(clientRequest, next).subscribe();
inOrder.verify(factory, times(1)).getInstance(any());
inOrder.verify(next, times(2)).exchange(any());
inOrder.verify(factory, times(1)).getInstance(any());
inOrder.verify(next, times(2)).exchange(any());
}
}
|
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/**
* Concurrent programming using _isolates_:
* independent workers that are similar to threads
* but don't share memory,
* communicating only via messages.
*
* To use this library in your code:
*
* import 'dart:isolate';
*
* {@category VM}
*/
library dart.isolate;
import "dart:async";
part "capability.dart";
/**
* Thrown when an isolate cannot be created.
*/
class IsolateSpawnException implements Exception {
/** Error message reported by the spawn operation. */
final String message;
@pragma("vm:entry-point")
IsolateSpawnException(this.message);
String toString() => "IsolateSpawnException: $message";
}
/**
* An isolated Dart execution context.
*
* All Dart code runs in an isolate, and code can access classes and values
* only from the same isolate. Different isolates can communicate by sending
* values through ports (see [ReceivePort], [SendPort]).
*
* An `Isolate` object is a reference to an isolate, usually different from
* the current isolate.
* It represents, and can be used control, the other isolate.
*
* When spawning a new isolate, the spawning isolate receives an `Isolate`
* object representing the new isolate when the spawn operation succeeds.
*
* Isolates run code in its own event loop, and each event may run smaller tasks
* in a nested microtask queue.
*
* An `Isolate` object allows other isolates to control the event loop
* of the isolate that it represents, and to inspect the isolate,
* for example by pausing the isolate or by getting events when the isolate
* has an uncaught error.
*
* The [controlPort] identifies and gives access to controlling the isolate,
* and the [pauseCapability] and [terminateCapability] guard access
* to some control operations.
* For example, calling [pause] on an `Isolate` object created without a
* [pauseCapability], has no effect.
*
* The `Isolate` object provided by a spawn operation will have the
* control port and capabilities needed to control the isolate.
* New isolate objects can be created without some of these capabilities
* if necessary, using the [Isolate.Isolate] constructor.
*
* An `Isolate` object cannot be sent over a `SendPort`, but the control port
* and capabilities can be sent, and can be used to create a new functioning
* `Isolate` object in the receiving port's isolate.
*/
class Isolate {
/** Argument to `ping` and `kill`: Ask for immediate action. */
static const int immediate = 0;
/** Argument to `ping` and `kill`: Ask for action before the next event. */
static const int beforeNextEvent = 1;
/**
* Control port used to send control messages to the isolate.
*
* The control port identifies the isolate.
*
* An `Isolate` object allows sending control messages
* through the control port.
*
* Some control messages require a specific capability to be passed along
* with the message (see [pauseCapability] and [terminateCapability]),
* otherwise the message is ignored by the isolate.
*/
final SendPort controlPort;
/**
* Capability granting the ability to pause the isolate.
*
* This capability is required by [pause].
* If the capability is `null`, or if it is not the correct pause capability
* of the isolate identified by [controlPort],
* then calls to [pause] will have no effect.
*
* If the isolate is spawned in a paused state, use this capability as
* argument to the [resume] method in order to resume the paused isolate.
*/
final Capability pauseCapability;
/**
* Capability granting the ability to terminate the isolate.
*
* This capability is required by [kill] and [setErrorsFatal].
* If the capability is `null`, or if it is not the correct termination
* capability of the isolate identified by [controlPort],
* then calls to those methods will have no effect.
*/
final Capability terminateCapability;
/**
* Create a new [Isolate] object with a restricted set of capabilities.
*
* The port should be a control port for an isolate, as taken from
* another `Isolate` object.
*
* The capabilities should be the subset of the capabilities that are
* available to the original isolate.
* Capabilities of an isolate are locked to that isolate, and have no effect
* anywhere else, so the capabilities should come from the same isolate as
* the control port.
*
* Can also be used to create an [Isolate] object from a control port, and
* any available capabilities, that have been sent through a [SendPort].
*
* Example:
* ```dart
* Isolate isolate = findSomeIsolate();
* Isolate restrictedIsolate = new Isolate(isolate.controlPort);
* untrustedCode(restrictedIsolate);
* ```
* This example creates a new `Isolate` object that cannot be used to
* pause or terminate the isolate. All the untrusted code can do is to
* inspect the isolate and see uncaught errors or when it terminates.
*/
Isolate(this.controlPort, {this.pauseCapability, this.terminateCapability});
/**
* Return an [Isolate] object representing the current isolate.
*
* The current isolate for code using [current]
* is the isolate running the code.
*
* The isolate object provides the capabilities required to inspect,
* pause or kill the isolate, and allows granting these capabilities
* to others.
*
* It is possible to pause the current isolate, but doing so *without*
* first passing the ability to resume it again to another isolate,
* is a sure way to hang your program.
*/
external static Isolate get current;
/**
* The location of the package configuration of the current isolate, if any.
*
* This getter returns `null`, as the `packages/` directory is not supported
* in Dart 2.
*/
@Deprecated('packages/ directory resolution is not supported in Dart 2.')
external static Future<Uri> get packageRoot;
/**
* The package root of the current isolate, if any.
*
* If the isolate is using a [packageRoot] or the isolate has not been
* setup for package resolution, this getter returns `null`, otherwise it
* returns the package config URI.
*/
external static Future<Uri> get packageConfig;
/**
* Maps a package: URI to a non-package Uri.
*
* If there is no valid mapping from the package: URI in the current
* isolate, then this call returns `null`. Non-package: URIs are
* returned unmodified.
*/
external static Future<Uri> resolvePackageUri(Uri packageUri);
/**
* Creates and spawns an isolate that shares the same code as the current
* isolate.
*
* The argument [entryPoint] specifies the initial function to call
* in the spawned isolate.
* The entry-point function is invoked in the new isolate with [message]
* as the only argument.
*
* The function must be a top-level function or a static method
* that can be called with a single argument,
* that is, a compile-time constant function value
* which accepts at least one positional parameter
* and has at most one required positional parameter.
* The function may accept any number of optional parameters,
* as long as it *can* be called with just a single argument.
* The function must not be the value of a function expression
* or an instance method tear-off.
*
* Usually the initial [message] contains a [SendPort] so
* that the spawner and spawnee can communicate with each other.
*
* If the [paused] parameter is set to `true`,
* the isolate will start up in a paused state,
* just before calling the [entryPoint] function with the [message],
* as if by an initial call of `isolate.pause(isolate.pauseCapability)`.
* To resume the isolate, call `isolate.resume(isolate.pauseCapability)`.
*
* If the [errorsAreFatal], [onExit] and/or [onError] parameters are provided,
* the isolate will act as if, respectively, [setErrorsFatal],
* [addOnExitListener] and [addErrorListener] were called with the
* corresponding parameter and was processed before the isolate starts
* running.
*
* If [errorsAreFatal] is omitted, the platform may choose a default behavior
* or inherit the current isolate's behavior.
*
* You can also call the [setErrorsFatal], [addOnExitListener] and
* [addErrorListener] methods on the returned isolate, but unless the
* isolate was started as [paused], it may already have terminated
* before those methods can complete.
*
* Returns a future which will complete with an [Isolate] instance if the
* spawning succeeded. It will complete with an error otherwise.
*/
external static Future<Isolate> spawn<T>(
void entryPoint(T message), T message,
{bool paused: false,
bool errorsAreFatal,
SendPort onExit,
SendPort onError});
/**
* Creates and spawns an isolate that runs the code from the library with
* the specified URI.
*
* The isolate starts executing the top-level `main` function of the library
* with the given URI.
*
* The target `main` must be callable with zero, one or two arguments.
* Examples:
*
* * `main()`
* * `main(args)`
* * `main(args, message)`
*
* When present, the parameter `args` is set to the provided [args] list.
* When present, the parameter `message` is set to the initial [message].
*
* If the [paused] parameter is set to `true`,
* the isolate will start up in a paused state,
* as if by an initial call of `isolate.pause(isolate.pauseCapability)`.
* To resume the isolate, call `isolate.resume(isolate.pauseCapability)`.
*
* If the [errorsAreFatal], [onExit] and/or [onError] parameters are provided,
* the isolate will act as if, respectively, [setErrorsFatal],
* [addOnExitListener] and [addErrorListener] were called with the
* corresponding parameter and was processed before the isolate starts
* running.
*
* You can also call the [setErrorsFatal], [addOnExitListener] and
* [addErrorListener] methods on the returned isolate, but unless the
* isolate was started as [paused], it may already have terminated
* before those methods can complete.
*
* If the [checked] parameter is set to `true` or `false`,
* the new isolate will run code in checked mode (enabling asserts and type
* checks), respectively in production mode (disabling asserts and type
* checks), if possible. If the parameter is omitted, the new isolate will
* inherit the value from the current isolate.
*
* In Dart2 strong mode, the `checked` parameter only controls asserts, but
* not type checks.
*
* It may not always be possible to honor the `checked` parameter.
* If the isolate code was pre-compiled, it may not be possible to change
* the checked mode setting dynamically.
* In that case, the `checked` parameter is ignored.
*
* WARNING: The [checked] parameter is not implemented on all platforms yet.
*
* If the [packageConfig] parameter is provided, then it is used to find the
* location of a package resolution configuration file for the spawned
* isolate.
*
* If the [automaticPackageResolution] parameter is provided, then the
* location of the package sources in the spawned isolate is automatically
* determined.
*
* The [environment] is a mapping from strings to strings which the
* spawned isolate uses when looking up [String.fromEnvironment] values.
* The system may add its own entries to environment as well.
* If `environment` is omitted, the spawned isolate has the same environment
* declarations as the spawning isolate.
*
* WARNING: The [environment] parameter is not implemented on all
* platforms yet.
*
* Returns a future that will complete with an [Isolate] instance if the
* spawning succeeded. It will complete with an error otherwise.
*/
external static Future<Isolate> spawnUri(
Uri uri,
List<String> args,
var message,
{bool paused: false,
SendPort onExit,
SendPort onError,
bool errorsAreFatal,
bool checked,
Map<String, String> environment,
@Deprecated('The packages/ dir is not supported in Dart 2')
Uri packageRoot,
Uri packageConfig,
bool automaticPackageResolution: false});
/**
* Requests the isolate to pause.
*
* When the isolate receives the pause command, it stops
* processing events from the event loop queue.
* It may still add new events to the queue in response to, e.g., timers
* or receive-port messages. When the isolate is resumed,
* it starts handling the already enqueued events.
*
* The pause request is sent through the isolate's command port,
* which bypasses the receiving isolate's event loop.
* The pause takes effect when it is received, pausing the event loop
* as it is at that time.
*
* The [resumeCapability] is used to identity the pause,
* and must be used again to end the pause using [resume].
* If [resumeCapability] is omitted, a new capability object is created
* and used instead.
*
* If an isolate is paused more than once using the same capability,
* only one resume with that capability is needed to end the pause.
*
* If an isolate is paused using more than one capability,
* each pause must be individually ended before the isolate resumes.
*
* Returns the capability that must be used to end the pause.
* This is either [resumeCapability], or a new capability when
* [resumeCapability] is omitted.
*
* If [pauseCapability] is `null`, or it's not the pause capability
* of the isolate identified by [controlPort],
* the pause request is ignored by the receiving isolate.
*/
Capability pause([Capability resumeCapability]) {
resumeCapability ??= new Capability();
_pause(resumeCapability);
return resumeCapability;
}
/** Internal implementation of [pause]. */
external void _pause(Capability resumeCapability);
/**
* Resumes a paused isolate.
*
* Sends a message to an isolate requesting that it ends a pause
* that was previously requested.
*
* When all active pause requests have been cancelled, the isolate
* will continue processing events and handling normal messages.
*
* If the [resumeCapability] is not one that has previously been used
* to pause the isolate, or it has already been used to resume from
* that pause, the resume call has no effect.
*/
external void resume(Capability resumeCapability);
/**
* Requests an exit message on [responsePort] when the isolate terminates.
*
* The isolate will send [response] as a message on [responsePort] as the last
* thing before it terminates. It will run no further code after the message
* has been sent.
*
* Adding the same port more than once will only cause it to receive one exit
* message, using the last response value that was added,
* and it only needs to be removed once using [removeOnExitListener].
*
* If the isolate has terminated before it can receive this request,
* no exit message will be sent.
*
* The [response] object must follow the same restrictions as enforced by
* [SendPort.send].
* It is recommended to only use simple values that can be sent to all
* isolates, like `null`, booleans, numbers or strings.
*
* Since isolates run concurrently, it's possible for it to exit before the
* exit listener is established, and in that case no response will be
* sent on [responsePort].
* To avoid this, either use the corresponding parameter to the spawn
* function, or start the isolate paused, add the listener and
* then resume the isolate.
*/
/* TODO(lrn): Can we do better? Can the system recognize this message and
* send a reply if the receiving isolate is dead?
*/
external void addOnExitListener(SendPort responsePort, {Object response});
/**
* Stops listening for exit messages from the isolate.
*
* Requests for the isolate to not send exit messages on [responsePort].
* If the isolate isn't expecting to send exit messages on [responsePort],
* because the port hasn't been added using [addOnExitListener],
* or because it has already been removed, the request is ignored.
*
* If the same port has been passed via [addOnExitListener] more than once,
* only one call to `removeOnExitListener` is needed to stop it from receiving
* exit messages.
*
* Closing the receive port that is associated with the [responsePort] does
* not stop the isolate from sending uncaught errors, they are just going to
* be lost.
*
* An exit message may still be sent if the isolate terminates
* before this request is received and processed.
*/
external void removeOnExitListener(SendPort responsePort);
/**
* Sets whether uncaught errors will terminate the isolate.
*
* If errors are fatal, any uncaught error will terminate the isolate
* event loop and shut down the isolate.
*
* This call requires the [terminateCapability] for the isolate.
* If the capability is absent or incorrect, no change is made.
*
* Since isolates run concurrently, it's possible for the receiving isolate
* to exit due to an error, before a request, using this method, has been
* received and processed.
* To avoid this, either use the corresponding parameter to the spawn
* function, or start the isolate paused, set errors non-fatal and
* then resume the isolate.
*/
external void setErrorsFatal(bool errorsAreFatal);
/**
* Requests the isolate to shut down.
*
* The isolate is requested to terminate itself.
* The [priority] argument specifies when this must happen.
*
* The [priority], when provided, must be one of [immediate] or
* [beforeNextEvent] (the default).
* The shutdown is performed at different times depending on the priority:
*
* * `immediate`: The isolate shuts down as soon as possible.
* Control messages are handled in order, so all previously sent control
* events from this isolate will all have been processed.
* The shutdown should happen no later than if sent with
* `beforeNextEvent`.
* It may happen earlier if the system has a way to shut down cleanly
* at an earlier time, even during the execution of another event.
* * `beforeNextEvent`: The shutdown is scheduled for the next time
* control returns to the event loop of the receiving isolate,
* after the current event, and any already scheduled control events,
* are completed.
*
* If [terminateCapability] is `null`, or it's not the terminate capability
* of the isolate identified by [controlPort],
* the kill request is ignored by the receiving isolate.
*/
external void kill({int priority: beforeNextEvent});
/**
* Requests that the isolate send [response] on the [responsePort].
*
* The [response] object must follow the same restrictions as enforced by
* [SendPort.send].
* It is recommended to only use simple values that can be sent to all
* isolates, like `null`, booleans, numbers or strings.
*
* If the isolate is alive, it will eventually send `response`
* (defaulting to `null`) on the response port.
*
* The [priority] must be one of [immediate] or [beforeNextEvent].
* The response is sent at different times depending on the ping type:
*
* * `immediate`: The isolate responds as soon as it receives the
* control message. This is after any previous control message
* from the same isolate has been received and processed,
* but may be during execution of another event.
* * `beforeNextEvent`: The response is scheduled for the next time
* control returns to the event loop of the receiving isolate,
* after the current event, and any already scheduled control events,
* are completed.
*/
external void ping(SendPort responsePort,
{Object response, int priority: immediate});
/**
* Requests that uncaught errors of the isolate are sent back to [port].
*
* The errors are sent back as two elements lists.
* The first element is a `String` representation of the error, usually
* created by calling `toString` on the error.
* The second element is a `String` representation of an accompanying
* stack trace, or `null` if no stack trace was provided.
* To convert this back to a [StackTrace] object, use [StackTrace.fromString].
*
* Listening using the same port more than once does nothing.
* A port will only receive each error once,
* and will only need to be removed once using [removeErrorListener].
* Closing the receive port that is associated with the port does not stop
* the isolate from sending uncaught errors, they are just going to be lost.
* Instead use [removeErrorListener] to stop receiving errors on [port].
*
* Since isolates run concurrently, it's possible for it to exit before the
* error listener is established. To avoid this, start the isolate paused,
* add the listener and then resume the isolate.
*/
external void addErrorListener(SendPort port);
/**
* Stops listening for uncaught errors from the isolate.
*
* Requests for the isolate to not send uncaught errors on [port].
* If the isolate isn't expecting to send uncaught errors on [port],
* because the port hasn't been added using [addErrorListener],
* or because it has already been removed, the request is ignored.
*
* If the same port has been passed via [addErrorListener] more than once,
* only one call to `removeErrorListener` is needed to stop it from receiving
* uncaught errors.
*
* Uncaught errors message may still be sent by the isolate
* until this request is received and processed.
*/
external void removeErrorListener(SendPort port);
/**
* Returns a broadcast stream of uncaught errors from the isolate.
*
* Each error is provided as an error event on the stream.
*
* The actual error object and stackTraces will not necessarily
* be the same object types as in the actual isolate, but they will
* always have the same [Object.toString] result.
*
* This stream is based on [addErrorListener] and [removeErrorListener].
*/
Stream get errors {
StreamController controller;
RawReceivePort port;
void handleError(message) {
String errorDescription = message[0];
String stackDescription = message[1];
var error = new RemoteError(errorDescription, stackDescription);
controller.addError(error, error.stackTrace);
}
controller = new StreamController.broadcast(
sync: true,
onListen: () {
port = new RawReceivePort(handleError);
this.addErrorListener(port.sendPort);
},
onCancel: () {
this.removeErrorListener(port.sendPort);
port.close();
port = null;
});
return controller.stream;
}
}
/**
* Sends messages to its [ReceivePort]s.
*
* [SendPort]s are created from [ReceivePort]s. Any message sent through
* a [SendPort] is delivered to its corresponding [ReceivePort]. There might be
* many [SendPort]s for the same [ReceivePort].
*
* [SendPort]s can be transmitted to other isolates, and they preserve equality
* when sent.
*/
abstract class SendPort implements Capability {
/**
* Sends an asynchronous [message] through this send port, to its
* corresponding `ReceivePort`.
*
* The content of [message] can be: primitive values (null, num, bool, double,
* String), instances of [SendPort], and lists and maps whose elements are any
* of these. List and maps are also allowed to be cyclic.
*
* In the special circumstances when two isolates share the same code and are
* running in the same process (e.g. isolates created via [Isolate.spawn]), it
* is also possible to send object instances (which would be copied in the
* process). This is currently only supported by the dartvm. For now, the
* dart2js compiler only supports the restricted messages described above.
*
* The send happens immediately and doesn't block. The corresponding receive
* port can receive the message as soon as its isolate's event loop is ready
* to deliver it, independently of what the sending isolate is doing.
*/
void send(var message);
/**
* Tests whether [other] is a [SendPort] pointing to the same
* [ReceivePort] as this one.
*/
bool operator ==(var other);
/**
* Returns an immutable hash code for this send port that is
* consistent with the == operator.
*/
int get hashCode;
}
/**
* Together with [SendPort], the only means of communication between isolates.
*
* [ReceivePort]s have a `sendPort` getter which returns a [SendPort].
* Any message that is sent through this [SendPort]
* is delivered to the [ReceivePort] it has been created from. There, the
* message is dispatched to the `ReceivePort`'s listener.
*
* A [ReceivePort] is a non-broadcast stream. This means that it buffers
* incoming messages until a listener is registered. Only one listener can
* receive messages. See [Stream.asBroadcastStream] for transforming the port
* to a broadcast stream.
*
* A [ReceivePort] may have many [SendPort]s.
*/
abstract class ReceivePort implements Stream {
/**
* Opens a long-lived port for receiving messages.
*
* A [ReceivePort] is a non-broadcast stream. This means that it buffers
* incoming messages until a listener is registered. Only one listener can
* receive messages. See [Stream.asBroadcastStream] for transforming the port
* to a broadcast stream.
*
* A receive port is closed by canceling its subscription.
*/
external factory ReceivePort();
/**
* Creates a [ReceivePort] from a [RawReceivePort].
*
* The handler of the given [rawPort] is overwritten during the construction
* of the result.
*/
external factory ReceivePort.fromRawReceivePort(RawReceivePort rawPort);
/**
* Inherited from [Stream].
*
* Note that [onError] and [cancelOnError] are ignored since a ReceivePort
* will never receive an error.
*
* The [onDone] handler will be called when the stream closes.
* The stream closes when [close] is called.
*/
StreamSubscription listen(void onData(var message),
{Function onError, void onDone(), bool cancelOnError});
/**
* Closes `this`.
*
* If the stream has not been canceled yet, adds a close-event to the event
* queue and discards any further incoming messages.
*
* If the stream has already been canceled this method has no effect.
*/
void close();
/**
* Returns a [SendPort] that sends to this receive port.
*/
SendPort get sendPort;
}
abstract class RawReceivePort {
/**
* Opens a long-lived port for receiving messages.
*
* A [RawReceivePort] is low level and does not work with [Zone]s. It
* can not be paused. The data-handler must be set before the first
* event is received.
*/
external factory RawReceivePort([Function handler]);
/**
* Sets the handler that is invoked for every incoming message.
*
* The handler is invoked in the root-zone ([Zone.root]).
*/
void set handler(Function newHandler);
/**
* Closes the port.
*
* After a call to this method any incoming message is silently dropped.
*/
void close();
/**
* Returns a [SendPort] that sends to this raw receive port.
*/
SendPort get sendPort;
}
/**
* Description of an error from another isolate.
*
* This error has the same `toString()` and `stackTrace.toString()` behavior
* as the original error, but has no other features of the original error.
*/
class RemoteError implements Error {
final String _description;
final StackTrace stackTrace;
RemoteError(String description, String stackDescription)
: _description = description,
stackTrace = new StackTrace.fromString(stackDescription);
String toString() => _description;
}
|
#import <UIKit/UIKit.h>
@interface UIView (RecursiveFind)
- (UIView *)findFirstSubviewWithClass:(Class)theClass;
- (void)removeAllSubviews;
@end
|
//Address: 0xe887d4FCeD09cb2904dbA4f7Db1cC46e29d39579
//Contract name: CSAToken
//Balance: 0 Ether
//Verification Date: 3/13/2018
//Transacion Count: 5
// CODE STARTS HERE
pragma solidity ^0.4.18;
contract owned {
address public owner;
function owned() public {
owner = msg.sender;
}
modifier onlyOwner {
require(msg.sender == owner);
_;
}
function transferOwnership(address newOwner) onlyOwner public {
owner = newOwner;
}
}
interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }
contract TokenERC20 {
// Public variables of the token
string public name;
string public symbol;
uint8 public decimals = 18;
// 18 decimals is the strongly suggested default, avoid changing it
uint256 public totalSupply;
// This creates an array with all balances
mapping (address => uint256) public balanceOf;
mapping (address => mapping (address => uint256)) public allowance;
// This generates a public event on the blockchain that will notify clients
event Transfer(address indexed from, address indexed to, uint256 value);
// This notifies clients about the amount burnt
event Burn(address indexed from, uint256 value);
/**
* Constrctor function
*
* Initializes contract with initial supply tokens to the creator of the contract
*/
function TokenERC20(
uint256 initialSupply,
string tokenName,
string tokenSymbol
) public {
initialSupply = 20000000;
tokenName = "CSAT TOKEN";
tokenSymbol = "CSAT";
totalSupply = initialSupply * 10 ** uint256(decimals); // Update total supply with the decimal amount
balanceOf[msg.sender] = totalSupply; // Give the creator all initial tokens
name = tokenName; // Set the name for display purposes
symbol = tokenSymbol; // Set the symbol for display purposes
}
/**
* Internal transfer, only can be called by this contract
*/
function _transfer(address _from, address _to, uint _value) internal {
// Prevent transfer to 0x0 address. Use burn() instead
require(_to != 0x0);
// Check if the sender has enough
require(balanceOf[_from] >= _value);
// Check for overflows
require(balanceOf[_to] + _value > balanceOf[_to]);
// Save this for an assertion in the future
uint previousBalances = balanceOf[_from] + balanceOf[_to];
// Subtract from the sender
balanceOf[_from] -= _value;
// Add the same to the recipient
balanceOf[_to] += _value;
Transfer(_from, _to, _value);
// Asserts are used to use static analysis to find bugs in your code. They should never fail
assert(balanceOf[_from] + balanceOf[_to] == previousBalances);
}
/**
* Transfer tokens
*
* Send `_value` tokens to `_to` from your account
*
* @param _to The address of the recipient
* @param _value the amount to send
*/
function transfer(address _to, uint256 _value) public {
_transfer(msg.sender, _to, _value);
}
/**
* Transfer tokens from other address
*
* Send `_value` tokens to `_to` in behalf of `_from`
*
* @param _from The address of the sender
* @param _to The address of the recipient
* @param _value the amount to send
*/
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
require(_value <= allowance[_from][msg.sender]); // Check allowance
allowance[_from][msg.sender] -= _value;
_transfer(_from, _to, _value);
return true;
}
/**
* Set allowance for other address
*
* Allows `_spender` to spend no more than `_value` tokens in your behalf
*
* @param _spender The address authorized to spend
* @param _value the max amount they can spend
*/
function approve(address _spender, uint256 _value) public
returns (bool success) {
allowance[msg.sender][_spender] = _value;
return true;
}
/**
* Set allowance for other address and notify
*
* Allows `_spender` to spend no more than `_value` tokens in your behalf, and then ping the contract about it
*
* @param _spender The address authorized to spend
* @param _value the max amount they can spend
* @param _extraData some extra information to send to the approved contract
*/
function approveAndCall(address _spender, uint256 _value, bytes _extraData)
public
returns (bool success) {
tokenRecipient spender = tokenRecipient(_spender);
if (approve(_spender, _value)) {
spender.receiveApproval(msg.sender, _value, this, _extraData);
return true;
}
}
/**
* Destroy tokens
*
* Remove `_value` tokens from the system irreversibly
*
* @param _value the amount of money to burn
*/
function burn(uint256 _value) public returns (bool success) {
require(balanceOf[msg.sender] >= _value); // Check if the sender has enough
balanceOf[msg.sender] -= _value; // Subtract from the sender
totalSupply -= _value; // Updates totalSupply
Burn(msg.sender, _value);
return true;
}
/**
* Destroy tokens from other account
*
* Remove `_value` tokens from the system irreversibly on behalf of `_from`.
*
* @param _from the address of the sender
* @param _value the amount of money to burn
*/
function burnFrom(address _from, uint256 _value) public returns (bool success) {
require(balanceOf[_from] >= _value); // Check if the targeted balance is enough
require(_value <= allowance[_from][msg.sender]); // Check allowance
balanceOf[_from] -= _value; // Subtract from the targeted balance
allowance[_from][msg.sender] -= _value; // Subtract from the sender's allowance
totalSupply -= _value; // Update totalSupply
Burn(_from, _value);
return true;
}
}
/******************************************/
/* ADVANCED TOKEN STARTS HERE */
/******************************************/
contract CSAToken is owned, TokenERC20 {
uint256 public sellPrice;
uint256 public buyPrice;
mapping (address => bool) public frozenAccount;
/* This generates a public event on the blockchain that will notify clients */
event FrozenFunds(address target, bool frozen);
/* Initializes contract with initial supply tokens to the creator of the contract */
function CSAToken(
uint256 initialSupply,
string tokenName,
string tokenSymbol
) TokenERC20(initialSupply, tokenName, tokenSymbol) public {}
/* Internal transfer, only can be called by this contract */
function _transfer(address _from, address _to, uint _value) internal {
require (_to != 0x0); // Prevent transfer to 0x0 address. Use burn() instead
require (balanceOf[_from] >= _value); // Check if the sender has enough
require (balanceOf[_to] + _value > balanceOf[_to]); // Check for overflows
require(!frozenAccount[_from]); // Check if sender is frozen
require(!frozenAccount[_to]); // Check if recipient is frozen
balanceOf[_from] -= _value; // Subtract from the sender
balanceOf[_to] += _value; // Add the same to the recipient
Transfer(_from, _to, _value);
}
/// @notice Create `mintedAmount` tokens and send it to `target`
/// @param target Address to receive the tokens
/// @param mintedAmount the amount of tokens it will receive
function mintToken(address target, uint256 mintedAmount) onlyOwner public {
balanceOf[target] += mintedAmount;
totalSupply += mintedAmount;
Transfer(0, this, mintedAmount);
Transfer(this, target, mintedAmount);
}
/// @notice `freeze? Prevent | Allow` `target` from sending & receiving tokens
/// @param target Address to be frozen
/// @param freeze either to freeze it or not
function freezeAccount(address target, bool freeze) onlyOwner public {
frozenAccount[target] = freeze;
FrozenFunds(target, freeze);
}
/// @notice Allow users to buy tokens for `newBuyPrice` eth and sell tokens for `newSellPrice` eth
/// @param newSellPrice Price the users can sell to the contract
/// @param newBuyPrice Price users can buy from the contract
function setPrices(uint256 newSellPrice, uint256 newBuyPrice) onlyOwner public {
sellPrice = newSellPrice;
buyPrice = newBuyPrice;
}
/// @notice Buy tokens from contract by sending ether
function buy() payable public {
uint amount = msg.value / buyPrice; // calculates the amount
_transfer(this, msg.sender, amount); // makes the transfers
}
/// @notice Sell `amount` tokens to contract
/// @param amount amount of tokens to be sold
function sell(uint256 amount) public {
require(this.balance >= amount * sellPrice); // checks if the contract has enough ether to buy
_transfer(msg.sender, this, amount); // makes the transfers
msg.sender.transfer(amount * sellPrice); // sends ether to the seller. It's important to do this last to avoid recursion attacks
}
}
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% University Assignment Title Page
% LaTeX Template
% Version 1.0 (27/12/12)
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% Original author:
% WikiBooks (http://en.wikibooks.org/wiki/LaTeX/Title_Creation)
%
% License:
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
%
% Instructions for using this template:
% This title page is capable of being compiled as is. This is not useful for
% including it in another document. To do this, you have two options:
%
% 1) Copy/paste everything between \begin{document} and \end{document}
% starting at \begin{titlepage} and paste this into another LaTeX file where you
% want your title page.
% OR
% 2) Remove everything outside the \begin{titlepage} and \end{titlepage} and
% move this file to the same directory as the LaTeX file you wish to add it to.
% Then add \input{./title_page_1.tex} to your LaTeX file where you want your
% title page.
%
%----------------------------------------------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%----------------------------------------------------------------------------------------
\usepackage{ifxetex}
\usepackage{textpos}
\usepackage{natbib}
\usepackage{kpfonts}
\usepackage[a4paper,hmargin=2.8cm,vmargin=2.0cm,includeheadfoot]{geometry}
\usepackage{ifxetex}
\usepackage{stackengine}
\usepackage{tabularx,longtable,multirow,subfigure,caption}%hangcaption
\usepackage{fncylab} %formatting of labels
\usepackage{fancyhdr}
\usepackage{color}
\usepackage[tight,ugly]{units}
\usepackage{url}
\usepackage{float}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage{dsfont}
\usepackage{epstopdf} % automatically replace .eps with .pdf in graphics
\usepackage{natbib}
\usepackage{backref}
\usepackage{array}
\usepackage{latexsym}
\usepackage{etoolbox}
\usepackage{enumerate} % for numbering with [a)] format
\ifxetex
\usepackage{fontspec}
\setmainfont[Scale=.8]{OpenDyslexic-Regular}
\else
\usepackage[pdftex,pagebackref,hypertexnames=false,colorlinks]{hyperref} % provide links in pdf
\hypersetup{pdftitle={},
pdfsubject={},
pdfauthor={\reportauthor},
pdfkeywords={},
pdfstartview=FitH,
pdfpagemode={UseOutlines},% None, FullScreen, UseOutlines
bookmarksnumbered=true, bookmarksopen=true, colorlinks,
citecolor=black,%
filecolor=black,%
linkcolor=black,%
urlcolor=black}
\usepackage[all]{hypcap}
\fi
\usepackage{tcolorbox}
% various theorems
\usepackage{ntheorem}
\theoremstyle{break}
\newtheorem{lemma}{Lemma}
\newtheorem{theorem}{Theorem}
\newtheorem{remark}{Remark}
\newtheorem{definition}{Definition}
\newtheorem{proof}{Proof}
% example-environment
\newenvironment{example}[1][]
{
\vspace{4mm}
\noindent\makebox[\linewidth]{\rule{\hsize}{1.5pt}}
\textbf{Example #1}\\
}
{
\noindent\newline\makebox[\linewidth]{\rule{\hsize}{1.0pt}}
}
%\renewcommand{\rmdefault}{pplx} % Palatino
% \renewcommand{\rmdefault}{put} % Utopia
\ifxetex
\else
\renewcommand*{\rmdefault}{bch} % Charter
\renewcommand*{\ttdefault}{cmtt} % Computer Modern Typewriter
%\renewcommand*{\rmdefault}{phv} % Helvetica
%\renewcommand*{\rmdefault}{iwona} % Avant Garde
\fi
\setlength{\parindent}{0em} % indentation of paragraph
\setlength{\headheight}{14.5pt}
\pagestyle{fancy}
\fancyfoot[ER,OL]{\thepage}%Page no. in the left on
%odd pages and on right on even pages
\fancyfoot[OC,EC]{\sffamily }
\renewcommand{\headrulewidth}{0.1pt}
\renewcommand{\footrulewidth}{0.1pt}
\captionsetup{margin=10pt,font=small,labelfont=bf}
%--- chapter heading
\def\@makechapterhead#1{%
\vspace*{10\p@}%
{\parindent \z@ \raggedright %\sffamily
%{\Large \MakeUppercase{\@chapapp} \space \thechapter}
%\\
%\hrulefill
%\par\nobreak
%\vskip 10\p@
\interlinepenalty\@M
\Huge \bfseries
\thechapter \space\space #1\par\nobreak
\vskip 30\p@
}}
%---chapter heading for \chapter*
\def\@makeschapterhead#1{%
\vspace*{10\p@}%
{\parindent \z@ \raggedright
\sffamily
\interlinepenalty\@M
\Huge \bfseries
#1\par\nobreak
\vskip 30\p@
}}
% %%%%%%%%%%%%% boxit
\def\Beginboxit
{\par
\vbox\bgroup
\hrule
\hbox\bgroup
\vrule \kern1.2pt %
\vbox\bgroup\kern1.2pt
}
\def\Endboxit{%
\kern1.2pt
\egroup
\kern1.2pt\vrule
\egroup
\hrule
\egroup
}
\newenvironment{boxit}{\Beginboxit}{\Endboxit}
\newenvironment{boxit*}{\Beginboxit\hbox to\hsize{}}{\Endboxit}
\allowdisplaybreaks
\makeatletter
\newcounter{elimination@steps}
\newcolumntype{R}[1]{>{\raggedleft\arraybackslash$}p{#1}<{$}}
\def\elimination@num@rights{}
\def\elimination@num@variables{}
\def\elimination@col@width{}
\newenvironment{elimination}[4][0]
{
\setcounter{elimination@steps}{0}
\def\elimination@num@rights{#1}
\def\elimination@num@variables{#2}
\def\elimination@col@width{#3}
\renewcommand{\arraystretch}{#4}
\start@align\@ne\st@rredtrue\m@ne
}
{
\endalign
\ignorespacesafterend
}
\newcommand{\eliminationstep}[2]
{
\ifnum\value{elimination@steps}>0\leadsto\quad\fi
\left[
\ifnum\elimination@num@rights>0
\begin{array}
{@{}*{\elimination@num@variables}{R{\elimination@col@width}}
|@{}*{\elimination@num@rights}{R{\elimination@col@width}}}
\else
\begin{array}
{@{}*{\elimination@num@variables}{R{\elimination@col@width}}}
\fi
#1
\end{array}
\right]
&
\begin{array}{l}
#2
\end{array}
&% moved second & here
\addtocounter{elimination@steps}{1}
}
\makeatother
%% Fast macro for column vectors
\makeatletter
\def\colvec#1{\expandafter\colvec@i#1,,,,,,,,,\@nil}
\def\colvec@i#1,#2,#3,#4,#5,#6,#7,#8,#9\@nil{%
\ifx$#2$ \begin{bmatrix}#1\end{bmatrix} \else
\ifx$#3$ \begin{bmatrix}#1\\#2\end{bmatrix} \else
\ifx$#4$ \begin{bmatrix}#1\\#2\\#3\end{bmatrix}\else
\ifx$#5$ \begin{bmatrix}#1\\#2\\#3\\#4\end{bmatrix}\else
\ifx$#6$ \begin{bmatrix}#1\\#2\\#3\\#4\\#5\end{bmatrix}\else
\ifx$#7$ \begin{bmatrix}#1\\#2\\#3\\#4\\#5\\#6\end{bmatrix}\else
\ifx$#8$ \begin{bmatrix}#1\\#2\\#3\\#4\\#5\\#6\\#7\end{bmatrix}\else
\PackageError{Column Vector}{The vector you tried to write is too big, use bmatrix instead}{Try using the bmatrix environment}
\fi
\fi
\fi
\fi
\fi
\fi
\fi
}
\makeatother
\robustify{\colvec}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: "notes"
%%% End:
|